blob: 688724069cdca131b428ca853106925245c654a9 (
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
BorderImage {
id: ButtonImage
source: "images/toolbutton.sci"
width: Container.width; height: Container.height
}
BorderImage {
id: Pressed
opacity: 0
source: "images/toolbutton.sci"
width: Container.width; height: Container.height
}
MouseRegion {
id: MyMouseRegion
anchors.fill: ButtonImage
onClicked: { Container.clicked(); }
}
Text {
color: "white"
anchors.centerIn: ButtonImage; font.bold: true
text: Container.text; style: "Raised"; styleColor: "black"
}
states: [
State {
name: "Pressed"
when: MyMouseRegion.pressed == true
PropertyChanges {
target: Pressed
opacity: 1
}
}
]
}
|