711e3bc5f28e8095cb29a14169d493a04939b984
[quassel.git] / src / client / buffersettings.h
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 "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         DefaultBuffer = 0x01,
32         StatusBuffer  = 0x02,
33         CurrentBuffer = 0x04
34     };
35
36     BufferSettings(const QString &idString = "__default__");
37     BufferSettings(BufferId bufferId);
38
39     void setValue(const QString &key, const QVariant &data);
40     QVariant value(const QString &key, const QVariant &def = {}) const;
41
42     // Message Filter (default and per view)
43     bool hasFilter() const;
44     int messageFilter() const;
45     void setMessageFilter(int filter);
46     void filterMessage(Message::Type msgType, bool filter);
47     void removeFilter();
48
49     // user state icons for query buffers (default)
50     bool showUserStateIcons() const;
51     void enableUserStateIcons(bool enabled);
52
53     // redirection settings (default)
54     int userNoticesTarget() const;
55     void setUserNoticesTarget(int target);
56     int serverNoticesTarget() const;
57     void setServerNoticesTarget(int target);
58     int errorMsgsTarget() const;
59     void setErrorMsgsTarget(int target);
60 };