aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativelistview/data/displaylist.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativelistview/data/displaylist.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativelistview/data/displaylist.qml50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/auto/qtquick1/qdeclarativelistview/data/displaylist.qml b/tests/auto/qtquick1/qdeclarativelistview/data/displaylist.qml
deleted file mode 100644
index 9d58530252..0000000000
--- a/tests/auto/qtquick1/qdeclarativelistview/data/displaylist.qml
+++ /dev/null
@@ -1,50 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- property real delegateHeight: 20
- width: 240
- height: 320
- color: "#ffffff"
- resources: [
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- height: root.delegateHeight
- Behavior on height { NumberAnimation {} }
- width: 240
- Text {
- text: index
- }
- Text {
- x: 30
- objectName: "displayText"
- text: display
- }
- Text {
- x: 200
- text: wrapper.y
- }
- color: ListView.isCurrentItem ? "lightsteelblue" : "white"
- }
- },
- Component {
- id: myHighlight
- Rectangle { color: "green" }
- }
- ]
- ListView {
- id: list
- objectName: "list"
- focus: true
- width: 240
- height: 320
- model: testModel
- delegate: myDelegate
- highlight: myHighlight
- highlightMoveSpeed: 1000
- highlightResizeSpeed: 1000
- }
-}