X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.h;h=0c9329ed0a59cdfc89f32fd8f0f1ed3e837bbd54;hp=2f568d31ff0b557f567554c9432575785922d79a;hb=3271ab1dff7df6f6464cb714d675291aae791639;hpb=c902a2a58671e7d145f5e879d87100844bd20df4 diff --git a/src/qtui/chatscene.h b/src/qtui/chatscene.h index 2f568d31..0c9329ed 100644 --- a/src/qtui/chatscene.h +++ b/src/qtui/chatscene.h @@ -39,6 +39,21 @@ class ChatScene : public QGraphicsScene { Q_OBJECT public: + enum CutoffMode { + CutoffLeft, + 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(); @@ -54,9 +69,15 @@ public: inline ColumnHandleItem *firstColumnHandle() const { return _firstColHandle; } inline ColumnHandleItem *secondColumnHandle() const { return _secondColHandle; } -public slots: + inline CutoffMode senderCutoffMode() const { return _cutoffMode; } + inline void setSenderCutoffMode(CutoffMode mode) { _cutoffMode = mode; } + + bool isScrollingAllowed() const; + + virtual bool event(QEvent *e); + + public slots: void updateForViewport(qreal width, qreal height); - //void setWidth(qreal, bool forceReposition = false); void setWidth(qreal width); // these are used by the chatitems to notify the scene and manage selections @@ -72,12 +93,13 @@ public slots: signals: void lastLineChanged(QGraphicsItem *item, qreal offset); + void layoutChanged(); // indicates changes to the scenerect due to resizing of the contentsitems + void mouseMoveWhileSelecting(const QPointF &scenePos); 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); @@ -110,16 +132,15 @@ private: ColumnHandleItem *_firstColHandle, *_secondColHandle; qreal _firstColHandlePos, _secondColHandlePos; + CutoffMode _cutoffMode; ChatItem *_selectingItem; int _selectionStartCol, _selectionMinCol; int _selectionStart; int _selectionEnd; - int _firstSelectionRow, _lastSelectionRow; + int _firstSelectionRow; bool _isSelecting; - int _lastBacklogSize; - struct WebPreview { ChatItem *parentItem; QGraphicsItem *previewItem;