aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qmlmanager.cpp
diff options
context:
space:
mode:
authorGravatar Grace Karanja <gracie.karanja89@gmail.com>2015-07-10 10:47:26 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-10 06:03:20 -0700
commit5791f580df8cbd827b38cc536a9795be3a40a052 (patch)
treef4e4589f9749b47a4a8eec6091fb6cffe3af065c /qt-mobile/qmlmanager.cpp
parent27f55cb964a67edcd7146aa43bc4af640378bb67 (diff)
downloadsubsurface-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.cpp')
-rw-r--r--qt-mobile/qmlmanager.cpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp
index eeeada3e0..543e2a6ec 100644
--- a/qt-mobile/qmlmanager.cpp
+++ b/qt-mobile/qmlmanager.cpp
@@ -1,11 +1,16 @@
#include "qmlmanager.h"
#include <QUrl>
+#include <QSettings>
#include "qt-models/divelistmodel.h"
#include "divelist.h"
+#include "pref.h"
QMLManager::QMLManager()
{
+ //Initialize cloud credentials.
+ setCloudUserName(prefs.cloud_storage_email);
+ setCloudPassword(prefs.cloud_storage_password);
}
@@ -24,6 +29,38 @@ void QMLManager::setFilename(const QString &f)
loadFile();
}
+void QMLManager::savePreferences()
+{
+ QSettings s;
+ s.beginGroup("CloudStorage");
+ s.setValue("email", cloudUserName());
+ s.setValue("password", cloudPassword());
+
+ s.sync();
+}
+QString QMLManager::cloudPassword() const
+{
+ return m_cloudPassword;
+}
+
+void QMLManager::setCloudPassword(const QString &cloudPassword)
+{
+ m_cloudPassword = cloudPassword;
+ emit cloudPasswordChanged();
+}
+
+QString QMLManager::cloudUserName() const
+{
+ return m_cloudUserName;
+}
+
+void QMLManager::setCloudUserName(const QString &cloudUserName)
+{
+ m_cloudUserName = cloudUserName;
+ emit cloudUserNameChanged();
+}
+
+
void QMLManager::loadFile()
{
QUrl url(m_fileName);