X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsettings.cpp;h=24ddd5fc5915f34de118c4efb90ceb2a38f9504c;hp=f832f776a9d26d859b9ebf8ed295c98ffaa1086e;hb=7efb623a14099449d514df99a0b9b6de69acbb0f;hpb=015de4656bebd990317b82d8cc993fdc63709f01 diff --git a/src/common/settings.cpp b/src/common/settings.cpp index f832f776..24ddd5fc 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -24,8 +24,8 @@ const int VERSION = 1; -QHash > Settings::settingsCache; -QHash > Settings::settingsChangeNotifier; +QHash Settings::settingsCache; +QHash Settings::settingsChangeNotifier; #ifdef Q_WS_MAC # define create_qsettings QSettings s(QCoreApplication::organizationDomain(), appName) @@ -59,8 +59,13 @@ QHash > Settings::settingsChan // } void Settings::notify(const QString &key, QObject *receiver, const char *slot) { - QObject::connect(notifier(group, key), SIGNAL(valueChanged(const QVariant &)), - receiver, slot); + QObject::connect(notifier(normalizedKey(group, key)), SIGNAL(valueChanged(const QVariant &)), + receiver, slot); +} + +void Settings::initAndNotify(const QString &key, QObject *receiver, const char *slot, const QVariant &defaultValue) { + notify(key, receiver, slot); + emit notifier(normalizedKey(group, key))->valueChanged(localValue(key, defaultValue)); } uint Settings::version() { @@ -112,24 +117,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) { @@ -137,6 +140,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); }