Switch some dirty hacking to using real infrastructure. A Chatline now contains three...
[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   virtual void setSelectionModel(QItemSelectionModel *selectionModel);
46
47   void setConfig(BufferViewConfig *config);
48   inline BufferViewConfig *config() { return _config; }
49                                                                
50 public slots:
51   void setRootIndexForNetworkId(const NetworkId &networkId);
52   void removeSelectedBuffers();
53   
54 signals:
55   void removeBuffer(const QModelIndex &);
56
57 protected:
58   virtual void keyPressEvent(QKeyEvent *);
59   virtual void rowsInserted (const QModelIndex & parent, int start, int end);
60   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
61   virtual void wheelEvent(QWheelEvent *);
62   virtual QSize sizeHint() const;
63   virtual void focusInEvent(QFocusEvent *event) { QAbstractScrollArea::focusInEvent(event); }
64
65 private slots:
66   void joinChannel(const QModelIndex &index);
67   void toggleHeader(bool checked);
68   void showContextMenu(const QPoint &);
69   void layoutChanged();
70
71 private:
72   QPointer<BufferViewConfig> _config;
73 };
74
75
76 // ==============================
77 //  BufferView Dock
78 // ==============================
79 class BufferViewDock : public QDockWidget {
80   Q_OBJECT
81
82 public:
83   BufferViewDock(BufferViewConfig *config, QWidget *parent);
84   BufferViewDock(QWidget *parent);
85
86 public slots:
87   void bufferViewRenamed(const QString &newName);
88 };
89
90 #endif
91