summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativestates/data/explicit.qml
blob: 426731914fd32fb0355065a8d3bbdfd408a0a5be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 1.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
        }
    }
}