31 Q_PROPERTY(qreal regionMargins READ regionMargins WRITE setRegionMargins NOTIFY regionMarginsChanged FINAL)
32 Q_PROPERTY(QFont regionLabelFont READ regionLabelFont WRITE setRegionLabelFont NOTIFY regionLabelFontChanged FINAL)
33 Q_PROPERTY(qreal regionLabelMargins READ regionLabelMargins WRITE setRegionLabelMargins NOTIFY regionLabelMarginsChanged FINAL)
34 Q_PROPERTY(QSizeF regionLabelButtonBoxSize READ regionLabelButtonBoxSize WRITE setRegionLabelButtonBoxSize NOTIFY regionLabelButtonBoxSizeChanged FINAL)
35 Q_PROPERTY(
bool showTransitionLabels READ showTransitionLabels WRITE setShowTransitionLabels NOTIFY showTransitionLabelsChanged FINAL)
41 qreal regionMargins() const;
42 void setRegionMargins(qreal margins);
44 QFont regionLabelFont() const;
45 void setRegionLabelFont(const QFont &font);
47 qreal regionLabelMargins() const;
48 void setRegionLabelMargins(qreal margins);
50 QSizeF regionLabelButtonBoxSize() const;
51 void setRegionLabelButtonBoxSize(const QSizeF &size);
53 bool showTransitionLabels() const;
54 void setShowTransitionLabels(
bool show);
57 void regionMarginsChanged(qreal);
58 void regionLabelFontChanged(const QFont &);
59 void regionLabelMarginsChanged(qreal);
60 void regionLabelButtonBoxSizeChanged(const QSizeF &);
61 void showTransitionLabelsChanged(
bool);
66 QScopedPointer<Private> d;