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

Rectangle {
    id: container
    width: 200; height: 200
    Rectangle {
        id: myRect
        objectName: "MyRect"
        width: 50; height: 50
        color: "green";
        anchors.left: parent.left
        anchors.leftMargin: 5
    }
    states: State {
        name: "right"
        AnchorChanges {
            id: ancCh
            target: myRect;
            anchors.left: undefined
            anchors.right: container.right
        }
    }
}