aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeitem/data
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeitem/data')
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenProperty.qml14
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml27
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml23
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug2.qml53
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug3.qml15
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/implicitsize.qml19
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest.qml87
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest_implicit.qml68
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/keyspriority.qml9
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/keystest.qml24
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml54
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/mapCoordinates.qml43
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/mouseFocus.qml20
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/propertychanges.qml10
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/qtbug_16871.qml5
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/resourcesProperty.qml21
-rw-r--r--tests/auto/qtquick1/qdeclarativeitem/data/transformCrash.qml13
17 files changed, 0 insertions, 505 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenProperty.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenProperty.qml
deleted file mode 100644
index fab2367504..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenProperty.qml
+++ /dev/null
@@ -1,14 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: root
-
- property bool test1: root.children.length == 3
- property bool test2: root.children[0] == item1
- property bool test3: root.children[1] == item2
- property bool test4: root.children[2] == item3
- property bool test5: root.children[3] == null
-
- children: [ Item { id: item1 }, Item { id: item2 }, Item { id: item3 } ]
-}
-
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml
deleted file mode 100644
index 84f362fe16..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRect.qml
+++ /dev/null
@@ -1,27 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400
- height: 400
-
- property int childCount: 0;
-
- Item {
- objectName: "testItem"
- width: childrenRect.width
- height: childrenRect.height
-
- Repeater {
- id: repeater
- model: childCount
- delegate: Rectangle {
- x: index*10
- y: index*20
- width: 10
- height: 20
-
- color: "red"
- }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml
deleted file mode 100644
index 2ab73a1ff6..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 400
- height: 200
-
- Item {
- objectName: "theItem"
- anchors.centerIn: parent
- width: childrenRect.width
- height: childrenRect.height
- Rectangle {
- id: text1
- anchors.verticalCenter: parent.verticalCenter
- width: 100; height: 100; color: "green"
- }
- Rectangle {
- anchors.left: text1.right
- anchors.verticalCenter: parent.verticalCenter
- width: 100; height: 100; color: "green"
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug2.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug2.qml
deleted file mode 100644
index d67ad0e3d8..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug2.qml
+++ /dev/null
@@ -1,53 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width:360;
- height: 200
-
- Item {
- objectName: "theItem"
- anchors.centerIn: parent
- width: childrenRect.width
- height: childrenRect.height
- Rectangle {
- id: header1
- anchors.horizontalCenter: parent.horizontalCenter
- anchors.top: parent.top
- width: 100; height: 50
- color: "green"
- }
- Rectangle {
- id: text1
- anchors.top: header1.bottom
- anchors.topMargin: 10
- anchors.horizontalCenter: parent.horizontalCenter
- width: 100; height: 50
- color: "blue"
- }
- }
-
- states: [
- State {
- name: "row"
- AnchorChanges {
- target: header1
- anchors.horizontalCenter: undefined
- anchors.verticalCenter: parent.verticalCenter
- anchors.left: parent.left
- anchors.top: undefined
- }
- AnchorChanges {
- target: text1
- anchors.horizontalCenter: undefined
- anchors.verticalCenter: parent.verticalCenter
- anchors.top: undefined
- anchors.left: header1.right
- }
- PropertyChanges {
- target: text1
- anchors.leftMargin: 10
- anchors.topMargin: 0
- }
- }
- ]
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug3.qml b/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug3.qml
deleted file mode 100644
index 9d8e1e863a..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/childrenRectBug3.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- width: 300
- height: 300
-
- Rectangle {
- height: childrenRect.height
-
- Repeater {
- model: 1
- Rectangle { }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/implicitsize.qml b/tests/auto/qtquick1/qdeclarativeitem/data/implicitsize.qml
deleted file mode 100644
index 869c0fcec6..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/implicitsize.qml
+++ /dev/null
@@ -1,19 +0,0 @@
-import QtQuick 1.1
-
-Item {
- implicitWidth: 200
- implicitHeight: 100
-
- width: 80
- height: 60
-
- function resetSize() {
- width = undefined
- height = undefined
- }
-
- function changeImplicit() {
- implicitWidth = 150
- implicitHeight = 80
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest.qml b/tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest.qml
deleted file mode 100644
index f614a12e30..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest.qml
+++ /dev/null
@@ -1,87 +0,0 @@
-import QtQuick 1.0
-
-Grid {
- columns: 2
- width: 100; height: 100
- function verify() {
- if (item1.KeyNavigation.right != item2)
- return false;
- if (item1.KeyNavigation.down != item3)
- return false;
- if (item1.KeyNavigation.tab != item2)
- return false;
- if (item1.KeyNavigation.backtab != item4)
- return false;
-
- if (item2.KeyNavigation.left != item1)
- return false;
- if (item2.KeyNavigation.down != item4)
- return false;
- if (item2.KeyNavigation.tab != item3)
- return false;
- if (item2.KeyNavigation.backtab != item1)
- return false;
-
- if (item3.KeyNavigation.right != item4)
- return false;
- if (item3.KeyNavigation.up != item1)
- return false;
- if (item3.KeyNavigation.tab != item4)
- return false;
- if (item3.KeyNavigation.backtab != item2)
- return false;
-
- if (item4.KeyNavigation.left != item3)
- return false;
- if (item4.KeyNavigation.up != item2)
- return false;
- if (item4.KeyNavigation.tab != item1)
- return false;
- if (item4.KeyNavigation.backtab != item3)
- return false;
-
- return true;
- }
-
- Rectangle {
- id: item1
- objectName: "item1"
- focus: true
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.right: item2
- KeyNavigation.down: item3
- KeyNavigation.tab: item2
- KeyNavigation.backtab: item4
- }
- Rectangle {
- id: item2
- objectName: "item2"
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.left: item1
- KeyNavigation.down: item4
- KeyNavigation.tab: item3
- KeyNavigation.backtab: item1
- }
- Rectangle {
- id: item3
- objectName: "item3"
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.right: item4
- KeyNavigation.up: item1
- KeyNavigation.tab: item4
- KeyNavigation.backtab: item2
- }
- Rectangle {
- id: item4
- objectName: "item4"
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.left: item3
- KeyNavigation.up: item2
- KeyNavigation.tab: item1
- KeyNavigation.backtab: item3
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest_implicit.qml b/tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest_implicit.qml
deleted file mode 100644
index 52ffaea0ec..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/keynavigationtest_implicit.qml
+++ /dev/null
@@ -1,68 +0,0 @@
-import QtQuick 1.0
-
-Grid {
- columns: 2
- width: 100; height: 100
- function verify() {
- if (item1.KeyNavigation.tab != item2)
- return false;
- if (item1.KeyNavigation.backtab != item4)
- return false;
-
- if (item2.KeyNavigation.left != item1)
- return false;
- if (item2.KeyNavigation.down != item4)
- return false;
- if (item2.KeyNavigation.tab != item3)
- return false;
- if (item2.KeyNavigation.backtab != item1)
- return false;
-
- if (item3.KeyNavigation.right != item4)
- return false;
- if (item3.KeyNavigation.up != item1)
- return false;
- if (item3.KeyNavigation.tab != item4)
- return false;
- if (item3.KeyNavigation.backtab != item2)
- return false;
-
- return true;
- }
-
- Rectangle {
- id: item1
- objectName: "item1"
- focus: true
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.tab: item2
- KeyNavigation.backtab: item4
- }
- Rectangle {
- id: item2
- objectName: "item2"
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.left: item1
- KeyNavigation.down: item4
- KeyNavigation.tab: item3
- KeyNavigation.backtab: item1
- }
- Rectangle {
- id: item3
- objectName: "item3"
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- KeyNavigation.right: item4
- KeyNavigation.up: item1
- KeyNavigation.tab: item4
- KeyNavigation.backtab: item2
- }
- Rectangle {
- id: item4
- objectName: "item4"
- width: 50; height: 50
- color: focus ? "red" : "lightgray"
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/keyspriority.qml b/tests/auto/qtquick1/qdeclarativeitem/data/keyspriority.qml
deleted file mode 100644
index 375a6b61a5..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/keyspriority.qml
+++ /dev/null
@@ -1,9 +0,0 @@
-import QtQuick 1.0
-import Test 1.0
-
-KeyTestItem {
- focus: true
- Keys.onPressed: keysTestObject.keyPress(event.key, event.text, event.modifiers)
- Keys.onReleased: { keysTestObject.keyRelease(event.key, event.text, event.modifiers); event.accepted = true; }
- Keys.priority: keysTestObject.processLast ? Keys.AfterItem : Keys.BeforeItem
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/keystest.qml b/tests/auto/qtquick1/qdeclarativeitem/data/keystest.qml
deleted file mode 100644
index 9af6e9fb43..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/keystest.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import QtQuick 1.0
-
-Item {
- focus: true
-
- property bool isEnabled: Keys.enabled
-
- Keys.onPressed: keysTestObject.keyPress(event.key, event.text, event.modifiers)
- Keys.onReleased: { keysTestObject.keyRelease(event.key, event.text, event.modifiers); event.accepted = true; }
- Keys.onReturnPressed: keysTestObject.keyPress(event.key, "Return", event.modifiers)
- Keys.onDigit0Pressed: keysTestObject.keyPress(event.key, event.text, event.modifiers)
- Keys.onDigit9Pressed: { event.accepted = false; keysTestObject.keyPress(event.key, event.text, event.modifiers) }
- Keys.onTabPressed: keysTestObject.keyPress(event.key, "Tab", event.modifiers)
- Keys.onBacktabPressed: keysTestObject.keyPress(event.key, "Backtab", event.modifiers)
- Keys.forwardTo: [ item2 ]
- Keys.enabled: enableKeyHanding
-
- Item {
- id: item2
- visible: forwardeeVisible
- Keys.onPressed: keysTestObject.forwardedKey(event.key)
- Keys.onReleased: keysTestObject.forwardedKey(event.key)
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml b/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml
deleted file mode 100644
index 866b615310..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/layoutmirroring.qml
+++ /dev/null
@@ -1,54 +0,0 @@
-import QtQuick 1.1
-
-Item {
- property bool childrenInherit: true
- Item {
- objectName: "mirrored1"
- LayoutMirroring.enabled: true
- LayoutMirroring.childrenInherit: parent.childrenInherit
- Item {
- Item {
- objectName: "notMirrored1"
- LayoutMirroring.enabled: false
- Item {
- objectName: "inheritedMirror1"
- }
- }
- Item {
- objectName: "inheritedMirror2"
- }
- }
- }
- Item {
- objectName: "mirrored2"
- LayoutMirroring.enabled: true
- LayoutMirroring.childrenInherit: false
- Item {
- objectName: "notMirrored2"
- }
- }
- Item {
- LayoutMirroring.enabled: true
- LayoutMirroring.childrenInherit: true
- Loader {
- id: loader
- }
- }
- states: State {
- name: "newContent"
- PropertyChanges {
- target: loader
- sourceComponent: component
- }
- }
- Component {
- id: component
- Item {
- objectName: "notMirrored3"
- LayoutMirroring.enabled: false
- Item {
- objectName: "inheritedMirror3"
- }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/mapCoordinates.qml b/tests/auto/qtquick1/qdeclarativeitem/data/mapCoordinates.qml
deleted file mode 100644
index 48fb38da2b..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/mapCoordinates.qml
+++ /dev/null
@@ -1,43 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: root; objectName: "root"
- width: 200; height: 200
-
- Item { id: itemA; objectName: "itemA"; x: 50; y: 50 }
-
- Item {
- x: 50; y: 50
- Item { id: itemB; objectName: "itemB"; x: 100; y: 100 }
- }
-
- function mapAToB(x, y) {
- var pos = itemA.mapToItem(itemB, x, y)
- return Qt.point(pos.x, pos.y)
- }
-
- function mapAFromB(x, y) {
- var pos = itemA.mapFromItem(itemB, x, y)
- return Qt.point(pos.x, pos.y)
- }
-
- function mapAToNull(x, y) {
- var pos = itemA.mapToItem(null, x, y)
- return Qt.point(pos.x, pos.y)
- }
-
- function mapAFromNull(x, y) {
- var pos = itemA.mapFromItem(null, x, y)
- return Qt.point(pos.x, pos.y)
- }
-
- function checkMapAToInvalid(x, y) {
- var pos = itemA.mapToItem(1122, x, y)
- return pos == undefined;
- }
-
- function checkMapAFromInvalid(x, y) {
- var pos = itemA.mapFromItem(1122, x, y)
- return pos == undefined;
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/mouseFocus.qml b/tests/auto/qtquick1/qdeclarativeitem/data/mouseFocus.qml
deleted file mode 100644
index afa5397a33..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/mouseFocus.qml
+++ /dev/null
@@ -1,20 +0,0 @@
-import QtQuick 1.0
-
-QGraphicsWidget {
- size: "200x100"
- focusPolicy: QGraphicsWidget.ClickFocus
- Item {
- objectName: "declarativeItem"
- id: item
- width: 200
- height: 100
- MouseArea {
- anchors.fill: parent
- onPressed: {
- if (!item.focus) {
- item.focus = true;
- }
- }
- }
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/propertychanges.qml b/tests/auto/qtquick1/qdeclarativeitem/data/propertychanges.qml
deleted file mode 100644
index f1ea93349d..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/propertychanges.qml
+++ /dev/null
@@ -1,10 +0,0 @@
-import QtQuick 1.0
-
-Item {
- Item {
- objectName: "item"
- }
- Item {
- objectName: "parentItem"
- }
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/qtbug_16871.qml b/tests/auto/qtquick1/qdeclarativeitem/data/qtbug_16871.qml
deleted file mode 100644
index 8102df165c..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/qtbug_16871.qml
+++ /dev/null
@@ -1,5 +0,0 @@
-import QtQuick 1.0
-
-Item {
- children: [ 10 ]
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/resourcesProperty.qml b/tests/auto/qtquick1/qdeclarativeitem/data/resourcesProperty.qml
deleted file mode 100644
index e82cd029ad..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/resourcesProperty.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: root
-
- property bool test1
- property bool test2
- property bool test3
- property bool test4
- property bool test5
-
- Component.onCompleted: {
- test1 = (root.resources.length >= 3)
- test2 = root.resources[0] == item1
- test3 = root.resources[1] == item2
- test4 = root.resources[2] == item3
- test5 = root.resources[10] == null
- }
-
- resources: [ Item { id: item1 }, Item { id: item2 }, Item { id: item3 } ]
-}
diff --git a/tests/auto/qtquick1/qdeclarativeitem/data/transformCrash.qml b/tests/auto/qtquick1/qdeclarativeitem/data/transformCrash.qml
deleted file mode 100644
index 35c1a9ab42..0000000000
--- a/tests/auto/qtquick1/qdeclarativeitem/data/transformCrash.qml
+++ /dev/null
@@ -1,13 +0,0 @@
-import QtQuick 1.0
-
-Item {
- id: wrapper
- width: 200
- height: 200
-
- QtObject {
- id: object
- }
-
- Component.onCompleted: wrapper.transform = object
-}