aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick2/qquickpositioners/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick2/qquickpositioners/data')
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/allInvisible.qml44
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/attachedproperties-column.qml50
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/attachedproperties-dynamic.qml44
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/attachedproperties-flow.qml50
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/attachedproperties-grid.qml50
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/attachedproperties-row.qml50
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/flow-testimplicitsize.qml19
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/flowtest-toptobottom.qml44
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/flowtest.qml43
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/grid-animated.qml64
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/grid-row-column-spacing.qml43
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/grid-spacing.qml41
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/grid-toptobottom.qml41
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/gridtest.qml42
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/gridzerocolumns.qml40
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/horizontal-animated-disabled.qml40
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/horizontal-animated.qml47
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/horizontal-spacing.qml31
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/horizontal.qml29
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/propertychangestest.qml39
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/rectangleComponent.qml11
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/repeatertest.qml38
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/transitions.qml196
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/vertical-animated.qml41
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/vertical-spacing.qml28
-rw-r--r--tests/auto/qtquick2/qquickpositioners/data/vertical.qml27
26 files changed, 0 insertions, 1192 deletions
diff --git a/tests/auto/qtquick2/qquickpositioners/data/allInvisible.qml b/tests/auto/qtquick2/qquickpositioners/data/allInvisible.qml
deleted file mode 100644
index 5894171434..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/allInvisible.qml
+++ /dev/null
@@ -1,44 +0,0 @@
-import QtQuick 2.0
-
-Item{
- width: 400
- height: 400
- Column{
- spacing: 20
- objectName: "column"
- Item{
- width: 0
- height: 20
- visible: false
- }
- Item{
- width: 20
- height: 0
- visible: false
- }
- Item{
- width: 20
- height: 20
- visible: false
- }
- }
- Row{
- spacing: 20
- objectName: "row"
- Item{
- width: 0
- height: 20
- visible: false
- }
- Item{
- width: 20
- height: 0
- visible: false
- }
- Item{
- width: 20
- height: 20
- visible: false
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-column.qml b/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-column.qml
deleted file mode 100644
index 4c667aa205..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-column.qml
+++ /dev/null
@@ -1,50 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 100
- height: 200
-
- Column {
-
- Rectangle {
- width: 100
- height: 100
- color: 'red'
- visible: false
- }
-
- Rectangle {
- objectName: "greenRect"
- width: 100
- height: 100
- color: 'green'
- property int posIndex: Positioner.index
- property bool isFirstItem: Positioner.isFirstItem
- property bool isLastItem: Positioner.isLastItem
- }
-
- Rectangle {
- width: 100
- height: 100
- color: 'blue'
- visible: false
- }
-
- Rectangle {
- objectName: "yellowRect"
- width: 100
- height: 100
- color: 'yellow'
-
- property int posIndex: -1
- property bool isFirstItem: false
- property bool isLastItem: false
-
- function onDemandPositioner() {
- posIndex = Positioner.index;
- isFirstItem = Positioner.isFirstItem
- isLastItem = Positioner.isLastItem
- }
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-dynamic.qml b/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-dynamic.qml
deleted file mode 100644
index 894749dc16..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-dynamic.qml
+++ /dev/null
@@ -1,44 +0,0 @@
-import QtQuick 2.0
-
-Rectangle
-{
- width: 300
- height: 100
-
- Row {
- id: pos
- objectName: "pos"
- anchors.fill: parent
-
- Rectangle {
- objectName: "rect0"
- width: 100
- height: 100
- color: 'red'
- property int index: Positioner.index
- property bool firstItem: Positioner.isFirstItem
- property bool lastItem: Positioner.isLastItem
- }
-
- Rectangle {
- objectName: "rect1"
- width: 100
- height: 100
- color: 'green'
- property int index: Positioner.index
- property bool firstItem: Positioner.isFirstItem
- property bool lastItem: Positioner.isLastItem
- }
-
- property QtObject subRect;
-
- function createSubRect() {
- var component = Qt.createComponent("rectangleComponent.qml");
- subRect = component.createObject(pos, {});
- }
-
- function destroySubRect() {
- subRect.destroy();
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-flow.qml b/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-flow.qml
deleted file mode 100644
index e7f9a63e2a..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-flow.qml
+++ /dev/null
@@ -1,50 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 200
- height: 100
-
- Flow {
-
- Rectangle {
- width: 100
- height: 100
- color: 'red'
- visible: false
- }
-
- Rectangle {
- objectName: "greenRect"
- width: 100
- height: 100
- color: 'green'
- property int posIndex: Positioner.index
- property bool isFirstItem: Positioner.isFirstItem
- property bool isLastItem: Positioner.isLastItem
- }
-
- Rectangle {
- width: 100
- height: 100
- color: 'blue'
- visible: false
- }
-
- Rectangle {
- objectName: "yellowRect"
- width: 100
- height: 100
- color: 'yellow'
-
- property int posIndex: -1
- property bool isFirstItem: false
- property bool isLastItem: false
-
- function onDemandPositioner() {
- posIndex = Positioner.index;
- isFirstItem = Positioner.isFirstItem
- isLastItem = Positioner.isLastItem
- }
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-grid.qml b/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-grid.qml
deleted file mode 100644
index 2094309b9f..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-grid.qml
+++ /dev/null
@@ -1,50 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 200
- height: 100
-
- Grid {
-
- Rectangle {
- width: 100
- height: 100
- color: 'red'
- visible: false
- }
-
- Rectangle {
- objectName: "greenRect"
- width: 100
- height: 100
- color: 'green'
- property int posIndex: Positioner.index
- property bool isFirstItem: Positioner.isFirstItem
- property bool isLastItem: Positioner.isLastItem
- }
-
- Rectangle {
- width: 100
- height: 100
- color: 'blue'
- visible: false
- }
-
- Rectangle {
- objectName: "yellowRect"
- width: 100
- height: 100
- color: 'yellow'
-
- property int posIndex: -1
- property bool isFirstItem: false
- property bool isLastItem: false
-
- function onDemandPositioner() {
- posIndex = Positioner.index;
- isFirstItem = Positioner.isFirstItem
- isLastItem = Positioner.isLastItem
- }
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-row.qml b/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-row.qml
deleted file mode 100644
index 212a26b431..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/attachedproperties-row.qml
+++ /dev/null
@@ -1,50 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 200
- height: 100
-
- Row {
-
- Rectangle {
- width: 100
- height: 100
- color: 'red'
- visible: false
- }
-
- Rectangle {
- objectName: "greenRect"
- width: 100
- height: 100
- color: 'green'
- property int posIndex: Positioner.index
- property bool isFirstItem: Positioner.isFirstItem
- property bool isLastItem: Positioner.isLastItem
- }
-
- Rectangle {
- width: 100
- height: 100
- color: 'blue'
- visible: false
- }
-
- Rectangle {
- objectName: "yellowRect"
- width: 100
- height: 100
- color: 'yellow'
-
- property int posIndex: -1
- property bool isFirstItem: false
- property bool isLastItem: false
-
- function onDemandPositioner() {
- posIndex = Positioner.index;
- isFirstItem = Positioner.isFirstItem
- isLastItem = Positioner.isLastItem
- }
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/flow-testimplicitsize.qml b/tests/auto/qtquick2/qquickpositioners/data/flow-testimplicitsize.qml
deleted file mode 100644
index c32b78676c..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/flow-testimplicitsize.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- width: 300; height: 200;
-
- property int flowLayout: 1
-
- Flow {
- objectName: "flow"
- layoutDirection: (flowLayout == 2) ? Qt.RightToLeft : Qt.LeftToRight
- flow: (flowLayout == 1) ? Flow.TopToBottom : Flow.LeftToRight;
-
- spacing: 20
- anchors.horizontalCenter: parent.horizontalCenter
- Rectangle { color: "red"; width: 100; height: 50 }
- Rectangle { color: "blue"; width: 100; height: 50 }
- }
-}
-
diff --git a/tests/auto/qtquick2/qquickpositioners/data/flowtest-toptobottom.qml b/tests/auto/qtquick2/qquickpositioners/data/flowtest-toptobottom.qml
deleted file mode 100644
index a7d3ee13c7..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/flowtest-toptobottom.qml
+++ /dev/null
@@ -1,44 +0,0 @@
-import QtQuick 2.0
-
-Item {
- height: 90
- width: 480
- property bool testRightToLeft: false
-
- Flow {
- objectName: "flow"
- height: parent.height
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- flow: Flow.TopToBottom
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 50
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/flowtest.qml b/tests/auto/qtquick2/qquickpositioners/data/flowtest.qml
deleted file mode 100644
index 40b042dd79..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/flowtest.qml
+++ /dev/null
@@ -1,43 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 90
- height: 480
- property bool testRightToLeft: false
-
- Flow {
- objectName: "flow"
- width: parent.width
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 50
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/grid-animated.qml b/tests/auto/qtquick2/qquickpositioners/data/grid-animated.qml
deleted file mode 100644
index b8ee8f9a52..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/grid-animated.qml
+++ /dev/null
@@ -1,64 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- property bool testRightToLeft: true
-
- Grid {
- objectName: "grid"
- columns: 3
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- add: Transition {
- NumberAnimation {
- properties: "x,y";
- }
- }
- move: Transition {
- NumberAnimation {
- properties: "x,y";
- }
- }
- Rectangle {
- objectName: "one"
- color: "red"
- x: -100
- y: -100
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- x: -100
- y: -100
- visible: false
- color: "green"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- x: -100
- y: -100
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- x: -100
- y: -100
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- x: -100
- y: -100
- width: 50
- height: 50
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/grid-row-column-spacing.qml b/tests/auto/qtquick2/qquickpositioners/data/grid-row-column-spacing.qml
deleted file mode 100644
index 49bbd337e7..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/grid-row-column-spacing.qml
+++ /dev/null
@@ -1,43 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Grid {
- objectName: "grid"
- columns: 3
- spacing: 4
- rowSpacing: 7
- columnSpacing: 11
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 50
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/grid-spacing.qml b/tests/auto/qtquick2/qquickpositioners/data/grid-spacing.qml
deleted file mode 100644
index 535a39037f..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/grid-spacing.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Grid {
- objectName: "grid"
- columns: 3
- spacing: 4
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 50
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/grid-toptobottom.qml b/tests/auto/qtquick2/qquickpositioners/data/grid-toptobottom.qml
deleted file mode 100644
index 45559aab5d..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/grid-toptobottom.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Grid {
- objectName: "grid"
- rows: 3
- flow: Grid.TopToBottom
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 50
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/gridtest.qml b/tests/auto/qtquick2/qquickpositioners/data/gridtest.qml
deleted file mode 100644
index 50bec1377b..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/gridtest.qml
+++ /dev/null
@@ -1,42 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- property bool testRightToLeft: false
- Grid {
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- objectName: "grid"
- columns: 3
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 30
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/gridzerocolumns.qml b/tests/auto/qtquick2/qquickpositioners/data/gridzerocolumns.qml
deleted file mode 100644
index a252f279c3..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/gridzerocolumns.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Grid {
- objectName: "grid"
- columns: 0
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "green"
- width: 20
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "blue"
- width: 50
- height: 20
- }
- Rectangle {
- objectName: "four"
- color: "cyan"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "five"
- color: "magenta"
- width: 10
- height: 10
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/horizontal-animated-disabled.qml b/tests/auto/qtquick2/qquickpositioners/data/horizontal-animated-disabled.qml
deleted file mode 100644
index 8723ffc78f..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/horizontal-animated-disabled.qml
+++ /dev/null
@@ -1,40 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
-
- Row {
- objectName: "row"
- add: Transition {
- enabled: false
- NumberAnimation { properties: "x" }
- }
- move: Transition {
- enabled: false
- NumberAnimation { properties: "x" }
- }
- Rectangle {
- objectName: "one"
- color: "red"
- x: -100;
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "blue"
- x: -100;
- visible: false
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "three"
- x: -100;
- color: "green"
- width: 50
- height: 50
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/horizontal-animated.qml b/tests/auto/qtquick2/qquickpositioners/data/horizontal-animated.qml
deleted file mode 100644
index a88c26b66c..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/horizontal-animated.qml
+++ /dev/null
@@ -1,47 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- property bool testRightToLeft: false
- property bool testEnabled: false
-
- Row {
- objectName: "row"
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- add: Transition {
- enabled: testEnabled ? false : true
- NumberAnimation {
- properties: "x";
- }
- }
- move: Transition {
- enabled: testEnabled ? false : true
- NumberAnimation {
- properties: "x";
- }
- }
- Rectangle {
- objectName: "one"
- color: "red"
- x: -100;
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "blue"
- x: -100;
- visible: false
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "three"
- x: -100;
- color: "green"
- width: 50
- height: 50
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/horizontal-spacing.qml b/tests/auto/qtquick2/qquickpositioners/data/horizontal-spacing.qml
deleted file mode 100644
index c6ff75ac6b..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/horizontal-spacing.qml
+++ /dev/null
@@ -1,31 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- property bool testRightToLeft: false
-
- Row {
- objectName: "row"
- spacing: 10
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "red"
- width: 20
- height: 10
- }
- Rectangle {
- objectName: "three"
- color: "red"
- width: 40
- height: 20
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/horizontal.qml b/tests/auto/qtquick2/qquickpositioners/data/horizontal.qml
deleted file mode 100644
index 235ee78c9b..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/horizontal.qml
+++ /dev/null
@@ -1,29 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- property bool testRightToLeft: false
- Row {
- objectName: "row"
- layoutDirection: testRightToLeft ? Qt.RightToLeft : Qt.LeftToRight
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "red"
- width: 20
- height: 10
- }
- Rectangle {
- objectName: "three"
- color: "red"
- width: 40
- height: 20
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/propertychangestest.qml b/tests/auto/qtquick2/qquickpositioners/data/propertychangestest.qml
deleted file mode 100644
index c9fd62b012..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/propertychangestest.qml
+++ /dev/null
@@ -1,39 +0,0 @@
-import QtQuick 2.0
-
-Grid {
- id: myGrid
-
- width: 270
- height: 270
- x: 3
- y: 3
- columns: 4
- spacing: 3
-
- add: columnTransition
- move: columnTransition
-
- Repeater {
- model: 20
- Rectangle { color: "black"; width: 50; height: 50 }
- }
-
- data: [
- Transition {
- id: rowTransition
- objectName: "rowTransition"
- NumberAnimation {
- properties: "x,y";
- easing.type: "OutInCubic"
- }
- },
- Transition {
- id: columnTransition
- objectName: "columnTransition"
- NumberAnimation {
- properties: "x,y";
- easing.type: "OutInCubic"
- }
- }
- ]
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/rectangleComponent.qml b/tests/auto/qtquick2/qquickpositioners/data/rectangleComponent.qml
deleted file mode 100644
index de1bb99593..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/rectangleComponent.qml
+++ /dev/null
@@ -1,11 +0,0 @@
-import QtQuick 2.0;
-
-Rectangle {
- objectName: "rect2"
- color: "blue"
- width: 100
- height: 100
- property int index: Positioner.index
- property bool firstItem: Positioner.isFirstItem
- property bool lastItem: Positioner.isLastItem
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/repeatertest.qml b/tests/auto/qtquick2/qquickpositioners/data/repeatertest.qml
deleted file mode 100644
index d90e1cf160..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/repeatertest.qml
+++ /dev/null
@@ -1,38 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Row {
- Repeater{ model: 3;
- delegate: Component {
- Rectangle {
- color: "red"
- width: 50
- height: 50
- z: {if(index == 0){2;}else if(index == 1){1;} else{3;}}
- objectName: {if(index == 0){"one";}else if(index == 1){"two";} else{"three";}}
- }
- }
- }
- }
-
- //This crashed once (QTBUG-16959) because the repeater ended up on the end of the list
- //If this grid just instantiates without crashing, then it has not regressed.
- Grid {
- id: grid
- rows: 2
- flow: Grid.TopToBottom
-
- Repeater {
- model: 13
- Rectangle {
- color: "goldenrod"
- width: 100
- height: 100
- radius: 10
- border.width: 1
- }
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/transitions.qml b/tests/auto/qtquick2/qquickpositioners/data/transitions.qml
deleted file mode 100644
index 982e64141c..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/transitions.qml
+++ /dev/null
@@ -1,196 +0,0 @@
-import QtQuick 2.0
-
-Rectangle {
- id: root
- width: 500
- height: 500
-
- property int duration: 50
-
- property int targetTransitionsDone
- property int displaceTransitionsDone
-
- property var targetTrans_items: new Object()
- property var targetTrans_targetIndexes: new Array()
- property var targetTrans_targetItems: new Array()
-
- property var displacedTrans_items: new Object()
- property var displacedTrans_targetIndexes: new Array()
- property var displacedTrans_targetItems: new Array()
-
- // for QDeclarativeListProperty types
- function copyList(propList) {
- var temp = new Array()
- for (var i=0; i<propList.length; i++)
- temp.push(propList[i])
- return temp
- }
-
- function checkPos(x, y, name) {
- if (Qt.point(x, y) == targetItems_transitionFrom)
- model_targetItems_transitionFrom.addItem(name, "")
- if (Qt.point(x, y) == displacedItems_transitionVia)
- model_displacedItems_transitionVia.addItem(name, "")
- }
-
- Transition {
- id: targetTransition
- enabled: enableAddTransition
-
- SequentialAnimation {
- ScriptAction {
- script: {
- root.targetTrans_items[targetTransition.ViewTransition.item.nameData] = targetTransition.ViewTransition.index
- root.targetTrans_targetIndexes.push(targetTransition.ViewTransition.targetIndexes)
- root.targetTrans_targetItems.push(root.copyList(targetTransition.ViewTransition.targetItems))
- }
- }
- ParallelAnimation {
- NumberAnimation { properties: "x"; from: targetItems_transitionFrom.x; duration: root.duration }
- NumberAnimation { properties: "y"; from: targetItems_transitionFrom.y; duration: root.duration }
- }
-
- ScriptAction { script: root.targetTransitionsDone += 1 }
- }
- }
-
- Transition {
- id: displaced
-
- SequentialAnimation {
- ScriptAction {
- script: {
- root.displacedTrans_items[displaced.ViewTransition.item.nameData] = displaced.ViewTransition.index
- root.displacedTrans_targetIndexes.push(displaced.ViewTransition.targetIndexes)
- root.displacedTrans_targetItems.push(root.copyList(displaced.ViewTransition.targetItems))
- }
- }
- ParallelAnimation {
- NumberAnimation { properties: "x"; duration: root.duration; to: displacedItems_transitionVia.x }
- NumberAnimation { properties: "y"; duration: root.duration; to: displacedItems_transitionVia.y }
- }
- NumberAnimation { properties: "x,y"; duration: root.duration }
-
- ScriptAction { script: root.displaceTransitionsDone += 1 }
- }
-
- }
-
- Row {
- objectName: "row"
-
- property int count: children.length - 1 // omit Repeater
-
- x: 50; y: 50
- width: 400; height: 400
- Repeater {
- objectName: "repeater"
- Rectangle {
- property string nameData: name
- objectName: "wrapper"
- width: 30 + index*5
- height: 30 + index*5
- border.width: 1
- Column {
- Text { text: index }
- Text { objectName: "name"; text: name }
- Text { text: parent.parent.y }
- }
- onXChanged: root.checkPos(x, y, name)
- onYChanged: root.checkPos(x, y, name)
- }
- }
-
- add: targetTransition
- move: displaced
- }
-
- Column {
- objectName: "column"
-
- property int count: children.length - 1 // omit Repeater
-
- x: 50; y: 50
- width: 400; height: 400
- Repeater {
- objectName: "repeater"
- Rectangle {
- property string nameData: name
- objectName: "wrapper"
- width: 30 + index*5
- height: 30 + index*5
- border.width: 1
- Column {
- Text { text: index }
- Text { objectName: "name"; text: name }
- Text { text: parent.parent.y }
- }
- onXChanged: root.checkPos(x, y, name)
- onYChanged: root.checkPos(x, y, name)
- }
- }
-
- add: targetTransition
- move: displaced
- }
-
- Grid {
- objectName: "grid"
-
- property int count: children.length - 1 // omit Repeater
-
- x: 50; y: 50
- width: 400; height: 400
- Repeater {
- objectName: "repeater"
- Rectangle {
- property string nameData: name
- objectName: "wrapper"
- width: 30 + index*5
- height: 30 + index*5
- border.width: 1
- Column {
- Text { text: index }
- Text { objectName: "name"; text: name }
- Text { text: parent.parent.y }
- }
-
- onXChanged: root.checkPos(x, y, name)
- onYChanged: root.checkPos(x, y, name)
- }
- }
-
- add: targetTransition
- move: displaced
- }
-
- Flow {
- objectName: "flow"
-
- property int count: children.length - 1 // omit Repeater
-
- x: 50; y: 50
- width: 400; height: 400
- Repeater {
- objectName: "repeater"
- Rectangle {
- property string nameData: name
- objectName: "wrapper"
- width: 30 + index*5
- height: 30 + index*5
- border.width: 1
- Column {
- Text { text: index }
- Text { objectName: "name"; text: name }
- Text { text: parent.parent.x + " " + parent.parent.y }
- }
- onXChanged: root.checkPos(x, y, name)
- onYChanged: root.checkPos(x, y, name)
- }
- }
-
- add: targetTransition
- move: displaced
- }
-}
-
diff --git a/tests/auto/qtquick2/qquickpositioners/data/vertical-animated.qml b/tests/auto/qtquick2/qquickpositioners/data/vertical-animated.qml
deleted file mode 100644
index ecf593cd70..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/vertical-animated.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Column {
- objectName: "column"
- add: Transition {
- NumberAnimation {
- properties: "y";
- }
- }
- move: Transition {
- NumberAnimation {
- properties: "y";
- }
- }
- Rectangle {
- objectName: "one"
- color: "red"
- y: -100
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "blue"
- y: -100
- visible: false
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "three"
- color: "red"
- y: -100
- width: 50
- height: 50
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/vertical-spacing.qml b/tests/auto/qtquick2/qquickpositioners/data/vertical-spacing.qml
deleted file mode 100644
index 7087961651..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/vertical-spacing.qml
+++ /dev/null
@@ -1,28 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Column {
- objectName: "column"
- spacing: 10
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "red"
- width: 20
- height: 10
- }
- Rectangle {
- objectName: "three"
- color: "red"
- width: 40
- height: 20
- }
- }
-}
diff --git a/tests/auto/qtquick2/qquickpositioners/data/vertical.qml b/tests/auto/qtquick2/qquickpositioners/data/vertical.qml
deleted file mode 100644
index 0c3a81f008..0000000000
--- a/tests/auto/qtquick2/qquickpositioners/data/vertical.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 2.0
-
-Item {
- width: 640
- height: 480
- Column {
- objectName: "column"
- Rectangle {
- objectName: "one"
- color: "red"
- width: 50
- height: 50
- }
- Rectangle {
- objectName: "two"
- color: "red"
- width: 20
- height: 10
- }
- Rectangle {
- objectName: "three"
- color: "red"
- width: 40
- height: 20
- }
- }
-}