aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/ListView/listview.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/ListView/listview.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/ListView/listview.qml86
1 files changed, 0 insertions, 86 deletions
diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml
deleted file mode 100644
index 6171c75a6c..0000000000
--- a/tests/auto/declarative/qmlvisual/ListView/listview.qml
+++ /dev/null
@@ -1,86 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- property int current: 0
- width: 600; height: 300; color: "white"
-
- ListModel {
- id: myModel
- ListElement {
- itemColor: "red"
- }
- ListElement {
- itemColor: "green"
- }
- ListElement {
- itemColor: "blue"
- }
- ListElement {
- itemColor: "orange"
- }
- ListElement {
- itemColor: "brown"
- }
- ListElement {
- itemColor: "yellow"
- }
- ListElement {
- itemColor: "purple"
- }
- ListElement {
- itemColor: "darkred"
- }
- ListElement {
- itemColor: "darkblue"
- }
- }
-
- Component {
- id: myDelegate
- Item {
- width: 200; height: 50
- Rectangle {
- x: 5; y : 5
- width: 190; height: 40
- opacity: 0.5
- color: itemColor
- }
- }
- }
-
- Component {
- id: myHighlight
- Rectangle { width: 200; height: 50; color: "black" }
- }
-
- ListView {
- id: list1
- width: 200; height: parent.height
- model: myModel; delegate: myDelegate
- highlight: myHighlight
- currentIndex: root.current
- onCurrentIndexChanged: root.current = currentIndex
- focus: true
- }
- ListView {
- id: list2
- x: 200; width: 200; height: parent.height
- model: myModel; delegate: myDelegate; highlight: myHighlight
- preferredHighlightBegin: 80
- preferredHighlightEnd: 220
- highlightRangeMode: "ApplyRange"
- currentIndex: root.current
- }
- ListView {
- id: list3
- x: 400; width: 200; height: parent.height
- model: myModel; delegate: myDelegate; highlight: myHighlight
- currentIndex: root.current
- onCurrentIndexChanged: root.current = currentIndex
- preferredHighlightBegin: 125
- preferredHighlightEnd: 125
- highlightRangeMode: "StrictlyEnforceRange"
- flickDeceleration: 1000
- }
-}