summaryrefslogtreecommitdiffstats
path: root/core/settings/qPref.h
blob: 44dc6e075df0bfa0dac2abd23cc1de23e20410be (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
27
28
29
30
31
32
33
34
35
// SPDX-License-Identifier: GPL-2.0
#ifndef QPREF_H
#define QPREF_H

#include <QObject>
#include <QSettings>
#include "core/pref.h"

#include "qPrefDisplay.h"

class qPref : public QObject {
	Q_OBJECT
	Q_ENUMS(cloud_status);

public:
	qPref(QObject *parent = NULL);
	static qPref *instance();

	// Load/Sync local settings (disk) and struct preference
	void loadSync(bool doSync);

public:
	enum cloud_status {
		CS_UNKNOWN,
		CS_INCORRECT_USER_PASSWD,
		CS_NEED_TO_VERIFY,
		CS_VERIFIED,
		CS_NOCLOUD
	};


private:
};

#endif