modernize: Reformat ALL the source... again!
[quassel.git] / src / client / buffersettings.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 "buffersettings.h"
22
23 BufferSettings::BufferSettings(BufferId bufferId)
24     : ClientSettings(QString("Buffer/%1").arg(bufferId.toInt()))
25 {}
26
27 BufferSettings::BufferSettings(const QString& idString)
28     : ClientSettings(QString("Buffer/%1").arg(idString))
29 {}
30
31 void BufferSettings::setValue(const QString& key, const QVariant& data)
32 {
33     setLocalValue(key, data);
34 }
35
36 QVariant BufferSettings::value(const QString& key, const QVariant& def) const
37 {
38     return localValue(key, def);
39 }
40
41 void BufferSettings::filterMessage(Message::Type msgType, bool filter)
42 {
43     if (!hasFilter())
44         setLocalValue("hasMessageTypeFilter", true);
45     if (filter)
46         setLocalValue("MessageTypeFilter", localValue("MessageTypeFilter", 0).toInt() | msgType);
47     else
48         setLocalValue("MessageTypeFilter", localValue("MessageTypeFilter", 0).toInt() & ~msgType);
49 }
50
51 bool BufferSettings::hasFilter() const
52 {
53     return localValue("hasMessageTypeFilter", false).toBool();
54 }
55
56 int BufferSettings::messageFilter() const
57 {
58     return localValue("MessageTypeFilter", 0).toInt();
59 }
60
61 void BufferSettings::setMessageFilter(int filter)
62 {
63     if (!hasFilter())
64         setLocalValue("hasMessageTypeFilter", true);
65     setLocalValue("MessageTypeFilter", filter);
66 }
67
68 void BufferSettings::removeFilter()
69 {
70     setLocalValue("hasMessageTypeFilter", false);
71     removeLocalKey("MessageTypeFilter");
72 }
73
74 bool BufferSettings::showUserStateIcons() const
75 {
76     return localValue("ShowUserStateIcons", true).toBool();
77 }
78
79 void BufferSettings::enableUserStateIcons(bool enabled)
80 {
81     setLocalValue("ShowUserStateIcons", enabled);
82 }
83
84 int BufferSettings::userNoticesTarget() const
85 {
86     return localValue("UserNoticesTarget", RedirectTarget::DefaultBuffer | RedirectTarget::CurrentBuffer).toInt();
87 }
88
89 void BufferSettings::setUserNoticesTarget(int target)
90 {
91     setLocalValue("UserNoticesTarget", target);
92 }
93
94 int BufferSettings::serverNoticesTarget() const
95 {
96     return localValue("ServerNoticesTarget", RedirectTarget::StatusBuffer).toInt();
97 }
98
99 void BufferSettings::setServerNoticesTarget(int target)
100 {
101     setLocalValue("ServerNoticesTarget", target);
102 }
103
104 int BufferSettings::errorMsgsTarget() const
105 {
106     return localValue("ErrorMsgsTarget", RedirectTarget::DefaultBuffer).toInt();
107 }
108
109 void BufferSettings::setErrorMsgsTarget(int target)
110 {
111     setLocalValue("ErrorMsgsTarget", target);
112 }