Bring back dynamic backlog fetching (move scrollbar slider to the very top to get...
[quassel.git] / src / qtui / bufferwidget.cpp
index fc501c2..c1e992d 100644 (file)
  ***************************************************************************/
 
 #include "bufferwidget.h"
-#include "buffer.h"
-#include "chatline-old.h"
-#include "chatwidget.h"
+#include "chatview.h"
 #include "settings.h"
+#include "client.h"
 
-BufferWidget::BufferWidget(QWidget *parent) : QWidget(parent) {
-  ui.setupUi(this);
-  connect(ui.inputEdit, SIGNAL(returnPressed()), this, SLOT(enterPressed()));
-}
-
-void BufferWidget::init() {
+#include "global.h"
 
+BufferWidget::BufferWidget(QWidget *parent) : AbstractBufferContainer(parent) {
+  ui.setupUi(this);
 }
 
 BufferWidget::~BufferWidget() {
 
 }
 
-void BufferWidget::setBuffer(Buffer *buf) {
-  /*
+AbstractChatView *BufferWidget::createChatView(BufferId id) {
   ChatView *chatView;
-  if(_chatViews.contains(buf->uid())) {
-    chatView = _chatViews[buf->uid()];
-  } else {
-    chatView = new ChatView(buf, this);
-    ui.stackedWidget->addWidget(chatView);
-    _chatViews[buf->uid()] = chatView;
-  }
-  ui.stackedWidget->setCurrentWidget(chatView);
-  disconnect(this, SIGNAL(userInput(QString)), 0, 0);
-  connect(this, SIGNAL(userInput(QString)), buf, SLOT(processUserInput(QString)));
-  //chatView->setFocusProxy(ui.inputEdit);
-  ui.inputEdit->setFocus();
-  ui.ownNick->clear();  // TODO add nick history
+  chatView = new ChatView(Client::buffer(id), this);
+  _chatViews[id] = chatView;
+  ui.stackedWidget->addWidget(chatView);
+  chatView->setFocusProxy(this);
+  chatView->setBufferForBacklogFetching(id);
+  return chatView;
 }
-  */
-  
-  // ui.ownNick->addItem(state->ownNick);
-
-  ChatWidget *chatWidget;
-  if(_chatWidgets.contains(buf)) {
-     chatWidget = _chatWidgets[buf];
-  } else {
-    chatWidget = new ChatWidget(this);
-    chatWidget->init(buf->networkName(), buf->name());
-    QList<ChatLine *> lines;
-    QList<AbstractUiMsg *> msgs = buf->contents();
-    foreach(AbstractUiMsg *msg, msgs) {
-      lines.append(dynamic_cast<ChatLine*>(msg));
-    }
-    chatWidget->setContents(lines);
-    connect(buf, SIGNAL(destroyed(QObject *)), this, SLOT(bufferDestroyed(QObject *)));
-    connect(buf, SIGNAL(msgAppended(AbstractUiMsg *)), chatWidget, SLOT(appendMsg(AbstractUiMsg *)));
-    connect(buf, SIGNAL(msgPrepended(AbstractUiMsg *)), chatWidget, SLOT(prependMsg(AbstractUiMsg *)));
-    _chatWidgets[buf] = 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::bufferDestroyed(QObject *buf) {
-  QWidget *widget = _chatWidgets[(Buffer*)buf];
-  ui.stackedWidget->removeWidget(widget);
-  widget->deleteLater();
-}
-
-void BufferWidget::saveState() {
 
+void BufferWidget::removeChatView(BufferId id) {
+  QWidget *view = _chatViews.value(id, 0);
+  if(!view) return;
+  ui.stackedWidget->removeWidget(view);
+  view->deleteLater();
+  _chatViews.take(id);
 }
 
-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);
-  }
-  ui.inputEdit->clear();
-}
-
-void BufferWidget::setActive(bool act) {
-  if(act != active) {
-    active = act;
-    //renderContents();
-    //scrollToEnd();
-  }
-}
-
-
-
-/*
-void BufferWidget::displayMsg(Message msg) {
-  chatWidget->appendMsg(msg);
+void BufferWidget::showChatView(BufferId id) {
+  if(!id.isValid()) ui.stackedWidget->setCurrentWidget(ui.page);
+  else ui.stackedWidget->setCurrentWidget(_chatViews.value(id));
 }
-*/