aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeflickable/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeflickable/data')
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/disabled.qml30
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/disabledcontent.qml8
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickable01.qml4
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickable02.qml14
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml14
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml22
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/flickableqgraphicswidget.qml7
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/nestedPressDelay.qml33
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml27
-rw-r--r--tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml21
10 files changed, 0 insertions, 180 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/disabled.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/disabled.qml
deleted file mode 100644
index ac63cd461b..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/disabled.qml
+++ /dev/null
@@ -1,30 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- id: root
- width: 100; height: 100
- property bool clicked: false
-
- Flickable {
- objectName: "flickable"
- width: 100; height: 100
- contentWidth: column.width; contentHeight: column.height
- enabled: false
-
- Column {
- id: column
- Repeater {
- model: 4
- Rectangle {
- width: 200; height: 300; color: "blue"
- MouseArea { anchors.fill: parent; onClicked: { } }
- }
- }
- }
- }
-
- MouseArea {
- width: 100; height: 30
- onClicked: root.clicked = true
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/disabledcontent.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/disabledcontent.qml
deleted file mode 100644
index dcbb20bdd5..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/disabledcontent.qml
+++ /dev/null
@@ -1,8 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- width: 100; height: 100
- contentWidth: 200; contentHeight: 300
-
- QGraphicsWidget { width: 200; height: 300; enabled: false }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable01.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickable01.qml
deleted file mode 100644
index c53ae3f98a..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable01.qml
+++ /dev/null
@@ -1,4 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable02.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickable02.qml
deleted file mode 100644
index 98925ae3c6..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable02.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- width: 100; height: 100
- contentWidth: row.width; contentHeight: row.height
-
- Row {
- id: row
- Repeater {
- model: 4
- Rectangle { width: 200; height: 300; color: "blue" }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml
deleted file mode 100644
index 8359ad1bb4..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable03.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- width: 100; height: 200
- contentWidth: column.width; contentHeight: column.height
-
- Column {
- id: column
- Repeater {
- model: 4
- Rectangle { width: 200; height: 300; color: "blue" }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml
deleted file mode 100644
index fcc683ae4d..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickable04.qml
+++ /dev/null
@@ -1,22 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- property bool ok: false
- function check() {
- if (column.parent == contentItem)
- ok = true;
- }
-
- width: 100; height: 100
- contentWidth: column.width; contentHeight: column.height
- pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
- maximumFlickVelocity: 2000
-
- Column {
- id: column
- Repeater {
- model: 4
- Rectangle { width: 200; height: 300; color: "blue" }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/flickableqgraphicswidget.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/flickableqgraphicswidget.qml
deleted file mode 100644
index 6cbf12c1ee..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/flickableqgraphicswidget.qml
+++ /dev/null
@@ -1,7 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- width: 100; height: 100
-
- QGraphicsWidget { objectName: "widget1"; width: 200; height: 300 }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/nestedPressDelay.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/nestedPressDelay.qml
deleted file mode 100644
index d0ee545f97..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/nestedPressDelay.qml
+++ /dev/null
@@ -1,33 +0,0 @@
-import QtQuick 1.0
-
-Flickable {
- property bool pressed: ma.pressed
- width: 240
- height: 320
- contentWidth: 480
- contentHeight: 320
- flickableDirection: Flickable.HorizontalFlick
- pressDelay: 50
- Flickable {
- objectName: "innerFlickable"
- flickableDirection: Flickable.VerticalFlick
- width: 480
- height: 320
- contentWidth: 480
- contentHeight: 400
- pressDelay: 10000
- Rectangle {
- y: 100
- anchors.horizontalCenter: parent.horizontalCenter
- width: 240
- height: 100
- color: ma.pressed ? 'blue' : 'green'
- MouseArea {
- id: ma
- objectName: "mouseArea"
- anchors.fill: parent
- }
- }
- }
-}
-
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml
deleted file mode 100644
index e2abb99f2a..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/resize.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 1.1
-
-Rectangle {
- function resizeContent() {
- flick.resizeContent(600, 600, Qt.point(100, 100))
- }
- function returnToBounds() {
- flick.returnToBounds()
- }
- width: 400
- height: 360
- color: "gray"
-
- Flickable {
- id: flick
- objectName: "flick"
- anchors.fill: parent
- contentWidth: 300
- contentHeight: 300
-
- Rectangle {
- width: flick.contentWidth
- height: flick.contentHeight
- color: "red"
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml b/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml
deleted file mode 100644
index 6ea81b2d9e..0000000000
--- a/tests/auto/qtquick1/qdeclarativeflickable/data/wheel.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 1.1
-
-Rectangle {
- width: 400
- height: 400
- color: "gray"
-
- Flickable {
- id: flick
- objectName: "flick"
- anchors.fill: parent
- contentWidth: 800
- contentHeight: 800
-
- Rectangle {
- width: flick.contentWidth
- height: flick.contentHeight
- color: "red"
- }
- }
-}