aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/explicit.qml
blob: d09893a1db2ce07aa2f8b8b23a6037b595f257da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
Rectangle {
    id: myRectangle
    property color sourceColor: "blue"
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        PropertyChanges {
            objectName: "changes"
            target: myRectangle; explicit: true
            color: sourceColor
        }
    }
}