blob: 3b0ef1e8e5fca32940540d699ec533b7dfbc3058 (
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
|
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
}
}
]
}
|