X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatmonitorfilter.h;h=714021304e86f886c0d37de462e100a0c2ce2222;hp=6b3adcd13e6ff8d02dffde4827e3f91c0c06477b;hb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24;hpb=694f9bfbf7f1af19108461c7e00d133e55082bce diff --git a/src/qtui/chatmonitorfilter.h b/src/qtui/chatmonitorfilter.h index 6b3adcd1..71402130 100644 --- a/src/qtui/chatmonitorfilter.h +++ b/src/qtui/chatmonitorfilter.h @@ -1,25 +1,24 @@ /*************************************************************************** -* Copyright (C) 2005-09 by the Quassel Project * -* devel@quassel-irc.org * -* * -* This program is free software; you can redistribute it and/or modify * -* it under the terms of the GNU General Public License as published by * -* the Free Software Foundation; either version 2 of the License, or * -* (at your option) version 3. * -* * -* This program is distributed in the hope that it will be useful, * -* but WITHOUT ANY WARRANTY; without even the implied warranty of * -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -* GNU General Public License for more details. * -* * -* You should have received a copy of the GNU General Public License * -* along with this program; if not, write to the * -* Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * -***************************************************************************/ + * Copyright (C) 2005-2018 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ -#ifndef CHATMONITORFILTER_H_ -#define CHATMONITORFILTER_H_ +#pragma once #include @@ -38,11 +37,11 @@ public: AllFields = 0xff }; - ChatMonitorFilter(MessageModel *model, QObject *parent = 0); + ChatMonitorFilter(MessageModel *model, QObject *parent = nullptr); - virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const; - virtual QString idString() const { return "ChatMonitor"; } - virtual QVariant data(const QModelIndex &index, int role) const; + bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override; + QString idString() const override { return "ChatMonitor"; } + QVariant data(const QModelIndex &index, int role) const override; int showFields() const { return _showFields; } bool showOwnMessages() const { return _showOwnMessages; } @@ -55,17 +54,27 @@ 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 }; - - -#endif