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.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/controls/qquickframe_p.h b/src/controls/qquickframe_p.h
index 85bd72fc..c62cf0fb 100644
--- a/src/controls/qquickframe_p.h
+++ b/src/controls/qquickframe_p.h
@@ -52,12 +52,28 @@
QT_BEGIN_NAMESPACE
+class QQuickFramePrivate;
+
class Q_QUICKCONTROLS_EXPORT QQuickFrame : public QQuickContainer
{
Q_OBJECT
+ Q_PROPERTY(QQuickItem *frame READ frame WRITE setFrame NOTIFY frameChanged FINAL)
public:
explicit QQuickFrame(QQuickItem *parent = Q_NULLPTR);
+
+ QQuickItem *frame() const;
+ void setFrame(QQuickItem *frame);
+
+Q_SIGNALS:
+ void frameChanged();
+
+protected:
+ QQuickFrame(QQuickFramePrivate &dd, QQuickItem *parent);
+
+private:
+ Q_DISABLE_COPY(QQuickFrame)
+ Q_DECLARE_PRIVATE(QQuickFrame)
};
QT_END_NAMESPACE