21    Q_PROPERTY(QMargins margins READ margins WRITE setMargins NOTIFY marginsChanged)
 
   22    Q_PROPERTY(QPainterPath clipPath READ clipPath WRITE setClipPath NOTIFY clipPathChanged)
 
   27    QMargins margins() const;
 
   28    QPainterPath clipPath() const;
 
   31    void setMargins(const QMargins &margins);
 
   32    void setClipPath(const QPainterPath &clipPath);
 
   35    void marginsChanged(QMargins margins);
 
   36    void clipPathChanged(QPainterPath clipPath);
 
   39    void draw(QPainter *painter) Q_DECL_OVERRIDE;