diff -r e686773b3f54 -r 0ba2181d7c28 qtcontactsmobility/examples/qml-contacts/contents/MediaButton.qml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/qtcontactsmobility/examples/qml-contacts/contents/MediaButton.qml Fri Mar 19 09:27:18 2010 +0200 @@ -0,0 +1,35 @@ +import Qt 4.6 + +Item { + property var text + signal clicked + + id: container + Image { + id: normal + source: "pics/button.png" + } + Image { + id: pressed + source: "pics/button-pressed.png" + opacity: 0 + } + MouseRegion { + id: clickRegion + anchors.fill: normal + onClicked: { container.clicked(); } + } + Text { + font.bold: true + color: "white" + anchors.centerIn: normal + text: container.text + } + width: normal.width + + states: State { + name: "Pressed" + when: clickRegion.pressed == true + PropertyChanges { target: pressed; opacity: 1 } + } +}