aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml
diff options
context:
space:
mode:
authorMatthew Vogt <matthew.vogt@nokia.com>2012-01-31 16:52:36 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-03 00:39:18 +0100
commit01dc7e2ea476e0e6dcdce2e72979bbc858f4057d (patch)
treed8796f7695bbf8ad42abf47cd84c1b5e000ef795 /tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml
parent5e07b57b818326da47a46d384415041fa4cea0ba (diff)
Remove QtQuick1 elements from qtdeclarative
QtQuick1 is now contained in a separate repository. Task-number: QTBUG-23737 Change-Id: I09eae67af5693a22b896b916f816f73ccc3a89b1 Reviewed-by: Martin Jones <martin.jones@nokia.com>
Diffstat (limited to 'tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml')
-rw-r--r--tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml162
1 files changed, 0 insertions, 162 deletions
diff --git a/tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml b/tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml
deleted file mode 100644
index 82d0315aad..0000000000
--- a/tests/auto/qtquick1/qdeclarativeanchors/data/anchorsqgraphicswidget.qml
+++ /dev/null
@@ -1,162 +0,0 @@
-import QtQuick 1.0
-
-Rectangle {
- color: "white"
- width: 240
- height: 320
- Rectangle { id: masterRect; objectName: "masterRect"; x: 26; width: 96; height: 20; color: "red" }
- QGraphicsWidget {
- id: rect1; objectName: "rect1"
- y: 20; width: 10; height: 10
- anchors.left: masterRect.left
- }
- QGraphicsWidget {
- id: rect2; objectName: "rect2"
- y: 20; width: 10; height: 10
- anchors.left: masterRect.right
- }
- QGraphicsWidget {
- id: rect3; objectName: "rect3"
- y: 20; width: 10; height: 10
- anchors.left: masterRect.horizontalCenter
- }
- QGraphicsWidget {
- id: rect4; objectName: "rect4"
- y: 30; width: 10; height: 10
- anchors.right: masterRect.left
- }
- QGraphicsWidget {
- id: rect5; objectName: "rect5"
- y: 30; width: 10; height: 10
- anchors.right: masterRect.right
- }
- QGraphicsWidget {
- id: rect6; objectName: "rect6"
- y: 30; width: 10; height: 10
- anchors.right: masterRect.horizontalCenter
- }
- QGraphicsWidget {
- id: rect7; objectName: "rect7"
- y: 50; width: 10; height: 10
- anchors.left: parent.left
- }
- QGraphicsWidget {
- id: rect8; objectName: "rect8"
- y: 50; width: 10; height: 10
- anchors.left: parent.right
- }
- QGraphicsWidget {
- id: rect9; objectName: "rect9"
- y: 50; width: 10; height: 10
- anchors.left: parent.horizontalCenter
- }
- QGraphicsWidget {
- id: rect10; objectName: "rect10"
- y: 60; width: 10; height: 10
- anchors.right: parent.left
- }
- QGraphicsWidget {
- id: rect11; objectName: "rect11"
- y: 60; width: 10; height: 10
- anchors.right: parent.right
- }
- QGraphicsWidget {
- id: rect12; objectName: "rect12"
- y: 60; width: 10; height: 10
- anchors.right: parent.horizontalCenter
- }
- QGraphicsWidget {
- id: rect13; objectName: "rect13"
- x: 200; width: 10; height: 10
- anchors.top: masterRect.bottom
- }
- QGraphicsWidget {
- id: rect14; objectName: "rect14"
- width: 10; height: 10;
- anchors.verticalCenter: parent.verticalCenter
- }
- QGraphicsWidget {
- id: rect15; objectName: "rect15"
- y: 200; height: 10
- anchors.left: masterRect.left
- anchors.right: masterRect.right
- }
- QGraphicsWidget {
- id: rect16; objectName: "rect16"
- y: 220; height: 10
- anchors.left: masterRect.left
- anchors.horizontalCenter: masterRect.right
- }
- QGraphicsWidget {
- id: rect17; objectName: "rect17"
- y: 240; height: 10
- anchors.right: masterRect.right
- anchors.horizontalCenter: masterRect.left
- }
- QGraphicsWidget {
- id: rect18; objectName: "rect18"
- x: 180; width: 10
- anchors.top: masterRect.bottom
- anchors.bottom: rect12.top
- }
- QGraphicsWidget {
- id: rect19; objectName: "rect19"
- y: 70; width: 10; height: 10
- anchors.horizontalCenter: parent.horizontalCenter
- }
- QGraphicsWidget {
- id: rect20; objectName: "rect20"
- y: 70; width: 10; height: 10
- anchors.horizontalCenter: parent.right
- }
- QGraphicsWidget {
- id: rect21; objectName: "rect21"
- y: 70; width: 10; height: 10
- anchors.horizontalCenter: parent.left
- }
- QGraphicsWidget {
- id: rect22; objectName: "rect22"
- width: 10; height: 10
- anchors.centerIn: masterRect
- }
- QGraphicsWidget {
- id: rect23; objectName: "rect23"
- anchors.left: masterRect.left
- anchors.leftMargin: 5
- anchors.right: masterRect.right
- anchors.rightMargin: 5
- anchors.top: masterRect.top
- anchors.topMargin: 5
- anchors.bottom: masterRect.bottom
- anchors.bottomMargin: 5
- }
- QGraphicsWidget {
- id: rect24; objectName: "rect24"
- width: 10; height: 10
- anchors.horizontalCenter: masterRect.left
- anchors.horizontalCenterOffset: width/2
- }
- QGraphicsWidget {
- id: rect25; objectName: "rect25"
- width: 10; height: 10
- anchors.verticalCenter: rect12.top
- anchors.verticalCenterOffset: height/2
- }
- Rectangle {
- id: rect26; objectName: "rect26"
- width: 10; height: 10
- anchors.baseline: masterRect.top
- anchors.baselineOffset: height/2
- }
- Text {
- id: text1; objectName: "text1"
- y: 200;
- text: "Hello"
- }
- Text {
- id: text2; objectName: "text2"
- anchors.baseline: text1.baseline
- anchors.left: text1.right
- text: "World"
- }
-}