aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicklistview/data/boundZValues.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2014-03-10 15:58:10 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-18 09:05:57 +0100
commitc4c5129632591738c290058abab281ad1b1493c1 (patch)
tree1281f2a4f3ea9da5da55a7720def36e077716afe /tests/auto/quick/qquicklistview/data/boundZValues.qml
parentfa24ef3d721a7b94d0c5abbc6c9558e74bdb0f3d (diff)
Item views: improve initial Z-value handling
Respect the initial Z-values of item, highlight, header, footer and section delegate instances. Mention also the default values in docs. Change-Id: I2ce4bb537898a0f5fdfa776b79d5747b1c080a7b Reviewed-by: Michael Brasser <michael.brasser@live.com> Reviewed-by: Alan Alpert <aalpert@blackberry.com> Reviewed-by: Martin Jones <martin.jones@jollamobile.com>
Diffstat (limited to 'tests/auto/quick/qquicklistview/data/boundZValues.qml')
-rw-r--r--tests/auto/quick/qquicklistview/data/boundZValues.qml55
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/auto/quick/qquicklistview/data/boundZValues.qml b/tests/auto/quick/qquicklistview/data/boundZValues.qml
new file mode 100644
index 0000000000..10810e540d
--- /dev/null
+++ b/tests/auto/quick/qquicklistview/data/boundZValues.qml
@@ -0,0 +1,55 @@
+import QtQuick 2.0
+
+Rectangle {
+ width: 240
+ height: 320
+
+ ListView {
+ id: list
+
+ property real itemZ: 342
+ property real headerZ: 341
+ property real footerZ: 340
+ property real highlightZ: 339
+ property real sectionZ: 338
+
+ anchors.fill: parent
+ objectName: "list"
+ model: ListModel { ListElement { text: "text" } }
+ currentIndex: 0
+
+ delegate: Text {
+ objectName: "wrapper"
+ font.pointSize: 20
+ text: index
+ z: list.itemZ
+ }
+
+ header: Rectangle {
+ width: 240
+ height: 30
+ z: list.headerZ
+ }
+
+ footer: Rectangle {
+ width: 240
+ height: 30
+ z: list.footerZ
+ }
+
+ highlight: Rectangle {
+ width: 240
+ height: 30
+ z: list.highlightZ
+ }
+
+ section.property: "text"
+ section.delegate: Text {
+ objectName: "section"
+ font.pointSize: 20
+ text: section
+ z: list.sectionZ
+ }
+ }
+}
+