X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsettings.cpp;h=2731da26a7f5087e9ac6143f0967ffea6b4a5367;hp=6b0ce0399f8afb667cc8ad2c96043d843261eda4;hb=328b48e6fbd78d6158eb55296c0843fc5a41bcfa;hpb=17a2e7912f49f70273f90ea3f744960a7d08a6b4 diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 6b0ce039..2731da26 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -22,8 +22,16 @@ #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) +#else +# define create_qsettings QSettings s(fileName(), format()) +#endif // Settings::Settings(QString group_, QString appName_) // : group(group_), @@ -51,12 +59,24 @@ 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() { - QSettings s(fileName(), format()); + create_qsettings; s.beginGroup(group); QStringList res = s.allKeys(); s.endGroup(); @@ -70,7 +90,7 @@ QStringList Settings::localChildKeys(const QString &rootkey) { else g = QString("%1/%2").arg(group, rootkey); - QSettings s(fileName(), format()); + create_qsettings; s.beginGroup(g); QStringList res = s.childKeys(); s.endGroup(); @@ -84,7 +104,7 @@ QStringList Settings::localChildGroups(const QString &rootkey) { else g = QString("%1/%2").arg(group, rootkey); - QSettings s(fileName(), format()); + create_qsettings; s.beginGroup(g); QStringList res = s.childGroups(); s.endGroup(); @@ -92,31 +112,30 @@ QStringList Settings::localChildGroups(const QString &rootkey) { } void Settings::setLocalValue(const QString &key, const QVariant &data) { - QSettings s(fileName(), format()); - s.beginGroup(group); - s.setValue(key, data); - s.endGroup(); - setCacheValue(group, key, data); - if(hasNotifier(group, key)) { - emit notifier(group, key)->valueChanged(data); + QString normKey = normalizedKey(group, key); + create_qsettings; + 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)) { - QSettings s(fileName(), format()); - s.beginGroup(group); - setCacheValue(group, key, s.value(key, def)); - s.endGroup(); + QString normKey = normalizedKey(group, key); + if(!isCached(normKey)) { + create_qsettings; + setCacheValue(normKey, s.value(normKey, def)); } - return cacheValue(group, key); + return cacheValue(normKey); } void Settings::removeLocalKey(const QString &key) { - QSettings s(fileName(), format()); + create_qsettings; 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); }