aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/Frame.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-23 13:21:14 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-23 13:59:52 +0000
commita7a5cf66eeee8754e9a8e156396d1540fc2c2c85 (patch)
treed40c34abfd3d0ade0b1add81f00699fbdc6d5555 /src/imports/controls/Frame.qml
parenta6bcd2624533ed00ce5cc1dd50ffbb042be5cb93 (diff)
Docs: Customizing Qt Quick Controls 2
Change-Id: I6fa85e9fa9a2f7c98ec751786271a60c6c050db5 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/Frame.qml')
-rw-r--r--src/imports/controls/Frame.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/imports/controls/Frame.qml b/src/imports/controls/Frame.qml
index 7580fb06..f721f974 100644
--- a/src/imports/controls/Frame.qml
+++ b/src/imports/controls/Frame.qml
@@ -48,8 +48,11 @@ AbstractFrame {
padding: Theme.padding
+ //! [contentItem]
contentItem: Item { }
+ //! [contentItem]
+ //! [frame]
frame: Rectangle {
width: parent.width
height: parent.height
@@ -58,4 +61,5 @@ AbstractFrame {
radius: control.Theme.roundness
border.color: control.Theme.frameColor
}
+ //! [frame]
}