X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.h;h=a60b842878b1b45b01824c1b26ba18ed5f62caa3;hp=78ba34188b86b917335b8130dd91709fb27bbe4b;hb=61e0633ce94a38e669382c29db498f335d2e0fa8;hpb=114f8a14b8bc82669ffda0599ce30fc299be9396 diff --git a/src/qtui/chatscene.h b/src/qtui/chatscene.h index 78ba3418..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(); @@ -81,6 +91,7 @@ public: 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);