X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=154ce92c13009fc098c4c3cfa3e0444e83101fe5;hb=e531fd1f1ea36a360a9d876c94e73b0f3b1bcd22;hp=468b56db476def283cd5a3bc053e25c55b3670aa;hpb=4dabe69f242f8a760c1aef549d41aec23d2aed23;p=quassel.git diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index 468b56db..154ce92c 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -24,7 +24,6 @@ #include #include "messagefilter.h" -#include "qtuisettings.h" class ChatMonitorFilter : public MessageFilter { Q_OBJECT @@ -35,7 +34,7 @@ public: NetworkField = 0x01, BufferField = 0x02, SenderField = 0x04, - AllFields = 0xFF + AllFields = 0xff }; ChatMonitorFilter(MessageModel *model, QObject *parent = 0); @@ -53,12 +52,18 @@ public slots: void setShowOwnMessages(bool show); private slots: - void showFieldsSettingsChanged(const QVariant &newValue); + void showFieldsSettingChanged(const QVariant &newValue); void showOwnMessagesSettingChanged(const QVariant &newValue); + void showHighlightsSettingChanged(const QVariant &newValue); + void operationModeSettingChanged(const QVariant &newValue); + void buffersSettingChanged(const QVariant &newValue); private: int _showFields; bool _showOwnMessages; + QList _bufferIds; + bool _showHighlights; + int _operationMode; }; #endif