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