520ba7667de195ba92b74dff2c85d44f1990c190
[quassel.git] / src / qtopia / mainwidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-07 by the Quassel IRC 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 "mainwidget.h"
22
23 #include "buffer.h"
24 #include "chatwidget.h"
25
26 MainWidget::MainWidget(QWidget *parent) : QWidget(parent) {
27   ui.setupUi(this);
28   connect(ui.inputLine, SIGNAL(returnPressed()), this, SLOT(enterPressed()));
29   currentBuffer = 0;
30 }
31
32 MainWidget::~MainWidget() {
33
34
35
36 }
37
38 void MainWidget::setBuffer(Buffer *buf) {
39   //  TODO update topic if changed; handle status buffer display
40   QString title = QString("%1 (%2): \"%3\"").arg(buf->name()).arg(buf->networkName()).arg(buf->topic());
41   ui.topicBar->setContents(title);
42
43   //ui.chatWidget->setStyleSheet("div { color: #777777; }");
44   //ui.chatWidget->setHtml("<style type=\"text/css\">.foo { color: #777777; } .bar { font-style: italic }</style>"
45   //                       "<div class=\"foo\">foo</div> <div class=\"bar\">bar</div> baz");
46   //ui.chatWidget->moveCursor(QTextCursor::End);
47   //ui.chatWidget->insertHtml("<div class=\"foo\"> brumm</div>");
48
49   ChatWidget *chatWidget;
50   if(!chatWidgets.contains(buf)) {
51     chatWidget = new ChatWidget(this);
52     QList<ChatLine *> lines;
53     QList<AbstractUiMsg *> msgs = buf->contents();
54     foreach(AbstractUiMsg *msg, msgs) {
55       lines.append((ChatLine*)(msg));
56     }
57     chatWidget->setContents(lines);
58     connect(buf, SIGNAL(msgAppended(AbstractUiMsg *)), chatWidget, SLOT(appendMsg(AbstractUiMsg *)));
59     connect(buf, SIGNAL(msgPrepended(AbstractUiMsg *)), chatWidget, SLOT(prependMsg(AbstractUiMsg *)));
60     //connect(buf, SIGNAL(topicSet(QString)), this, SLOT(setTopic(QString)));
61     //connect(buf, SIGNAL(ownNickSet(QString)), this, SLOT(setOwnNick(QString)));
62     ui.stack->addWidget(chatWidget);
63     chatWidgets.insert(buf, chatWidget);
64     chatWidget->setFocusProxy(ui.inputLine);
65   } else chatWidget = chatWidgets[buf];
66   ui.stack->setCurrentWidget(chatWidget);
67   ui.inputLine->setFocus();
68   currentBuffer = buf;
69 }
70
71 void MainWidget::enterPressed() {
72   QStringList lines = ui.inputLine->text().split('\n', QString::SkipEmptyParts);
73   foreach(QString msg, lines) {
74     if(msg.isEmpty()) continue;
75     if(currentBuffer) currentBuffer->processUserInput(msg);
76   }
77   ui.inputLine->clear();
78 }