diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-12-25 15:25:29 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-25 10:38:23 -0800 |
commit | 83fd196c4ad15274c4499b4ef94e30398f00bfce (patch) | |
tree | 855ddab152997d6c1d463f6546fd3331b3c99187 /qt-ui/divelogimportdialog.h | |
parent | ee5d93e155ec58c82cb0f1225dc2f5b34f9e78ce (diff) | |
download | subsurface-83fd196c4ad15274c4499b4ef94e30398f00bfce.tar.gz |
Automatically increment column number on CSV import
This increments the column number automatically when doing manual CSV
import. Counter is decreased when un-checking checkboxes, but that is
all the logic there currently is.
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.h')
-rw-r--r-- | qt-ui/divelogimportdialog.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.h b/qt-ui/divelogimportdialog.h index 147216a88..3faceeceb 100644 --- a/qt-ui/divelogimportdialog.h +++ b/qt-ui/divelogimportdialog.h @@ -23,11 +23,32 @@ slots: void on_knownImports_currentIndexChanged(int index); void unknownImports(); + void manualDiveNumber(); + void manualDate(); + void manualTime(); + void manualLocation(); + void manualGps(); + void manualMaxDepth(); + void manualMeanDepth(); + void manualBuddy(); + void manualNotes(); + void manualTags(); + void manualWeight(); + void manualDuration(); + void manualCylinderSize(); + void manualStartPressure(); + void manualEndPressure(); + void manualO2(); + void manualHe(); + void manualAirTemp(); + void manualWaterTemp(); + private: bool selector; QStringList fileNames; Ui::DiveLogImportDialog *ui; QList<int> specialCSV; + int column; struct CSVAppConfig { QString name; |