diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-12-26 16:11:38 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-26 08:43:43 -0800 |
commit | 1e04aec7fd46afc2c922f6d019e0344f0e1f4fa1 (patch) | |
tree | 28b9cf846161759752c20c3462f3bf10a64f0fe6 /qt-ui/divelogimportdialog.cpp | |
parent | e471335af6c498240964da1e5a678969a5feba3b (diff) | |
download | subsurface-1e04aec7fd46afc2c922f6d019e0344f0e1f4fa1.tar.gz |
Preconfigured import of Subsurface CSV log file
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.cpp')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index b91cc6782..5c2a04434 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -12,6 +12,7 @@ const DiveLogImportDialog::CSVAppConfig DiveLogImportDialog::CSVApps[CSVAPPS] = { "XP5", 1, 2, 10, -1, -1, -1, -1, -1, -1, "Tab" }, { "SensusCSV", 10, 11, -1, -1, -1, -1, -1, -1, -1, "," }, { "Seabear CSV", 1, 2, 6, -1, -1, 3, 4, 5, 7, ";" }, + { "SubsurfaceCSV", -1, -1, -1, -1, -1, -1, -1, -1, -1, "," }, { NULL, } }; @@ -25,6 +26,7 @@ DiveLogImportDialog::DiveLogImportDialog(QStringList *fn, QWidget *parent) : QDi /* Add indexes of XSLTs requiring special handling to the list */ specialCSV << 3; + specialCSV << 5; for (int i = 0; !CSVApps[i].name.isNull(); ++i) ui->knownImports->addItem(CSVApps[i].name); @@ -160,8 +162,10 @@ void DiveLogImportDialog::on_knownImports_currentIndexChanged(int index) { if (specialCSV.contains(index)) { ui->groupBox_3->setEnabled(false); + ui->CSVUnits->setEnabled(false); } else { ui->groupBox_3->setEnabled(true); + ui->CSVUnits->setEnabled(true); } if (index == 0) return; |