X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=1ffcea93ba5f2e58975dfe862a655a52585bbde7;hb=8fe8accd73abf77ab21d2d1c1346d2bc5c4de2ff;hp=3fd5a2d39e8b4b8390eaa06f9753dbd505f2860d;hpb=76db8cdfbeffaaba359c8e80cf2146da9e9e7f8a;p=quassel.git diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index 3fd5a2d3..1ffcea93 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 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 * @@ -58,6 +58,14 @@ private slots: void showHighlightsSettingChanged(const QVariant &newValue); void operationModeSettingChanged(const QVariant &newValue); 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; @@ -65,6 +73,9 @@ private: QList _bufferIds; bool _showHighlights; int _operationMode; + bool _showBacklog; + bool _includeRead; + bool _showSenderBrackets; /// If true, show brackets around sender names };