Naming++
[quassel.git] / src / qtui / chatmonitorfilter.cpp
1 /***************************************************************************
2 *   Copyright (C) 2005-08 by the Quassel Project                          *
3 *   devel@quassel-irc.org                                                 *
4 *                                                                         *
5 *   This program is free software; you can redistribute it and/or modify  *
6 *   it under the terms of the GNU General Public License as published by  *
7 *   the Free Software Foundation; either version 2 of the License, or     *
8 *   (at your option) version 3.                                           *
9 *                                                                         *
10 *   This program is distributed in the hope that it will be useful,       *
11 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13 *   GNU General Public License for more details.                          *
14 *                                                                         *
15 *   You should have received a copy of the GNU General Public License     *
16 *   along with this program; if not, write to the                         *
17 *   Free Software Foundation, Inc.,                                       *
18 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19 ***************************************************************************/
20
21 #include "chatmonitorfilter.h"
22
23 #include "client.h"
24 #include "chatlinemodel.h"
25 #include "networkmodel.h"
26 #include "chatviewsettings.h"
27
28 ChatMonitorFilter::ChatMonitorFilter(MessageModel *model, QObject *parent)
29   : MessageFilter(model, parent)
30 {
31   ChatViewSettings viewSettings(idString());
32   _showFields = viewSettings.value("ShowFields", AllFields).toInt();
33   _showOwnMessages = viewSettings.value("ShowOwnMsgs", true).toBool();
34   viewSettings.notify("ShowFields", this, SLOT(showFieldsSettingChanged(const QVariant &)));
35   viewSettings.notify("ShowOwnMsgs", this, SLOT(showOwnMessagesSettingChanged(const QVariant &)));
36
37   // ChatMonitorSettingsPage
38   QString showHighlightsSettingsId = "ShowHighlights";
39   QString operationModeSettingsId = "OperationMode";
40   QString buffersSettingsId = "Buffers";
41
42   _showHighlights = viewSettings.value(showHighlightsSettingsId, false).toBool();
43   _operationMode = viewSettings.value(operationModeSettingsId, 0).toInt();
44   // read configured list of buffers to monitor/ignore
45   foreach(QVariant v, viewSettings.value(buffersSettingsId, QVariant()).toList())
46     _bufferIds << v.value<BufferId>();
47
48   viewSettings.notify(showHighlightsSettingsId, this, SLOT(showHighlightsSettingChanged(const QVariant &)));
49   viewSettings.notify(operationModeSettingsId, this, SLOT(operationModeSettingChanged(const QVariant &)));
50   viewSettings.notify(buffersSettingsId, this, SLOT(buffersSettingChanged(const QVariant &)));
51 }
52
53 bool ChatMonitorFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
54   Q_UNUSED(sourceParent)
55
56   Message::Flags flags = (Message::Flags)sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::FlagsRole).toInt();
57   if(flags & Message::Backlog || (!_showOwnMessages && flags & Message::Self))
58     return false;
59
60   Message::Type type = (Message::Type)sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::TypeRole).toInt();
61   if(!(type & (Message::Plain | Message::Notice | Message::Action)))
62     return false;
63
64   // ChatMonitorSettingsPage
65   if(_operationMode == ChatViewSettings::OptOut
66     && !(_showHighlights && flags & Message::Highlight)
67     &&  _bufferIds.contains(sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value<BufferId>()))
68     return false;
69   if(_operationMode == ChatViewSettings::OptIn
70     && !(_showHighlights && flags & Message::Highlight)
71     && !_bufferIds.contains(sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value<BufferId>()))
72     return false;
73
74   return true;
75 }
76
77 // override this to inject display of network and channel
78 QVariant ChatMonitorFilter::data(const QModelIndex &index, int role) const {
79   if(index.column() != ChatLineModel::SenderColumn || role != ChatLineModel::DisplayRole)
80     return MessageFilter::data(index, role);
81
82   BufferId bufid = data(index, ChatLineModel::BufferIdRole).value<BufferId>();
83   if(!bufid.isValid()) {
84     qDebug() << "ChatMonitorFilter::data(): chatline belongs to an invalid buffer!";
85     return QVariant();
86   }
87
88   QModelIndex source_index = mapToSource(index);
89
90   QStringList fields;
91   if(_showFields & NetworkField) {
92     fields << Client::networkModel()->networkName(bufid);
93   }
94   if(_showFields & BufferField) {
95     fields << Client::networkModel()->bufferName(bufid);
96   }
97
98   Message::Type messageType = (Message::Type)sourceModel()->data(source_index, MessageModel::TypeRole).toInt();
99   if(messageType & (Message::Plain | Message::Notice)) {
100     QString sender = MessageFilter::data(index, ChatLineModel::EditRole).toString();
101     fields << sender;
102   }
103   return QString("<%1>").arg(fields.join(":"));
104 }
105
106 void ChatMonitorFilter::addShowField(int field) {
107   if(_showFields & field)
108     return;
109
110   ChatViewSettings(idString()).setValue("ShowFields", _showFields | field);
111 }
112
113 void ChatMonitorFilter::removeShowField(int field) {
114   if(!(_showFields & field))
115     return;
116
117   ChatViewSettings(idString()).setValue("ShowFields", _showFields ^ field);
118 }
119
120 void ChatMonitorFilter::setShowOwnMessages(bool show) {
121   if(_showOwnMessages == show)
122     return;
123
124   ChatViewSettings(idString()).setValue("ShowOwnMsgs", show);
125 }
126
127 void ChatMonitorFilter::showFieldsSettingChanged(const QVariant &newValue) {
128   int newFields = newValue.toInt();
129   if(_showFields == newFields)
130     return;
131
132   _showFields = newFields;
133
134   int rows = rowCount();
135   if(rows == 0)
136     return;
137
138   emit dataChanged(index(0, ChatLineModel::SenderColumn), index(rows - 1, ChatLineModel::SenderColumn));
139 }
140
141 void ChatMonitorFilter::showOwnMessagesSettingChanged(const QVariant &newValue) {
142   _showOwnMessages = newValue.toBool();
143 }
144
145 void ChatMonitorFilter::showHighlightsSettingChanged(const QVariant &newValue) {
146   _showHighlights = newValue.toBool();
147 }
148
149 void ChatMonitorFilter::operationModeSettingChanged(const QVariant &newValue) {
150   _operationMode = newValue.toInt();
151 }
152
153 void ChatMonitorFilter::buffersSettingChanged(const QVariant &newValue) {
154   _bufferIds.clear();
155   foreach (QVariant v, newValue.toList()) {
156     _bufferIds << v.value<BufferId>();
157   }
158 }