aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativepositioners/data/verticalqgraphicswidget.qml
blob: c320714f152ef6ce5f1cd65a2b7a199712e525f7 (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 QtQuick 1.0

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
        }
    }
}