Implemented Custom Views (configurable via drag and drop)
[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     FullCustom = 0x80
45   };
46   Q_DECLARE_FLAGS(Modes, Mode)
47
48   BufferViewFilter(QAbstractItemModel *model, Modes mode, QStringList nets, QObject *parent = 0);
49   
50 public slots:
51   void invalidateMe();
52   void changeCurrent(const QModelIndex &, const QModelIndex &);
53   void doubleClickReceived(const QModelIndex &);
54   void select(const QModelIndex &, QItemSelectionModel::SelectionFlags);
55   void enterDrag();
56   void leaveDrag();
57   void addBuffer(const uint &, const QString &);
58   
59 signals:
60   void currentChanged(const QModelIndex &, const QModelIndex &);
61   void doubleClicked(const QModelIndex &);
62   void updateSelection(const QModelIndex &, QItemSelectionModel::SelectionFlags);
63   
64 private:
65   bool filterAcceptBuffer(const QModelIndex &) const;
66   bool filterAcceptNetwork(const QModelIndex &) const;
67   bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
68   bool lessThan(const QModelIndex &, const QModelIndex &);
69
70   Modes mode;
71   QStringList networks;
72   QList<uint> customBuffers;
73 };
74 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferViewFilter::Modes)    
75
76 #endif
77