#BR127: user can now set the style of the application in the config menu (behaviour...
[quassel.git] / src / common / settings.cpp
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 #include <QCoreApplication>
22 #include <QSettings>
23 #include <QStringList>
24 #include <QDebug>
25
26 #ifdef Q_WS_QWS
27 #include <Qtopia>
28 #endif
29
30 #include "settings.h"
31
32 Settings::Settings(QString g, QString applicationName)
33
34 #ifdef Q_WS_MAC
35   : QSettings(QCoreApplication::organizationDomain(), applicationName),
36 #else
37   : QSettings(QCoreApplication::organizationName(), applicationName),
38 #endif
39     group(g)
40 {
41
42 /* we need to call the constructor immediately in order to set the path...
43 #ifndef Q_WS_QWS
44   QSettings(QCoreApplication::organizationName(), applicationName);
45 #else
46   // FIXME sandboxDir() is not currently working correctly...
47   //if(Qtopia::sandboxDir().isEmpty()) QSettings();
48   //else QSettings(Qtopia::sandboxDir() + "/etc/QuasselIRC.conf", QSettings::NativeFormat);
49   // ...so we have to use a workaround:
50   QString appPath = QCoreApplication::applicationFilePath();
51   if(appPath.startsWith(Qtopia::packagePath())) {
52     QString sandboxPath = appPath.left(Qtopia::packagePath().length() + 32);
53     QSettings(sandboxPath + "/etc/QuasselIRC.conf", QSettings::IniFormat);
54     qDebug() << sandboxPath + "/etc/QuasselIRC.conf";
55   } else {
56     QSettings(QCoreApplication::organizationName(), applicationName);
57   }
58 #endif
59 */
60 }
61
62 Settings::~Settings() {
63
64 }
65
66 void Settings::setGroup(QString g) {
67   group = g;
68
69 }
70
71 QStringList Settings::allLocalKeys() {
72   beginGroup(group);
73   QStringList res = allKeys();
74   endGroup();
75   return res;
76 }
77
78 QStringList Settings::localChildKeys(const QString &rootkey) {
79   QString g;
80   if(rootkey.isEmpty()) g = group;
81   else g = QString("%1/%2").arg(group, rootkey);
82   beginGroup(g);
83   QStringList res = childKeys();
84   endGroup();
85   return res;
86 }
87
88 QStringList Settings::localChildGroups(const QString &rootkey) {
89   QString g;
90   if(rootkey.isEmpty()) g = group;
91   else g = QString("%1/%2").arg(group, rootkey);
92   beginGroup(g);
93   QStringList res = childGroups();
94   endGroup();
95   return res;
96 }
97
98 void Settings::setLocalValue(const QString &key, const QVariant &data) {
99   beginGroup(group);
100   setValue(key, data);
101   endGroup();
102 }
103
104 QVariant Settings::localValue(const QString &key, const QVariant &def) {
105   beginGroup(group);
106   QVariant res = value(key, def);
107   endGroup();
108   return res;
109 }
110
111 void Settings::removeLocalKey(const QString &key) {
112   beginGroup(group);
113   remove(key);
114   endGroup();
115 }