-
Notifications
You must be signed in to change notification settings - Fork 15
/
ControlsWPList.qml
121 lines (87 loc) · 2.2 KB
/
ControlsWPList.qml
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
import QtQuick 1.1
Rectangle {
id: controls_row
property alias select_list: select_list
property alias delete_list: delete_list
property alias edit_list: edit_list
property alias select_list_ma: select_list_ma
property alias delete_list_ma: delete_list_ma
property alias edit_list_ma: edit_list_ma
color: styl.panel_back_color
width: select_list.width + Math.max(delete_list.width, edit_list.width) + 44
height: 0
Row {
id: select_list
anchors {
top: parent.top
topMargin: 6
left: parent.left
leftMargin: 12
}
spacing: 6
Image {
id: select_list_icon
source: "images/tick_blue.png"
smooth: true
}
Text {
id: select_list_text
color: styl.text_color_primary
text: qsTr("Select")
font {family: "Ubuntu"; pixelSize: 14}
}
}
Row {
id: delete_list
anchors {
top: parent.top
topMargin: 6
left: parent.left
leftMargin: select_list.width + 36
}
spacing: 6
Image {
id: delete_list_icon
source: "images/close_red.png"
smooth: true
}
Text {
id: delete_list_text
color: styl.text_color_primary
text: qsTr("Delete")
font {family: "Ubuntu"; pixelSize: 14}
}
}
Row {
id: edit_list
anchors {
top: delete_list.bottom
topMargin: 6
left: delete_list.left
}
spacing: 6
Image {
id: edit_list_icon
source: styl.edit_icon
smooth: true
}
Text {
id: edit_list_text
color: styl.text_color_primary
text: qsTr("Edit")
font {family: "Ubuntu"; pixelSize: 14}
}
}
MouseArea {
id: select_list_ma
anchors.fill: select_list
}
MouseArea {
id: edit_list_ma
anchors.fill: edit_list
}
MouseArea {
id: delete_list_ma
anchors.fill: delete_list
}
}