summaryrefslogtreecommitdiffstats
path: root/demos/declarative/phonebrowser/content/MediaButton.qml
blob: bb2510add43591d5231520cc62aa8b2bf7e7cefa (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
Item {
    id: Container
    signals: Signal {
        name: "clicked"
    }
    properties: Property {
        name: "text"
    }
    Image {
        id: Image
        source: "pics/button.png"
    }
    Image {
        id: Pressed
        source: "pics/button-pressed.png"
        opacity: 0
    }
    MouseRegion {
        id: MouseRegion
        anchors.fill: Image
        onClicked: { Container.clicked.emit(); }
    }
    Text {
        font.bold: true
        color: "white"
        anchors.centeredIn: Image
        text: Container.text
    }
    width: Image.width
    states: [
        State {
            name: "Pressed"
            when: MouseRegion.pressed == true
            SetProperties {
                target: Pressed
                opacity: 1
            }
        }
    ]
}