test: Add build system support and a main function for unit tests
[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
28
29 BufferSettings::BufferSettings(const QString &idString)
30     : ClientSettings(QString("Buffer/%1").arg(idString))
31 {
32 }
33
34
35 void BufferSettings::setValue(const QString &key, const QVariant &data)
36 {
37     setLocalValue(key, data);
38 }
39
40
41 QVariant BufferSettings::value(const QString &key, const QVariant &def) const
42 {
43     return localValue(key, def);
44 }
45
46
47 void BufferSettings::filterMessage(Message::Type msgType, bool filter)
48 {
49     if (!hasFilter())
50         setLocalValue("hasMessageTypeFilter", true);
51     if (filter)
52         setLocalValue("MessageTypeFilter", localValue("MessageTypeFilter", 0).toInt() | msgType);
53     else
54         setLocalValue("MessageTypeFilter", localValue("MessageTypeFilter", 0).toInt() & ~msgType);
55 }
56
57
58 bool BufferSettings::hasFilter() const
59 {
60     return localValue("hasMessageTypeFilter", false).toBool();
61 }
62
63
64 int BufferSettings::messageFilter() const
65 {
66     return localValue("MessageTypeFilter", 0).toInt();
67 }
68
69
70 void BufferSettings::setMessageFilter(int filter)
71 {
72     if (!hasFilter())
73         setLocalValue("hasMessageTypeFilter", true);
74     setLocalValue("MessageTypeFilter", filter);
75 }
76
77
78 void BufferSettings::removeFilter()
79 {
80     setLocalValue("hasMessageTypeFilter", false);
81     removeLocalKey("MessageTypeFilter");
82 }
83
84
85 bool BufferSettings::showUserStateIcons() const
86 {
87     return localValue("ShowUserStateIcons", true).toBool();
88 }
89
90
91 void BufferSettings::enableUserStateIcons(bool enabled)
92 {
93     setLocalValue("ShowUserStateIcons", enabled);
94 }
95
96
97 int BufferSettings::userNoticesTarget() const
98 {
99     return localValue("UserNoticesTarget", RedirectTarget::DefaultBuffer | RedirectTarget::CurrentBuffer).toInt();
100 }
101
102
103 void BufferSettings::setUserNoticesTarget(int target)
104 {
105     setLocalValue("UserNoticesTarget", target);
106 }
107
108
109 int BufferSettings::serverNoticesTarget() const
110 {
111     return localValue("ServerNoticesTarget", RedirectTarget::StatusBuffer).toInt();
112 }
113
114
115 void BufferSettings::setServerNoticesTarget(int target)
116 {
117     setLocalValue("ServerNoticesTarget", target);
118 }
119
120
121 int BufferSettings::errorMsgsTarget() const
122 {
123     return localValue("ErrorMsgsTarget", RedirectTarget::DefaultBuffer).toInt();
124 }
125
126
127 void BufferSettings::setErrorMsgsTarget(int target)
128 {
129     setLocalValue("ErrorMsgsTarget", target);
130 }