aboutsummaryrefslogtreecommitdiffstats
path: root/src/controls/qquickframe_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/qquickframe_p.h')
-rw-r--r--src/controls/qquickframe_p.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/controls/qquickframe_p.h b/src/controls/qquickframe_p.h
index d7bcc490..b56f9fcb 100644
--- a/src/controls/qquickframe_p.h
+++ b/src/controls/qquickframe_p.h
@@ -57,15 +57,25 @@ class QQuickFramePrivate;
class Q_QUICKCONTROLS_EXPORT QQuickFrame : public QQuickControl
{
Q_OBJECT
+ Q_PROPERTY(qreal contentWidth READ contentWidth WRITE setContentWidth NOTIFY contentWidthChanged FINAL)
+ Q_PROPERTY(qreal contentHeight READ contentHeight WRITE setContentHeight NOTIFY contentHeightChanged FINAL)
Q_PROPERTY(QQuickItem *frame READ frame WRITE setFrame NOTIFY frameChanged FINAL)
public:
explicit QQuickFrame(QQuickItem *parent = Q_NULLPTR);
+ qreal contentWidth() const;
+ void setContentWidth(qreal width);
+
+ qreal contentHeight() const;
+ void setContentHeight(qreal height);
+
QQuickItem *frame() const;
void setFrame(QQuickItem *frame);
Q_SIGNALS:
+ void contentWidthChanged();
+ void contentHeightChanged();
void frameChanged();
protected: