X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.h;h=ce56f6b2a721208dc7b3827403f98abca4efcacc;hp=70605ccdfb97942ff5929f4c13a3bf89f90c0ff7;hb=9d22ec1fd8e8652744e6ea6c91de4a6ec5b2146c;hpb=d7acce94cb3a4090e31919c90644f9df5ad81c37 diff --git a/src/qtui/chatscene.h b/src/qtui/chatscene.h index 70605ccd..ce56f6b2 100644 --- a/src/qtui/chatscene.h +++ b/src/qtui/chatscene.h @@ -25,8 +25,10 @@ #include #include +#include "types.h" + class AbstractUiMsg; -class Buffer; +class BufferId; class ChatItem; class ChatLine; class ColumnHandleItem; @@ -40,8 +42,15 @@ class ChatScene : public QGraphicsScene { ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent); virtual ~ChatScene(); - Buffer *buffer() const; inline QAbstractItemModel *model() const { return _model; } + inline QString idString() const { return _idString; } + + inline bool isFetchingBacklog() const; + inline bool isBacklogFetchingEnabled() const; + inline BufferId bufferForBacklogFetching() const; + int sectionByScenePos(int x); + inline int sectionByScenePos(const QPoint &pos) { return sectionByScenePos(pos.x()); } + inline bool isSingleBufferScene() const { return _singleBufferScene; } public slots: void setWidth(qreal); @@ -51,6 +60,9 @@ class ChatScene : public QGraphicsScene { ChatItem *selectingItem() const { return _selectingItem; } void startGlobalSelection(ChatItem *item, const QPointF &itemPos); + void setIsFetchingBacklog(bool); + inline void setBufferForBacklogFetching(BufferId buffer); + signals: void heightChanged(qreal height); @@ -61,6 +73,7 @@ class ChatScene : public QGraphicsScene { protected slots: void rowsInserted(const QModelIndex &, int, int); + void modelReset(); private slots: void rectChanged(const QRectF &); @@ -69,11 +82,13 @@ class ChatScene : public QGraphicsScene { private: void updateSelection(const QPointF &pos); QString selectionToString() const; + void requestBacklogIfNeeded(); QString _idString; qreal _width, _height; QAbstractItemModel *_model; QList _lines; + bool _singleBufferScene; ColumnHandleItem *firstColHandle, *secondColHandle; qreal firstColHandlePos, secondColHandlePos; @@ -84,6 +99,27 @@ class ChatScene : public QGraphicsScene { int _selectionStart; int _selectionEnd; bool _isSelecting; + + bool _fetchingBacklog; + BufferId _backlogFetchingBuffer; + MsgId _lastBacklogOffset; + int _lastBacklogSize; }; +bool ChatScene::isFetchingBacklog() const { + return _fetchingBacklog; +} + +bool ChatScene::isBacklogFetchingEnabled() const { + return _backlogFetchingBuffer.isValid(); +} + +BufferId ChatScene::bufferForBacklogFetching() const { + return _backlogFetchingBuffer; +} + +void ChatScene::setBufferForBacklogFetching(BufferId buf) { + _backlogFetchingBuffer = buf; +} + #endif