Fix wordwrap when using Qt > 4.6.3
[quassel.git] / src / qtui / chatmonitorfilter.cpp
1 /***************************************************************************
2 *   Copyright (C) 2005-09 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 #include "clientignorelistmanager.h"
28
29 ChatMonitorFilter::ChatMonitorFilter(MessageModel *model, QObject *parent)
30   : MessageFilter(model, parent)
31 {
32   ChatViewSettings viewSettings(idString());
33   _showFields = viewSettings.value("ShowFields", AllFields).toInt();
34   _showOwnMessages = viewSettings.value("ShowOwnMsgs", true).toBool();
35   viewSettings.notify("ShowFields", this, SLOT(showFieldsSettingChanged(const QVariant &)));
36   viewSettings.notify("ShowOwnMsgs", this, SLOT(showOwnMessagesSettingChanged(const QVariant &)));
37
38   // ChatMonitorSettingsPage
39   QString showHighlightsSettingsId = "ShowHighlights";
40   QString operationModeSettingsId = "OperationMode";
41   QString buffersSettingsId = "Buffers";
42
43   _showHighlights = viewSettings.value(showHighlightsSettingsId, false).toBool();
44   _operationMode = viewSettings.value(operationModeSettingsId, 0).toInt();
45   // read configured list of buffers to monitor/ignore
46   foreach(QVariant v, viewSettings.value(buffersSettingsId, QVariant()).toList())
47     _bufferIds << v.value<BufferId>();
48
49   viewSettings.notify(showHighlightsSettingsId, this, SLOT(showHighlightsSettingChanged(const QVariant &)));
50   viewSettings.notify(operationModeSettingsId, this, SLOT(operationModeSettingChanged(const QVariant &)));
51   viewSettings.notify(buffersSettingsId, this, SLOT(buffersSettingChanged(const QVariant &)));
52 }
53
54 bool ChatMonitorFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
55   Q_UNUSED(sourceParent)
56
57   QModelIndex source_index = sourceModel()->index(sourceRow, 0);
58
59   Message::Flags flags = (Message::Flags)source_index.data(MessageModel::FlagsRole).toInt();
60   if(flags & Message::Backlog || (!_showOwnMessages && flags & Message::Self))
61     return false;
62
63   Message::Type type = (Message::Type)source_index.data(MessageModel::TypeRole).toInt();
64   if(!(type & (Message::Plain | Message::Notice | Message::Action)))
65     return false;
66
67   BufferId bufferId = source_index.data(MessageModel::BufferIdRole).value<BufferId>();
68
69   // ChatMonitorSettingsPage
70   if(_operationMode == ChatViewSettings::OptOut
71     && !(_showHighlights && flags & Message::Highlight)
72     &&  _bufferIds.contains(bufferId))
73     return false;
74   if(_operationMode == ChatViewSettings::OptIn
75     && !(_showHighlights && flags & Message::Highlight)
76     && !_bufferIds.contains(bufferId))
77     return false;
78
79   // ignorelist handling
80   // only match if message is not flagged as server msg
81   if(!(flags & Message::ServerMsg) && Client::ignoreListManager()
82       && Client::ignoreListManager()->match(source_index.data(MessageModel::MessageRole).value<Message>(), Client::networkModel()->networkName(bufferId)))
83     return false;
84   return true;
85 }
86
87 // override this to inject display of network and channel
88 QVariant ChatMonitorFilter::data(const QModelIndex &index, int role) const {
89   if(index.column() != ChatLineModel::SenderColumn || role != ChatLineModel::DisplayRole)
90     return MessageFilter::data(index, role);
91
92   BufferId bufid = data(index, ChatLineModel::BufferIdRole).value<BufferId>();
93   if(!bufid.isValid()) {
94     qDebug() << "ChatMonitorFilter::data(): chatline belongs to an invalid buffer!";
95     return QVariant();
96   }
97
98   QModelIndex source_index = mapToSource(index);
99
100   QStringList fields;
101   if(_showFields & NetworkField) {
102     fields << Client::networkModel()->networkName(bufid);
103   }
104   if(_showFields & BufferField) {
105     fields << Client::networkModel()->bufferName(bufid);
106   }
107
108   Message::Type messageType = (Message::Type)source_index.data(MessageModel::TypeRole).toInt();
109   if(messageType & (Message::Plain | Message::Notice)) {
110     QString sender = MessageFilter::data(index, ChatLineModel::EditRole).toString();
111     fields << sender;
112   }
113   return QString("<%1>").arg(fields.join(":"));
114 }
115
116 void ChatMonitorFilter::addShowField(int field) {
117   if(_showFields & field)
118     return;
119
120   ChatViewSettings(idString()).setValue("ShowFields", _showFields | field);
121 }
122
123 void ChatMonitorFilter::removeShowField(int field) {
124   if(!(_showFields & field))
125     return;
126
127   ChatViewSettings(idString()).setValue("ShowFields", _showFields ^ field);
128 }
129
130 void ChatMonitorFilter::setShowOwnMessages(bool show) {
131   if(_showOwnMessages == show)
132     return;
133
134   ChatViewSettings(idString()).setValue("ShowOwnMsgs", show);
135 }
136
137 void ChatMonitorFilter::showFieldsSettingChanged(const QVariant &newValue) {
138   int newFields = newValue.toInt();
139   if(_showFields == newFields)
140     return;
141
142   _showFields = newFields;
143
144   int rows = rowCount();
145   if(rows == 0)
146     return;
147
148   emit dataChanged(index(0, ChatLineModel::SenderColumn), index(rows - 1, ChatLineModel::SenderColumn));
149 }
150
151 void ChatMonitorFilter::showOwnMessagesSettingChanged(const QVariant &newValue) {
152   _showOwnMessages = newValue.toBool();
153 }
154
155 void ChatMonitorFilter::showHighlightsSettingChanged(const QVariant &newValue) {
156   _showHighlights = newValue.toBool();
157 }
158
159 void ChatMonitorFilter::operationModeSettingChanged(const QVariant &newValue) {
160   _operationMode = newValue.toInt();
161 }
162
163 void ChatMonitorFilter::buffersSettingChanged(const QVariant &newValue) {
164   _bufferIds.clear();
165   foreach (QVariant v, newValue.toList()) {
166     _bufferIds << v.value<BufferId>();
167   }
168   invalidateFilter();
169 }