bde11c728143e3f19bac23a041339d9086c8f701
[quassel.git] / gui / channelwidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005 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 "channelwidget.h"
22
23 #include <QtGui>
24 #include <iostream>
25
26 ChannelWidget::ChannelWidget(QWidget *parent) : QWidget(parent) {
27   ui.setupUi(this);
28   //ui.lineEdit->setText("foobar");
29
30 /*  //ui.splitter->
31   ui.textBrowser->setHtml("[17:21] <em>--> Dante has joined #quassel (~hurz@p1af2242.dip.t-dialin.net)</em><br>"
32                           "[17:21] <em>--> Sput has joined #quassel (~Sput42@vincent.mindpool.net)</em><br>"
33                           "[17:23] &lt;<b>Dante</b>&gt; Das sieht ja soweit schonmal Klasse aus!<br>"
34                           "[17:23] &lt;<b>Sput</b>&gt; Find ich auch... schade dass es noch nix tut :p<br>"
35                           "[17:24] &lt;<b>Dante</b>&gt; Das wird sich ja gottseidank bald ändern.<br>"
36                           "[17:24] &lt;<b>Sput</b>&gt; Wollen wir's hoffen :D"
37                           );
38  ui.listWidget->addItem("@Dante");
39  ui.listWidget->addItem("@Sput");
40   */
41   //connect(&core, SIGNAL(outputLine( const QString& )), ui.textBrowser, SLOT(insertPlainText(const QString &)));
42   //connect(ui.lineEdit, SIGNAL(
43   connect(&core, SIGNAL(outputLine( const QString& )), ui.textBrowser, SLOT(insertPlainText(const QString &)));
44   connect(ui.lineEdit, SIGNAL(returnPressed()), this, SLOT(enterPressed()));
45   connect(this, SIGNAL(inputLine( const QString& )), &core, SLOT(inputLine( const QString& )));
46   core.start();
47   core.connectToIrc("irc.quakenet.org");
48 }
49
50 void ChannelWidget::enterPressed() {
51   emit inputLine(ui.lineEdit->text());
52   ui.lineEdit->clear();
53 }
54
55