X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fqtuimessageprocessor.h;h=64ae5a0583809660d3b321c48b169de6c9fbea5a;hb=4faeafb743766b345d5cadc5289840a981413853;hp=57ed9bcc5ea1b1537ebaaf8ae50b5ee8a1aa5c58;hpb=c06d3ebf3abc0f098d6262e9bd9dd98d90edc136;p=quassel.git diff --git a/src/qtui/qtuimessageprocessor.h b/src/qtui/qtuimessageprocessor.h index 57ed9bcc..64ae5a05 100644 --- a/src/qtui/qtuimessageprocessor.h +++ b/src/qtui/qtuimessageprocessor.h @@ -1,5 +1,5 @@ /*************************************************************************** -* Copyright (C) 2005-08 by the Quassel Project * +* Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -48,6 +48,7 @@ public slots: private slots: void processNextMessage(); + void nicksCaseSensitiveChanged(const QVariant &variant); void highlightListChanged(const QVariant &variant); void highlightNickChanged(const QVariant &variant); @@ -69,11 +70,13 @@ private: bool isEnabled; Qt::CaseSensitivity caseSensitive; bool isRegExp; - inline HighlightRule(const QString &name, bool enabled, Qt::CaseSensitivity cs, bool regExp) : name(name), isEnabled(enabled), caseSensitive(cs), isRegExp(regExp) {} + inline HighlightRule(const QString &name, bool enabled, Qt::CaseSensitivity cs, bool regExp) + : name(name), isEnabled(enabled), caseSensitive(cs), isRegExp(regExp) {} }; - + QList _highlightRules; NotificationSettings::HighlightNickType _highlightNick; + bool _nicksCaseSensitive; }; #endif