aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qsgpathview/data/dragpath.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qsgpathview/data/dragpath.qml')
-rw-r--r--tests/auto/declarative/qsgpathview/data/dragpath.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/declarative/qsgpathview/data/dragpath.qml b/tests/auto/declarative/qsgpathview/data/dragpath.qml
new file mode 100644
index 0000000000..f9c6615b04
--- /dev/null
+++ b/tests/auto/declarative/qsgpathview/data/dragpath.qml
@@ -0,0 +1,19 @@
+import QtQuick 2.0
+
+PathView {
+ width: 400
+ height: 200
+ model: 100
+ pathItemCount: 20
+ path: Path {
+ startX: 0; startY: 100
+ PathLine { x: 400; y: 100 }
+ }
+ delegate: Rectangle { objectName: "wrapper"; height: 100; width: 2; color: PathView.isCurrentItem?"red" : "black" }
+ dragMargin: 100
+ preferredHighlightBegin: 0.5
+ preferredHighlightEnd: 0.5
+ Text {
+ text: "current index: " + parent.currentIndex
+ }
+}