mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
2385f48c6a
reduce number of includes by removing qPref* includes in qPref.h Signed-off-by: Jan Iversen <jani@apache.org>
33 lines
821 B
C++
33 lines
821 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QPREF_H
|
|
#define QPREF_H
|
|
#include "core/pref.h"
|
|
#include "ssrf-version.h"
|
|
|
|
#include <QObject>
|
|
#include <QQmlEngine>
|
|
|
|
class qPref : public QObject {
|
|
Q_OBJECT
|
|
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); }
|
|
|
|
// Register QML
|
|
void registerQML(QQmlEngine *engine);
|
|
|
|
public:
|
|
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
|