Hide some of the bufferviews by default in order to not confuse new users too much.
[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   Q_PROPERTY(NetworkId currentNetwork READ currentNetwork WRITE setCurrentNetwork);
41
42 public:
43   BufferWidget(QWidget *parent = 0);
44   virtual ~BufferWidget();
45   void init();
46
47   QSize sizeHint() const;
48
49 signals:
50   void userInput(QString msg);
51   void aboutToClose();
52
53 public slots:
54   BufferId currentBuffer() const;
55   void setCurrentBuffer(BufferId bufferId);
56
57   NetworkId currentNetwork() const;
58   void setCurrentNetwork(NetworkId networkId);
59
60   void saveState();
61
62 private slots:
63   void enterPressed();
64   void removeBuffer(BufferId bufferId);
65
66 private:
67   Ui::BufferWidget ui;
68   QHash<BufferId, ChatWidget *> _chatWidgets;
69   BufferId _currentBuffer;
70   NetworkId _currentNetwork;
71 };
72
73
74 #endif