Who stole the ! from main.cpp?
[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)), user(uid) {
24
25
26 }
27
28 void CoreUserSettings::storeIdentity(const Identity &identity) {
29   setLocalValue(QString("Identities/%1").arg(identity.id()), QVariant::fromValue<Identity>(identity));
30 }
31
32 void CoreUserSettings::removeIdentity(const Identity &identity) {
33   removeLocalKey(QString("Identities/%1").arg(identity.id()));
34 }
35
36 Identity CoreUserSettings::identity(IdentityId id) {
37   QVariant v = localValue(QString("Identities/%1").arg(id));
38   if(qVariantCanConvert<Identity>(v)) {
39     return v.value<Identity>();
40   }
41   return Identity();
42 }
43
44 QList<IdentityId> CoreUserSettings::identityIds() {
45   QList<IdentityId> res;
46   foreach(QString id, localChildKeys("Identities")) {
47     res << id.toUInt();
48   }
49   return res;
50 }
51
52 QVariantMap CoreUserSettings::sessionData() {
53   QVariantMap res;
54   foreach(QString key, localChildKeys(QString("SessionData"))) {
55     res[key] = localValue(QString("SessionData/%1").arg(key));
56   }
57   return res;
58 }
59
60 void CoreUserSettings::setSessionValue(const QString &key, const QVariant &data) {
61   setLocalValue(QString("SessionData/%1").arg(key), data);
62 }
63
64 QVariant CoreUserSettings::sessionValue(const QString &key, const QVariant &def) {
65   return localValue(QString("SessionData/%1").arg(key), def);
66 }
67