modernize: Remove old-style slot usage in NetworkModelController
[quassel.git] / src / core / coreusersettings.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "coreusersettings.h"
22
23 CoreUserSettings::CoreUserSettings(UserId uid)
24     : CoreSettings(QString("CoreUser/%1").arg(uid.toInt())), user(uid)
25 {
26 }
27
28
29 Identity CoreUserSettings::identity(IdentityId id) const
30 {
31     QVariant v = localValue(QString("Identities/%1").arg(id.toInt()));
32     if (v.canConvert<Identity>()) {
33         return v.value<Identity>();
34     }
35     return Identity();
36 }
37
38
39 QList<IdentityId> CoreUserSettings::identityIds() const
40 {
41     QList<IdentityId> res;
42     foreach(QString id, localChildKeys("Identities")) {
43         res << id.toInt();
44     }
45     return res;
46 }
47
48
49 void CoreUserSettings::storeIdentity(const Identity &identity)
50 {
51     setLocalValue(QString("Identities/%1").arg(identity.id().toInt()), qVariantFromValue(identity));
52 }
53
54
55 void CoreUserSettings::removeIdentity(IdentityId id)
56 {
57     removeLocalKey(QString("Identities/%1").arg(id.toInt()));
58 }
59
60
61 void CoreUserSettings::setSessionState(const QVariant &data)
62 {
63     setLocalValue("SessionState", data);
64 }
65
66
67 QVariant CoreUserSettings::sessionState(const QVariant &def) const
68 {
69     return localValue("SessionState", def);
70 }
71
72
73 QVariantMap CoreUserSettings::sessionData() const
74 {
75     QVariantMap res;
76     foreach(QString key, localChildKeys(QString("SessionData"))) {
77         res[key] = localValue(QString("SessionData/%1").arg(key));
78     }
79     return res;
80 }
81
82
83 void CoreUserSettings::setSessionValue(const QString &key, const QVariant &data)
84 {
85     setLocalValue(QString("SessionData/%1").arg(key), data);
86 }
87
88
89 QVariant CoreUserSettings::sessionValue(const QString &key, const QVariant &def) const
90 {
91     return localValue(QString("SessionData/%1").arg(key), def);
92 }