Rewrite the canvas item's paint logic.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativepositioners / data / verticalqgraphicswidget.qml
1 import QtQuick 1.0
2
3 Item {
4     width: 640
5     height: 480
6     Column {
7         objectName: "column"
8         QGraphicsWidget {
9             objectName: "one"
10             width: 50
11             height: 50
12         }
13         QGraphicsWidget {
14             objectName: "two"
15             width: 20
16             height: 10
17         }
18         QGraphicsWidget {
19             objectName: "three"
20             width: 40
21             height: 20
22         }
23     }
24 }