Reformat ALL the source!
[quassel.git] / src / qtui / markerlineitem.h
index 827fa25..1eaa93d 100644 (file)
 
 class ChatLine;
 
-class MarkerLineItem : public QGraphicsObject {
-  Q_OBJECT
+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; }
-  void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
+    inline QRectF boundingRect() const { return _boundingRect; }
+    void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
 
-  inline ChatLine *chatLine() const { return _chatLine; }
+    inline ChatLine *chatLine() const { return _chatLine; }
 
 public slots:
-  //! Set the ChatLine this MarkerLineItem is associated to
-  void setChatLine(ChatLine *line);
-  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;
-  ChatLine *_chatLine;
+    QRectF _boundingRect;
+    QBrush _brush;
+    ChatLine *_chatLine;
 };
 
+
 #endif