Merging r780:786 from trunk to branches/0.3. Plus some work-in-progress.
[quassel.git] / src / uisupport / bufferview.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 BUFFERVIEW_H_
22 #define BUFFERVIEW_H_
23
24 #include <QDockWidget>
25 #include <QModelIndex>
26 #include <QTreeView>
27 #include <QPointer>
28
29 #include "bufferviewconfig.h"
30
31 #include "types.h"
32
33 /*****************************************
34  * The TreeView showing the Buffers
35  *****************************************/
36 class BufferView : public QTreeView {
37   Q_OBJECT
38   
39 public:
40   BufferView(QWidget *parent = 0);
41   void init();
42
43   void setModel(QAbstractItemModel *model);
44   void setFilteredModel(QAbstractItemModel *model, BufferViewConfig *config);
45
46   void setConfig(BufferViewConfig *config);
47   inline BufferViewConfig *config() { return _config; }
48                                                                
49 public slots:
50   void setRootIndexForNetworkId(const NetworkId &networkId);
51   
52 signals:
53   void removeBuffer(const QModelIndex &);
54
55 protected:
56   virtual void keyPressEvent(QKeyEvent *);
57   virtual void rowsInserted (const QModelIndex & parent, int start, int end);
58   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
59   virtual void wheelEvent(QWheelEvent *);
60   virtual QSize sizeHint() const;
61   virtual void focusInEvent(QFocusEvent *event) { QAbstractScrollArea::focusInEvent(event); }
62
63 private slots:
64   void joinChannel(const QModelIndex &index);
65   void toggleHeader(bool checked);
66   void showContextMenu(const QPoint &);
67   void layoutChanged();
68
69 private:
70   QPointer<BufferViewConfig> _config;
71 };
72
73
74 // ==============================
75 //  BufferView Dock
76 // ==============================
77 class BufferViewDock : public QDockWidget {
78   Q_OBJECT
79
80 public:
81   BufferViewDock(BufferViewConfig *config, QWidget *parent);
82   BufferViewDock(QWidget *parent);
83
84 public slots:
85   void bufferViewRenamed(const QString &newName);
86 };
87
88 #endif
89