aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativelistview/data/listview-initCurrent.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativelistview/data/listview-initCurrent.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativelistview/data/listview-initCurrent.qml51
1 files changed, 0 insertions, 51 deletions
diff --git a/tests/auto/qtquick1/qdeclarativelistview/data/listview-initCurrent.qml b/tests/auto/qtquick1/qdeclarativelistview/data/listview-initCurrent.qml
deleted file mode 100644
index 2c4cfab217..0000000000
--- a/tests/auto/qtquick1/qdeclarativelistview/data/listview-initCurrent.qml
+++ /dev/null
@@ -1,51 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- property int current: list.currentIndex
- width: 240
- height: 320
- color: "#ffffff"
- resources: [
- Component {
- id: myDelegate
- Rectangle {
- id: wrapper
- objectName: "wrapper"
- height: 20
- width: 240
- Text {
- text: index
- }
- Text {
- x: 30
- id: textName
- objectName: "textName"
- text: name
- }
- Text {
- x: 120
- id: textNumber
- objectName: "textNumber"
- text: number
- }
- Text {
- x: 200
- text: wrapper.y
- }
- color: ListView.isCurrentItem ? "lightsteelblue" : "white"
- }
- }
- ]
- ListView {
- id: list
- objectName: "list"
- focus: true
- currentIndex: 20
- width: 240
- height: 320
- keyNavigationWraps: testWrap
- delegate: myDelegate
- highlightMoveSpeed: 1000
- model: testModel
- }
-}