some minor smoothifications to the nick selector
[quassel.git] / src / qtui / qtuimessageprocessor.h
index 57ed9bc..64ae5a0 100644 (file)
@@ -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<HighlightRule> _highlightRules;
   NotificationSettings::HighlightNickType _highlightNick;
+  bool _nicksCaseSensitive;
 };
 
 #endif