X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmarkerlineitem.h;h=b739fae54705f4d3595913e7473d8d61a6b7a436;hp=3911da8a70edcad04934663c13452e48288c4188;hb=f04db2cb802b1296ca739c823495930c71d3b4ab;hpb=6e73ba4a19fd92038e1ea749125767661fb34e27 diff --git a/src/qtui/markerlineitem.h b/src/qtui/markerlineitem.h index 3911da8a..b739fae5 100644 --- a/src/qtui/markerlineitem.h +++ b/src/qtui/markerlineitem.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2010 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef MARKERLINEITEM_H_ @@ -25,26 +25,34 @@ #include "chatscene.h" -class MarkerLineItem : public QGraphicsObject { - Q_OBJECT +class ChatLine; + +class MarkerLineItem : public QGraphicsObject +{ + Q_OBJECT public: - MarkerLineItem(qreal sceneWidth, QGraphicsItem *parent = 0); - virtual inline int type() const { return ChatScene::MarkerLineType; } + MarkerLineItem(qreal sceneWidth, QGraphicsItem *parent = 0); + virtual inline int type() const { return ChatScene::MarkerLineType; } - inline QRectF boundingRect() const { return _boundingRect; } + inline QRectF boundingRect() const { return _boundingRect; } + void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); - void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0); + inline ChatLine *chatLine() const { return _chatLine; } public slots: - void sceneRectChanged(const QRectF &); + //! Set the ChatLine this MarkerLineItem is associated to + void setChatLine(ChatLine *line); + void sceneRectChanged(const QRectF &); private slots: - void styleChanged(); + void styleChanged(); private: - QRectF _boundingRect; - QBrush _brush; + QRectF _boundingRect; + QBrush _brush; + ChatLine *_chatLine; }; + #endif