summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/common/MediaButton.qml
blob: 86ac948369927244e5b498b8f1044104e1521cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import Qt 4.6

Item {
    id: container

    signal clicked

    property string text

    Image {
        id: buttonImage
        source: "pics/button.png"
    }
    Image {
        id: pressed
        source: "pics/button-pressed.png"
        opacity: 0
    }
    MouseArea {
        id: mouseRegion
        anchors.fill: buttonImage
        onClicked: { container.clicked(); }
    }
    Text {
        font.bold: true
        color: "white"
        anchors.centerIn: buttonImage
        text: container.text
    }
    width: buttonImage.width
    states: [
        State {
            name: "Pressed"
            when: mouseRegion.pressed == true
            PropertyChanges {
                target: pressed
                opacity: 1
            }
        }
    ]
}