-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPrefsComboBox.qml
193 lines (172 loc) · 6.11 KB
/
PrefsComboBox.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
import QtQuick 2.9
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.3
import "../common"
import AppStyle 1.0
import FontStyle 1.0
ComboBox {
id: root
property color checkedColor: AppStyle.sideBarDarkColor
property bool isBold: false
delegate:ItemDelegate {
id:itemDelegate
property string iconRectColor: iconColor ? iconColor : ""
property string iconRectIcon: iconName ? iconName : ""
width: root.width * 1.2
height: 40
hoverEnabled: true
focus: true
background: Rectangle{
color: itemDelegate.hovered ? AppStyle.applicationColor : AppStyle.transparent
anchors.fill: parent
radius: 8
}
RowLayout {
Layout.alignment: Qt.AlignVCenter
width: parent.width
height: parent.height
anchors.fill: parent
spacing: 10
Layout.leftMargin: 10
Layout.rightMargin: 10
Rectangle{
id:iconImageRect
visible:iconRectIcon
width: parent.height * 0.6
height: parent.height * 0.6
color: iconRectColor
Layout.alignment: Qt.AlignVCenter
Layout.leftMargin: 10
radius: 6
Label{
text: iconRectIcon
font.family: FontStyle.getContentFont.name
font.pixelSize: isBold ? AppStyle.t1 : AppStyle.t1
font.bold: isBold ? Font.Bold : Font.Normal
font.weight: isBold ? Font.Bold : Font.Normal
anchors.centerIn: parent
}
}
Label {
opacity: 0.87
text: name
color: itemDelegate.hovered ? "white" : AppStyle.textColor
Layout.fillWidth: true
font.family: FontStyle.getContentFont.name
font.pixelSize: isBold ? AppStyle.t1 : AppStyle.t1
font.bold: isBold ? Font.Bold : Font.Normal
font.weight: isBold ? Font.Bold : Font.Normal
verticalAlignment: Image.AlignVCenter
Layout.alignment: Qt.AlignVCenter
Layout.leftMargin: iconImageRect.visible ? 0 : 10
}
Label {
opacity: 0.87
text: "✅"
visible: root.currentIndex == index
Layout.fillWidth: true
font.family: FontStyle.getContentFont.name
font.pixelSize: isBold ? AppStyle.t1 : AppStyle.t1
font.bold: isBold ? Font.Bold : Font.Normal
font.weight: isBold ? Font.Bold : Font.Normal
verticalAlignment: Image.AlignVCenter
horizontalAlignment: Image.AlignRight
Layout.alignment: Qt.AlignVCenter
Layout.rightMargin: 10
}
}
}
indicator: Canvas {
id: canvas
x: root.width - width - 10
y: (root.availableHeight - height) / 2
width: 12
height: 8
contextType: "2d"
Connections {
target: root
function onPressedChanged(){
canvas.requestPaint()
}
}
onPaint: {
context.reset();
context.moveTo(0, 0);
context.lineTo(width, 0);
context.lineTo(width / 2, height);
context.closePath();
context.fillStyle = AppTheme.darkTheme ? "white" : "black"
context.fill();
}
}
contentItem: Item {
width: root.background.width - root.indicator.width - 10
height: root.background.height
RowLayout {
anchors.fill: parent
spacing: 10
Rectangle{
id:iconRect
visible: model.get(currentIndex).iconName ? true : false
width: parent.height * 0.6
height: parent.height * 0.6
color: model.get(currentIndex).iconColor
Layout.alignment: Qt.AlignVCenter
Layout.leftMargin: 5
radius: 6
Label{
text: model.get(currentIndex).iconName
font.family: FontStyle.getContentFont.name
font.pixelSize: isBold ? AppStyle.t1 : AppStyle.t1
font.bold: isBold ? Font.Bold : Font.Normal
font.weight: isBold ? Font.Bold : Font.Normal
anchors.centerIn: parent
}
}
Label {
opacity: 0.87
text: model.get(currentIndex).name
Layout.fillWidth: true
font.family: FontStyle.getContentFont.name
font.pixelSize: isBold ? AppStyle.t1 : AppStyle.t1
font.bold: isBold ? Font.Bold : Font.Normal
font.weight: isBold ? Font.Bold : Font.Normal
verticalAlignment: Image.AlignVCenter
Layout.alignment: Qt.AlignVCenter
elide: Text.ElideRight
Layout.leftMargin:iconRect.visible ? 0 : 10
}
}
}
background: Rectangle {
implicitWidth: 200
implicitHeight: 41
color: root.down ? Qt.darker(root.checkedColor, 1.2) : root.checkedColor
radius: 6
border.width: 0.6
border.color: "grey"
}
popup: Popup {
y: root.height - 1
width: root.width * 1.3
implicitHeight: contentItem.implicitHeight > 250 ? 250 : contentItem.implicitHeight
padding: 4
contentItem: ListView {
leftMargin: 5
implicitHeight: contentHeight
keyNavigationEnabled: true
model: root.popup.visible ? root.delegateModel : null
clip: true
focus: true
currentIndex: root.highlightedIndex
}
background: Rectangle {
anchors.fill: parent
color: AppStyle.sideBarDarkColor
radius: 6
border.width: 0.6
border.color: "grey"
clip: true
}
}
}