diff options
author | jan Iversen <jan@casacondor.com> | 2019-12-23 17:23:24 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-26 08:46:01 -0800 |
commit | c4d9b737cdf0881a81c6ba635bd9dedbc3a1af26 (patch) | |
tree | 84a1240821fecb9fc36cb6d80181e443c35a4bc4 /backend-shared/plannershared.h | |
parent | 413501bc61689e552de5764db69933a237e7af56 (diff) | |
download | subsurface-c4d9b737cdf0881a81c6ba635bd9dedbc3a1af26.tar.gz |
plannerShared: add o2narcotic
Add include of cylinderModel
Add o2narcotic
the set function is special because it first
informs the plannerModel that there is a new value
and then ask cylindermodel to calculate a new bestmix
Signed-off-by: Jan Iversen <jan@casacondor.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'backend-shared/plannershared.h')
-rw-r--r-- | backend-shared/plannershared.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/backend-shared/plannershared.h b/backend-shared/plannershared.h index 366d801e3..7c446abc2 100644 --- a/backend-shared/plannershared.h +++ b/backend-shared/plannershared.h @@ -43,6 +43,7 @@ class plannerShared: public QObject { Q_PROPERTY(double decosac READ decosac WRITE set_decosac NOTIFY decosacChanged); Q_PROPERTY(int problemsolvingtime READ problemsolvingtime WRITE set_problemsolvingtime NOTIFY problemsolvingtimeChanged); Q_PROPERTY(double sacfactor READ sacfactor WRITE set_sacfactor NOTIFY sacfactorChanged); + Q_PROPERTY(bool o2narcotic READ o2narcotic WRITE set_o2narcotic NOTIFY o2narcoticChanged); public: static plannerShared *instance(); @@ -73,6 +74,7 @@ public: static double decosac(); static int problemsolvingtime(); static double sacfactor(); + static bool o2narcotic(); public slots: // Ascend/Descend data, converted to meter/feet depending on user selection @@ -101,6 +103,7 @@ public slots: static void set_decosac(double value); static void set_problemsolvingtime(int value); static void set_sacfactor(double value); + static void set_o2narcotic(bool value); signals: // Ascend/Descend data, converted to meter/feet depending on user selection @@ -129,6 +132,7 @@ signals: void decosacChanged(double value); void problemsolvingtimeChanged(int value); void sacfactorChanged(double value); + void o2narcoticChanged(bool value); private: plannerShared() {} |