mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 22:35:27 +00:00
783332561a
Replace all credentialStatus() with cloud_verification_status() Where both prefs.credentialStatus and PrefCloudStorage.cloud_verification_status are being set, remove prefs.credentialStatus. These replacements are valid since credentialStatus() is a simple envelope over cloud_verification_status(). Also remove qmlPrefs::credentialStatus() from qmlPrefs (mostly to ensure no replacements was forgotten). Signed-off-by: Jan Iversen <jan@casacondor.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
44 lines
934 B
C++
44 lines
934 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef QMLPREFS_H
|
|
#define QMLPREFS_H
|
|
|
|
#include <QObject>
|
|
#include "core/settings/qPrefCloudStorage.h"
|
|
#include "core/settings/qPrefDisplay.h"
|
|
|
|
|
|
class QMLPrefs : public QObject {
|
|
Q_OBJECT
|
|
Q_PROPERTY(bool showPin
|
|
MEMBER m_showPin
|
|
WRITE setShowPin
|
|
NOTIFY showPinChanged)
|
|
Q_PROPERTY(qPrefCloudStorage::cloud_status oldStatus
|
|
MEMBER m_oldStatus
|
|
WRITE setOldStatus
|
|
NOTIFY oldStatusChanged)
|
|
public:
|
|
QMLPrefs();
|
|
~QMLPrefs();
|
|
|
|
static QMLPrefs *instance();
|
|
|
|
void setCredentialStatus(const qPrefCloudStorage::cloud_status value);
|
|
|
|
qPrefCloudStorage::cloud_status oldStatus() const;
|
|
void setOldStatus(const qPrefCloudStorage::cloud_status value);
|
|
|
|
bool showPin() const;
|
|
void setShowPin(bool enable);
|
|
|
|
private:
|
|
static QMLPrefs *m_instance;
|
|
qPrefCloudStorage::cloud_status m_oldStatus;
|
|
bool m_showPin;
|
|
|
|
signals:
|
|
void oldStatusChanged();
|
|
void showPinChanged();
|
|
};
|
|
|
|
#endif
|