X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsettings.cpp;h=6b0ce0399f8afb667cc8ad2c96043d843261eda4;hp=d6ebb806f39c76c1af2aebc6d955e6cc1d3be728;hb=17a2e7912f49f70273f90ea3f744960a7d08a6b4;hpb=4b41d8800c38aa3bc4e88a76289b45bc888ba088 diff --git a/src/common/settings.cpp b/src/common/settings.cpp index d6ebb806..6b0ce039 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,98 +18,105 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#include -#include #include -#include - -#ifdef Q_WS_QWS -#include -#endif #include "settings.h" -Settings::Settings(QString g, QString applicationName) - -#ifdef Q_WS_MAC - : QSettings(QCoreApplication::organizationDomain(), applicationName), -#else - : QSettings(QCoreApplication::organizationName(), applicationName), -#endif - group(g) -{ - -/* we need to call the constructor immediately in order to set the path... -#ifndef Q_WS_QWS - QSettings(QCoreApplication::organizationName(), applicationName); -#else - // FIXME sandboxDir() is not currently working correctly... - //if(Qtopia::sandboxDir().isEmpty()) QSettings(); - //else QSettings(Qtopia::sandboxDir() + "/etc/QuasselIRC.conf", QSettings::NativeFormat); - // ...so we have to use a workaround: - QString appPath = QCoreApplication::applicationFilePath(); - if(appPath.startsWith(Qtopia::packagePath())) { - QString sandboxPath = appPath.left(Qtopia::packagePath().length() + 32); - QSettings(sandboxPath + "/etc/QuasselIRC.conf", QSettings::IniFormat); - qDebug() << sandboxPath + "/etc/QuasselIRC.conf"; - } else { - QSettings(QCoreApplication::organizationName(), applicationName); - } -#endif -*/ -} - -Settings::~Settings() { - -} - -void Settings::setGroup(QString g) { - group = g; - +QHash > Settings::settingsCache; +QHash > Settings::settingsChangeNotifier; + +// Settings::Settings(QString group_, QString appName_) +// : group(group_), +// appName(appName_) +// { + +// /* we need to call the constructor immediately in order to set the path... +// #ifndef Q_WS_QWS +// QSettings(QCoreApplication::organizationName(), applicationName); +// #else +// // FIXME sandboxDir() is not currently working correctly... +// //if(Qtopia::sandboxDir().isEmpty()) QSettings(); +// //else QSettings(Qtopia::sandboxDir() + "/etc/QuasselIRC.conf", QSettings::NativeFormat); +// // ...so we have to use a workaround: +// QString appPath = QCoreApplication::applicationFilePath(); +// if(appPath.startsWith(Qtopia::packagePath())) { +// QString sandboxPath = appPath.left(Qtopia::packagePath().length() + 32); +// QSettings(sandboxPath + "/etc/QuasselIRC.conf", QSettings::IniFormat); +// qDebug() << sandboxPath + "/etc/QuasselIRC.conf"; +// } else { +// QSettings(QCoreApplication::organizationName(), applicationName); +// } +// #endif +// */ +// } + +void Settings::notify(const QString &key, QObject *receiver, const char *slot) { + QObject::connect(notifier(group, key), SIGNAL(valueChanged(const QVariant &)), + receiver, slot); } QStringList Settings::allLocalKeys() { - beginGroup(group); - QStringList res = allKeys(); - endGroup(); + QSettings s(fileName(), format()); + s.beginGroup(group); + QStringList res = s.allKeys(); + s.endGroup(); return res; } QStringList Settings::localChildKeys(const QString &rootkey) { QString g; - if(rootkey.isEmpty()) g = group; - else g = QString("%1/%2").arg(group, rootkey); - beginGroup(g); - QStringList res = childKeys(); - endGroup(); + if(rootkey.isEmpty()) + g = group; + else + g = QString("%1/%2").arg(group, rootkey); + + QSettings s(fileName(), format()); + s.beginGroup(g); + QStringList res = s.childKeys(); + s.endGroup(); return res; } QStringList Settings::localChildGroups(const QString &rootkey) { QString g; - if(rootkey.isEmpty()) g = group; - else g = QString("%1/%2").arg(group, rootkey); - beginGroup(g); - QStringList res = childGroups(); - endGroup(); + if(rootkey.isEmpty()) + g = group; + else + g = QString("%1/%2").arg(group, rootkey); + + QSettings s(fileName(), format()); + s.beginGroup(g); + QStringList res = s.childGroups(); + s.endGroup(); return res; } void Settings::setLocalValue(const QString &key, const QVariant &data) { - beginGroup(group); - setValue(key, data); - endGroup(); + 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); + } } -QVariant Settings::localValue(const QString &key, const QVariant &def) { - beginGroup(group); - QVariant res = value(key, def); - endGroup(); - return res; +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(); + } + return cacheValue(group, key); } void Settings::removeLocalKey(const QString &key) { - beginGroup(group); - remove(key); - endGroup(); + QSettings s(fileName(), format()); + s.beginGroup(group); + s.remove(key); + s.endGroup(); + if(isCached(group, key)) + settingsCache[group].remove(key); }