5b15a2acd590c97d553b84efce25d1c555e7c327
[quassel.git] / src / client / buffersettings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 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 "client-export.h"
22
23 #include "clientsettings.h"
24 #include "message.h"
25 #include "types.h"
26
27 class CLIENT_EXPORT BufferSettings : public ClientSettings
28 {
29 public:
30     enum RedirectTarget
31     {
32         DefaultBuffer = 0x01,
33         StatusBuffer = 0x02,
34         CurrentBuffer = 0x04
35     };
36
37     BufferSettings(const QString& idString = "__default__");
38     BufferSettings(BufferId bufferId);
39
40     void setValue(const QString& key, const QVariant& data);
41     QVariant value(const QString& key, const QVariant& def = {}) const;
42
43     // Message Filter (default and per view)
44     bool hasFilter() const;
45     int messageFilter() const;
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     bool showUserStateIcons() const;
52     void enableUserStateIcons(bool enabled);
53
54     // redirection settings (default)
55     int userNoticesTarget() const;
56     void setUserNoticesTarget(int target);
57     int serverNoticesTarget() const;
58     void setServerNoticesTarget(int target);
59     int errorMsgsTarget() const;
60     void setErrorMsgsTarget(int target);
61 };