Mercurial > hg > svgui
diff widgets/CSVFormatDialog.h @ 561:aced8ec09bc8
* Complete the overhaul of CSV file import; now you can pick the purpose for
each column in the file, and SV should do the rest. The most significant
practical improvement here is that we can now handle files in which time
and duration do not necessarily appear in known columns.
author | Chris Cannam |
---|---|
date | Mon, 19 Jul 2010 17:08:56 +0000 |
parents | e15afed2bfeb |
children | c9d6cf9c51c8 |
line wrap: on
line diff
--- a/widgets/CSVFormatDialog.h Fri Jul 16 16:51:39 2010 +0000 +++ b/widgets/CSVFormatDialog.h Mon Jul 19 17:08:56 2010 +0000 @@ -35,21 +35,21 @@ CSVFormat getFormat() const; protected slots: - void modelTypeChanged(int type); void timingTypeChanged(int type); void sampleRateChanged(QString); void windowSizeChanged(QString); void columnPurposeChanged(int purpose); + void updateModelLabel(); protected: CSVFormat m_format; - QComboBox *m_modelTypeCombo; QComboBox *m_timingTypeCombo; QLabel *m_sampleRateLabel; QComboBox *m_sampleRateCombo; QLabel *m_windowSizeLabel; QComboBox *m_windowSizeCombo; + QLabel *m_modelLabel; QList<QComboBox *> m_columnPurposeCombos; };