Bring back dynamic backlog fetching (move scrollbar slider to the very top to get...
[quassel.git] / src / qtui / chatview.h
index 7d84e6a..b9c1892 100644 (file)
@@ -45,11 +45,16 @@ class ChatView : public QGraphicsView, public AbstractChatView {
 
     void clear();
 
+    void setBufferForBacklogFetching(BufferId buffer);
+
   protected:
     virtual void resizeEvent(QResizeEvent *event);
 
   protected slots:
     virtual void sceneHeightChanged(qreal height);
+    virtual void verticalScrollbarChanged(int);
+    virtual void sliderPressed();
+    virtual void sliderReleased();
 
   private:
     void init(MessageFilter *filter);
@@ -57,4 +62,5 @@ class ChatView : public QGraphicsView, public AbstractChatView {
     ChatScene *_scene;
 };
 
+
 #endif