Make the UI actually emit the required signal
[quassel.git] / src / qtui / chatmonitorfilter.h
index b0d94e2..1ffcea9 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2015 by the Quassel Project                        *
+ *   Copyright (C) 2005-2016 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -60,6 +60,12 @@ private slots:
     void buffersSettingChanged(const QVariant &newValue);
     void showBacklogSettingChanged(const QVariant &newValue);
     void includeReadSettingChanged(const QVariant &newValue);
+    /**
+     * Updates the local setting cache of whether or not to show sender brackets
+     *
+     * @param[in] newValue  If true, sender brackets are enabled, otherwise false.
+     */
+    void showSenderBracketsSettingChanged(const QVariant &newValue);
 
 private:
     int _showFields;
@@ -69,6 +75,7 @@ private:
     int _operationMode;
     bool _showBacklog;
     bool _includeRead;
+    bool _showSenderBrackets;   /// If true, show brackets around sender names
 };