X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.h;h=a60b842878b1b45b01824c1b26ba18ed5f62caa3;hp=8f56d625e673c0ed76687da11f8285173c4d4480;hb=61e0633ce94a38e669382c29db498f335d2e0fa8;hpb=6e277a228833579b9295d45ca7bd6c6f51aa1152 diff --git a/src/qtui/chatscene.h b/src/qtui/chatscene.h index 8f56d625..a60b8428 100644 --- a/src/qtui/chatscene.h +++ b/src/qtui/chatscene.h @@ -44,6 +44,16 @@ public: CutoffRight }; + enum ItemType { + ChatLineType = QGraphicsItem::UserType + 1, + ChatItemType, + TimestampChatItemType, + SenderChatItemType, + ContentsChatItemType, + SearchHighlightType, + WebPreviewType + }; + ChatScene(QAbstractItemModel *model, const QString &idString, qreal width, QObject *parent); virtual ~ChatScene(); @@ -62,7 +72,9 @@ public: inline CutoffMode senderCutoffMode() const { return _cutoffMode; } inline void setSenderCutoffMode(CutoffMode mode) { _cutoffMode = mode; } -public slots: + virtual bool event(QEvent *e); + + public slots: void updateForViewport(qreal width, qreal height); void setWidth(qreal width); @@ -79,12 +91,12 @@ public slots: signals: void lastLineChanged(QGraphicsItem *item, qreal offset); + void layoutChanged(); // indicates changes to the scenerect due to resizing of the contentsitems protected: virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *mouseEvent); virtual void mousePressEvent(QGraphicsSceneMouseEvent *mouseEvent); virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *mouseEvent); - virtual void customEvent(QEvent *event); protected slots: void rowsInserted(const QModelIndex &, int, int); @@ -123,7 +135,7 @@ private: int _selectionStartCol, _selectionMinCol; int _selectionStart; int _selectionEnd; - int _firstSelectionRow, _lastSelectionRow; + int _firstSelectionRow; bool _isSelecting; struct WebPreview {