blob: 00bce34af25faa1cfd1da3b9f3c064924492efdd (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
Rect {
id: removeButton
width: 30
height: 30
color: "red"
radius: 5
property var expandedWidth: 230
signal confirmed
resources: [
Script {
function toggle() {
if (removeButton.state == 'opened') {
removeButton.state = '';
contacts.mouseGrabbed=false;
} else {
if (!contacts.mouseGrabbed) {
removeButton.state = 'opened';
contacts.mouseGrabbed=true;
}
}
}
}
]
Image {
id: trashIcon
width: 22
height: 22
anchors.right: parent.right
anchors.rightMargin: 4
anchors.verticalCenter: parent.verticalCenter
source: "pics/trash.png"
opacity: 1
MouseRegion {
anchors.fill: parent
onClicked: { toggle() }
}
}
Image {
id: cancelIcon
width: 22
height: 22
anchors.right: parent.right
anchors.rightMargin: 4
anchors.verticalCenter: parent.verticalCenter
source: "pics/cancel.png"
opacity: 0
MouseRegion {
anchors.fill: parent
onClicked: { toggle() }
}
}
Image {
id: confirmIcon
width: 22
height: 22
anchors.left: parent.left
anchors.leftMargin: 4
anchors.verticalCenter: parent.verticalCenter
source: "pics/ok.png"
opacity: 0
MouseRegion {
anchors.fill: parent
onClicked: { toggle(); removeButton.confirmed() }
}
}
Text {
id: text
anchors.verticalCenter: parent.verticalCenter
anchors.left: confirmIcon.right
anchors.leftMargin: 4
anchors.right: cancelIcon.left
anchors.rightMargin: 4
font.bold: true
color: "white"
hAlign: "AlignHCenter"
text: "Remove"
opacity: 0
}
opacity: Behavior {
NumberAnimation {
property: "opacity"
duration: 250
}
}
states: [
State {
name: "opened"
SetProperties {
target: removeButton
width: removeButton.expandedWidth
}
SetProperties {
target: text
opacity: 1
}
SetProperties {
target: confirmIcon
opacity: 1
}
SetProperties {
target: cancelIcon
opacity: 1
}
SetProperties {
target: trashIcon
opacity: 0
}
}
]
transitions: [
Transition {
fromState: "*"
toState: "opened"
reversible: true
NumberAnimation {
properties: "opacity,x,width"
duration: 200
}
}
]
}
|