Move QssParser out of UiStyle
[quassel.git] / src / qtui / awaylogfilter.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 "awaylogfilter.h"
22
23 AwayLogFilter::AwayLogFilter(MessageModel *model, QObject *parent)
24   : ChatMonitorFilter(model, parent)
25 {
26 }
27
28 bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const {
29   Q_UNUSED(sourceParent)
30
31   QModelIndex source_index = sourceModel()->index(sourceRow, 0);
32
33   Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt();
34   if(!(flags & Message::Backlog && flags & Message::Highlight))
35     return false;
36
37   BufferId bufferId = sourceModel()->data(source_index, MessageModel::BufferIdRole).value<BufferId>();
38   if(!bufferId.isValid()) {
39     return false;
40   }
41
42   if(Client::networkModel()->lastSeenMsgId(bufferId) >= sourceModel()->data(source_index, MessageModel::MsgIdRole).value<MsgId>())
43     return false;
44
45   return true;
46 }
47
48 QVariant AwayLogFilter::data(const QModelIndex &index, int role) const {
49   if(role != MessageModel::FlagsRole)
50     return ChatMonitorFilter::data(index, role);
51
52   QModelIndex source_index = mapToSource(index);
53   Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt();
54   flags &= ~Message::Highlight;
55   return (int)flags;
56 }