summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/basicChanges4.qml
blob: a373cfcde659a204e3be1dd3a1155cb8fe716fd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import Qt.test 1.0
import Qt 4.6

MyRectangle {
    id: rect
    width: 100; height: 100
    color: "red"

    states: State {
        name: "aBlueDay"
        PropertyChanges {
            target: rect
            onPropertyWithNotifyChanged: { rect.color = "blue"; }
        }
    }

    Component.onCompleted: rect.state = "aBlueDay"
}