summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2010-05-07 04:41:00 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2010-05-07 04:41:23 (GMT)
commit32c2d17680a04fced714aa103b40d7de24d9eb26 (patch)
tree3cf2eae8c3038a4800f033b05cf43b88e1b33163 /tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml
parent60a06af7200217aa16c8c130a1ed0afce31812ed (diff)
downloadQt-32c2d17680a04fced714aa103b40d7de24d9eb26.zip
Qt-32c2d17680a04fced714aa103b40d7de24d9eb26.tar.gz
Qt-32c2d17680a04fced714aa103b40d7de24d9eb26.tar.bz2
Fix autotests
Diffstat (limited to 'tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml')
-rw-r--r--tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml52
1 files changed, 0 insertions, 52 deletions
diff --git a/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml b/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml
deleted file mode 100644
index d6cf4de..0000000
--- a/tests/auto/declarative/graphicswidgets/data/graphicswidgets.qml
+++ /dev/null
@@ -1,52 +0,0 @@
-import Qt 4.7
-import Qt.widgets 4.7
-
-QGraphicsWidget {
- geometry: "20,0,600x400"
- layout: QGraphicsLinearLayout {
- orientation: Qt.Horizontal
- QGraphicsWidget {
- layout: QGraphicsLinearLayout {
- spacing: 10; orientation: Qt.Vertical
- LayoutItem {
- QGraphicsLinearLayout.stretchFactor: 1
- QGraphicsLinearLayout.spacing: 1
- objectName: "left"
- minimumSize: "100x100"
- maximumSize: "300x300"
- preferredSize: "100x100"
- Rectangle { objectName: "yellowRect"; color: "yellow"; anchors.fill: parent }
- }
- LayoutItem {
- QGraphicsLinearLayout.stretchFactor: 10
- QGraphicsLinearLayout.spacing: 10
- objectName: "left"
- minimumSize: "100x100"
- maximumSize: "300x300"
- preferredSize: "100x100"
- Rectangle { objectName: "yellowRect"; color: "blue"; anchors.fill: parent }
- }
- }
- }
- QGraphicsWidget {
- layout: QGraphicsLinearLayout {
- spacing: 10; orientation: Qt.Horizontal; contentsMargin: 10
- LayoutItem {
- objectName: "left"
- minimumSize: "100x100"
- maximumSize: "300x300"
- preferredSize: "100x100"
- Rectangle { objectName: "yellowRect"; color: "red"; anchors.fill: parent }
- }
- LayoutItem {
- objectName: "left"
- minimumSize: "100x100"
- maximumSize: "300x300"
- preferredSize: "100x100"
- Rectangle { objectName: "yellowRect"; color: "green"; anchors.fill: parent }
- }
- }
- }
- }
-}
-