minor api cleanup for requesting messages from backlog
[quassel.git] / src / client / messagefilter.h
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 #ifndef MESSAGEFILTER_H_
22 #define MESSAGEFILTER_H_
23
24 #include <QSortFilterProxyModel>
25
26 #include "bufferinfo.h"
27 #include "client.h"
28 #include "messagemodel.h"
29 #include "networkmodel.h"
30 #include "types.h"
31
32 class MessageFilter : public QSortFilterProxyModel {
33   Q_OBJECT
34
35 protected:
36   MessageFilter(QAbstractItemModel *source, QObject *parent = 0);
37
38 public:
39   MessageFilter(MessageModel *, const QList<BufferId> &buffers = QList<BufferId>(), QObject *parent = 0);
40
41   virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
42   virtual QString idString() const;
43   inline bool isSingleBufferFilter() const { return _validBuffers.count() == 1; }
44   BufferId singleBufferId() const { return *(_validBuffers.constBegin()); }
45   inline bool containsBuffer(const BufferId &id) const { return _validBuffers.contains(id); }
46
47 public slots:
48   void messageTypeFilterChanged();
49   void messageRedirectionChanged();
50   void requestBacklog();
51
52 protected:
53   QString bufferName() const { return Client::networkModel()->bufferName(singleBufferId()); }
54   BufferInfo::Type bufferType() const { return Client::networkModel()->bufferType(singleBufferId()); }
55   NetworkId networkId() const { return Client::networkModel()->networkId(singleBufferId()); }
56
57 private:
58   void init();
59
60   QSet<BufferId> _validBuffers;
61   mutable QSet<MsgId> _redirectedMsgs;
62   QMultiHash<QString, uint> _filteredQuitMsgs;
63   int _messageTypeFilter;
64
65   bool _userNoticesInDefaultBuffer;
66   bool _userNoticesInStatusBuffer;
67   bool _userNoticesInCurrentBuffer;
68
69   bool _serverNoticesInDefaultBuffer;
70   bool _serverNoticesInStatusBuffer;
71   bool _serverNoticesInCurrentBuffer;
72
73   bool _errorMsgsInDefaultBuffer;
74   bool _errorMsgsInStatusBuffer;
75   bool _errorMsgsInCurrentBuffer;
76 };
77
78 #endif