X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=ea115c9585e9c419816087709b169616d5adb77c;hb=092e6b212637ffbf68800584b7c1f32d1931b602;hp=945e4018063af207067f4416a65d3ba68f361f7b;hpb=ce26c3770b254362c7bd1e094ba8f8bf22133653;p=quassel.git diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index 945e4018..ea115c95 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2018 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 };