aboutsummaryrefslogtreecommitdiffstats
path: root/core/settings/qPref.h
blob: 581efd883774fc3ebbf32b6375b13ebe1d7390af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-2.0
#ifndef QPREF_H
#define QPREF_H
#include "core/pref.h"

#include <QObject>
#include <QQmlEngine>

class qPref {
public:
	// 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