Starting reorganization of files in preparation of separation of client and GUI.
[quassel.git] / src / qtgui / bufferview.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 _BUFFERVIEWWIDGET_H_
22 #define _BUFFERVIEWWIDGET_H_
23
24 #include <QtGui>
25 #include <QFlags>
26 #include "buffer.h"
27
28 /*****************************************
29  * Buffer View Filter
30  *****************************************/
31 class BufferViewFilter : public QSortFilterProxyModel {
32   Q_OBJECT
33   
34 public:
35   enum Mode {
36     NoActive = 0x01,
37     NoInactive = 0x02,
38     SomeNets = 0x04,
39     AllNets = 0x08,
40     NoChannels = 0x10,
41     NoQueries = 0x20,
42     NoServers = 0x40
43   };
44   Q_DECLARE_FLAGS(Modes, Mode)
45
46   BufferViewFilter(QAbstractItemModel *model, Modes mode, QStringList nets, QObject *parent = 0);
47   
48 public slots:
49   void invalidateMe();
50   void changeCurrent(const QModelIndex &, const QModelIndex &);
51   void doubleClickReceived(const QModelIndex &);
52   void select(const QModelIndex &, QItemSelectionModel::SelectionFlags);
53   
54 signals:
55   void currentChanged(const QModelIndex &, const QModelIndex &);
56   void doubleClicked(const QModelIndex &);
57   void updateSelection(const QModelIndex &, QItemSelectionModel::SelectionFlags);
58   
59 private:
60   bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
61
62   Modes mode;
63   QStringList networks;
64 };
65 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferViewFilter::Modes)    
66
67 /*****************************************
68  * The TreeView showing the Buffers
69  *****************************************/
70 class BufferView : public QTreeView {
71   Q_OBJECT
72   
73   public:
74     BufferView(QWidget *parent = 0);
75     void init();
76     void setModel(QAbstractItemModel *model);
77     void setFilteredModel(QAbstractItemModel *model, BufferViewFilter::Modes mode, QStringList nets);
78   
79     void dragEnterEvent(QDragEnterEvent *);
80
81   protected:
82     void rowsInserted (const QModelIndex & parent, int start, int end);
83 };
84
85
86 #endif
87