Method stub for implementing multiline selections next
[quassel.git] / src / qtui / chatscene.h
index 9d8a565..7bfd6eb 100644 (file)
@@ -36,7 +36,7 @@ class ChatScene : public QGraphicsScene {
   Q_OBJECT
 
   public:
-    ChatScene(QAbstractItemModel *model, QObject *parent);
+    ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent);
     virtual ~ChatScene();
 
     Buffer *buffer() const;
@@ -45,22 +45,36 @@ class ChatScene : public QGraphicsScene {
   public slots:
     void setWidth(qreal);
 
-  private slots:
-    void rectChanged(const QRectF &);
+    // these are used by the chatitems to notify the scene
+    void setSelectingItem(ChatItem *item);
+    ChatItem *selectingItem() const { return _selectingItem; }
+    void startGlobalSelection(ChatItem *item);
 
   signals:
     void heightChanged(qreal height);
 
+  protected:
+    virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent);
+    virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent);
+    virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent);
+
   protected slots:
     void rowsInserted(const QModelIndex &, int, int);
 
+  private slots:
+    void rectChanged(const QRectF &);
+    void handlePositionChanged(qreal xpos);
+
   private:
+    QString _idString;
     qreal _width, _height;
     QAbstractItemModel *_model;
     QList<ChatLine *> _lines;
 
     ColumnHandleItem *firstColHandle, *secondColHandle;
     qreal firstColHandlePos, secondColHandlePos;
+
+    ChatItem *_selectingItem;
 };
 
 #endif