aboutsummaryrefslogtreecommitdiffstats
path: root/desktop-widgets/preferences/preferences_dc.cpp
diff options
context:
space:
mode:
authorGravatar willemferguson <willemferguson@zoology.up.ac.za>2019-12-08 15:44:14 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-25 02:57:42 +0900
commitb24caa4e2db42d300e3806ca3d13ce72202a24d8 (patch)
tree31b0d4c9824427f19ab757ecf185a714ae6b80ac /desktop-widgets/preferences/preferences_dc.cpp
parentf63f3eb4ae0cd3621cf5748dfd76749b40b6d886 (diff)
downloadsubsurface-b24caa4e2db42d300e3806ca3d13ce72202a24d8.tar.gz
Preferenced UI: add dive download tab
Add a preferences tab for dive download, allowing resetting the buttons representing download connections in the Download panel. Signed-off-by: willemferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'desktop-widgets/preferences/preferences_dc.cpp')
-rw-r--r--desktop-widgets/preferences/preferences_dc.cpp41
1 files changed, 41 insertions, 0 deletions
diff --git a/desktop-widgets/preferences/preferences_dc.cpp b/desktop-widgets/preferences/preferences_dc.cpp
new file mode 100644
index 000000000..b88881bd8
--- /dev/null
+++ b/desktop-widgets/preferences/preferences_dc.cpp
@@ -0,0 +1,41 @@
+// SPDX-License-Identifier: GPL-2.0
+#include "preferences_dc.h"
+#include "ui_preferences_dc.h"
+#include "core/dive.h"
+#include "core/settings/qPrefDisplay.h"
+#include "core/settings/qPrefCloudStorage.h"
+#include "core/settings/qPrefDiveComputer.h"
+
+#include <QFileDialog>
+#include <QProcess>
+#include <QMessageBox>
+
+PreferencesDc::PreferencesDc(): AbstractPreferencesWidget(tr("Dive download"), QIcon(":preferences-dc-icon"), 0 ), ui(new Ui::PreferencesDc())
+{
+ ui->setupUi(this);
+ const QSize BUTTON_SIZE = QSize(200, 22);
+ ui->resetRememberedDCs->resize(BUTTON_SIZE);
+}
+
+PreferencesDc::~PreferencesDc()
+{
+ delete ui;
+}
+
+void PreferencesDc::on_resetRememberedDCs_clicked()
+{
+ qPrefDiveComputer::set_vendor1(QString());
+ qPrefDiveComputer::set_vendor2(QString());
+ qPrefDiveComputer::set_vendor3(QString());
+ qPrefDiveComputer::set_vendor4(QString());
+}
+
+
+void PreferencesDc::refreshSettings()
+{
+}
+
+void PreferencesDc::syncSettings()
+{
+}
+