c3c7aa356228a6d1b7400392fde936e781d9c598
[quassel.git] / src / qtui / bufferwidget.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by The Quassel Team                             *
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) any later version.                                   *
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 "global.h"
27
28 class Buffer;
29 struct BufferState;
30 class ChatWidget;
31 class LayoutThread;
32
33 //!\brief Displays the contents of a Buffer.
34 /** A BufferWidget usually includes a topic line, a nicklist, the chat itself, and an input line.
35  * For server buffers or queries, there is of course no nicklist.
36  * The contents of the chat is rendered by a ChatWidget.
37  */
38 class BufferWidget : public QWidget {
39   Q_OBJECT
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   void setBuffer(Buffer *);
54   void saveState();
55                   
56 private slots:
57   void enterPressed();
58   void setActive(bool act = true);
59   
60   
61 private:
62   Ui::BufferWidget ui;
63   QHash<uint, ChatWidget*> _chatWidgets;
64   bool active;
65   
66   QString networkName;
67   QString bufferName;
68 };
69
70
71 #endif