diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-07-10 10:47:26 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-10 06:03:20 -0700 |
commit | 5791f580df8cbd827b38cc536a9795be3a40a052 (patch) | |
tree | f4e4589f9749b47a4a8eec6091fb6cffe3af065c /qt-mobile/qmlmanager.h | |
parent | 27f55cb964a67edcd7146aa43bc4af640378bb67 (diff) | |
download | subsurface-5791f580df8cbd827b38cc536a9795be3a40a052.tar.gz |
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>
Diffstat (limited to 'qt-mobile/qmlmanager.h')
-rw-r--r-- | qt-mobile/qmlmanager.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/qt-mobile/qmlmanager.h b/qt-mobile/qmlmanager.h index e74db0b9a..850544847 100644 --- a/qt-mobile/qmlmanager.h +++ b/qt-mobile/qmlmanager.h @@ -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 |