aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquickgridview/data/defaultZValues.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/qquickgridview/data/defaultZValues.qml')
-rw-r--r--tests/auto/quick/qquickgridview/data/defaultZValues.qml37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/auto/quick/qquickgridview/data/defaultZValues.qml b/tests/auto/quick/qquickgridview/data/defaultZValues.qml
new file mode 100644
index 0000000000..53f11bb2da
--- /dev/null
+++ b/tests/auto/quick/qquickgridview/data/defaultZValues.qml
@@ -0,0 +1,37 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 240
+ height: 320
+
+ GridView {
+ id: grid
+
+ property real itemZ: 1
+ property real headerZ: 1
+ property real footerZ: 1
+ property real highlightZ: 0
+
+ anchors.fill: parent
+ objectName: "grid"
+ model: ListModel { ListElement { text: "text" } }
+ currentIndex: 0
+
+ delegate: Text {
+ objectName: "wrapper"
+ font.pointSize: 20
+ text: index
+ }
+
+ header: Rectangle {
+ width: 240
+ height: 30
+ }
+
+ footer: Rectangle {
+ width: 240
+ height: 30
+ }
+ }
+}
+