X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;h=ff0460aa15abfa3626ffe22af3651e7d431e80cb;hp=ffd9e72a8782700e64f5426f540955875420d273;hb=70ededc490cb201e52b6d8ca4c2364d4a001b6c4;hpb=e528271e366acaa788b420bdfab8e1dd03b43e12 diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index ffd9e72a..ff0460aa 100644 --- a/src/qtui/chatview.cpp +++ b/src/qtui/chatview.cpp @@ -21,7 +21,6 @@ #include #include -#include "buffer.h" #include "chatlinemodelitem.h" #include "chatscene.h" #include "chatview.h" @@ -29,15 +28,20 @@ #include "messagefilter.h" #include "quasselui.h" -ChatView::ChatView(Buffer *buf, QWidget *parent) : QGraphicsView(parent), AbstractChatView() { +ChatView::ChatView(BufferId bufferId, QWidget *parent) + : QGraphicsView(parent), + AbstractChatView() +{ QList filterList; - filterList.append(buf->bufferInfo().bufferId()); + filterList.append(bufferId); MessageFilter *filter = new MessageFilter(Client::messageModel(), filterList, this); init(filter); - } -ChatView::ChatView(MessageFilter *filter, QWidget *parent) : QGraphicsView(parent), AbstractChatView() { +ChatView::ChatView(MessageFilter *filter, QWidget *parent) + : QGraphicsView(parent), + AbstractChatView() +{ init(filter); } @@ -46,69 +50,51 @@ void ChatView::init(MessageFilter *filter) { setAlignment(Qt::AlignBottom); setInteractive(true); - _scene = new ChatScene(filter, filter->idString(), this); - connect(_scene, SIGNAL(heightChanged(qreal)), this, SLOT(sceneHeightChanged(qreal))); + _scene = new ChatScene(filter, filter->idString(), viewport()->width(), this); + connect(_scene, SIGNAL(sceneHeightChanged(qreal)), this, SLOT(sceneHeightChanged(qreal))); setScene(_scene); -} - -ChatView::~ChatView() { -} - - -ChatScene *ChatView::scene() const { - return _scene; + _lastScrollbarPos = verticalScrollBar()->maximum(); + connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int))); } void ChatView::resizeEvent(QResizeEvent *event) { - scene()->setWidth(event->size().width() - 2); // FIXME figure out why we have to hardcode the -2 here +// scene()->setWidth(event->size().width() - 2); // FIXME figure out why we have to hardcode the -2 here + QGraphicsView::resizeEvent(event); + scene()->setWidth(viewport()->width()); verticalScrollBar()->setValue(verticalScrollBar()->maximum()); } -void ChatView::sceneHeightChanged(qreal h) { - Q_UNUSED(h) - bool scrollable = verticalScrollBar()->value() == verticalScrollBar()->maximum(); - setSceneRect(scene()->sceneRect()); - if(scrollable) verticalScrollBar()->setValue(verticalScrollBar()->maximum()); +void ChatView::sceneHeightChanged(qreal dh) { + QAbstractSlider *vbar = verticalScrollBar(); + Q_ASSERT(vbar); + if(vbar->maximum() - vbar->value() <= dh + 5) // in case we had scrolled only about half a line to the bottom we allow a grace of 5 + vbar->setValue(vbar->maximum()); } -void ChatView::clear() -{ -} +void ChatView::verticalScrollbarChanged(int newPos) { + QAbstractSlider *vbar = verticalScrollBar(); + Q_ASSERT(vbar); -void ChatView::prependMsg(AbstractUiMsg *msg) { - //ChatLine *line = dynamic_cast(msg); - //Q_ASSERT(line); - //prependChatLine(line); -} + if(newPos < _lastScrollbarPos) { + int relativePos = 100; + if(vbar->maximum() - vbar->minimum() != 0) + relativePos = (newPos - vbar->minimum()) * 100 / (vbar->maximum() - vbar->minimum()); -void ChatView::prependChatLine(ChatLine *line) { - //qDebug() << "prepending"; + if(relativePos < 20) { + scene()->requestBacklog(); + } + } + _lastScrollbarPos = newPos; } -void ChatView::prependChatLines(QList clist) { +MsgId ChatView::lastMsgId() const { + if(!scene()) + return MsgId(); -} - -void ChatView::appendMsg(AbstractUiMsg *msg) { - //ChatLine *line = dynamic_cast(msg); - //Q_ASSERT(line); - //appendChatLine(line); -} - -void ChatView::appendChatLine(ChatLine *line) { - //qDebug() << "appending"; -} + QAbstractItemModel *model = scene()->model(); + if(!model || model->rowCount() == 0) + return MsgId(); - -void ChatView::appendChatLines(QList list) { - //foreach(ChatLine *line, list) { - - //} + return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value(); } - -void ChatView::setContents(const QList &list) { - //qDebug() << "setting" << list.count(); - //appendChatLines(list); -} -