X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatview.cpp;h=ff0460aa15abfa3626ffe22af3651e7d431e80cb;hp=be2cbc62debcd9564a20c3c1d4a3c65469b98878;hb=70ededc490cb201e52b6d8ca4c2364d4a001b6c4;hpb=e1b6d538b7c4cc279f9218614e23adb5d8a81fe5 diff --git a/src/qtui/chatview.cpp b/src/qtui/chatview.cpp index be2cbc62..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,32 +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); + + _lastScrollbarPos = verticalScrollBar()->maximum(); + connect(verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(verticalScrollbarChanged(int))); } -ChatView::~ChatView() { +void ChatView::resizeEvent(QResizeEvent *event) { +// 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 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::verticalScrollbarChanged(int newPos) { + QAbstractSlider *vbar = verticalScrollBar(); + Q_ASSERT(vbar); -ChatScene *ChatView::scene() const { - return _scene; -} + if(newPos < _lastScrollbarPos) { + int relativePos = 100; + if(vbar->maximum() - vbar->minimum() != 0) + relativePos = (newPos - vbar->minimum()) * 100 / (vbar->maximum() - vbar->minimum()); -void ChatView::resizeEvent(QResizeEvent *event) { - scene()->setWidth(event->size().width() - 2); // FIXME figure out why we have to hardcode the -2 here - verticalScrollBar()->setValue(verticalScrollBar()->maximum()); + if(relativePos < 20) { + scene()->requestBacklog(); + } + } + _lastScrollbarPos = newPos; } -void ChatView::sceneHeightChanged(qreal h) { - Q_UNUSED(h) - bool scrollable = qAbs(verticalScrollBar()->value() - verticalScrollBar()->maximum()) <= 2; // be a bit tolerant here, also FIXME (why we need this?) - setSceneRect(scene()->sceneRect()); - if(scrollable) verticalScrollBar()->setValue(verticalScrollBar()->maximum()); -} +MsgId ChatView::lastMsgId() const { + if(!scene()) + return MsgId(); -void ChatView::clear() -{ + QAbstractItemModel *model = scene()->model(); + if(!model || model->rowCount() == 0) + return MsgId(); + + return model->data(model->index(model->rowCount() - 1, 0), MessageModel::MsgIdRole).value(); }