summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_georeference.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-02 19:54:34 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-02 19:54:34 -0800
commit8ea7f404574c2ee571d2dde6bb6be3791e962150 (patch)
tree6a050178bfc71bf10558968f2a3bc0a12d8c525f /desktop-widgets/preferences/preferences_georeference.cpp
parentb273c1b0ca7bfe933e7c83742f1610f6bbe3f4d3 (diff)
parentdf7818a9b8495285b4d9812e5d6d50d6f9c08813 (diff)
downloadsubsurface-8ea7f404574c2ee571d2dde6bb6be3791e962150.tar.gz
Merge branch 'cmakeAndPreferences'
Diffstat (limited to 'desktop-widgets/preferences/preferences_georeference.cpp')
-rw-r--r--desktop-widgets/preferences/preferences_georeference.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_georeference.cpp b/desktop-widgets/preferences/preferences_georeference.cpp
new file mode 100644
index 000000000..7e8ccec9d
--- /dev/null
+++ b/desktop-widgets/preferences/preferences_georeference.cpp
@@ -0,0 +1,45 @@
+#include "preferences_georeference.h"
+#include "ui_prefs_georeference.h"
+#include "prefs-macros.h"
+#include "qthelper.h"
+#include "qt-models/divelocationmodel.h"
+
+#include <ctime>
+#include <QSettings>
+
+PreferencesGeoreference::PreferencesGeoreference() : AbstractPreferencesWidget(tr("Georeference"), QIcon(":/georeference"), 9)
+{
+ ui = new Ui::PreferencesGeoreference();
+ ui->setupUi(this);
+ ui->first_item->setModel(GeoReferencingOptionsModel::instance());
+ ui->second_item->setModel(GeoReferencingOptionsModel::instance());
+ ui->third_item->setModel(GeoReferencingOptionsModel::instance());
+}
+
+PreferencesGeoreference::~PreferencesGeoreference()
+{
+ delete ui;
+}
+
+void PreferencesGeoreference::refreshSettings()
+{
+ ui->enable_geocoding->setChecked(prefs.geocoding.enable_geocoding);
+ ui->parse_without_gps->setChecked(prefs.geocoding.parse_dive_without_gps);
+ ui->tag_existing_dives->setChecked(prefs.geocoding.tag_existing_dives);
+ ui->first_item->setCurrentIndex(prefs.geocoding.category[0]);
+ ui->second_item->setCurrentIndex(prefs.geocoding.category[1]);
+ ui->third_item->setCurrentIndex(prefs.geocoding.category[2]);
+}
+
+void PreferencesGeoreference::syncSettings()
+{
+ QSettings s;
+ s.beginGroup("geocoding");
+ s.setValue("enable_geocoding", ui->enable_geocoding->isChecked());
+ s.setValue("parse_dives_without_gps", ui->parse_without_gps->isChecked());
+ s.setValue("tag_existing_dives", ui->tag_existing_dives->isChecked());
+ s.setValue("cat0", ui->first_item->currentIndex());
+ s.setValue("cat1", ui->second_item->currentIndex());
+ s.setValue("cat2", ui->third_item->currentIndex());
+ s.endGroup();
+} \ No newline at end of file