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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
|
pragma ComponentBehavior: Bound
import QtQuick
import qs.Common
import qs.Services
import qs.Widgets
Rectangle {
id: root
property var variant: ({})
property bool expanded: false
signal expandToggled(bool isExpanded)
signal deleteRequested
signal nameChanged(string newName)
signal configChanged(string key, var value)
readonly property var cfg: variant.config || {}
function updateConfig(key, value) {
var newConfig = JSON.parse(JSON.stringify(cfg));
newConfig[key] = value;
root.configChanged("config", newConfig);
}
width: parent?.width ?? 0
height: variantColumn.height
radius: Theme.cornerRadius
color: Theme.surfaceContainerHigh
clip: true
Column {
id: variantColumn
width: parent.width
spacing: 0
Item {
width: parent.width
height: headerContent.height + Theme.spacingM * 2
Row {
id: headerContent
x: Theme.spacingM
y: Theme.spacingM
width: parent.width - Theme.spacingM * 2
spacing: Theme.spacingM
DankIcon {
name: root.expanded ? "expand_less" : "expand_more"
size: Theme.iconSize
color: Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
}
Column {
width: parent.width - Theme.iconSize - deleteBtn.width - Theme.spacingM * 2
anchors.verticalCenter: parent.verticalCenter
spacing: 0
StyledText {
text: root.variant.name || "Unnamed"
font.pixelSize: Theme.fontSizeMedium
color: Theme.surfaceText
width: parent.width
elide: Text.ElideRight
}
StyledText {
property var features: {
var f = [];
if (root.cfg.showCpu)
f.push("CPU");
if (root.cfg.showMemory)
f.push("RAM");
if (root.cfg.showNetwork)
f.push("Net");
if (root.cfg.showDisk)
f.push("Disk");
if (root.cfg.showGpuTemp)
f.push("GPU");
return f;
}
text: features.length > 0 ? features.join(", ") : I18n.tr("No features enabled")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: parent.width
elide: Text.ElideRight
}
}
Rectangle {
id: deleteBtn
width: 32
height: 32
radius: 16
color: deleteMouse.containsMouse ? Theme.error : "transparent"
anchors.verticalCenter: parent.verticalCenter
DankIcon {
anchors.centerIn: parent
name: "delete"
size: 16
color: deleteMouse.containsMouse ? Theme.background : Theme.surfaceVariantText
}
MouseArea {
id: deleteMouse
anchors.fill: parent
hoverEnabled: true
cursorShape: Qt.PointingHandCursor
onClicked: root.deleteRequested()
}
}
}
MouseArea {
anchors.fill: parent
anchors.rightMargin: deleteBtn.width + Theme.spacingM
cursorShape: Qt.PointingHandCursor
onClicked: root.expandToggled(!root.expanded)
}
}
Column {
width: parent.width
spacing: 0
visible: root.expanded
SettingsDivider {}
Item {
width: parent.width
height: nameRow.height + Theme.spacingM * 2
Row {
id: nameRow
x: Theme.spacingM
y: Theme.spacingM
width: parent.width - Theme.spacingM * 2
spacing: Theme.spacingM
StyledText {
text: I18n.tr("Name")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
width: 80
anchors.verticalCenter: parent.verticalCenter
}
DankTextField {
width: parent.width - 80 - Theme.spacingM
text: root.variant.name || ""
onEditingFinished: {
if (text !== root.variant.name)
root.nameChanged(text);
}
}
}
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Header")
checked: root.cfg.showHeader ?? true
onToggled: checked => root.updateConfig("showHeader", checked)
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show CPU")
checked: root.cfg.showCpu ?? true
onToggled: checked => root.updateConfig("showCpu", checked)
}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show CPU Graph")
visible: root.cfg.showCpu
checked: root.cfg.showCpuGraph ?? true
onToggled: checked => root.updateConfig("showCpuGraph", checked)
}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show CPU Temp")
visible: root.cfg.showCpu
checked: root.cfg.showCpuTemp ?? true
onToggled: checked => root.updateConfig("showCpuTemp", checked)
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Memory")
checked: root.cfg.showMemory ?? true
onToggled: checked => root.updateConfig("showMemory", checked)
}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Memory Graph")
visible: root.cfg.showMemory
checked: root.cfg.showMemoryGraph ?? true
onToggled: checked => root.updateConfig("showMemoryGraph", checked)
}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Memory in GB")
visible: root.cfg.showMemory
checked: root.cfg.showInGb ?? false
onToggled: checked => root.updateConfig("showInGb", checked)
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Network")
checked: root.cfg.showNetwork ?? true
onToggled: checked => root.updateConfig("showNetwork", checked)
}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Network Graph")
visible: root.cfg.showNetwork
checked: root.cfg.showNetworkGraph ?? true
onToggled: checked => root.updateConfig("showNetworkGraph", checked)
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Disk")
checked: root.cfg.showDisk ?? true
onToggled: checked => root.updateConfig("showDisk", checked)
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show GPU Temperature")
checked: root.cfg.showGpuTemp ?? false
onToggled: checked => root.updateConfig("showGpuTemp", checked)
}
Column {
width: parent.width
spacing: Theme.spacingXS
visible: root.cfg.showGpuTemp && DgopService.availableGpus.length > 0
Item {
width: 1
height: Theme.spacingS
}
Repeater {
model: DgopService.availableGpus
Rectangle {
required property var modelData
width: (parent?.width ?? 0) - Theme.spacingM * 2
x: Theme.spacingM
height: 40
radius: Theme.cornerRadius
color: root.cfg.gpuPciId === modelData.pciId ? Theme.primarySelected : Theme.surfaceContainer
border.color: root.cfg.gpuPciId === modelData.pciId ? Theme.primary : "transparent"
border.width: 2
Row {
anchors.fill: parent
anchors.margins: Theme.spacingS
spacing: Theme.spacingS
DankIcon {
name: "videocam"
size: Theme.iconSizeSmall
color: root.cfg.gpuPciId === modelData.pciId ? Theme.primary : Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
}
StyledText {
text: modelData.displayName || "Unknown GPU"
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
width: parent.width - Theme.iconSizeSmall - Theme.spacingS
anchors.verticalCenter: parent.verticalCenter
elide: Text.ElideRight
}
}
MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
onClicked: root.updateConfig("gpuPciId", modelData.pciId)
}
}
}
Item {
width: 1
height: Theme.spacingS
}
}
SettingsDivider {}
DankToggle {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
text: I18n.tr("Show Top Processes")
checked: root.cfg.showTopProcesses ?? false
onToggled: checked => root.updateConfig("showTopProcesses", checked)
}
SettingsDivider {}
Column {
width: parent.width - Theme.spacingM * 2
x: Theme.spacingM
topPadding: Theme.spacingM
bottomPadding: Theme.spacingM
spacing: Theme.spacingS
Row {
width: parent.width
StyledText {
id: transparencyLabel
text: I18n.tr("Transparency")
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText
anchors.verticalCenter: parent.verticalCenter
}
Item {
width: parent.width - transparencyLabel.width - transparencyValue.width
height: 1
}
StyledText {
id: transparencyValue
text: transparencySlider.value + "%"
font.pixelSize: Theme.fontSizeSmall
font.weight: Font.Medium
color: Theme.primary
anchors.verticalCenter: parent.verticalCenter
}
}
DankSlider {
id: transparencySlider
width: parent.width
minimum: 0
maximum: 100
value: Math.round((root.cfg.transparency ?? 0.8) * 100)
showValue: false
wheelEnabled: false
onSliderDragFinished: finalValue => root.updateConfig("transparency", finalValue / 100)
}
}
Item {
width: 1
height: Theme.spacingM
}
}
}
}
|