Introduce QtUiStyleSettings and make highlight color configurable again
[quassel.git] / src / core / coreusersettings.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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 "coreusersettings.h"
22
23 CoreUserSettings::CoreUserSettings(UserId uid) : CoreSettings(QString("CoreUser/%1").arg(uid.toInt())), user(uid) {
24
25
26 }
27
28 Identity CoreUserSettings::identity(IdentityId id) {
29   QVariant v = localValue(QString("Identities/%1").arg(id.toInt()));
30   if(qVariantCanConvert<Identity>(v)) {
31     return v.value<Identity>();
32   }
33   return Identity();
34 }
35
36 QList<IdentityId> CoreUserSettings::identityIds() {
37   QList<IdentityId> res;
38   foreach(QString id, localChildKeys("Identities")) {
39     res << id.toInt();
40   }
41   return res;
42 }
43
44 void CoreUserSettings::storeIdentity(const Identity &identity) {
45   setLocalValue(QString("Identities/%1").arg(identity.id().toInt()), qVariantFromValue(identity));
46 }
47
48 void CoreUserSettings::removeIdentity(IdentityId id) {
49   removeLocalKey(QString("Identities/%1").arg(id.toInt()));
50 }
51
52
53 NetworkInfo CoreUserSettings::networkInfo(NetworkId id) {
54   QVariant v = localValue(QString("Networks/%1").arg(id.toInt()));
55   if(v.canConvert<NetworkInfo>()) {
56     return v.value<NetworkInfo>();
57   }
58   return NetworkInfo();
59 }
60
61 QList<NetworkId> CoreUserSettings::networkIds() {
62   QList<NetworkId> res;
63   foreach(QString id, localChildKeys("Networks")) {
64     res << id.toInt();
65   }
66   return res;
67 }
68
69 void CoreUserSettings::storeNetworkInfo(const NetworkInfo &info) {
70   setLocalValue(QString("Networks/%1").arg(info.networkId.toInt()), QVariant::fromValue<NetworkInfo>(info));
71 }
72
73 void CoreUserSettings::removeNetworkInfo(NetworkId id) {
74   removeLocalKey(QString("Networks/%1").arg(id.toInt()));
75 }
76
77 // FIXME remove as soon as the network data migration is gone
78 void CoreUserSettings::setSessionState(const QVariant &data) {
79   setLocalValue("SessionState", data);
80 }
81
82 QVariant CoreUserSettings::sessionState(const QVariant &def) {
83   return localValue("SessionState", def);
84 }
85
86 QVariantMap CoreUserSettings::sessionData() {
87   QVariantMap res;
88   foreach(QString key, localChildKeys(QString("SessionData"))) {
89     res[key] = localValue(QString("SessionData/%1").arg(key));
90   }
91   return res;
92 }
93
94 void CoreUserSettings::setSessionValue(const QString &key, const QVariant &data) {
95   setLocalValue(QString("SessionData/%1").arg(key), data);
96 }
97
98 QVariant CoreUserSettings::sessionValue(const QString &key, const QVariant &def) {
99   return localValue(QString("SessionData/%1").arg(key), def);
100 }
101