subsurface/core/settings/qPref.h
Dirk Hohndel 4461b47965 qPref: reduce recompiles with every commit
Including ssrf-version.h in an include file that a lot of files depend on
caused a ton of unnecessary recompiles with every commit. This should reduce
that problem.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2018-10-27 07:16:01 -07:00

32 lines
708 B
C++

// SPDX-License-Identifier: GPL-2.0
#ifndef QPREF_H
#define QPREF_H
#include "core/pref.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();
static const QString mobile_version();
private:
static void loadSync(bool doSync);
};
#endif