Renaming the classes and .ui files that got temp names because of collisions
[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
33 #include "buffermodel.h"
34 #include <QItemSelectionModel>
35
36 //! Displays the contents of a Buffer.
37 /**
38 */
39 class BufferWidget : public QWidget {
40   Q_OBJECT
41
42 public:
43   BufferWidget(QWidget *parent = 0);
44   virtual ~BufferWidget();
45   void init();
46
47   inline BufferModel *model() { return _bufferModel; }
48   void setModel(BufferModel *bufferModel);
49
50   inline QItemSelectionModel *selectionModel() const { return _selectionModel; }
51   void setSelectionModel(QItemSelectionModel *selectionModel);
52   
53 protected slots:
54 //   virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
55 //   virtual void commitData(QWidget *editor);
56   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
57 //   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
58 //   virtual void editorDestroyed(QObject *editor);
59   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
60 //   virtual void rowsInserted(const QModelIndex &parent, int start, int end);
61 //   virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
62
63 private slots:
64   void removeBuffer(BufferId bufferId);
65   void setCurrentBuffer(BufferId bufferId);
66
67 private:
68   Ui::BufferWidget ui;
69   QHash<BufferId, ChatWidget *> _chatWidgets;
70
71   QPointer<BufferModel> _bufferModel;
72   QPointer<QItemSelectionModel> _selectionModel;
73 };
74
75 #endif