Reset the input prior to processing it in order to prevent issues with per-chat histo...
[quassel.git] / src / uisupport / bufferviewfilter.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 BUFFERVIEWFILTER_H_
22 #define BUFFERVIEWFILTER_H_
23
24 #include <QAction>
25 #include <QDropEvent>
26 #include <QFlags>
27 #include <QPointer>
28 #include <QSet>
29 #include <QSortFilterProxyModel>
30
31 #include "types.h"
32 #include "bufferviewconfig.h"
33
34 /*****************************************
35  * Buffer View Filter
36  *****************************************/
37 class BufferViewFilter : public QSortFilterProxyModel {
38   Q_OBJECT
39
40 public:
41   enum Mode {
42     NoActive = 0x01,
43     NoInactive = 0x02,
44     SomeNets = 0x04,
45     AllNets = 0x08,
46     NoChannels = 0x10,
47     NoQueries = 0x20,
48     NoServers = 0x40,
49     FullCustom = 0x80
50   };
51   Q_DECLARE_FLAGS(Modes, Mode)
52
53   BufferViewFilter(QAbstractItemModel *model, BufferViewConfig *config = 0);
54
55   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
56   virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
57
58   QVariant data(const QModelIndex &index, int role) const;
59   QVariant checkedState(const QModelIndex &index) const;
60
61   bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
62   bool setCheckedState(const QModelIndex &index, Qt::CheckState state);
63
64   void setConfig(BufferViewConfig *config);
65   inline BufferViewConfig *config() const { return _config; }
66
67   virtual void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
68
69   QList<QAction *> actions(const QModelIndex &index);
70
71 public slots:
72   void checkPreviousCurrentForRemoval(const QModelIndex &current, const QModelIndex &previous);
73   void checkItemForRemoval(const QModelIndex &index) { checkItemsForRemoval(index, index); }
74   void checkItemsForRemoval(const QModelIndex &topLeft, const QModelIndex &bottomRight);
75
76 protected:
77   bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
78   bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
79   bool bufferLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
80   bool networkLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
81   virtual void customEvent(QEvent *event);
82
83 signals:
84   void _dataChanged(const QModelIndex &source_topLeft, const QModelIndex &source_bottomRight);
85   void configChanged();
86
87 private slots:
88   void configInitialized();
89   void enableEditMode(bool enable);
90   void showServerQueriesChanged();
91
92 private:
93   QPointer<BufferViewConfig> _config;
94   Qt::SortOrder _sortOrder;
95
96   bool _showServerQueries;
97   bool _editMode;
98   QAction _enableEditMode;
99   QSet<BufferId> _toAdd;
100   QSet<BufferId> _toTempRemove;
101   QSet<BufferId> _toRemove;
102
103   bool filterAcceptBuffer(const QModelIndex &) const;
104   bool filterAcceptNetwork(const QModelIndex &) const;
105   void addBuffer(const BufferId &bufferId) const;
106   void addBuffers(const QList<BufferId> &bufferIds) const;
107   static bool bufferIdLessThan(const BufferId &, const BufferId &);
108 };
109 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferViewFilter::Modes)
110
111 #endif // BUFFERVIEWFILTER_H_