Finally! All *Id types are now first-class types rather than tpyedefs.
[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 ChatView;
30 class ChatWidget;
31 class LayoutThread;
32
33 //! Displays the contents of a Buffer.
34 /**
35 */
36 class BufferWidget : public QWidget {
37   Q_OBJECT
38
39   Q_PROPERTY(BufferId currentBuffer READ currentBuffer WRITE setCurrentBuffer);
40
41 public:
42   BufferWidget(QWidget *parent = 0);
43   virtual ~BufferWidget();
44   void init();
45
46   QSize sizeHint() const;
47
48 signals:
49   void userInput(QString msg);
50   void aboutToClose();
51
52 public slots:
53   BufferId currentBuffer() const;
54   void setCurrentBuffer(BufferId bufferId);
55   void saveState();
56
57 private slots:
58   void enterPressed();
59   void removeBuffer(BufferId bufferId);
60
61 private:
62   Ui::BufferWidget ui;
63   QHash<BufferId, ChatWidget *> _chatWidgets;
64   BufferId _currentBuffer;
65 };
66
67
68 #endif