mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
plannerShared: add variables that reference qPrefDiveplanner
These are simple pass-through functions (normally optimized away by the compiler), and serve to make a consistent backend interface which have a simpler use especially in QML. Variables: dobailout Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
b877dd973c
commit
8d322218a8
2 changed files with 14 additions and 0 deletions
|
@ -113,3 +113,13 @@ void plannerShared::set_vpmb_conservatism(int value)
|
|||
{
|
||||
DivePlannerPointsModel::instance()->setVpmbConservatism(value);
|
||||
}
|
||||
|
||||
bool plannerShared::dobailout()
|
||||
{
|
||||
return qPrefDivePlanner::dobailout();
|
||||
}
|
||||
void plannerShared::set_dobailout(bool value)
|
||||
{
|
||||
qPrefDivePlanner::set_dobailout(value);
|
||||
DivePlannerPointsModel::instance()->emitDataChanged();
|
||||
}
|
||||
|
|
|
@ -31,6 +31,7 @@ class plannerShared: public QObject {
|
|||
Q_PROPERTY(int gflow READ gflow WRITE set_gflow NOTIFY gflowChanged);
|
||||
Q_PROPERTY(int gfhigh READ gfhigh WRITE set_gfhigh NOTIFY gfhighChanged);
|
||||
Q_PROPERTY(int vpmb_conservatism READ vpmb_conservatism WRITE set_vpmb_conservatism NOTIFY vpmb_conservatismChanged);
|
||||
Q_PROPERTY(bool dobailout READ dobailout WRITE set_dobailout NOTIFY dobailoutChanged);
|
||||
|
||||
public:
|
||||
static plannerShared *instance();
|
||||
|
@ -49,6 +50,7 @@ public:
|
|||
static int gflow();
|
||||
static int gfhigh();
|
||||
static int vpmb_conservatism();
|
||||
static bool dobailout();
|
||||
|
||||
public slots:
|
||||
// Ascend/Descend data, converted to meter/feet depending on user selection
|
||||
|
@ -65,6 +67,7 @@ public slots:
|
|||
static void set_gflow(int value);
|
||||
static void set_gfhigh(int value);
|
||||
static void set_vpmb_conservatism(int value);
|
||||
static void set_dobailout(bool value);
|
||||
|
||||
signals:
|
||||
// Ascend/Descend data, converted to meter/feet depending on user selection
|
||||
|
@ -81,6 +84,7 @@ signals:
|
|||
void gflowChanged(int value);
|
||||
void gfhighChanged(int value);
|
||||
void vpmb_conservatismChanged(int value);
|
||||
void dobailoutChanged(bool value);
|
||||
|
||||
private:
|
||||
plannerShared() {}
|
||||
|
|
Loading…
Reference in a new issue