X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatitem.h;h=996cb4323a9d1c13c37feaf46c7b58bd76f65800;hp=b8b6e14583118d50dd7b9d14c06cc688c98ebd1c;hb=709d88e1d7cede7fee485b85798413468f324abe;hpb=e178f81f44f5e305315f7755ca404c2a5f992711 diff --git a/src/qtui/chatitem.h b/src/qtui/chatitem.h index b8b6e145..996cb432 100644 --- a/src/qtui/chatitem.h +++ b/src/qtui/chatitem.h @@ -47,10 +47,8 @@ public: inline qreal width() const { return _boundingRect.width(); } inline qreal height() const { return _boundingRect.height(); } - inline bool hasLayout() const { return (bool)_data; } - QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft); - virtual inline QTextLayout *createLayout() { return createLayout(QTextOption::WrapAnywhere); } - virtual void updateLayout(); + QTextLayout *createLayout(QTextOption::WrapMode, Qt::Alignment = Qt::AlignLeft) const; + virtual void doLayout(); void clearLayout(); virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); @@ -71,11 +69,14 @@ protected: inline QTextLayout *layout() const; + virtual QTextLayout::FormatRange selectionFormat() const; virtual inline QVector additionalFormats() const { return QVector(); } + qint16 posToCursor(const QPointF &pos); - inline void setPrivateData(ChatItemPrivate *data) { Q_ASSERT(!_data); _data = data; } - inline ChatItemPrivate *privateData() const; + inline bool hasPrivateData() const { return (bool)_data; } + ChatItemPrivate *privateData() const; + virtual inline ChatItemPrivate *newPrivateData(); // WARNING: setGeometry and setHeight should not be used without either: // a) calling prepareGeometryChange() immediately before setColumns() @@ -84,8 +85,12 @@ protected: _boundingRect.setWidth(width); _boundingRect.setHeight(height); } - inline void setHeight(const qreal &height) { _boundingRect.setHeight(height); } - inline void setWidth(const qreal &width) { _boundingRect.setWidth(width); } + inline void setHeight(const qreal &height) { + _boundingRect.setHeight(height); + } + inline void setWidth(const qreal &width) { + _boundingRect.setWidth(width); + } private: // internal selection stuff @@ -111,7 +116,7 @@ struct ChatItemPrivate { // inlines of ChatItem QTextLayout *ChatItem::layout() const { return privateData()->layout; } -ChatItemPrivate *ChatItem::privateData() const { return _data; } +ChatItemPrivate *ChatItem::newPrivateData() { return new ChatItemPrivate(createLayout(QTextOption::WrapAnywhere)); } // ************************************************************ // TimestampChatItem @@ -132,7 +137,10 @@ class SenderChatItem : public ChatItem { public: SenderChatItem(const qreal &width, const qreal &height, const QPointF &pos, QGraphicsItem *parent) : ChatItem(width, height, pos, parent) {} virtual inline ChatLineModel::ColumnType column() const { return ChatLineModel::SenderColumn; } - virtual inline QTextLayout *createLayout() { return ChatItem::createLayout(QTextOption::WrapAnywhere, Qt::AlignRight); } + +protected: + virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); + virtual inline ChatItemPrivate *newPrivateData() { return new ChatItemPrivate(createLayout(QTextOption::ManualWrap, Qt::AlignRight)); } }; // ************************************************************ @@ -154,10 +162,14 @@ protected: virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event); virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event); virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event); + virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *event); + + virtual QVector additionalFormats() const; - virtual void updateLayout(); + virtual void doLayout(); + virtual inline ChatItemPrivate *newPrivateData(); private: struct Clickable; @@ -165,15 +177,11 @@ private: inline ContentsChatItemPrivate *privateData() const; - QList findClickables(); + QList findClickables() const; void endHoverMode(); void showWebPreview(const Clickable &click); void clearWebPreview(); - - // WARNING: setGeometry and setHeight should not be used without either: - // a) calling prepareGeometryChange() immediately before setColumns() - // b) calling Chatline::setPos() immediately afterwards qreal setGeometryByWidth(qreal w); friend class ChatLine; friend struct ContentsChatItemPrivate; @@ -205,11 +213,12 @@ struct ContentsChatItemPrivate : ChatItemPrivate { ContentsChatItem::Clickable currentClickable; bool hasDragged; - ContentsChatItemPrivate(QTextLayout *l, const QList &c, ContentsChatItem *parent) : ChatItemPrivate(l), contentsItem(parent), clickables(c), hasDragged(false) {} + ContentsChatItemPrivate(QTextLayout *l, const QList &c, ContentsChatItem *parent) + : ChatItemPrivate(l), contentsItem(parent), clickables(c), hasDragged(false) {} }; - //inlines regarding ContentsChatItemPrivate +ChatItemPrivate *ContentsChatItem::newPrivateData() { return new ContentsChatItemPrivate(createLayout(QTextOption::WrapAnywhere), findClickables(), this); } ContentsChatItemPrivate *ContentsChatItem::privateData() const { return (ContentsChatItemPrivate *)ChatItem::privateData(); } class ContentsChatItem::WrapColumnFinder {