X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsettings.cpp;h=2731da26a7f5087e9ac6143f0967ffea6b4a5367;hb=62fc1acc7f17cb2397ba2d7e879a1266c0a7672c;hp=722be0e952ae205110c426fae197d97cef829ac1;hpb=6053070613c26ad5744d2a3e84ac5ee305a5a8d6;p=quassel.git diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 722be0e9..2731da26 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -22,8 +22,10 @@ #include "settings.h" -QHash > Settings::settingsCache; -QHash > Settings::settingsChangeNotifier; +const int VERSION = 1; + +QHash Settings::settingsCache; +QHash Settings::settingsChangeNotifier; #ifdef Q_WS_MAC # define create_qsettings QSettings s(QCoreApplication::organizationDomain(), appName) @@ -57,10 +59,22 @@ QHash > Settings::settingsChan // } void Settings::notify(const QString &key, QObject *receiver, const char *slot) { - QObject::connect(notifier(group, key), SIGNAL(valueChanged(const QVariant &)), + QObject::connect(notifier(normalizedKey(group, key)), SIGNAL(valueChanged(const QVariant &)), receiver, slot); } +uint Settings::version() { + // we don't cache this value, and we ignore the group + create_qsettings; + uint ver = s.value("Config/Version", 0).toUInt(); + if(!ver) { + // No version, so create one + s.setValue("Config/Version", VERSION); + return VERSION; + } + return ver; +} + QStringList Settings::allLocalKeys() { create_qsettings; s.beginGroup(group); @@ -98,24 +112,22 @@ QStringList Settings::localChildGroups(const QString &rootkey) { } void Settings::setLocalValue(const QString &key, const QVariant &data) { + QString normKey = normalizedKey(group, key); create_qsettings; - s.beginGroup(group); - s.setValue(key, data); - s.endGroup(); - setCacheValue(group, key, data); - if(hasNotifier(group, key)) { - emit notifier(group, key)->valueChanged(data); + s.setValue(normKey, data); + setCacheValue(normKey, data); + if(hasNotifier(normKey)) { + emit notifier(normKey)->valueChanged(data); } } const QVariant &Settings::localValue(const QString &key, const QVariant &def) { - if(!isCached(group, key)) { + QString normKey = normalizedKey(group, key); + if(!isCached(normKey)) { create_qsettings; - s.beginGroup(group); - setCacheValue(group, key, s.value(key, def)); - s.endGroup(); + setCacheValue(normKey, s.value(normKey, def)); } - return cacheValue(group, key); + return cacheValue(normKey); } void Settings::removeLocalKey(const QString &key) { @@ -123,6 +135,7 @@ void Settings::removeLocalKey(const QString &key) { s.beginGroup(group); s.remove(key); s.endGroup(); - if(isCached(group, key)) - settingsCache[group].remove(key); + QString normKey = normalizedKey(group, key); + if(isCached(normKey)) + settingsCache.remove(normKey); }