mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
c0e9e978a1
remove QSettings header file from qPref.h (which is included in many files) to isolate the use of QSettings in the total system. Signed-off-by: Jan Iversen <jani@apache.org>
39 lines
794 B
C++
39 lines
794 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QPREF_H
|
|
#define QPREF_H
|
|
|
|
#include <QObject>
|
|
#include "core/pref.h"
|
|
|
|
#include "qPrefAnimations.h"
|
|
#include "qPrefDisplay.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
|
|
void loadSync(bool doSync);
|
|
void load() { loadSync(false); }
|
|
void sync() { loadSync(true); }
|
|
|
|
public:
|
|
enum cloud_status {
|
|
CS_UNKNOWN,
|
|
CS_INCORRECT_USER_PASSWD,
|
|
CS_NEED_TO_VERIFY,
|
|
CS_VERIFIED,
|
|
CS_NOCLOUD
|
|
};
|
|
|
|
const QString canonical_version() const;
|
|
const QString mobile_version() const;
|
|
};
|
|
|
|
#endif
|