Say hello to MessageFilter!
authorManuel Nickschas <sputnick@quassel-irc.org>
Thu, 22 May 2008 19:08:55 +0000 (19:08 +0000)
committerManuel Nickschas <sputnick@quassel-irc.org>
Thu, 22 May 2008 19:08:55 +0000 (19:08 +0000)
src/client/client.pri
src/client/messagefilter.cpp [new file with mode: 0644]
src/client/messagefilter.h [new file with mode: 0644]

index 0945919..dab9cf9 100644 (file)
@@ -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 (file)
index 0000000..0c35ee9
--- /dev/null
@@ -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<BufferId> &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<BufferId>();
+  return _bufferList.contains(id);
+}
diff --git a/src/client/messagefilter.h b/src/client/messagefilter.h
new file mode 100644 (file)
index 0000000..efabff6
--- /dev/null
@@ -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 <QSortFilterProxyModel>
+
+#include "messagemodel.h"
+#include "types.h"
+
+class MessageFilter : public QSortFilterProxyModel {
+  Q_OBJECT
+
+  public:
+    MessageFilter(MessageModel *, const QList<BufferId> &buffers = QList<BufferId>(), QObject *parent = 0);
+
+    virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
+
+
+  private:
+    QList<BufferId> _bufferList;
+};
+
+#endif