X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fawaylogfilter.cpp;h=f916e75911667642026da0c73afdd4c4fa0056cc;hp=8e5366b0f84d5548c64280274663c2d2bc256c68;hb=c64a887d0f05222590299fb2bb8d56fa9fadb16d;hpb=c91b08f855152297a89ec3586792f6616acd0eb9 diff --git a/src/qtui/awaylogfilter.cpp b/src/qtui/awaylogfilter.cpp index 8e5366b0..f916e759 100644 --- a/src/qtui/awaylogfilter.cpp +++ b/src/qtui/awaylogfilter.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2012 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,42 +15,46 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "awaylogfilter.h" AwayLogFilter::AwayLogFilter(MessageModel *model, QObject *parent) - : ChatMonitorFilter(model, parent) + : ChatMonitorFilter(model, parent) { } -bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const { - Q_UNUSED(sourceParent) - QModelIndex source_index = sourceModel()->index(sourceRow, 0); +bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const +{ + Q_UNUSED(sourceParent) + + QModelIndex source_index = sourceModel()->index(sourceRow, 0); - Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt(); - if(!(flags & Message::Backlog && flags & Message::Highlight)) - return false; + Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt(); + if (!(flags & Message::Backlog && flags & Message::Highlight)) + return false; - BufferId bufferId = sourceModel()->data(source_index, MessageModel::BufferIdRole).value(); - if(!bufferId.isValid()) { - return false; - } + BufferId bufferId = sourceModel()->data(source_index, MessageModel::BufferIdRole).value(); + if (!bufferId.isValid()) { + return false; + } - if(Client::networkModel()->lastSeenMsgId(bufferId) >= sourceModel()->data(source_index, MessageModel::MsgIdRole).value()) - return false; + if (Client::networkModel()->lastSeenMsgId(bufferId) >= sourceModel()->data(source_index, MessageModel::MsgIdRole).value()) + return false; - return true; + return true; } -QVariant AwayLogFilter::data(const QModelIndex &index, int role) const { - if(role != MessageModel::FlagsRole) - return ChatMonitorFilter::data(index, role); - QModelIndex source_index = mapToSource(index); - Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt(); - flags &= ~Message::Highlight; - return (int)flags; +QVariant AwayLogFilter::data(const QModelIndex &index, int role) const +{ + if (role != MessageModel::FlagsRole) + return ChatMonitorFilter::data(index, role); + + QModelIndex source_index = mapToSource(index); + Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt(); + flags &= ~Message::Highlight; + return (int)flags; }