From: Manuel Nickschas Date: Thu, 22 May 2008 19:08:55 +0000 (+0000) Subject: Say hello to MessageFilter! X-Git-Tag: 0.3.0~405 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=fadb23192f41a04c6a8e16e69576c675a8c40c0a;hp=99bb37d9938f3d88ce7551ded454146359fadc03 Say hello to MessageFilter! --- diff --git a/src/client/client.pri b/src/client/client.pri index 0945919b..dab9cf94 100644 --- a/src/client/client.pri +++ b/src/client/client.pri @@ -7,7 +7,7 @@ HDRS += buffer.h buffersettings.h clientbacklogmanager.h treemodel.h networkmode client.h clientsettings.h clientsyncer.h quasselui.h mappedselectionmodel.h selectionmodelsynchronizer.h sputdev { - SRCS += messagemodel.cpp - HDRS += messagemodel.h + SRCS += messagefilter.cpp messagemodel.cpp + HDRS += messagefilter.h messagemodel.h } diff --git a/src/client/messagefilter.cpp b/src/client/messagefilter.cpp new file mode 100644 index 00000000..0c35ee9f --- /dev/null +++ b/src/client/messagefilter.cpp @@ -0,0 +1,36 @@ +/*************************************************************************** + * Copyright (C) 2005-08 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * 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. * + ***************************************************************************/ + +#include "messagefilter.h" + +MessageFilter::MessageFilter(MessageModel *source, const QList &buffers, QObject *parent) + : QSortFilterProxyModel(parent), + _bufferList(buffers) +{ + setSourceModel(source); + +} + +bool MessageFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const { + Q_UNUSED(sourceParent); + if(_bufferList.isEmpty()) return true; + BufferId id = sourceModel()->data(sourceModel()->index(sourceRow, 0), MessageModel::BufferIdRole).value(); + return _bufferList.contains(id); +} diff --git a/src/client/messagefilter.h b/src/client/messagefilter.h new file mode 100644 index 00000000..efabff6e --- /dev/null +++ b/src/client/messagefilter.h @@ -0,0 +1,42 @@ +/*************************************************************************** + * Copyright (C) 2005-08 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * 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. * + ***************************************************************************/ + +#ifndef MESSAGEFILTER_H_ +#define MESSAGEFILTER_H_ + +#include + +#include "messagemodel.h" +#include "types.h" + +class MessageFilter : public QSortFilterProxyModel { + Q_OBJECT + + public: + MessageFilter(MessageModel *, const QList &buffers = QList(), QObject *parent = 0); + + virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const; + + + private: + QList _bufferList; +}; + +#endif