diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-09-21 17:30:25 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-09-22 10:26:27 +0200 |
commit | 1b1e83aeb820df85ce7f10e81fe1f44deab2174e (patch) | |
tree | 8a137d8f286a3595d9171c24b45655c4b2b03427 /framework/src/accounts/accountfactory.h | |
parent | 777cb40dae338e79e8f4160882b7c37900b42238 (diff) | |
download | kube-1b1e83aeb820df85ce7f10e81fe1f44deab2174e.tar.gz kube-1b1e83aeb820df85ce7f10e81fe1f44deab2174e.zip |
A login view
Diffstat (limited to 'framework/src/accounts/accountfactory.h')
-rw-r--r-- | framework/src/accounts/accountfactory.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/framework/src/accounts/accountfactory.h b/framework/src/accounts/accountfactory.h index b57854e5..21747df5 100644 --- a/framework/src/accounts/accountfactory.h +++ b/framework/src/accounts/accountfactory.h | |||
@@ -33,6 +33,7 @@ class AccountFactory : public QObject | |||
33 | Q_PROPERTY(QString name MEMBER mName READ name NOTIFY accountLoaded); | 33 | Q_PROPERTY(QString name MEMBER mName READ name NOTIFY accountLoaded); |
34 | Q_PROPERTY(QString icon MEMBER mIcon NOTIFY accountLoaded); | 34 | Q_PROPERTY(QString icon MEMBER mIcon NOTIFY accountLoaded); |
35 | Q_PROPERTY(QString uiPath MEMBER mUiPath NOTIFY accountLoaded); | 35 | Q_PROPERTY(QString uiPath MEMBER mUiPath NOTIFY accountLoaded); |
36 | Q_PROPERTY(QString loginUi MEMBER mLoginUi NOTIFY accountLoaded); | ||
36 | public: | 37 | public: |
37 | explicit AccountFactory(QObject *parent = Q_NULLPTR); | 38 | explicit AccountFactory(QObject *parent = Q_NULLPTR); |
38 | 39 | ||
@@ -49,5 +50,6 @@ private: | |||
49 | QString mName; | 50 | QString mName; |
50 | QString mIcon; | 51 | QString mIcon; |
51 | QString mUiPath; | 52 | QString mUiPath; |
53 | QString mLoginUi; | ||
52 | QByteArray mAccountType; | 54 | QByteArray mAccountType; |
53 | }; | 55 | }; |