fixing strange looking CTCP ACTIONs (/me style message) in the chat monitor
[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 "buffer.h"
24 #include "client.h"
25 #include "chatlinemodel.h"
26 #include "networkmodel.h"
27
28 ChatMonitorFilter::ChatMonitorFilter(MessageModel *model, QObject *parent)
29   : MessageFilter(model, QList<BufferId>(), parent),
30     _initTime(QDateTime::currentDateTime())
31 {
32 }
33
34 bool ChatMonitorFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
35   Q_UNUSED(sourceParent)
36   Message::Type type = (Message::Type)sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::TypeRole).toInt();
37   Message::Flags flags = (Message::Flags)sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::FlagsRole).toInt();
38   if(!((type & (Message::Plain | Message::Notice | Message::Action)) || flags & Message::Self))
39     return false;
40
41   QDateTime msgTime = sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::TimestampRole).toDateTime();
42   return msgTime > _initTime;
43 }
44
45 // override this to inject display of network and channel
46 QVariant ChatMonitorFilter::data(const QModelIndex &index, int role) const {
47   if(index.column() != ChatLineModel::SenderColumn || role != ChatLineModel::DisplayRole)
48     return MessageFilter::data(index, role);
49
50   int showFields_ = showFields();
51     
52   BufferId bufid = data(index, ChatLineModel::BufferIdRole).value<BufferId>();
53   if(!bufid.isValid()) {
54     qDebug() << "ChatMonitorFilter::data(): chatline belongs to an invalid buffer!";
55     return QVariant();
56   }
57
58   QModelIndex source_index = mapToSource(index);
59   
60   QStringList fields;
61   if(showFields_ & NetworkField) {
62     fields << Client::networkModel()->networkName(bufid);
63   }
64   if(showFields_ & BufferField) {
65     fields << Client::networkModel()->bufferName(bufid);
66   }
67
68   Message::Type messageType = (Message::Type)sourceModel()->data(source_index, MessageModel::TypeRole).toInt();
69   if(messageType & (Message::Plain | Message::Notice)) {
70     QString sender = MessageFilter::data(index, role).toString();
71     // we have to strip leading and traling < / >
72     fields << sender.mid(1, sender.count() - 2);
73   }
74   return QString("<%1>").arg(fields.join(":"));
75 }
76
77 void ChatMonitorFilter::addShowField(int field) {
78   QtUiSettings s;
79   int fields = s.value(showFieldSettingId(), AllFields).toInt();
80   if(fields & field)
81     return;
82
83   fields |= field;
84   s.setValue(showFieldSettingId(), fields);
85   showFieldSettingsChanged();
86 }
87
88 void ChatMonitorFilter::removeShowField(int field) {
89   QtUiSettings s;
90   int fields = s.value(showFieldSettingId(), AllFields).toInt();
91   if(!(fields & field))
92     return;
93
94   fields ^= field;
95   s.setValue(showFieldSettingId(), fields);
96   showFieldSettingsChanged();
97 }
98
99 void ChatMonitorFilter::showFieldSettingsChanged() {
100   int rows = rowCount();
101   if(rows == 0)
102     return;
103
104   emit dataChanged(index(0, ChatLineModel::SenderColumn), index(rows - 1, ChatLineModel::SenderColumn));
105 }
106