- BufferWidget behaves now like a view
[quassel.git] / src / qtui / bufferwidget.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 _BUFFERWIDGET_H_
22 #define _BUFFERWIDGET_H_
23
24 #include "ui_bufferwidget.h"
25
26 #include "chatview.h"
27 #include "types.h"
28
29 class Network;
30 class ChatView;
31 class ChatWidget;
32 class LayoutThread;
33
34 #include "buffermodel.h"
35 #include <QItemSelectionModel>
36
37 //! Displays the contents of a Buffer.
38 /**
39 */
40 class BufferWidget : public QWidget {
41   Q_OBJECT
42
43 public:
44   BufferWidget(QWidget *parent = 0);
45   virtual ~BufferWidget();
46   void init();
47
48   inline BufferModel *model() { return _bufferModel; }
49   void setModel(BufferModel *bufferModel);
50
51   inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
52   void setSelectionModel(QItemSelectionModel *selectionModel);
53
54   Network *currentNetwork() const;
55   
56 signals:
57   void userInput(QString msg) const;
58   void aboutToClose();
59
60 protected slots:
61 //   virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
62 //   virtual void commitData(QWidget *editor);
63   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
64 //   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
65 //   virtual void editorDestroyed(QObject *editor);
66   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
67 //   virtual void rowsInserted(const QModelIndex &parent, int start, int end);
68 //   virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
69
70 private slots:
71   void enterPressed();
72   void changeNick(const QString &newNick) const;
73   void removeBuffer(BufferId bufferId);
74
75   void setCurrentBuffer(BufferId bufferId);
76   void updateNickSelector() const;
77
78 private:
79   Ui::BufferWidget ui;
80   QHash<BufferId, ChatWidget *> _chatWidgets;
81
82   QPointer<BufferModel> _bufferModel;
83   QPointer<QItemSelectionModel> _selectionModel;
84 };
85
86 #endif