X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=beba9bc0480e32a00a5391c76ed776915dd59686;hp=b0d94e2edc73e7938d52bba7208baf9e0ab7a7d2;hb=c27d5bfbe80bfeb583a25404f4ccee4b70b010e0;hpb=b65b9f7615165e8700a44d59b7275a55558dd45b diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index b0d94e2e..beba9bc0 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 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 * @@ -55,20 +55,29 @@ public slots: private slots: void showFieldsSettingChanged(const QVariant &newValue); void showOwnMessagesSettingChanged(const QVariant &newValue); + void alwaysOwnSettingChanged(const QVariant &newValue); 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; bool _showOwnMessages; + bool _alwaysOwn; QList _bufferIds; bool _showHighlights; int _operationMode; bool _showBacklog; bool _includeRead; + bool _showSenderBrackets; /// If true, show brackets around sender names };