1/***************************************************************************
2 * Copyright (C) 2005-2014 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#ifndef BUFFERSETTINGS_H
22#define BUFFERSETTINGS_H
23
24#include "clientsettings.h"
25#include "message.h"
26#include "types.h"
27
28class BufferSettings : public ClientSettings
29{
30public:
31 enum RedirectTarget {
32 DefaultBuffer = 0x01,
33 StatusBuffer = 0x02,
34 CurrentBuffer = 0x04
35 };
36
37 BufferSettings(const QString &idString = "__default__");
38 BufferSettings(BufferId bufferId);
39
40 inline void setValue(const QString &key, const QVariant &data) { setLocalValue(key, data); }
41 inline QVariant value(const QString &key, const QVariant &def = QVariant()) { return localValue(key, def); }
42
43 // Message Filter (default and per view)
44 inline bool hasFilter() { return localValue("hasMessageTypeFilter", false).toBool(); }
45 inline int messageFilter() { return localValue("MessageTypeFilter", 0).toInt(); }
46 void setMessageFilter(int filter);
47 void filterMessage(Message::Type msgType, bool filter);
48 void removeFilter();
49
50 // user state icons for query buffers (default)
51 inline bool showUserStateIcons() { return localValue("ShowUserStateIcons", true).toBool(); }
52 inline void enableUserStateIcons(bool enabled) { setLocalValue("ShowUserStateIcons", enabled); }
53
54 // redirection settings (default)
55 inline int userNoticesTarget() { return localValue("UserNoticesTarget", DefaultBuffer | CurrentBuffer).toInt(); }
56 inline void setUserNoticesTarget(int target) { setLocalValue("UserNoticesTarget", target); }
57 inline int serverNoticesTarget() { return localValue("ServerNoticesTarget", StatusBuffer).toInt(); }
58 inline void setServerNoticesTarget(int target) { setLocalValue("ServerNoticesTarget", target); }
59 inline int errorMsgsTarget() { return localValue("ErrorMsgsTarget", DefaultBuffer).toInt(); }
60 inline void setErrorMsgsTarget(int target) { setLocalValue("ErrorMsgsTarget", target); }
61};
62
63
64#endif
65