X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsettings.cpp;h=2731da26a7f5087e9ac6143f0967ffea6b4a5367;hp=07a9e2a1b1210e3c536a9071b555e0672edf6a6a;hb=328b48e6fbd78d6158eb55296c0843fc5a41bcfa;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 07a9e2a1..2731da26 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -18,17 +18,20 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include #include -#ifdef Q_WS_QWS -#include -#endif - #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_), @@ -56,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(org(), appName); + create_qsettings; s.beginGroup(group); QStringList res = s.allKeys(); s.endGroup(); @@ -75,7 +90,7 @@ QStringList Settings::localChildKeys(const QString &rootkey) { else g = QString("%1/%2").arg(group, rootkey); - QSettings s(org(), appName); + create_qsettings; s.beginGroup(g); QStringList res = s.childKeys(); s.endGroup(); @@ -89,7 +104,7 @@ QStringList Settings::localChildGroups(const QString &rootkey) { else g = QString("%1/%2").arg(group, rootkey); - QSettings s(org(), appName); + create_qsettings; s.beginGroup(g); QStringList res = s.childGroups(); s.endGroup(); @@ -97,31 +112,30 @@ QStringList Settings::localChildGroups(const QString &rootkey) { } void Settings::setLocalValue(const QString &key, const QVariant &data) { - QSettings s(org(), appName); - 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(org(), appName); - 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(org(), appName); + 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); }