diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-09-27 19:11:23 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-09-29 08:13:25 -0700 |
commit | dbed88bd810c545a100840d02f2e72168680ed72 (patch) | |
tree | b4dabdfc5993a1851643bbaf939588ba82e0ba49 /mobile-widgets/qmlmanager.cpp | |
parent | 81eb8466b22fc1fd98a90d1630bfb203bcbaddee (diff) | |
download | subsurface-dbed88bd810c545a100840d02f2e72168680ed72.tar.gz |
QML UI: rework single credential page to two pages
This commit tries to implement most of issue #515. It reworks the
one credential page, which its dynamic PIN part, into two pages.
Main driver of selecting one of the two pages is the showPin
boolean. Page 1 contains the email/passwd field (and the
option to use a no cloud setup). Page 2 only contains the PIN
part (and the option to cancel the process).
The Kirigami central button does not seem very handy here. We
need, for example, a cancel, sign-in and register, only register,
etc. buttons, which are not easy to handle in specific icons.
Therefore, normal pushbuttons are chosen to deal with user
interaction, and the Kirigami button is removed from these
pages.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 15b4eafe5..982861ba0 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -267,6 +267,7 @@ void QMLManager::finishSetup() openLocalThenRemote(url); } else if (!same_string(existing_filename, "") && credentialStatus() != CS_UNKNOWN) { setCredentialStatus(CS_NOCLOUD); + saveCloudCredentials(); appendTextToLog(tr("working in no-cloud mode")); int error = parse_file(existing_filename); if (error) { @@ -337,6 +338,7 @@ void QMLManager::saveCloudCredentials() s.beginGroup("CloudStorage"); s.setValue("email", cloudUser); s.setValue("password", cloudPwd); + s.setValue("cloud_verification_status", credentialStatus()); s.sync(); if (!same_string(prefs.cloud_storage_email, qPrintable(cloudUser))) { free(prefs.cloud_storage_email); |