66ee467b334cdb7b750213c686312076b0a3aad2
[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   
53 signals:
54   void removeBuffer(const QModelIndex &);
55
56 protected:
57   virtual void keyPressEvent(QKeyEvent *);
58   virtual void rowsInserted (const QModelIndex & parent, int start, int end);
59   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
60   virtual void wheelEvent(QWheelEvent *);
61   virtual QSize sizeHint() const;
62   virtual void focusInEvent(QFocusEvent *event) { QAbstractScrollArea::focusInEvent(event); }
63
64 private slots:
65   void joinChannel(const QModelIndex &index);
66   void toggleHeader(bool checked);
67   void showContextMenu(const QPoint &);
68   void layoutChanged();
69
70 private:
71   QPointer<BufferViewConfig> _config;
72 };
73
74
75 // ==============================
76 //  BufferView Dock
77 // ==============================
78 class BufferViewDock : public QDockWidget {
79   Q_OBJECT
80
81 public:
82   BufferViewDock(BufferViewConfig *config, QWidget *parent);
83   BufferViewDock(QWidget *parent);
84
85 public slots:
86   void bufferViewRenamed(const QString &newName);
87 };
88
89 #endif
90