-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.qml
More file actions
601 lines (490 loc) · 17.2 KB
/
App.qml
File metadata and controls
601 lines (490 loc) · 17.2 KB
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
// ApplicationWindow
ApplicationWindow {
visible: true
title: "Codex"
minimumWidth: 1000
minimumHeight: 800
maximumWidth: 1000
maximumHeight: 800
flags: Qt.FramelessWindowHint
property string currentPage: "Overview"
property string username: ""
property string mem: "--/-- GB"
property string cpuData: "--%"
property string diskUsageData: "--%"
property string systemfetch: "--"
property string cpuJSON: ""
property string ipJSON: ""
property string lsblkJSON: ""
Background {}
// this row holds the sidebar and the body
Row {
anchors.fill: parent
spacing: 15
anchors.margins: 15
// SIDEBAR
Rectangle {
id: sidebar
width: 80
height: parent.height
color: "black"
opacity: 0.7
radius: 15
x: -100
SmoothedAnimation on x {
to: 0
duration: 600
easing.type: Easing.InOutCubic
}
ColumnLayout {
spacing: 10
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
anchors.topMargin: 15
height: parent.height - 30
Button {
contentItem: Image {
source: "icons/overview.svg"
anchors.centerIn: parent
}
text: qsTr("Close")
display: AbstractButton.IconOnly
onClicked: {
loader.sourceComponent = overview
currentPage = "Overview"
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
Button {
contentItem: Image {
source: "icons/proc.svg"
anchors.centerIn: parent
}
text: qsTr("Close")
display: AbstractButton.IconOnly
onClicked: {
loader.sourceComponent = cpu
currentPage = "CPU"
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
Button {
contentItem: Image {
source: "icons/network.svg"
anchors.centerIn: parent
}
text: qsTr("Close")
display: AbstractButton.IconOnly
onClicked: {
loader.sourceComponent = network
currentPage = "Network"
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
Button {
contentItem: Image {
source: "icons/storage.svg"
anchors.centerIn: parent
}
text: qsTr("Close")
display: AbstractButton.IconOnly
onClicked: {
loader.sourceComponent = storage
currentPage = "Storage"
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
Item {
Layout.fillHeight: true
}
Button {
contentItem: Image {
source: "icons/info.svg"
anchors.centerIn: parent
}
text: qsTr("Info")
display: AbstractButton.IconOnly
onClicked: {
loader.sourceComponent = about
currentPage = "About"
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
}
} // SIDEBAR
// this column holds the topbar and the content body
ColumnLayout {
width: parent.width - 95
spacing: 10
// TOPBAR
RowLayout {
width: parent.width
y: -150
NumberAnimation on y {
to: 0
duration: 600
easing.type: Easing.InOutCubic
}
CustomText {
innerText: "CODEX" + " - " + currentPage
}
Item {
Layout.fillWidth: true
}
Button {
contentItem: Image {
source: "icons/close.svg"
anchors.centerIn: parent
}
anchors.bottomMargin: 10.0
text: qsTr("Close")
display: AbstractButton.IconOnly
onClicked: {
Qt.quit();
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
} // TOPBAR
Loader {
id: loader
width: parent.width
height: parent.width
sourceComponent: overview
}
}
}
Component {
id: overview
Column {
width: parent.width
height: parent.height
spacing: 10
Rectangle {
width: parent.width
height: 150
color: "transparent"
border.color: "white"
border.width: 1
radius: 4
CustomText {
text: "hi," + "\n" + username + "!"
pointSize: 30
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 15
}
}
Rectangle {
width: parent.width
height: 150
color: "transparent"
anchors.margins: 20
border.color: "white"
border.width: 1
radius: 4
CustomText {
text: systemfetch
anchors.verticalCenter: parent.verticalCenter
anchors.left: parent.left
anchors.leftMargin: 15
}
}
Rectangle {
height: 200
width: parent.width
radius: 15
color: "transparent"
RowLayout {
anchors.fill: parent
spacing: 10
TopBox {
id: ram
title: "RAM"
content: mem
animDuration: 800
}
TopBox {
id: cpu
title: "CPU"
content: cpuData
animDuration: 1200
}
TopBox {
id: disk
title: "Disk"
content: diskUsageData
animDuration: 1600
}
}
}
}
} // overview
Component {
id: cpu
Column {
height: parent.width
width: parent.width
spacing: 20
property var parsed: JSON.parse(cpuJSON)
Rectangle {
height: 200
width: parent.width
radius: 15
color: "transparent"
RowLayout {
height: 200
width: parent.width
spacing: 10
TopBox {
id: arch
title: "Arch"
content: parsed.lscpu[0].data
animDuration: 800
}
TopBox {
id: cpu_model
title: "CPU Mode"
content: parsed.lscpu[1].data
animDuration: 1200
}
}
}
Rectangle {
width: parent.width
height: 1
color: "gray"
}
ScrollView {
width: parent.width
height: 500
Column {
anchors.fill: parent
spacing: 10
padding: 10
Repeater {
model: parsed.lscpu.length
Column {
CustomText {
text: parsed.lscpu[index].field
color: "white"
}
CustomText {
text: parsed.lscpu[index].data
color: "lightgray"
}
}
}
}
}
}
} // cpu
Component {
id: network
Column {
width: parent.width
height: parent.height
spacing: 10
property var parsed: JSON.parse(ipJSON)
Rectangle {
width: parent.width
color: "transparent"
height: 200
Column {
anchors.fill: parent
spacing: 10
padding: 10
Repeater {
model: parsed.length
Row {
spacing: 20
CustomText {
text: parsed[index].ifindex
color: "white"
pointSize: 80
}
Column {
spacing: 5
CustomText {
text: parsed[index].ifname
color: "lightgray"
}
CustomText {
text: parsed[index].addr_info[0].local
color: "lightgray"
}
CustomText {
text: parsed[index].addr_info[1].local
color: "lightgray"
}
CustomText {
text: parsed[index].address
color: "lightgray"
}
}
}
}
}
}
}
} // network
Component {
id: storage
ColumnLayout {
width: parent.width
height: parent.height
spacing: 10
property var parsed: JSON.parse(lsblkJSON).blockdevices
Column {
width: parent.width
spacing: 10
RowLayout {
width: parent.width
CustomText {
text: "Name" + "\t\t" +
"FS Type" + "\t\t" +
"FS Avail"
}
Item { Layout.fillWidth: true }
CustomText {
text: "Progress"
}
}
Repeater {
model: parsed
Repeater {
model: modelData.children
RowLayout {
spacing: 20
width: parent.width
CustomText {
text: modelData.name + "\t\t" +
modelData.fstype + "\t\t" +
modelData.fsavail
}
Item { Layout.fillWidth: true }
ProgressBar {
id: control
value: Number(modelData['fsuse%'].replace('%', '')/100)
visible: modelData['fsuse%'] !== null
padding: 2
background: Rectangle {
implicitWidth: 200
implicitHeight: 6
color: "gray"
radius: 10
}
contentItem: Item {
implicitWidth: 200
implicitHeight: 4
Rectangle {
anchors.left: parent.left
anchors.leftMargin: -2
anchors.verticalCenter: parent.verticalCenter
width: control.visualPosition * parent.width
height: 10
radius: 10
color: "lightgray"
}
}
}
}
}
}
}
}
}
Component {
id: about
Rectangle {
width: parent.width
height: parent.height
anchors.fill: parent
color: "transparent"
Column {
anchors.horizontalCenter: parent.horizontalCenter
Image {
source: "codex.png"
width: 400
height: 400
}
ColumnLayout {
spacing: 10
anchors.horizontalCenter: parent.horizontalCenter
CustomText {
Layout.alignment: Qt.AlignHCenter
text: "Codex"
pointSize: 20
}
CustomText {
Layout.alignment: Qt.AlignHCenter
text: "A system info utility for Linux."
}
CustomText {
Layout.alignment: Qt.AlignHCenter
text: "Made by Theo."
}
Item {
height: 20
}
Button {
Layout.alignment: Qt.AlignHCenter
contentItem: Image {
source: "icons/github.svg"
anchors.centerIn: parent
}
text: qsTr("Source Code")
onClicked: {
Qt.openUrlExternally("https://github.com/theoisdumb/codex")
}
background: MouseArea {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
Rectangle {
color: "transparent"
}
}
}
}
}
}
}
}