Reformat ALL the source!
[quassel.git] / src / qtui / markerlineitem.h
index 3911da8..1eaa93d 100644 (file)
 
 #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