mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
4a4bc1c8f3
add canonical_version and mobile_version to qPref Having a property in qPref, allows the use in qml, and prepare the interface for qml testing. Signed-off-by: Jan Iversen <jani@apache.org>
39 lines
729 B
C++
39 lines
729 B
C++
// 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);
|
|
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
|
|
void loadSync(bool doSync);
|
|
|
|
public:
|
|
enum cloud_status {
|
|
CS_UNKNOWN,
|
|
CS_INCORRECT_USER_PASSWD,
|
|
CS_NEED_TO_VERIFY,
|
|
CS_VERIFIED,
|
|
CS_NOCLOUD
|
|
};
|
|
|
|
const QString canonical_version() const;
|
|
const QString mobile_version() const;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|