1a515914d951bb682e3107a2a68b2ced56cce14f
[quassel.git] / src / common / settings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 <QString>
27 #include <QVariant>
28
29 class Settings {
30 public:
31   enum Mode { Default, Custom };
32   
33 protected:
34   inline Settings(QString group_, QString appName_) : group(group_), appName(appName_) {}
35   inline virtual ~Settings() {}
36   
37   inline void setGroup(const QString &group_) { group = group_; }
38   
39   virtual QStringList allLocalKeys();
40   virtual QStringList localChildKeys(const QString &rootkey = QString());
41   virtual QStringList localChildGroups(const QString &rootkey = QString());
42   
43   virtual void setLocalValue(const QString &key, const QVariant &data);
44   virtual const QVariant &localValue(const QString &key, const QVariant &def = QVariant());
45   
46   virtual void removeLocalKey(const QString &key);
47   
48   QString group;
49   QString appName;
50
51 private:
52   inline QString org() {
53 #ifdef Q_WS_MAC
54     return QCoreApplication::organizationDomain();
55 #else
56     return QCoreApplication::organizationName();
57 #endif
58   }
59
60   static QHash<QString, QHash<QString, QVariant> > settingsCache;
61   inline void setCacheValue(const QString &group, const QString &key, const QVariant &data) {
62     settingsCache[group][key] = data;
63   }
64   inline const QVariant &cacheValue(const QString &group, const QString &key) {
65     return settingsCache[group][key];
66   }
67   inline bool isCached(const QString &group, const QString &key) {
68     return settingsCache.contains(group) && settingsCache[group].contains(key);
69   }
70 };
71
72
73
74 #endif