summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/basicBinding4.qml
blob: f0b72bd5deed605e2bb33836b56fd221bc3e6262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import Qt 4.6
Rectangle {
    id: MyRectangle

    property color sourceColor: "blue"
    width: 100; height: 100
    color: "red"
    states: [
        State {
            name: "blue"
            PropertyChanges { target: MyRectangle; color: sourceColor }
        },
        State {
            name: "green"
            PropertyChanges { target: MyRectangle; color: "green" }
        }]
}