show notices in current buffer by default
[quassel.git] / src / client / buffersettings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, 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
28 class BufferSettings : public ClientSettings {
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   inline void setValue(const QString &key, const QVariant &data) { setLocalValue(key, data); }
40   inline QVariant value(const QString &key, const QVariant &def = QVariant()) { return localValue(key, def); }
41
42   // Message Filter (default and per view)
43   inline bool hasFilter() { return localValue("hasMessageTypeFilter", false).toBool(); }
44   inline int messageFilter() { return localValue("MessageTypeFilter", 0).toInt(); }
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   inline bool showUserStateIcons() { return localValue("ShowUserStateIcons", true).toBool(); }
51   inline void enableUserStateIcons(bool enabled) { setLocalValue("ShowUserStateIcons", enabled); }
52
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