summaryrefslogtreecommitdiffstats
path: root/core/settings/qPref.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/settings/qPref.h')
-rw-r--r--core/settings/qPref.h20
1 files changed, 13 insertions, 7 deletions
diff --git a/core/settings/qPref.h b/core/settings/qPref.h
index 89e0b0951..036b3c6b2 100644
--- a/core/settings/qPref.h
+++ b/core/settings/qPref.h
@@ -1,17 +1,21 @@
// SPDX-License-Identifier: GPL-2.0
#ifndef QPREF_H
#define QPREF_H
-
#include "core/pref.h"
+#include "ssrf-version.h"
+
#include <QObject>
-#include "qPrefAnimations.h"
#include "qPrefCloudStorage.h"
#include "qPrefDisplay.h"
#include "qPrefDiveComputer.h"
#include "qPrefDivePlanner.h"
#include "qPrefFacebook.h"
+#include "qPrefGeneral.h"
+#include "qPrefGeocoding.h"
+#include "qPrefLanguage.h"
#include "qPrefLocationService.h"
+#include "qPrefPartialPressureGas.h"
#include "qPrefProxy.h"
#include "qPrefTechnicalDetails.h"
#include "qPrefUnit.h"
@@ -28,9 +32,8 @@ public:
static qPref *instance();
// Load/Sync local settings (disk) and struct preference
- void loadSync(bool doSync);
- void load() { loadSync(false); }
- void sync() { loadSync(true); }
+ static void load() { loadSync(false); }
+ static void sync() { loadSync(true); }
public:
enum cloud_status {
@@ -41,8 +44,11 @@ public:
CS_NOCLOUD
};
- const QString canonical_version() const;
- const QString mobile_version() const;
+ static const QString canonical_version() { return QString(CANONICAL_VERSION_STRING); }
+ static const QString mobile_version() { return QString(MOBILE_VERSION_STRING); }
+
+private:
+ static void loadSync(bool doSync);
};
#endif