25 #ifndef KDSME_LAYOUT_LAYOUTPROPERTIES_H
26 #define KDSME_LAYOUT_LAYOUTPROPERTIES_H
28 #include "kdsme_core_export.h"
40 Q_PROPERTY(qreal regionMargins READ regionMargins WRITE setRegionMargins NOTIFY regionMarginsChanged FINAL)
41 Q_PROPERTY(QFont regionLabelFont READ regionLabelFont WRITE setRegionLabelFont NOTIFY regionLabelFontChanged FINAL)
42 Q_PROPERTY(qreal regionLabelMargins READ regionLabelMargins WRITE setRegionLabelMargins NOTIFY regionLabelMarginsChanged FINAL)
43 Q_PROPERTY(QSizeF regionLabelButtonBoxSize READ regionLabelButtonBoxSize WRITE setRegionLabelButtonBoxSize NOTIFY regionLabelButtonBoxSizeChanged FINAL)
44 Q_PROPERTY(
bool showTransitionLabels READ showTransitionLabels WRITE setShowTransitionLabels NOTIFY showTransitionLabelsChanged FINAL)
50 qreal regionMargins()
const;
51 void setRegionMargins(qreal margins);
53 QFont regionLabelFont()
const;
54 void setRegionLabelFont(
const QFont& font);
56 qreal regionLabelMargins()
const;
57 void setRegionLabelMargins(qreal margins);
59 QSizeF regionLabelButtonBoxSize()
const;
60 void setRegionLabelButtonBoxSize(
const QSizeF& size);
62 bool showTransitionLabels()
const;
63 void setShowTransitionLabels(
bool show);
66 void regionMarginsChanged(qreal);
67 void regionLabelFontChanged(
const QFont&);
68 void regionLabelMarginsChanged(qreal);
69 void regionLabelButtonBoxSizeChanged(
const QSizeF&);
70 void showTransitionLabelsChanged(
bool);
75 QScopedPointer<Private> d;
80 #endif // LAYOUTPROPERTIES_H
Definition: layoutproperties.h:37
Definition: abstractexporter.h:33