summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlinterface.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2020-02-08 11:39:49 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2020-02-08 10:29:36 -0800
commit1809dbd00a4d17bf65c60014801b893e8ebe3e3b (patch)
tree02616cc963b5243050373a792bdcdfb668d2453a /mobile-widgets/qmlinterface.h
parenta5823a5b0dbfc9788346c88616993953c105f3d3 (diff)
downloadsubsurface-1809dbd00a4d17bf65c60014801b893e8ebe3e3b.tar.gz
mobile/summary: remove dive summary calculation
Since we now use a model to calculate the dive summary, there is no need to export recalculation of the dive summary via QMLInterface. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'mobile-widgets/qmlinterface.h')
-rw-r--r--mobile-widgets/qmlinterface.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/mobile-widgets/qmlinterface.h b/mobile-widgets/qmlinterface.h
index c8383387d..efa34cdc0 100644
--- a/mobile-widgets/qmlinterface.h
+++ b/mobile-widgets/qmlinterface.h
@@ -8,7 +8,6 @@
#include "core/settings/qPrefTechnicalDetails.h"
#include "qt-models/diveplannermodel.h"
#include "backend-shared/plannershared.h"
-#include "backend-shared/divesummary.h"
#include <QObject>
#include <QQmlContext>
@@ -79,8 +78,6 @@ class QMLInterface : public QObject {
Q_PROPERTY(bool verbatim_plan READ verbatim_plan WRITE set_verbatim_plan NOTIFY verbatim_planChanged);
Q_PROPERTY(bool display_variations READ display_variations WRITE set_display_variations NOTIFY display_variationsChanged);
- Q_PROPERTY(QStringList diveSummaryText READ diveSummaryText NOTIFY diveSummaryTextChanged);
-
public:
// function to do the needed setup
static void setup(QQmlContext *ct);
@@ -168,9 +165,6 @@ public:
};
Q_ENUM(DIVE_MODE);
- // Function to calculate dive summary
- Q_INVOKABLE void summaryCalculation(int primaryPeriod, int secondaryPeriod);
-
public:
CLOUD_STATUS cloud_verification_status() { return (CLOUD_STATUS)prefs.cloud_verification_status; }
DURATION duration_units() { return (DURATION)prefs.units.duration_units; }
@@ -218,8 +212,6 @@ public:
bool verbatim_plan() { return prefs.verbatim_plan; }
bool display_variations() { return prefs.display_variations; }
- const QStringList &diveSummaryText() { return diveSummary::diveSummaryText; }
-
public slots:
void set_cloud_verification_status(CLOUD_STATUS value) { qPrefCloudStorage::set_cloud_verification_status(value); }
void set_duration_units(DURATION value) { qPrefUnits::set_duration_units((units::DURATION)value); }
@@ -315,8 +307,6 @@ signals:
void display_transitionsChanged(bool value);
void verbatim_planChanged(bool value);
void display_variationsChanged(bool value);
-
- void diveSummaryTextChanged(QStringList);
private:
QMLInterface();
};