mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: add cloud credential fields to the QMLManager class
These fields will be used by the QML Ui to save/retrieve the user's cloud credentials. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
parent
27f55cb964
commit
5791f580df
2 changed files with 50 additions and 0 deletions
|
|
@ -8,6 +8,8 @@ class QMLManager : public QObject
|
|||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(QString filename READ filename WRITE setFilename NOTIFY filenameChanged)
|
||||
Q_PROPERTY(QString cloudUserName READ cloudUserName WRITE setCloudUserName NOTIFY cloudUserNameChanged)
|
||||
Q_PROPERTY(QString cloudPassword READ cloudPassword WRITE setCloudPassword NOTIFY cloudPasswordChanged)
|
||||
public:
|
||||
QMLManager();
|
||||
~QMLManager();
|
||||
|
|
@ -17,15 +19,26 @@ public:
|
|||
void getFile();
|
||||
|
||||
|
||||
QString cloudUserName() const;
|
||||
void setCloudUserName(const QString &cloudUserName);
|
||||
|
||||
QString cloudPassword() const;
|
||||
void setCloudPassword(const QString &cloudPassword);
|
||||
|
||||
public slots:
|
||||
void setFilename(const QString &f);
|
||||
void savePreferences();
|
||||
|
||||
private:
|
||||
QString m_fileName;
|
||||
QString m_cloudUserName;
|
||||
QString m_cloudPassword;
|
||||
void loadFile();
|
||||
|
||||
signals:
|
||||
void filenameChanged();
|
||||
void cloudUserNameChanged();
|
||||
void cloudPasswordChanged();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue