summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/states/data/basicChanges3.qml
blob: 2a5ca5d1c32bc6b9980c1dbec0f5ee34a4a7b9d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Qt 4.6
Rectangle {
    id: MyRectangle
    width: 100; height: 100
    color: "red"
    states: [
        State {
            name: "blue"
            PropertyChanges { target: MyRectangle; color: "blue" }
        },
        State {
            name: "bordered"
            PropertyChanges { target: MyRectangle; border.width: 2 }
        }]
}