Added getNetworkId(UserId user, const QString &network) to make the transition to...
[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 <QDropEvent>
26 #include <QSortFilterProxyModel>
27 #include "buffer.h"
28 #include "buffertreemodel.h"
29
30 /*****************************************
31  * Buffer View Filter
32  *****************************************/
33 class BufferViewFilter : public QSortFilterProxyModel {
34   Q_OBJECT
35   
36 public:
37   enum Mode {
38     NoActive = 0x01,
39     NoInactive = 0x02,
40     SomeNets = 0x04,
41     AllNets = 0x08,
42     NoChannels = 0x10,
43     NoQueries = 0x20,
44     NoServers = 0x40,
45     FullCustom = 0x80
46   };
47   Q_DECLARE_FLAGS(Modes, Mode)
48
49   BufferViewFilter(QAbstractItemModel *model, const Modes &mode, const QStringList &nets);
50   
51 public slots:
52   void invalidateMe();
53   void changeCurrent(const QModelIndex &, const QModelIndex &);
54   void doubleClickReceived(const QModelIndex &);
55   void select(const QModelIndex &);
56   void dropEvent(QDropEvent *);
57   void removeBuffer(const QModelIndex &);
58
59   
60 signals:
61   void currentChanged(const QModelIndex &, const QModelIndex &);
62   void doubleClicked(const QModelIndex &);
63   void selectionChanged(const QModelIndex &);
64   
65 private:
66   bool filterAcceptBuffer(const QModelIndex &) const;
67   bool filterAcceptNetwork(const QModelIndex &) const;
68   bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
69   bool lessThan(const QModelIndex &, const QModelIndex &);
70   void addBuffer(const uint &);
71   
72   Modes mode;
73   QStringList networks;
74   QList<uint> customBuffers;
75 };
76 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferViewFilter::Modes)    
77
78 #endif
79