-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.qml
788 lines (773 loc) · 28.8 KB
/
main.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
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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
import QtQuick 2.15
import QtQuick.Window 2.15
import QtGraphicalEffects 1.12
import QtQuick.Controls 2.4
import "./components"
import "./assets"
Window {
id:root
title: "MicroFabricator"
visible: true
width: 850
height: 480
property int timeInterval: 124
property int stageORlight: 0
Item{
id:backgroundGradient
width: 850
height: 480
LinearGradient{
anchors.fill: parent
start: Qt.point(0, 0)
end: Qt.point(backgroundGradient.width, backgroundGradient.height)
gradient: Gradient{
GradientStop{
position: 0
color: "#ffffff"
}
GradientStop{
position: 0.4
color: "#ebf3fa"
}
GradientStop{
position: 1
color: "#8898a6"
}
}
}
}
Grid{
anchors.centerIn: parent
spacing: 26
columns: 2
Rectangle{
width: 234
height: 332.6
color: "transparent"
radius: 20
Rectangle{
id: carousel
width:234
height: 332.6
gradient: Gradient{
orientation: Gradient.Horizontal
GradientStop{
position: 0
color: "#262626"
}
GradientStop{
position: 0.4
color: "#181818"
}
GradientStop{
position: 1
color: "#262626"
}
}
radius: 20
clip: true
anchors.centerIn: parent
layer.enabled: true
layer.effect: DropShadow{
transparentBorder: true
verticalOffset: 8
color: "#636363"
radius: 30
samples: 61
}
Rectangle{
id: carouselItem
width: 234
height: 262
color: "transparent"
clip: true
SwipeView {
id: view
currentIndex: indicator.currentIndex
anchors.fill: parent
Item {
id: firstPage
Image {
source: "assets/Carousel-item-1.png"
x:10
y:10
width: 224
height: 262
}
}
Item {
id: secondPage
Image {
source: "assets/Carousel-item-2.png"
x:-122
y:15
width: 464
height: 240
}
}
Item {
id: thirdPage
Image {
source: "assets/Carousel-item-3.png"
x:-119
y:15
width: 464
height: 240
}
}
}
PageIndicator {
id: indicator
count: view.count
currentIndex: view.currentIndex
interactive: true
anchors.bottom: view.bottom
anchors.horizontalCenter: parent.horizontalCenter
delegate: Rectangle{
implicitWidth: 12
implicitHeight: 2
color: "white"
opacity: index === indicator.currentIndex ? 1 : pressed ? 0.5 : 0.3
}
Behavior on opacity{
OpacityAnimator {
duration: 100
}
}
}
}
Rectangle{
id:overlay1
width: 234
height: 136
anchors.bottom: buttons.top
color: "black"
visible: false
Text {
id: overlayText1
text:"Are you sure, this action will unlock the stage module 4S and allow you to remove it out"
width: 201
wrapMode: Text.WordWrap
font.pixelSize: 14
color: "white"
topPadding: 10
anchors.horizontalCenter: parent.horizontalCenter
}
Button{
text: "Eject"
radius: 10
backgroundColor: "#f54949"
textColor: "black"
iconImage: "../assets/Lock.png"
sidePadding: 25
height: 40
iconSize: 24
anchors.horizontalCenter: parent.horizontalCenter
y:72
onClicked: {
button1.state=''
maintainanceMode.visible=true
stageORlight=1
}
}
}
Rectangle{
id:overlay2
width: 234
height: 136
anchors.bottom: buttons.top
color: "black"
visible: false
Text {
id: overlayText2
text:"Are you sure, this action will unlock the light engine module and allow you to remove it out"
width: 201
wrapMode: Text.WordWrap
font.pixelSize: 14
color: "white"
topPadding: 10
anchors.horizontalCenter: parent.horizontalCenter
}
Button{
text: "Eject"
radius: 10
backgroundColor: "#f54949"
textColor: "black"
iconImage: "../assets/Lock.png"
sidePadding: 25
height: 40
iconSize: 24
anchors.horizontalCenter: parent.horizontalCenter
y:72
onClicked: {
button2.state=''
maintainanceMode.visible=true
stageORlight=2
}
}
}
Rectangle {
id:buttons
radius: 20
width:234
height: 58.2
border{
color:"transparent"
width: 5
}
color: "transparent"
Grid{
columns: 2
Rectangle{
id:button1
width: 98.25
height: 53.2
color: "black"
radius: 20
Rectangle {
width: parent.radius
height: parent.radius
anchors.left: parent.left
color: parent.color
}
Rectangle {
width: parent.radius
height: parent.radius
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.top: parent.top
color: parent.color
}
Text {
id: buttonText1
text: moduleHistoryTable.roleFromRow(0, "stage")
x:19
y:13
color: "white"
font.pixelSize: 22
}
Image {
id: buttonIcon1
source: "assets/Right-arrow.png"
width: 26
height: 26
x: 65
y:10
anchors.verticalCenter: parent.verticalCenter
}
MouseArea{
id: mouseArea1
anchors.fill: button1
onClicked: {
if(button1.state===''){
button1.state='overlay1Open'
button2.state=''
}
else
button1.state=''
}
onPressed: buttons.border.color="orange"
onReleased: buttons.border.color="transparent"
}
states: State {
name: "overlay1Open"
PropertyChanges {
target: overlay1
visible:true
}
PropertyChanges {
target: buttonIcon1
rotation:-90
}
}
transitions: [
Transition {
from: ""
to: "overlay1Open"
reversible: true
NumberAnimation { properties: "rotation"; duration: 100; easing.type: Easing.InOutQuad }
}
]
}
Rectangle{
id:button2
width: 135.75
height: 53.2
color: "black"
radius: 20
Rectangle {
width: parent.radius
height: parent.radius
anchors.right: parent.right
color: parent.color
}
Rectangle {
width: parent.radius
height: parent.radius
anchors.left: parent.left
anchors.bottom: parent.bottom
anchors.top: parent.top
color: parent.color
}
Text {
id: buttonText2
text: moduleHistoryTable.roleFromRow(0, "light_engine")
x:19
y:13
color: "white"
font.pixelSize: 22
}
Image {
id: buttonIcon2
source: "assets/Right-arrow.png"
width: 26
height: 26
x: 97
y:10
anchors.verticalCenter: parent.verticalCenter
}
MouseArea{
id: mouseArea2
anchors.fill: button2
onClicked: {
if(button2.state===''){
button2.state='overlay2Open'
button1.state=''
}
else
button2.state=''
}
onPressed: buttons.border.color="orange"
onReleased: buttons.border.color="transparent"
}
states: State {
name: "overlay2Open"
PropertyChanges {
target: overlay2
visible:true
}
PropertyChanges {
target: buttonIcon2
rotation:-90
}
}
transitions: [
Transition {
from: ""
to: "overlay2Open"
reversible: true
NumberAnimation { properties: "rotation"; duration: 100; easing.type: Easing.InOutQuad }
}
]
}
anchors.bottom: parent.bottom
}
anchors.bottom: parent.bottom
}
}
}
Rectangle{
id:historyFull
width:522
height: 327.6
color:"transparent"
radius: 20
visible: false
Rectangle{
width:512
height: 327.6
color:"#262626"
radius: 20
anchors.centerIn: parent
OpCard{
width: 512
height: 325.6
title: "History"
buttonSource: "../assets/Minimize.png"
buttonClickColor: "#b36705"
buttonHeight: 42
}
layer.enabled: true
layer.effect: DropShadow{
transparentBorder: true
verticalOffset: 10
color: "#636363"
radius: 35
samples: 71
}
}
}
Grid{
id:cards
rows: 2
spacing: 20
Grid{
columns: 4
spacing: 20
Rectangle{
radius: 20
width: 116
height: 155.6
Card{
id: waferStage
title: "Wafer Stage"
status: "Open"
onPressed: parent.color="orange"
onReleased: parent.color="transparent"
}
color: "transparent"
}
Rectangle{
radius: 20
width: 116
height: 155.6
enabled: false
Card{
id: waferClamp
title: "Wafer Clamp"
status: "Off"
onPressed: parent.color="orange"
onReleased: parent.color="transparent"
}
color: "transparent"
opacity: enabled === false ? 0.5 : 1
}
Rectangle{
radius: 20
width: 116
height: 155.6
Card{
id: waferMaskGap
title: "Wafer Mask Gap"
status: "2.8μm"
onPressed: parent.color="orange"
onReleased: parent.color="transparent"
}
enabled: false
opacity: enabled === false ? 0.5 : 1
color: "transparent"
}
Rectangle{
radius: 20
width: 116
height: 155.6
Card{
id: vibration
title: "Vibration"
status: "Ok"
onPressed: parent.color="orange"
onReleased: parent.color="transparent"
}
color: "transparent"
}
}
Grid{
columns: 3
spacing: 20
Rectangle{
id:lightIntensity
radius: 20
width: 116
height: 155.6
Card{
title: "Light Intensity"
status: intensitySlider.value.toPrecision(3) + "%"
info: "321 mJ/cm2"
onClicked: {
if(lightIntensity.state===""){
lightIntensity.state="active1"
if(duration.state==="active2"){
duration.state=""
}
}
else
lightIntensity.state=""
}
}
states: State {
name: "active1"
PropertyChanges {
target: lightIntensity
color: "#f5a262"
}
PropertyChanges {
target: slider1
visible: true
}
}
color: "transparent"
}
Rectangle{
id: duration
radius: 20
width: 116
height: 155.6
Card{
function minutes(t){
var totalTime=parseInt(t);
var minutes=parseInt(totalTime/60);
var seconds=totalTime%60;
return (minutes!==0)?minutes+"m "+seconds+"s":seconds+"s";
}
title: "Duration"
status: durationSlider.value + "s"
info: minutes(durationSlider.value)
onClicked: {
if(duration.state===""){
duration.state="active2"
if(lightIntensity.state==="active1"){
lightIntensity.state=""
}
}
else
duration.state=""
}
}
states: State {
name: "active2"
PropertyChanges {
target: duration
color: "#f5a262"
}
PropertyChanges {
target: slider2
visible: true
}
}
color: "transparent"
}
Rectangle{
id:history
width:239
height: 155.6
color:"transparent"
radius: 20
OpCard{
x:5
y:5
width: 239
height: 145.6
title: "History"
buttonSource: "../assets/Expand.png"
buttonHeight: 42
buttonClickColor: "#b36705"
}
layer.enabled: true
layer.effect: DropShadow{
transparentBorder: true
verticalOffset: 8
color: "#636363"
radius: 30
samples: 61
}
}
}
}
Rectangle{
id: progressPlay
width:234
height: 70.8
color:"transparent"
radius: 20
clip: true
layer.enabled: true
layer.effect: DropShadow{
transparentBorder: true
verticalOffset: 5
color: "#636363"
radius: 30
samples: 61
spread: 0
}
RunCard{
width: 234
height: 62.8
titleFontSize: 24
buttonWidth: 82
iconWidth: 36
progressHeight: 8
function minutes(t){
var totalTime=parseInt(t);
var minutes=parseInt(totalTime/60);
var seconds=totalTime%60;
return (minutes!==0)?minutes+"m "+seconds+"s":seconds+"s";
}
function dataEntry(Message,Type){
var data="";
data += Message+";";
data += Qt.formatTime(new Date(),"hh:mm:ss")+";";
data += Type+";";
data += waferStage.status+";";
data += waferClamp.status+";";
data += waferMaskGap.status+";";
data += vibration.status+";";
data += minutes(durationSlider.value)+";";
data += intensitySlider.value.toPrecision(3)+"%";
historyTable.addRow(-1,data)
}
onStart: {
// historyTable.removeRow(0)
dataEntry("Exposure initiated for "+minutes(durationSlider.value),"Initiated")
}
onCompleted: {
dataEntry("Exposure Completed","Completed")
}
onStop: {
dataEntry("Exposure Aborted","Aborted")
}
}
}
Rectangle{
id: slider1
width: 518
height: 62.8
color: "#262626"
radius: 15
visible: false
CustomSlider{
id: intensitySlider
width: 508
height: 60.8
anchors.centerIn: parent
from: 0; to: 100;stepSize: 0.1
}
}
Rectangle{
id: slider2
width: 518
height: 62.8
color: "#262626"
radius: 15
visible: false
CustomSlider{
id: durationSlider
width: 508
height: 60.8
anchors.centerIn: parent
from: 0; to: 180;stepSize: 1
}
}
}
Rectangle{
id:maintainanceMode
width: 850
height: 480
visible: false
LinearGradient{
anchors.fill: parent
start: Qt.point(0, 0)
end: Qt.point(maintainanceMode.width, maintainanceMode.height)
gradient: Gradient{
GradientStop{
position: 0
color: "#EAEAEA"
}
GradientStop{
position: 0.5
color: "#D6D6DA"
}
GradientStop{
position: 1
color: "#68657E"
}
}
}
MaintainanceCard{
id: maintain
anchors.centerIn: parent
layer.enabled: true
layer.effect: DropShadow{
transparentBorder: true
verticalOffset: 0
color: "#000000"
radius: 60
samples: 121
}
iconMode: "Eject"
titleText: "Awaiting Ejection of the Light Engine"
descriptionText: "Remove the light engine module continue the module swapping process.
Click cancel to cancel the eject process. Click ejected to confirm that the module has been removed by you."
successVisible: true
successText: "Ejected"
cancelVisible: true
onCancelation: {
maintainanceMode.visible=false
}
onTransition: {
maintain.state="insertPending"
}
function minute(t){
var minutes=parseInt(t/60);
var seconds=t%60;
return "0"+minutes+":"+((seconds<10)?"0"+seconds:seconds);
}
Timer{
running: true; repeat: true
onTriggered: {
// if(maintain.state==="insertion")
// start()
if(timeInterval>0){
timeInterval-=1;
}
else{
maintain.state="swapComplete"
}
}
}
states: [
State {
name: "insertPending"
PropertyChanges {
target: maintain
iconMode: "Insert"
titleText: "No Module Inserted. Try Again.No Module Inserted. Try Again."
descriptionText: "Insert a light engine module to finish the module swapping process.
Click cancel to cancel the eject process. Click ejected to confirm that the module has been removed by you."
successText: "Unlock"
onTransition: {
maintain.state="insertion"
timeInterval=120
if(stageORlight==1)buttonText1.text=moduleHistoryTable.roleFromRow(0, "stage")
else buttonText2.text=moduleHistoryTable.roleFromRow(0, "light_engine")
}
onCancelation: {
maintain.state=""
}
}
},
State {
name: "insertion"
PropertyChanges {
target: maintain
iconMode: "Insert"
titleText: "Awaiting Insertion of a Light Engine
"+minute(timeInterval)+" Remaining"
successVisible: false
onCancelation: {
maintain.state="insertPending"
}
}
},
State {
name: "swapComplete"
PropertyChanges {
target: maintain
iconMode: "Tick"
titleText: "Light Engine Swap Complete"
descriptionText: "New Light Engine module is detected.
365nm"
successVisible: true
successText: "Ok"
cancelVisible: false
onTransition: {
maintain.state=""
maintainanceMode.visible=false
if(stageORlight==1)buttonText1.text=moduleHistoryTable.roleFromRow(0, "stage")
else buttonText2.text=moduleHistoryTable.roleFromRow(0, "light_engine")
}
}
}
]
}
}
}