summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qmlmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r--mobile-widgets/qmlmanager.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp
index 9c78b2eb0..4e7310407 100644
--- a/mobile-widgets/qmlmanager.cpp
+++ b/mobile-widgets/qmlmanager.cpp
@@ -1250,6 +1250,21 @@ void QMLManager::setTimeThreshold(int time)
emit timeThresholdChanged();
}
+void QMLManager::setTheme(QString theme)
+{
+ QSettings s;
+ s.beginGroup("Theme");
+ s.setValue("currentTheme", theme);
+ emit themeChanged();
+}
+
+QString QMLManager::theme() const
+{
+ QSettings s;
+ s.beginGroup("Theme");
+ return s.value("currentTheme", "Blue").toString();
+}
+
bool QMLManager::loadFromCloud() const
{
return m_loadFromCloud;