summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/ExtendedRectangle.qml
blob: d91f5044551289aa718ee74f0a465c342c26b951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 1.0
Rectangle {
    id: extendedRect
    objectName: "extendedRect"
    property color extendedColor: "orange"

    width: 100; height: 100
    color: "red"
    states: State {
        name: "green"
        PropertyChanges {
            target: rect
            onDidSomething: {
                extendedRect.color = "green"
                extendedColor = "green"
            }
        }
    }
}