X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fbufferwidget.cpp;h=a6707053de9cf936f1e74fd66bcdecaea0d57984;hb=9204e98848ab202c0117aa1428fa0ea10b4dcd75;hp=5448221bfda86730f3aa27daa0ee7ad0f12a939f;hpb=a76b7bf7206e939b1503910825a3225119c89e8b;p=quassel.git diff --git a/src/qtui/bufferwidget.cpp b/src/qtui/bufferwidget.cpp index 5448221b..a6707053 100644 --- a/src/qtui/bufferwidget.cpp +++ b/src/qtui/bufferwidget.cpp @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -19,77 +19,42 @@ ***************************************************************************/ #include "bufferwidget.h" -#include "buffer.h" #include "chatline.h" +#include "chatline-old.h" +#include "chatview.h" #include "chatwidget.h" #include "settings.h" +#include "client.h" -BufferWidget::BufferWidget(QWidget *parent) : QWidget(parent) { - ui.setupUi(this); - connect(ui.inputEdit, SIGNAL(returnPressed()), this, SLOT(enterPressed())); -} +#include "global.h" -void BufferWidget::init() { +BufferWidget::BufferWidget(QWidget *parent) : AbstractBufferContainer(parent) { + ui.setupUi(this); } BufferWidget::~BufferWidget() { -} -void BufferWidget::setBuffer(Buffer *buf) { - ChatWidget *chatWidget; - if(_chatWidgets.contains(buf->uid())) { - chatWidget = _chatWidgets[buf->uid()]; - } else { - chatWidget = new ChatWidget(this); - chatWidget->init(networkName, bufferName); - QList lines; - QList msgs = buf->contents(); - foreach(AbstractUiMsg *msg, msgs) { - lines.append(dynamic_cast(msg)); - } - chatWidget->setContents(lines); - connect(buf, SIGNAL(msgAppended(AbstractUiMsg *)), chatWidget, SLOT(appendMsg(AbstractUiMsg *))); - connect(buf, SIGNAL(msgPrepended(AbstractUiMsg *)), chatWidget, SLOT(prependMsg(AbstractUiMsg *))); - _chatWidgets[buf->uid()] = chatWidget; - ui.stackedWidget->addWidget(chatWidget); - } - ui.stackedWidget->setCurrentWidget(chatWidget); - disconnect(this, SIGNAL(userInput(QString)), 0, 0); - connect(this, SIGNAL(userInput(QString)), buf, SLOT(processUserInput(QString))); - chatWidget->setFocusProxy(ui.inputEdit); - ui.inputEdit->setFocus(); - ui.ownNick->clear(); // TODO add nick history - // ui.ownNick->addItem(state->ownNick); } -void BufferWidget::saveState() { -} - -QSize BufferWidget::sizeHint() const { - return QSize(800,400); -} - -void BufferWidget::enterPressed() { - QStringList lines = ui.inputEdit->text().split('\n', QString::SkipEmptyParts); - foreach(QString msg, lines) { - if(msg.isEmpty()) continue; - emit userInput(msg); +AbstractChatView *BufferWidget::createChatView(BufferId id) { + AbstractChatView *chatView; + if(Global::SPUTDEV) { + chatView = new ChatView(Client::buffer(id), this); + } else { + chatView = new ChatWidget(id, this); } - ui.inputEdit->clear(); + ui.stackedWidget->addWidget(dynamic_cast(chatView)); + dynamic_cast(chatView)->setFocusProxy(this); + return chatView; } -void BufferWidget::setActive(bool act) { - if(act != active) { - active = act; - //renderContents(); - //scrollToEnd(); - } +void BufferWidget::removeChatView(AbstractChatView *view) { + ui.stackedWidget->removeWidget(dynamic_cast(view)); + dynamic_cast(view)->deleteLater(); } - -/* -void BufferWidget::displayMsg(Message msg) { - chatWidget->appendMsg(msg); +void BufferWidget::showChatView(AbstractChatView *view) { + if(!view) ui.stackedWidget->setCurrentWidget(ui.page); + else ui.stackedWidget->setCurrentWidget(dynamic_cast(view)); } -*/