| author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
| Mon, 04 Oct 2010 01:19:32 +0300 | |
| changeset 37 | 758a864f9613 |
| parent 30 | 5dc02b23752f |
| permissions | -rw-r--r-- |
import Qt 4.7 Rectangle { id: wrapper width: 240 height: 320 Rectangle { id: myRect color: "red" width: 50; height: 50 x: 100; y: 100 MouseArea { anchors.fill: parent onClicked: if (wrapper.state == "state1") wrapper.state = ""; else wrapper.state = "state1"; } } states: State { name: "state1" PropertyChanges { target: myRect; border.color: "blue" } } transitions: Transition { ColorAnimation { properties: "border.color"; duration: 1000 } } }