summaryrefslogtreecommitdiffstats
path: root/core/settings/qPref.h
blob: 7628e1c4a650071a141036b533c14ecd85ea8646 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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

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
	static void registerQML(QQmlEngine *engine);

private:
	static void loadSync(bool doSync);
};
#endif