627cb8ab137aa28fdaaa3ccb6a6b3dace4c15830
[quassel.git] / src / common / settings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef SETTINGS_H
22 #define SETTINGS_H
23
24 #include <QCoreApplication>
25 #include <QHash>
26 #include <QSettings>
27 #include <QString>
28 #include <QVariant>
29
30 #include "quassel.h"
31
32 class SettingsChangeNotifier : public QObject {
33   Q_OBJECT
34
35 signals:
36   void valueChanged(const QVariant &newValue);
37
38 private:
39   friend class Settings;
40 };
41
42 class Settings {
43 public:
44   enum Mode { Default, Custom };
45
46 public:
47   virtual void notify(const QString &key, QObject *receiver, const char *slot);
48
49 protected:
50   inline Settings(QString group_, QString appName_) : group(group_), appName(appName_) {}
51   inline virtual ~Settings() {}
52
53   inline void setGroup(const QString &group_) { group = group_; }
54
55   virtual QStringList allLocalKeys();
56   virtual QStringList localChildKeys(const QString &rootkey = QString());
57   virtual QStringList localChildGroups(const QString &rootkey = QString());
58
59   virtual void setLocalValue(const QString &key, const QVariant &data);
60   virtual const QVariant &localValue(const QString &key, const QVariant &def = QVariant());
61
62   virtual void removeLocalKey(const QString &key);
63
64   QString group;
65   QString appName;
66
67 private:
68   inline QSettings::Format format() {
69 #ifdef Q_WS_WIN
70     return QSettings::IniFormat;
71 #else
72     return QSettings::NativeFormat;
73 #endif
74   }
75   inline QString fileName() {
76     return Quassel::configDirPath() + appName
77            + ((format() == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
78   }
79
80   static QHash<QString, QHash<QString, QVariant> > settingsCache;
81   static QHash<QString, QHash<QString, SettingsChangeNotifier *> > settingsChangeNotifier;
82
83   inline void setCacheValue(const QString &group, const QString &key, const QVariant &data) {
84     settingsCache[group][key] = data;
85   }
86   inline const QVariant &cacheValue(const QString &group, const QString &key) {
87     return settingsCache[group][key];
88   }
89   inline bool isCached(const QString &group, const QString &key) {
90     return settingsCache.contains(group) && settingsCache[group].contains(key);
91   }
92
93   inline SettingsChangeNotifier *notifier(const QString &group, const QString &key) {
94     if(!hasNotifier(group, key))
95       settingsChangeNotifier[group][key] = new SettingsChangeNotifier();
96     return settingsChangeNotifier[group][key];
97   }
98
99   inline bool hasNotifier(const QString &group, const QString &key) {
100     return settingsChangeNotifier.contains(group) && settingsChangeNotifier[group].contains(key);
101   }
102 };
103
104 #endif