aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qtquick1/qdeclarativestates/data/script.qml
blob: 630aaf0ffad0418e215b04afc98b73963c58243d (plain)
1
2
3
4
5
6
7
8
9
10
import QtQuick 1.0
Rectangle {
    id: myRectangle
    width: 100; height: 100
    color: "red"
    states: State {
        name: "blue"
        StateChangeScript { script: myRectangle.color = "blue"; }
    }
}