diff options
author | jan Iversen <jani@apache.org> | 2018-07-07 22:59:26 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-07-10 10:30:50 -0700 |
commit | 4a4bc1c8f39e39aacba0a58a41a6fa8cbc63e4b0 (patch) | |
tree | 33bc10ed011a017a34f968edb428e8a60905ed5d /core/settings/qPref.h | |
parent | 06593bd6425dcb9db016774e5238497b9a3d48bd (diff) | |
download | subsurface-4a4bc1c8f39e39aacba0a58a41a6fa8cbc63e4b0.tar.gz |
core: add version variables to qPref and make it qml loadable
add canonical_version and mobile_version to qPref
Having a property in qPref, allows the use in qml, and prepare the
interface for qml testing.
Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'core/settings/qPref.h')
-rw-r--r-- | core/settings/qPref.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/settings/qPref.h b/core/settings/qPref.h index 44dc6e075..e0e21ad6e 100644 --- a/core/settings/qPref.h +++ b/core/settings/qPref.h @@ -11,6 +11,8 @@ class qPref : public QObject { Q_OBJECT Q_ENUMS(cloud_status); + Q_PROPERTY(QString canonical_version READ canonical_version); + Q_PROPERTY(QString mobile_version READ mobile_version); public: qPref(QObject *parent = NULL); @@ -28,6 +30,8 @@ public: CS_NOCLOUD }; + const QString canonical_version() const; + const QString mobile_version() const; private: }; |