Make the newly arrived topicbutton display background colors and font styles.
[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   inline BufferId currentBuffer() const { return _currentBuffer; }
54   
55 protected slots:
56 //   virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
57 //   virtual void commitData(QWidget *editor);
58   virtual void currentChanged(const QModelIndex &current, const QModelIndex &previous);
59 //   virtual void dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
60 //   virtual void editorDestroyed(QObject *editor);
61   virtual void rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end);
62 //   virtual void rowsInserted(const QModelIndex &parent, int start, int end);
63 //   virtual void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
64
65 private slots:
66   void removeBuffer(BufferId bufferId);
67   void setCurrentBuffer(BufferId bufferId);
68
69 private:
70   Ui::BufferWidget ui;
71   QHash<BufferId, ChatWidget *> _chatWidgets;
72   QHash<BufferId, ChatView *> _chatViews;
73
74   QPointer<BufferModel> _bufferModel;
75   QPointer<QItemSelectionModel> _selectionModel;
76
77   BufferId _currentBuffer;
78 };
79
80 #endif