mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
ebc0e6d3f3
Add class variable tooltip_position to qPrefDisplay Add class variable lastDir to qPrefDisplay qPrefDisplay is updated to use new qPrefPrivate functions Adjust test cases incl. qml tests qPrefAnimations only has 1 variable, that really is a display variable Merge the variable into qPrefDisplay, to simplify setup (and avoid loading extra page in qml). correct theme to save in correct place, and make it a static class variable Signed-off-by: Jan Iversen <jani@apache.org>
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QPREF_H
|
|
#define QPREF_H
|
|
#include "core/pref.h"
|
|
#include "ssrf-version.h"
|
|
|
|
#include <QObject>
|
|
|
|
#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"
|
|
#include "qPrefUpdateManager.h"
|
|
|
|
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);
|
|
static qPref *instance();
|
|
|
|
// Load/Sync local settings (disk) and struct preference
|
|
static void load() { loadSync(false); }
|
|
static void sync() { loadSync(true); }
|
|
|
|
public:
|
|
enum cloud_status {
|
|
CS_UNKNOWN,
|
|
CS_INCORRECT_USER_PASSWD,
|
|
CS_NEED_TO_VERIFY,
|
|
CS_VERIFIED,
|
|
CS_NOCLOUD
|
|
};
|
|
|
|
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
|