diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2016-11-01 17:00:06 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-11-01 09:41:17 -0700 |
commit | 37e3e7e69a289db8c435a9d87188267c06703e11 (patch) | |
tree | af124abd81fbc9a45f01517c40046a34bf7e7f22 /core/subsurface-qt/SettingsObjectWrapper.h | |
parent | c110b4a23809ef7702653383d666bdd7a48ee775 (diff) | |
download | subsurface-37e3e7e69a289db8c435a9d87188267c06703e11.tar.gz |
Deco mode for plannining is not deco mode for showing
We had (in the wrong place, imo) a new feature that
should differentiate the different deco_modes, you could
plan your dive in buelhman and see it in vpm-b, for instance
but both of them accessed the same pref.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt/SettingsObjectWrapper.h')
-rw-r--r-- | core/subsurface-qt/SettingsObjectWrapper.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/subsurface-qt/SettingsObjectWrapper.h b/core/subsurface-qt/SettingsObjectWrapper.h index bd12da5f5..7fdd10498 100644 --- a/core/subsurface-qt/SettingsObjectWrapper.h +++ b/core/subsurface-qt/SettingsObjectWrapper.h @@ -132,6 +132,8 @@ class TechnicalDetailsSettings : public QObject { Q_PROPERTY(bool display_unused_tanks READ displayUnusedTanks WRITE setDisplayUnusedTanks NOTIFY displayUnusedTanksChanged) Q_PROPERTY(bool show_average_depth READ showAverageDepth WRITE setShowAverageDepth NOTIFY showAverageDepthChanged) Q_PROPERTY(bool show_pictures_in_profile READ showPicturesInProfile WRITE setShowPicturesInProfile NOTIFY showPicturesInProfileChanged) + Q_PROPERTY(deco_mode deco READ deco WRITE setDecoMode NOTIFY decoModeChanged) + public: TechnicalDetailsSettings(QObject *parent); @@ -160,6 +162,7 @@ public: bool displayUnusedTanks() const; bool showAverageDepth() const; bool showPicturesInProfile() const; + deco_mode deco() const; public slots: void setMod(bool value); @@ -187,6 +190,7 @@ public slots: void setDisplayUnusedTanks(bool value); void setShowAverageDepth(bool value); void setShowPicturesInProfile(bool value); + void setDecoMode(deco_mode d); signals: void modpO2Changed(double value); @@ -214,6 +218,7 @@ signals: void displayUnusedTanksChanged(bool value); void showAverageDepthChanged(bool value); void showPicturesInProfileChanged(bool value); + void decoModeChanged(deco_mode m); private: const QString group = QStringLiteral("TecDetails"); |