X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fbuffersettings.h;h=2791f9d8dd3427e81974301fdb92e6a98c2d8f42;hb=b8db3c55a7f66a8d6ecabf9039aabceff9ae4837;hp=f4266a5d6c30ead1fcd1d929c959effc26fb488f;hpb=620882e248fafe97a736e545d8e3eb72569a078b;p=quassel.git diff --git a/src/client/buffersettings.h b/src/client/buffersettings.h index f4266a5d..2791f9d8 100644 --- a/src/client/buffersettings.h +++ b/src/client/buffersettings.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,24 +15,47 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef _BUFFERSETTINGS_H_ -#define _BUFFERSETTINGS_H_ +#include "client-export.h" #include "clientsettings.h" - -class BufferSettings : public ClientSettings { - - public: - BufferSettings(const QString &group = "Buffer"); - - void setValue(const QString &key, const QVariant &data); - QVariant value(const QString &key, const QVariant &def = QVariant()); - - +#include "message.h" +#include "types.h" + +class CLIENT_EXPORT BufferSettings : public ClientSettings +{ +public: + enum RedirectTarget + { + DefaultBuffer = 0x01, + StatusBuffer = 0x02, + CurrentBuffer = 0x04 + }; + + BufferSettings(const QString& idString = "__default__"); + BufferSettings(BufferId bufferId); + + void setValue(const QString& key, const QVariant& data); + QVariant value(const QString& key, const QVariant& def = {}) const; + + // Message Filter (default and per view) + bool hasFilter() const; + int messageFilter() const; + void setMessageFilter(int filter); + void filterMessage(Message::Type msgType, bool filter); + void removeFilter(); + + // user state icons for query buffers (default) + bool showUserStateIcons() const; + void enableUserStateIcons(bool enabled); + + // redirection settings (default) + int userNoticesTarget() const; + void setUserNoticesTarget(int target); + int serverNoticesTarget() const; + void setServerNoticesTarget(int target); + int errorMsgsTarget() const; + void setErrorMsgsTarget(int target); }; - - -#endif