diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2013-10-16 22:05:19 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-16 12:44:07 -0700 |
commit | 4c49670cdba403090067d8b92940b577d16ba550 (patch) | |
tree | c6d331e238d934e95e54a05e4967a7eec564784c /qt-ui/csvimportdialog.h | |
parent | 80bced4f560047874515536979e3cba1e519e147 (diff) | |
download | subsurface-4c49670cdba403090067d8b92940b577d16ba550.tar.gz |
GUI for CSV import
This patch implements GUI for importing CSV log files. One is able to
configure what columns contain time, depth and temperature fields.
Pre-configured log applications currently included are ADP log viewer
and XP5. (Both of these use actually tab as separator, so the field
separator currently hard-coded.)
[Dirk Hohndel: minor fixes]
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/csvimportdialog.h')
-rw-r--r-- | qt-ui/csvimportdialog.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/qt-ui/csvimportdialog.h b/qt-ui/csvimportdialog.h new file mode 100644 index 000000000..057533018 --- /dev/null +++ b/qt-ui/csvimportdialog.h @@ -0,0 +1,48 @@ +#ifndef CSVIMPORTDIALOG_H +#define CSVIMPORTDIALOG_H + +#include <QDialog> +#include <QModelIndex> +#include "../dive.h" +#include "../divelist.h" + +namespace Ui { +class CSVImportDialog; +} + +class CSVImportDialog : public QDialog +{ + Q_OBJECT + +public: + explicit CSVImportDialog(QWidget *parent = 0); + ~CSVImportDialog(); + +private slots: + void on_buttonBox_accepted(); + void on_CSVFileSelector_clicked(); + void on_knownImports_currentIndexChanged(int index); + void on_CSVTime_valueChanged(int arg1); + void on_CSVDepth_valueChanged(int arg1); + void on_CSVTemperature_valueChanged(int arg1); + void on_CSVFile_textEdited(); + +private: + void unknownImports(); + + bool selector; + Ui::CSVImportDialog *ui; + + struct CSVAppConfig { + QString name; + int time; + int depth; + int temperature; + QString separator; + }; + +#define CSVAPPS 4 + static const CSVAppConfig CSVApps[CSVAPPS]; +}; + +#endif // CSVIMPORTDIALOG_H |