Reorganizing of the Quassel architecture is almost done. Client and GUI have been...
[quassel.git] / src / qtgui / bufferviewfilter.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
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) any later version.                                   *
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 <QFlags>
25 #include <QSortFilterProxyModel>
26 #include "buffer.h"
27 #include "buffertreemodel.h"
28
29 /*****************************************
30  * Buffer View Filter
31  *****************************************/
32 class BufferViewFilter : public QSortFilterProxyModel {
33   Q_OBJECT
34   
35 public:
36   enum Mode {
37     NoActive = 0x01,
38     NoInactive = 0x02,
39     SomeNets = 0x04,
40     AllNets = 0x08,
41     NoChannels = 0x10,
42     NoQueries = 0x20,
43     NoServers = 0x40
44   };
45   Q_DECLARE_FLAGS(Modes, Mode)
46
47   BufferViewFilter(QAbstractItemModel *model, Modes mode, QStringList nets, QObject *parent = 0);
48   
49 public slots:
50   void invalidateMe();
51   void changeCurrent(const QModelIndex &, const QModelIndex &);
52   void doubleClickReceived(const QModelIndex &);
53   void select(const QModelIndex &, QItemSelectionModel::SelectionFlags);
54   
55 signals:
56   void currentChanged(const QModelIndex &, const QModelIndex &);
57   void doubleClicked(const QModelIndex &);
58   void updateSelection(const QModelIndex &, QItemSelectionModel::SelectionFlags);
59   
60 private:
61   bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
62
63   Modes mode;
64   QStringList networks;
65 };
66 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferViewFilter::Modes)    
67
68 #endif
69