summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativepositioners/data/verticalqgraphicswidget.qml
blob: c9c860798adef37c3fb09fd2024472d9452088b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import Qt 4.7

Item {
    width: 640
    height: 480
    Column {
        objectName: "column"
        QGraphicsWidget {
            objectName: "one"
            width: 50
            height: 50
        }
        QGraphicsWidget {
            objectName: "two"
            width: 20
            height: 10
        }
        QGraphicsWidget {
            objectName: "three"
            width: 40
            height: 20
        }
    }
}