qtmobility/examples/qmlcontacts/contents/MediaButton.qml
author William Roberts <williamr@symbian.org>
Fri, 11 Jun 2010 16:26:23 +0100
branchGCC_SURGE
changeset 9 5561c345355e
parent 1 2b40d63a9c3d
child 14 6fbed849b4f4
permissions -rw-r--r--
Branch for GCC_SURGE fixes

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 }
    }
}