This should fix a bug resulting in a crash, when a IrcUser object was not destroyed...
[quassel.git] / src / qtui / bufferwidget.cpp
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 #include "bufferwidget.h"
22 #include "buffer.h"
23 #include "chatline-old.h"
24 #include "chatwidget.h"
25 #include "settings.h"
26
27 BufferWidget::BufferWidget(QWidget *parent) : QWidget(parent) {
28   ui.setupUi(this);
29   connect(ui.inputEdit, SIGNAL(returnPressed()), this, SLOT(enterPressed()));
30 }
31
32 void BufferWidget::init() {
33
34 }
35
36 BufferWidget::~BufferWidget() {
37
38 }
39
40 void BufferWidget::setBuffer(Buffer *buf) {
41   /*
42   ChatView *chatView;
43   if(_chatViews.contains(buf->uid())) {
44     chatView = _chatViews[buf->uid()];
45   } else {
46     chatView = new ChatView(buf, this);
47     ui.stackedWidget->addWidget(chatView);
48     _chatViews[buf->uid()] = chatView;
49   }
50   ui.stackedWidget->setCurrentWidget(chatView);
51   disconnect(this, SIGNAL(userInput(QString)), 0, 0);
52   connect(this, SIGNAL(userInput(QString)), buf, SLOT(processUserInput(QString)));
53   //chatView->setFocusProxy(ui.inputEdit);
54   ui.inputEdit->setFocus();
55   ui.ownNick->clear();  // TODO add nick history
56 }
57   */
58   
59   // ui.ownNick->addItem(state->ownNick);
60
61   ChatWidget *chatWidget;
62   if(_chatWidgets.contains(buf->uid())) {
63      chatWidget = _chatWidgets[buf->uid()];
64   } else {
65     chatWidget = new ChatWidget(this);
66     chatWidget->init(buf->networkName(), buf->name());
67     QList<ChatLine *> lines;
68     QList<AbstractUiMsg *> msgs = buf->contents();
69     foreach(AbstractUiMsg *msg, msgs) {
70       lines.append(dynamic_cast<ChatLine*>(msg));
71     }
72     chatWidget->setContents(lines);
73     connect(buf, SIGNAL(msgAppended(AbstractUiMsg *)), chatWidget, SLOT(appendMsg(AbstractUiMsg *)));
74     connect(buf, SIGNAL(msgPrepended(AbstractUiMsg *)), chatWidget, SLOT(prependMsg(AbstractUiMsg *)));
75     _chatWidgets[buf->uid()] = chatWidget;
76     ui.stackedWidget->addWidget(chatWidget);
77   }
78   ui.stackedWidget->setCurrentWidget(chatWidget);
79   disconnect(this, SIGNAL(userInput(QString)), 0, 0);
80   connect(this, SIGNAL(userInput(QString)), buf, SLOT(processUserInput(QString)));
81   chatWidget->setFocusProxy(ui.inputEdit);
82   ui.inputEdit->setFocus();
83   ui.ownNick->clear();  // TODO add nick history
84   // ui.ownNick->addItem(state->ownNick);
85 }
86
87 void BufferWidget::saveState() {
88
89 }
90
91 QSize BufferWidget::sizeHint() const {
92   return QSize(800,400);
93 }
94
95 void BufferWidget::enterPressed() {
96   QStringList lines = ui.inputEdit->text().split('\n', QString::SkipEmptyParts);
97   foreach(QString msg, lines) {
98     if(msg.isEmpty()) continue;
99     emit userInput(msg);
100   }
101   ui.inputEdit->clear();
102 }
103
104 void BufferWidget::setActive(bool act) {
105   if(act != active) {
106     active = act;
107     //renderContents();
108     //scrollToEnd();
109   }
110 }
111
112
113 /*
114 void BufferWidget::displayMsg(Message msg) {
115   chatWidget->appendMsg(msg);
116 }
117 */
118