X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=1ffcea93ba5f2e58975dfe862a655a52585bbde7;hp=be3ae99047d42a418df68adcd35fffb588a77328;hb=b82e9603ab7ce1164e8f550132f0c649653ad8ab;hpb=b664a5a142f458b8d6b3ccc846df3c0676beb3aa diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index be3ae990..1ffcea93 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -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 };