fixing a compile warning in windows
[quassel.git] / src / qtui / chatscene.h
index 70605cc..de6add9 100644 (file)
@@ -25,8 +25,9 @@
 #include <QGraphicsScene>
 #include <QSet>
 
+#include "types.h"
+
 class AbstractUiMsg;
-class Buffer;
 class ChatItem;
 class ChatLine;
 class ColumnHandleItem;
@@ -40,8 +41,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 +59,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 +72,7 @@ class ChatScene : public QGraphicsScene {
 
   protected slots:
     void rowsInserted(const QModelIndex &, int, int);
+    void modelReset();
 
   private slots:
     void rectChanged(const QRectF &);
@@ -69,11 +81,13 @@ class ChatScene : public QGraphicsScene {
   private:
     void updateSelection(const QPointF &pos);
     QString selectionToString() const;
+    void requestBacklogIfNeeded();
 
     QString _idString;
     qreal _width, _height;
     QAbstractItemModel *_model;
     QList<ChatLine *> _lines;
+    bool _singleBufferScene;
 
     ColumnHandleItem *firstColHandle, *secondColHandle;
     qreal firstColHandlePos, secondColHandlePos;
@@ -84,6 +98,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