summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeanchors/data/fill.qml
blob: c59436528849a8b0c2f2bd871d4d3644f1b6d1b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Qt 4.7

Rectangle {
    width: 200; height: 200
    Rectangle {
        objectName: "filler"
        width: 50; height: 50; color: "blue"
        anchors.fill: parent;
	anchors.leftMargin: 10;
	anchors.rightMargin: 20;
	anchors.topMargin: 30;
	anchors.bottomMargin: 40;
    }
}