| author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
| Fri, 11 Jun 2010 13:29:23 +0300 | |
| changeset 40 | b46a585f6909 |
| parent 27 | de1630741fbe |
| permissions | -rw-r--r-- |
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 } } }