-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhot_wire_ui.py
1978 lines (1971 loc) · 126 KB
/
hot_wire_ui.py
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
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'hot_wire_ui.ui'
#
# Created by: PyQt5 UI code generator 5.15.1
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.setEnabled(True)
MainWindow.resize(790, 715)
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.horizontalLayout_12 = QtWidgets.QHBoxLayout(self.centralwidget)
self.horizontalLayout_12.setObjectName("horizontalLayout_12")
self.tabs = QtWidgets.QTabWidget(self.centralwidget)
self.tabs.setEnabled(True)
self.tabs.setObjectName("tabs")
self.tabProfile = QtWidgets.QWidget()
self.tabProfile.setObjectName("tabProfile")
self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.tabProfile)
self.horizontalLayout_4.setObjectName("horizontalLayout_4")
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
self.horizontalLayout_2.setSpacing(2)
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.widget = QtWidgets.QWidget(self.tabProfile)
self.widget.setMaximumSize(QtCore.QSize(200, 16777215))
font = QtGui.QFont()
font.setPointSize(10)
self.widget.setFont(font)
self.widget.setObjectName("widget")
self.verticalLayout = QtWidgets.QVBoxLayout(self.widget)
self.verticalLayout.setObjectName("verticalLayout")
self.pbUploadProject = QtWidgets.QPushButton(self.widget)
self.pbUploadProject.setStyleSheet("")
self.pbUploadProject.setObjectName("pbUploadProject")
self.verticalLayout.addWidget(self.pbUploadProject)
self.pbSaveProject = QtWidgets.QPushButton(self.widget)
self.pbSaveProject.setStyleSheet("")
self.pbSaveProject.setObjectName("pbSaveProject")
self.verticalLayout.addWidget(self.pbSaveProject)
spacerItem = QtWidgets.QSpacerItem(20, 36, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout.addItem(spacerItem)
self.pbSelectRootProfile = QtWidgets.QPushButton(self.widget)
self.pbSelectRootProfile.setObjectName("pbSelectRootProfile")
self.verticalLayout.addWidget(self.pbSelectRootProfile)
self.pbSelectTipProfile = QtWidgets.QPushButton(self.widget)
self.pbSelectTipProfile.setObjectName("pbSelectTipProfile")
self.verticalLayout.addWidget(self.pbSelectTipProfile)
self.pbUploadComplexes = QtWidgets.QPushButton(self.widget)
self.pbUploadComplexes.setObjectName("pbUploadComplexes")
self.verticalLayout.addWidget(self.pbUploadComplexes)
spacerItem1 = QtWidgets.QSpacerItem(20, 37, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout.addItem(spacerItem1)
self.widget_5 = QtWidgets.QWidget(self.widget)
self.widget_5.setObjectName("widget_5")
self.formLayout_10 = QtWidgets.QFormLayout(self.widget_5)
self.formLayout_10.setObjectName("formLayout_10")
self.label_27 = QtWidgets.QLabel(self.widget_5)
self.label_27.setObjectName("label_27")
self.formLayout_10.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_27)
self.blocLX = QtWidgets.QDoubleSpinBox(self.widget_5)
self.blocLX.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.blocLX.setDecimals(1)
self.blocLX.setMinimum(1.0)
self.blocLX.setMaximum(1500.0)
self.blocLX.setProperty("value", 600.0)
self.blocLX.setObjectName("blocLX")
self.formLayout_10.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.blocLX)
self.verticalLayout.addWidget(self.widget_5)
self.groupBox_4 = QtWidgets.QGroupBox(self.widget)
self.groupBox_4.setObjectName("groupBox_4")
self.formLayout_4 = QtWidgets.QFormLayout(self.groupBox_4)
self.formLayout_4.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout_4.setContentsMargins(-1, 5, -1, 5)
self.formLayout_4.setVerticalSpacing(5)
self.formLayout_4.setObjectName("formLayout_4")
self.fLeading = QtWidgets.QDoubleSpinBox(self.groupBox_4)
self.fLeading.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.fLeading.setDecimals(1)
self.fLeading.setMinimum(-500.0)
self.fLeading.setMaximum(500.0)
self.fLeading.setProperty("value", 10.0)
self.fLeading.setObjectName("fLeading")
self.formLayout_4.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.fLeading)
self.label_10 = QtWidgets.QLabel(self.groupBox_4)
self.label_10.setObjectName("label_10")
self.formLayout_4.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_10)
self.fTrailing = QtWidgets.QDoubleSpinBox(self.groupBox_4)
self.fTrailing.setEnabled(False)
self.fTrailing.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.fTrailing.setDecimals(1)
self.fTrailing.setMinimum(-500.0)
self.fTrailing.setMaximum(500.0)
self.fTrailing.setProperty("value", -40.0)
self.fTrailing.setObjectName("fTrailing")
self.formLayout_4.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.fTrailing)
self.label_9 = QtWidgets.QLabel(self.groupBox_4)
self.label_9.setObjectName("label_9")
self.formLayout_4.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_9)
self.verticalLayout.addWidget(self.groupBox_4)
spacerItem2 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout.addItem(spacerItem2)
self.cbComplexProfiles = QtWidgets.QCheckBox(self.widget)
self.cbComplexProfiles.setObjectName("cbComplexProfiles")
self.verticalLayout.addWidget(self.cbComplexProfiles)
self.textEdit = QtWidgets.QTextEdit(self.widget)
self.textEdit.setEnabled(True)
self.textEdit.setMaximumSize(QtCore.QSize(16777215, 40))
self.textEdit.setFrameShape(QtWidgets.QFrame.NoFrame)
self.textEdit.setReadOnly(True)
self.textEdit.setObjectName("textEdit")
self.verticalLayout.addWidget(self.textEdit)
self.synchroMsg = QtWidgets.QTextEdit(self.widget)
self.synchroMsg.setMaximumSize(QtCore.QSize(16777215, 100))
self.synchroMsg.setReadOnly(True)
self.synchroMsg.setHtml("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n"
"p, li { white-space: pre-wrap; }\n"
"</style></head><body style=\" font-family:\'MS Shell Dlg 2\'; font-size:10pt; font-weight:400; font-style:normal;\">\n"
"<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\"><br /></p></body></html>")
self.synchroMsg.setPlaceholderText("")
self.synchroMsg.setObjectName("synchroMsg")
self.verticalLayout.addWidget(self.synchroMsg)
self.teHowToZoom = QtWidgets.QTextEdit(self.widget)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.teHowToZoom.sizePolicy().hasHeightForWidth())
self.teHowToZoom.setSizePolicy(sizePolicy)
self.teHowToZoom.setMaximumSize(QtCore.QSize(16777215, 30))
self.teHowToZoom.setBaseSize(QtCore.QSize(0, 0))
self.teHowToZoom.setFrameShape(QtWidgets.QFrame.NoFrame)
self.teHowToZoom.setPlaceholderText("")
self.teHowToZoom.setObjectName("teHowToZoom")
self.verticalLayout.addWidget(self.teHowToZoom)
self.horizontalLayout_2.addWidget(self.widget)
self.widget_2 = QtWidgets.QWidget(self.tabProfile)
self.widget_2.setObjectName("widget_2")
self.horizontalLayout_3 = QtWidgets.QHBoxLayout(self.widget_2)
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.plotORoot = PlotWidget(self.widget_2)
self.plotORoot.setObjectName("plotORoot")
self.verticalLayout_2.addWidget(self.plotORoot)
self.plotOTip = PlotWidget(self.widget_2)
self.plotOTip.setObjectName("plotOTip")
self.verticalLayout_2.addWidget(self.plotOTip)
self.horizontalLayout_3.addLayout(self.verticalLayout_2)
self.horizontalLayout_2.addWidget(self.widget_2)
self.horizontalLayout_4.addLayout(self.horizontalLayout_2)
self.tabs.addTab(self.tabProfile, "")
self.tabTransform = QtWidgets.QWidget()
self.tabTransform.setObjectName("tabTransform")
self.horizontalLayout_5 = QtWidgets.QHBoxLayout(self.tabTransform)
self.horizontalLayout_5.setObjectName("horizontalLayout_5")
self.widgetTransformLeft = QtWidgets.QWidget(self.tabTransform)
self.widgetTransformLeft.setMinimumSize(QtCore.QSize(180, 0))
self.widgetTransformLeft.setMaximumSize(QtCore.QSize(200, 16777215))
self.widgetTransformLeft.setObjectName("widgetTransformLeft")
self.verticalLayout_22 = QtWidgets.QVBoxLayout(self.widgetTransformLeft)
self.verticalLayout_22.setObjectName("verticalLayout_22")
self.verticalLayout_5 = QtWidgets.QVBoxLayout()
self.verticalLayout_5.setObjectName("verticalLayout_5")
self.groupBox = QtWidgets.QGroupBox(self.widgetTransformLeft)
self.groupBox.setMaximumSize(QtCore.QSize(180, 130))
self.groupBox.setObjectName("groupBox")
self.formLayout_8 = QtWidgets.QFormLayout(self.groupBox)
self.formLayout_8.setObjectName("formLayout_8")
self.formLayout = QtWidgets.QFormLayout()
self.formLayout.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout.setObjectName("formLayout")
self.LRChord = QtWidgets.QLabel(self.groupBox)
self.LRChord.setObjectName("LRChord")
self.formLayout.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.LRChord)
self.cRoot = QtWidgets.QDoubleSpinBox(self.groupBox)
self.cRoot.setMaximumSize(QtCore.QSize(40, 16777215))
self.cRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.cRoot.setDecimals(1)
self.cRoot.setMinimum(1.0)
self.cRoot.setMaximum(1000.0)
self.cRoot.setProperty("value", 200.0)
self.cRoot.setObjectName("cRoot")
self.formLayout.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.cRoot)
self.LRTickness = QtWidgets.QLabel(self.groupBox)
self.LRTickness.setObjectName("LRTickness")
self.formLayout.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.LRTickness)
self.thicknessRoot = QtWidgets.QDoubleSpinBox(self.groupBox)
self.thicknessRoot.setMaximumSize(QtCore.QSize(40, 16777215))
self.thicknessRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.thicknessRoot.setDecimals(1)
self.thicknessRoot.setMinimum(1.0)
self.thicknessRoot.setMaximum(1000.0)
self.thicknessRoot.setProperty("value", 100.0)
self.thicknessRoot.setObjectName("thicknessRoot")
self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.thicknessRoot)
self.LRIncidence = QtWidgets.QLabel(self.groupBox)
self.LRIncidence.setObjectName("LRIncidence")
self.formLayout.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.LRIncidence)
self.incidenceRoot = QtWidgets.QDoubleSpinBox(self.groupBox)
self.incidenceRoot.setMaximumSize(QtCore.QSize(40, 16777215))
self.incidenceRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.incidenceRoot.setDecimals(1)
self.incidenceRoot.setMinimum(-90.0)
self.incidenceRoot.setMaximum(90.0)
self.incidenceRoot.setObjectName("incidenceRoot")
self.formLayout.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.incidenceRoot)
self.LRVInvert = QtWidgets.QLabel(self.groupBox)
self.LRVInvert.setObjectName("LRVInvert")
self.formLayout.setWidget(3, QtWidgets.QFormLayout.LabelRole, self.LRVInvert)
self.vInvertRoot = QtWidgets.QCheckBox(self.groupBox)
self.vInvertRoot.setText("")
self.vInvertRoot.setObjectName("vInvertRoot")
self.formLayout.setWidget(3, QtWidgets.QFormLayout.FieldRole, self.vInvertRoot)
self.formLayout_8.setLayout(0, QtWidgets.QFormLayout.LabelRole, self.formLayout)
self.verticalLayout_5.addWidget(self.groupBox)
self.groupBox_2 = QtWidgets.QGroupBox(self.widgetTransformLeft)
self.groupBox_2.setMaximumSize(QtCore.QSize(180, 130))
self.groupBox_2.setObjectName("groupBox_2")
self.formLayout_9 = QtWidgets.QFormLayout(self.groupBox_2)
self.formLayout_9.setObjectName("formLayout_9")
self.formLayout_2 = QtWidgets.QFormLayout()
self.formLayout_2.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout_2.setObjectName("formLayout_2")
self.LTChord = QtWidgets.QLabel(self.groupBox_2)
self.LTChord.setObjectName("LTChord")
self.formLayout_2.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.LTChord)
self.cTip = QtWidgets.QDoubleSpinBox(self.groupBox_2)
self.cTip.setMaximumSize(QtCore.QSize(40, 16777215))
self.cTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.cTip.setDecimals(1)
self.cTip.setMinimum(1.0)
self.cTip.setMaximum(1000.0)
self.cTip.setProperty("value", 150.0)
self.cTip.setObjectName("cTip")
self.formLayout_2.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.cTip)
self.LTTiickness = QtWidgets.QLabel(self.groupBox_2)
self.LTTiickness.setObjectName("LTTiickness")
self.formLayout_2.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.LTTiickness)
self.thicknessTip = QtWidgets.QDoubleSpinBox(self.groupBox_2)
self.thicknessTip.setMaximumSize(QtCore.QSize(40, 16777215))
self.thicknessTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.thicknessTip.setDecimals(1)
self.thicknessTip.setMinimum(1.0)
self.thicknessTip.setMaximum(1000.0)
self.thicknessTip.setProperty("value", 100.0)
self.thicknessTip.setObjectName("thicknessTip")
self.formLayout_2.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.thicknessTip)
self.incidenceTip = QtWidgets.QDoubleSpinBox(self.groupBox_2)
self.incidenceTip.setMaximumSize(QtCore.QSize(40, 16777215))
self.incidenceTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.incidenceTip.setDecimals(1)
self.incidenceTip.setMinimum(-90.0)
self.incidenceTip.setMaximum(90.0)
self.incidenceTip.setObjectName("incidenceTip")
self.formLayout_2.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.incidenceTip)
self.LTVInvert = QtWidgets.QLabel(self.groupBox_2)
self.LTVInvert.setObjectName("LTVInvert")
self.formLayout_2.setWidget(3, QtWidgets.QFormLayout.LabelRole, self.LTVInvert)
self.vInvertTip = QtWidgets.QCheckBox(self.groupBox_2)
self.vInvertTip.setText("")
self.vInvertTip.setObjectName("vInvertTip")
self.formLayout_2.setWidget(3, QtWidgets.QFormLayout.FieldRole, self.vInvertTip)
self.LTIncidence = QtWidgets.QLabel(self.groupBox_2)
self.LTIncidence.setObjectName("LTIncidence")
self.formLayout_2.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.LTIncidence)
self.formLayout_9.setLayout(0, QtWidgets.QFormLayout.LabelRole, self.formLayout_2)
self.verticalLayout_5.addWidget(self.groupBox_2)
self.groupBox_3 = QtWidgets.QGroupBox(self.widgetTransformLeft)
self.groupBox_3.setMaximumSize(QtCore.QSize(180, 200))
self.groupBox_3.setObjectName("groupBox_3")
self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.groupBox_3)
self.verticalLayout_8.setObjectName("verticalLayout_8")
self.formLayout_3 = QtWidgets.QFormLayout()
self.formLayout_3.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout_3.setObjectName("formLayout_3")
self.smooth = QtWidgets.QCheckBox(self.groupBox_3)
self.smooth.setObjectName("smooth")
self.formLayout_3.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.smooth)
self.label_2 = QtWidgets.QLabel(self.groupBox_3)
self.label_2.setObjectName("label_2")
self.formLayout_3.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_2)
self.nbrPoints = QtWidgets.QSpinBox(self.groupBox_3)
self.nbrPoints.setEnabled(False)
self.nbrPoints.setMaximumSize(QtCore.QSize(30, 16777215))
self.nbrPoints.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.nbrPoints.setMinimum(2)
self.nbrPoints.setMaximum(500)
self.nbrPoints.setProperty("value", 50)
self.nbrPoints.setObjectName("nbrPoints")
self.formLayout_3.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.nbrPoints)
self.label_3 = QtWidgets.QLabel(self.groupBox_3)
self.label_3.setObjectName("label_3")
self.formLayout_3.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_3)
self.repartition = QtWidgets.QDoubleSpinBox(self.groupBox_3)
self.repartition.setEnabled(False)
self.repartition.setMaximumSize(QtCore.QSize(30, 16777215))
self.repartition.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.repartition.setDecimals(1)
self.repartition.setMinimum(1.0)
self.repartition.setMaximum(10.0)
self.repartition.setProperty("value", 2.0)
self.repartition.setObjectName("repartition")
self.formLayout_3.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.repartition)
self.label_4 = QtWidgets.QLabel(self.groupBox_3)
self.label_4.setObjectName("label_4")
self.formLayout_3.setWidget(4, QtWidgets.QFormLayout.LabelRole, self.label_4)
self.covering = QtWidgets.QDoubleSpinBox(self.groupBox_3)
self.covering.setMaximumSize(QtCore.QSize(30, 16777215))
self.covering.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.covering.setDecimals(1)
self.covering.setObjectName("covering")
self.formLayout_3.setWidget(4, QtWidgets.QFormLayout.FieldRole, self.covering)
self.label_6 = QtWidgets.QLabel(self.groupBox_3)
self.label_6.setObjectName("label_6")
self.formLayout_3.setWidget(6, QtWidgets.QFormLayout.LabelRole, self.label_6)
self.reducePoints = QtWidgets.QCheckBox(self.groupBox_3)
self.reducePoints.setText("")
self.reducePoints.setObjectName("reducePoints")
self.formLayout_3.setWidget(6, QtWidgets.QFormLayout.FieldRole, self.reducePoints)
self.keepChord = QtWidgets.QCheckBox(self.groupBox_3)
self.keepChord.setText("")
self.keepChord.setObjectName("keepChord")
self.formLayout_3.setWidget(5, QtWidgets.QFormLayout.FieldRole, self.keepChord)
self.label_5 = QtWidgets.QLabel(self.groupBox_3)
self.label_5.setObjectName("label_5")
self.formLayout_3.setWidget(5, QtWidgets.QFormLayout.LabelRole, self.label_5)
spacerItem3 = QtWidgets.QSpacerItem(20, 10, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
self.formLayout_3.setItem(3, QtWidgets.QFormLayout.FieldRole, spacerItem3)
self.verticalLayout_8.addLayout(self.formLayout_3)
self.verticalLayout_5.addWidget(self.groupBox_3)
self.cbShowPoints = QtWidgets.QCheckBox(self.widgetTransformLeft)
self.cbShowPoints.setLayoutDirection(QtCore.Qt.RightToLeft)
self.cbShowPoints.setChecked(True)
self.cbShowPoints.setObjectName("cbShowPoints")
self.verticalLayout_5.addWidget(self.cbShowPoints)
spacerItem4 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_5.addItem(spacerItem4)
self.verticalLayout_22.addLayout(self.verticalLayout_5)
self.horizontalLayout_5.addWidget(self.widgetTransformLeft)
self.widgetTransformPlots = QtWidgets.QWidget(self.tabTransform)
self.widgetTransformPlots.setMinimumSize(QtCore.QSize(0, 0))
self.widgetTransformPlots.setObjectName("widgetTransformPlots")
self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.widgetTransformPlots)
self.verticalLayout_4.setObjectName("verticalLayout_4")
self.plotTRoot = PlotWidget(self.widgetTransformPlots)
self.plotTRoot.setObjectName("plotTRoot")
self.verticalLayout_4.addWidget(self.plotTRoot)
self.plotTTip = PlotWidget(self.widgetTransformPlots)
self.plotTTip.setObjectName("plotTTip")
self.verticalLayout_4.addWidget(self.plotTTip)
self.horizontalLayout_5.addWidget(self.widgetTransformPlots)
self.tabs.addTab(self.tabTransform, "")
self.tabPosition = QtWidgets.QWidget()
self.tabPosition.setObjectName("tabPosition")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.tabPosition)
self.horizontalLayout.setObjectName("horizontalLayout")
self.widget_24 = QtWidgets.QWidget(self.tabPosition)
self.widget_24.setMaximumSize(QtCore.QSize(200, 16777215))
self.widget_24.setObjectName("widget_24")
self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.widget_24)
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.fr_thickness_height = QtWidgets.QWidget(self.widget_24)
self.fr_thickness_height.setMaximumSize(QtCore.QSize(160, 16777215))
self.fr_thickness_height.setObjectName("fr_thickness_height")
self.formLayout_18 = QtWidgets.QFormLayout(self.fr_thickness_height)
self.formLayout_18.setObjectName("formLayout_18")
self.label_54 = QtWidgets.QLabel(self.fr_thickness_height)
self.label_54.setObjectName("label_54")
self.formLayout_18.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_54)
self.blocHZ = QtWidgets.QDoubleSpinBox(self.fr_thickness_height)
self.blocHZ.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.blocHZ.setDecimals(1)
self.blocHZ.setMinimum(1.0)
self.blocHZ.setMaximum(500.0)
self.blocHZ.setProperty("value", 50.0)
self.blocHZ.setObjectName("blocHZ")
self.formLayout_18.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.blocHZ)
self.label_20 = QtWidgets.QLabel(self.fr_thickness_height)
self.label_20.setObjectName("label_20")
self.formLayout_18.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_20)
self.hProfil = QtWidgets.QDoubleSpinBox(self.fr_thickness_height)
self.hProfil.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.hProfil.setDecimals(1)
self.hProfil.setMaximum(500.0)
self.hProfil.setProperty("value", 20.0)
self.hProfil.setObjectName("hProfil")
self.formLayout_18.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.hProfil)
self.label_7 = QtWidgets.QLabel(self.fr_thickness_height)
self.label_7.setObjectName("label_7")
self.formLayout_18.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_7)
self.diedral = QtWidgets.QDoubleSpinBox(self.fr_thickness_height)
self.diedral.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.diedral.setDecimals(1)
self.diedral.setMinimum(-100.0)
self.diedral.setObjectName("diedral")
self.formLayout_18.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.diedral)
self.cbAlignProfiles = QtWidgets.QComboBox(self.fr_thickness_height)
self.cbAlignProfiles.setFrame(True)
self.cbAlignProfiles.setObjectName("cbAlignProfiles")
self.cbAlignProfiles.addItem("")
self.cbAlignProfiles.addItem("")
self.cbAlignProfiles.addItem("")
self.cbAlignProfiles.addItem("")
self.formLayout_18.setWidget(3, QtWidgets.QFormLayout.SpanningRole, self.cbAlignProfiles)
self.verticalLayout_3.addWidget(self.fr_thickness_height)
self.gp_margins = QtWidgets.QGroupBox(self.widget_24)
self.gp_margins.setMaximumSize(QtCore.QSize(150, 16777215))
self.gp_margins.setObjectName("gp_margins")
self.formLayout_6 = QtWidgets.QFormLayout(self.gp_margins)
self.formLayout_6.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout_6.setContentsMargins(-1, 5, -1, 5)
self.formLayout_6.setObjectName("formLayout_6")
self.label_11 = QtWidgets.QLabel(self.gp_margins)
self.label_11.setObjectName("label_11")
self.formLayout_6.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_11)
self.mLeading = QtWidgets.QDoubleSpinBox(self.gp_margins)
self.mLeading.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mLeading.setDecimals(1)
self.mLeading.setProperty("value", 5.0)
self.mLeading.setObjectName("mLeading")
self.formLayout_6.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.mLeading)
self.label_12 = QtWidgets.QLabel(self.gp_margins)
self.label_12.setObjectName("label_12")
self.formLayout_6.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_12)
self.mTrailingRoot = QtWidgets.QDoubleSpinBox(self.gp_margins)
self.mTrailingRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mTrailingRoot.setDecimals(1)
self.mTrailingRoot.setProperty("value", 10.0)
self.mTrailingRoot.setObjectName("mTrailingRoot")
self.formLayout_6.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.mTrailingRoot)
self.label_13 = QtWidgets.QLabel(self.gp_margins)
self.label_13.setObjectName("label_13")
self.formLayout_6.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_13)
self.mTrailingTip = QtWidgets.QDoubleSpinBox(self.gp_margins)
self.mTrailingTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mTrailingTip.setDecimals(1)
self.mTrailingTip.setProperty("value", 10.0)
self.mTrailingTip.setObjectName("mTrailingTip")
self.formLayout_6.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.mTrailingTip)
self.verticalLayout_3.addWidget(self.gp_margins)
spacerItem5 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_3.addItem(spacerItem5)
self.groupBox_5 = QtWidgets.QGroupBox(self.widget_24)
self.groupBox_5.setMaximumSize(QtCore.QSize(150, 16777215))
self.groupBox_5.setLayoutDirection(QtCore.Qt.LeftToRight)
self.groupBox_5.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter)
self.groupBox_5.setFlat(False)
self.groupBox_5.setObjectName("groupBox_5")
self.formLayout_11 = QtWidgets.QFormLayout(self.groupBox_5)
self.formLayout_11.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout_11.setFormAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTop|QtCore.Qt.AlignTrailing)
self.formLayout_11.setObjectName("formLayout_11")
self.label_49 = QtWidgets.QLabel(self.groupBox_5)
self.label_49.setObjectName("label_49")
self.formLayout_11.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_49)
self.angleInRoot = QtWidgets.QDoubleSpinBox(self.groupBox_5)
self.angleInRoot.setMinimumSize(QtCore.QSize(0, 0))
self.angleInRoot.setMaximumSize(QtCore.QSize(30, 16777215))
self.angleInRoot.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter)
self.angleInRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.angleInRoot.setDecimals(1)
self.angleInRoot.setMinimum(-90.0)
self.angleInRoot.setMaximum(90.0)
self.angleInRoot.setObjectName("angleInRoot")
self.formLayout_11.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.angleInRoot)
self.label_50 = QtWidgets.QLabel(self.groupBox_5)
self.label_50.setLayoutDirection(QtCore.Qt.LeftToRight)
self.label_50.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter)
self.label_50.setObjectName("label_50")
self.formLayout_11.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_50)
self.angleInTip = QtWidgets.QDoubleSpinBox(self.groupBox_5)
self.angleInTip.setMinimumSize(QtCore.QSize(0, 0))
self.angleInTip.setMaximumSize(QtCore.QSize(30, 16777215))
self.angleInTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.angleInTip.setDecimals(1)
self.angleInTip.setMinimum(-90.0)
self.angleInTip.setMaximum(90.0)
self.angleInTip.setObjectName("angleInTip")
self.formLayout_11.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.angleInTip)
self.label_52 = QtWidgets.QLabel(self.groupBox_5)
self.label_52.setObjectName("label_52")
self.formLayout_11.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_52)
self.angleOutRoot = QtWidgets.QDoubleSpinBox(self.groupBox_5)
self.angleOutRoot.setMinimumSize(QtCore.QSize(0, 0))
self.angleOutRoot.setMaximumSize(QtCore.QSize(30, 16777215))
self.angleOutRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.angleOutRoot.setDecimals(1)
self.angleOutRoot.setMinimum(-90.0)
self.angleOutRoot.setMaximum(90.0)
self.angleOutRoot.setObjectName("angleOutRoot")
self.formLayout_11.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.angleOutRoot)
self.label_53 = QtWidgets.QLabel(self.groupBox_5)
self.label_53.setObjectName("label_53")
self.formLayout_11.setWidget(3, QtWidgets.QFormLayout.LabelRole, self.label_53)
self.angleOutTip = QtWidgets.QDoubleSpinBox(self.groupBox_5)
self.angleOutTip.setMinimumSize(QtCore.QSize(0, 0))
self.angleOutTip.setMaximumSize(QtCore.QSize(30, 16777215))
self.angleOutTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.angleOutTip.setDecimals(1)
self.angleOutTip.setMinimum(-90.0)
self.angleOutTip.setMaximum(90.0)
self.angleOutTip.setObjectName("angleOutTip")
self.formLayout_11.setWidget(3, QtWidgets.QFormLayout.FieldRole, self.angleOutTip)
self.verticalLayout_3.addWidget(self.groupBox_5)
self.gbXLeadingActive = QtWidgets.QGroupBox(self.widget_24)
self.gbXLeadingActive.setCheckable(True)
self.gbXLeadingActive.setObjectName("gbXLeadingActive")
self.gridLayout_6 = QtWidgets.QGridLayout(self.gbXLeadingActive)
self.gridLayout_6.setObjectName("gridLayout_6")
self.xLeadingHeight1Tip = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingHeight1Tip.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingHeight1Tip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingHeight1Tip.setDecimals(0)
self.xLeadingHeight1Tip.setProperty("value", 10.0)
self.xLeadingHeight1Tip.setObjectName("xLeadingHeight1Tip")
self.gridLayout_6.addWidget(self.xLeadingHeight1Tip, 3, 2, 1, 1)
self.xLeadingLengthTip = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingLengthTip.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingLengthTip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingLengthTip.setDecimals(0)
self.xLeadingLengthTip.setProperty("value", 10.0)
self.xLeadingLengthTip.setObjectName("xLeadingLengthTip")
self.gridLayout_6.addWidget(self.xLeadingLengthTip, 4, 2, 1, 1)
self.xLeadingHeight2Tip = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingHeight2Tip.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingHeight2Tip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingHeight2Tip.setDecimals(0)
self.xLeadingHeight2Tip.setProperty("value", 10.0)
self.xLeadingHeight2Tip.setObjectName("xLeadingHeight2Tip")
self.gridLayout_6.addWidget(self.xLeadingHeight2Tip, 5, 2, 1, 1)
self.xLeadingAngle1Root = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingAngle1Root.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingAngle1Root.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingAngle1Root.setDecimals(0)
self.xLeadingAngle1Root.setMaximum(80.0)
self.xLeadingAngle1Root.setProperty("value", 45.0)
self.xLeadingAngle1Root.setObjectName("xLeadingAngle1Root")
self.gridLayout_6.addWidget(self.xLeadingAngle1Root, 2, 1, 1, 1)
self.xLeadingAngle2Tip = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingAngle2Tip.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingAngle2Tip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingAngle2Tip.setDecimals(0)
self.xLeadingAngle2Tip.setProperty("value", 45.0)
self.xLeadingAngle2Tip.setObjectName("xLeadingAngle2Tip")
self.gridLayout_6.addWidget(self.xLeadingAngle2Tip, 6, 2, 1, 1)
self.label_14 = QtWidgets.QLabel(self.gbXLeadingActive)
self.label_14.setObjectName("label_14")
self.gridLayout_6.addWidget(self.label_14, 6, 0, 1, 1)
self.xLeadingHeight1Root = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingHeight1Root.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingHeight1Root.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingHeight1Root.setDecimals(0)
self.xLeadingHeight1Root.setProperty("value", 10.0)
self.xLeadingHeight1Root.setObjectName("xLeadingHeight1Root")
self.gridLayout_6.addWidget(self.xLeadingHeight1Root, 3, 1, 1, 1)
self.xLeadingAngle2Root = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingAngle2Root.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingAngle2Root.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingAngle2Root.setDecimals(0)
self.xLeadingAngle2Root.setMaximum(80.0)
self.xLeadingAngle2Root.setProperty("value", 45.0)
self.xLeadingAngle2Root.setObjectName("xLeadingAngle2Root")
self.gridLayout_6.addWidget(self.xLeadingAngle2Root, 6, 1, 1, 1)
self.label_22 = QtWidgets.QLabel(self.gbXLeadingActive)
self.label_22.setObjectName("label_22")
self.gridLayout_6.addWidget(self.label_22, 1, 2, 1, 1)
self.label = QtWidgets.QLabel(self.gbXLeadingActive)
self.label.setObjectName("label")
self.gridLayout_6.addWidget(self.label, 2, 0, 1, 1)
self.label_21 = QtWidgets.QLabel(self.gbXLeadingActive)
self.label_21.setObjectName("label_21")
self.gridLayout_6.addWidget(self.label_21, 1, 1, 1, 1)
self.xLeadingAngle1Tip = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingAngle1Tip.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingAngle1Tip.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingAngle1Tip.setDecimals(0)
self.xLeadingAngle1Tip.setProperty("value", 45.0)
self.xLeadingAngle1Tip.setObjectName("xLeadingAngle1Tip")
self.gridLayout_6.addWidget(self.xLeadingAngle1Tip, 2, 2, 1, 1)
self.label_17 = QtWidgets.QLabel(self.gbXLeadingActive)
self.label_17.setObjectName("label_17")
self.gridLayout_6.addWidget(self.label_17, 3, 0, 1, 1)
self.label_19 = QtWidgets.QLabel(self.gbXLeadingActive)
self.label_19.setObjectName("label_19")
self.gridLayout_6.addWidget(self.label_19, 4, 0, 1, 1)
self.xLeadingLengthRoot = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingLengthRoot.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingLengthRoot.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingLengthRoot.setSuffix("")
self.xLeadingLengthRoot.setDecimals(0)
self.xLeadingLengthRoot.setProperty("value", 10.0)
self.xLeadingLengthRoot.setObjectName("xLeadingLengthRoot")
self.gridLayout_6.addWidget(self.xLeadingLengthRoot, 4, 1, 1, 1)
self.xLeadingHeight2Root = QtWidgets.QDoubleSpinBox(self.gbXLeadingActive)
self.xLeadingHeight2Root.setMaximumSize(QtCore.QSize(30, 16777215))
self.xLeadingHeight2Root.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.xLeadingHeight2Root.setDecimals(0)
self.xLeadingHeight2Root.setProperty("value", 10.0)
self.xLeadingHeight2Root.setObjectName("xLeadingHeight2Root")
self.gridLayout_6.addWidget(self.xLeadingHeight2Root, 5, 1, 1, 1)
self.label_18 = QtWidgets.QLabel(self.gbXLeadingActive)
self.label_18.setObjectName("label_18")
self.gridLayout_6.addWidget(self.label_18, 5, 0, 1, 1)
self.cbXLeadingCut = QtWidgets.QComboBox(self.gbXLeadingActive)
self.cbXLeadingCut.setMinimumSize(QtCore.QSize(0, 20))
self.cbXLeadingCut.setMaximumSize(QtCore.QSize(16777215, 20))
self.cbXLeadingCut.setObjectName("cbXLeadingCut")
self.cbXLeadingCut.addItem("")
self.cbXLeadingCut.addItem("")
self.cbXLeadingCut.addItem("")
self.gridLayout_6.addWidget(self.cbXLeadingCut, 0, 0, 1, 3)
self.verticalLayout_3.addWidget(self.gbXLeadingActive)
self.cbShowWire = QtWidgets.QCheckBox(self.widget_24)
font = QtGui.QFont()
font.setKerning(False)
self.cbShowWire.setFont(font)
self.cbShowWire.setLayoutDirection(QtCore.Qt.RightToLeft)
self.cbShowWire.setChecked(True)
self.cbShowWire.setObjectName("cbShowWire")
self.verticalLayout_3.addWidget(self.cbShowWire)
self.horizontalLayout.addWidget(self.widget_24)
self.widget_7 = QtWidgets.QWidget(self.tabPosition)
self.widget_7.setObjectName("widget_7")
self.verticalLayout_11 = QtWidgets.QVBoxLayout(self.widget_7)
self.verticalLayout_11.setContentsMargins(0, -1, 0, -1)
self.verticalLayout_11.setObjectName("verticalLayout_11")
self.plotBlocSideViewRoot = PlotWidget(self.widget_7)
self.plotBlocSideViewRoot.setObjectName("plotBlocSideViewRoot")
self.verticalLayout_11.addWidget(self.plotBlocSideViewRoot)
self.plotBlocSideViewTip = PlotWidget(self.widget_7)
self.plotBlocSideViewTip.setObjectName("plotBlocSideViewTip")
self.verticalLayout_11.addWidget(self.plotBlocSideViewTip)
self.horizontalLayout.addWidget(self.widget_7)
self.tabs.addTab(self.tabPosition, "")
self.tabMaterial = QtWidgets.QWidget()
self.tabMaterial.setObjectName("tabMaterial")
self.verticalLayout_12 = QtWidgets.QVBoxLayout(self.tabMaterial)
self.verticalLayout_12.setObjectName("verticalLayout_12")
self.widget_9 = QtWidgets.QWidget(self.tabMaterial)
self.widget_9.setMaximumSize(QtCore.QSize(16777215, 140))
self.widget_9.setObjectName("widget_9")
self.gridLayout_2 = QtWidgets.QGridLayout(self.widget_9)
self.gridLayout_2.setObjectName("gridLayout_2")
self.label_29 = QtWidgets.QLabel(self.widget_9)
self.label_29.setObjectName("label_29")
self.gridLayout_2.addWidget(self.label_29, 3, 1, 1, 1)
self.mName = QtWidgets.QLineEdit(self.widget_9)
self.mName.setObjectName("mName")
self.gridLayout_2.addWidget(self.mName, 4, 1, 1, 1)
self.pbUploadMaterial = QtWidgets.QPushButton(self.widget_9)
self.pbUploadMaterial.setObjectName("pbUploadMaterial")
self.gridLayout_2.addWidget(self.pbUploadMaterial, 0, 1, 1, 1)
self.pbSaveMaterial = QtWidgets.QPushButton(self.widget_9)
self.pbSaveMaterial.setObjectName("pbSaveMaterial")
self.gridLayout_2.addWidget(self.pbSaveMaterial, 1, 1, 1, 1)
spacerItem6 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.gridLayout_2.addItem(spacerItem6, 2, 1, 1, 1)
spacerItem7 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.gridLayout_2.addItem(spacerItem7, 0, 2, 1, 1)
spacerItem8 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.gridLayout_2.addItem(spacerItem8, 0, 0, 1, 1)
self.verticalLayout_12.addWidget(self.widget_9)
self.widget_8 = QtWidgets.QWidget(self.tabMaterial)
self.widget_8.setObjectName("widget_8")
self.horizontalLayout_8 = QtWidgets.QHBoxLayout(self.widget_8)
self.horizontalLayout_8.setObjectName("horizontalLayout_8")
spacerItem9 = QtWidgets.QSpacerItem(169, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_8.addItem(spacerItem9)
self.groupBox_8 = QtWidgets.QGroupBox(self.widget_8)
self.groupBox_8.setMaximumSize(QtCore.QSize(100000, 180))
self.groupBox_8.setLayoutDirection(QtCore.Qt.LeftToRight)
self.groupBox_8.setObjectName("groupBox_8")
self.gridLayout = QtWidgets.QGridLayout(self.groupBox_8)
self.gridLayout.setObjectName("gridLayout")
self.label_32 = QtWidgets.QLabel(self.groupBox_8)
self.label_32.setObjectName("label_32")
self.gridLayout.addWidget(self.label_32, 0, 3, 1, 1)
self.mSpeedHalf = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mSpeedHalf.setEnabled(False)
self.mSpeedHalf.setMaximumSize(QtCore.QSize(50, 16777215))
self.mSpeedHalf.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mSpeedHalf.setDecimals(1)
self.mSpeedHalf.setProperty("value", 1.0)
self.mSpeedHalf.setObjectName("mSpeedHalf")
self.gridLayout.addWidget(self.mSpeedHalf, 1, 5, 1, 1)
self.label_33 = QtWidgets.QLabel(self.groupBox_8)
self.label_33.setObjectName("label_33")
self.gridLayout.addWidget(self.label_33, 0, 5, 1, 1)
spacerItem10 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.gridLayout.addItem(spacerItem10, 2, 2, 1, 1)
self.label_36 = QtWidgets.QLabel(self.groupBox_8)
self.label_36.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_36.setObjectName("label_36")
self.gridLayout.addWidget(self.label_36, 5, 0, 1, 1)
self.mRadSpHalf = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mRadSpHalf.setMaximumSize(QtCore.QSize(50, 16777215))
self.mRadSpHalf.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mRadSpHalf.setDecimals(1)
self.mRadSpHalf.setMinimum(0.1)
self.mRadSpHalf.setMaximum(10.0)
self.mRadSpHalf.setSingleStep(0.1)
self.mRadSpHalf.setProperty("value", 1.5)
self.mRadSpHalf.setObjectName("mRadSpHalf")
self.gridLayout.addWidget(self.mRadSpHalf, 3, 5, 1, 1)
self.mHeatSpLow = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mHeatSpLow.setMaximumSize(QtCore.QSize(50, 16777215))
self.mHeatSpLow.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mHeatSpLow.setDecimals(0)
self.mHeatSpLow.setMinimum(1.0)
self.mHeatSpLow.setProperty("value", 40.0)
self.mHeatSpLow.setObjectName("mHeatSpLow")
self.gridLayout.addWidget(self.mHeatSpLow, 2, 3, 1, 1)
self.label_31 = QtWidgets.QLabel(self.groupBox_8)
self.label_31.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.label_31.setBaseSize(QtCore.QSize(0, 0))
self.label_31.setObjectName("label_31")
self.gridLayout.addWidget(self.label_31, 0, 1, 1, 1)
self.mSpeedHigh = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mSpeedHigh.setMaximumSize(QtCore.QSize(50, 16777215))
self.mSpeedHigh.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mSpeedHigh.setDecimals(1)
self.mSpeedHigh.setMinimum(1.0)
self.mSpeedHigh.setMaximum(15.0)
self.mSpeedHigh.setProperty("value", 2.0)
self.mSpeedHigh.setObjectName("mSpeedHigh")
self.gridLayout.addWidget(self.mSpeedHigh, 1, 1, 1, 1)
self.mRadSpHigh = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mRadSpHigh.setMaximumSize(QtCore.QSize(50, 16777215))
self.mRadSpHigh.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mRadSpHigh.setDecimals(1)
self.mRadSpHigh.setMinimum(0.1)
self.mRadSpHigh.setMaximum(10.0)
self.mRadSpHigh.setSingleStep(0.1)
self.mRadSpHigh.setProperty("value", 0.8)
self.mRadSpHigh.setObjectName("mRadSpHigh")
self.gridLayout.addWidget(self.mRadSpHigh, 3, 1, 1, 1)
spacerItem11 = QtWidgets.QSpacerItem(20, 60, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Fixed)
self.gridLayout.addItem(spacerItem11, 4, 1, 1, 1)
self.label_34 = QtWidgets.QLabel(self.groupBox_8)
self.label_34.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_34.setObjectName("label_34")
self.gridLayout.addWidget(self.label_34, 2, 0, 1, 1)
self.mUsualCutSpeed = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mUsualCutSpeed.setMaximumSize(QtCore.QSize(50, 16777215))
self.mUsualCutSpeed.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mUsualCutSpeed.setDecimals(1)
self.mUsualCutSpeed.setMinimum(0.1)
self.mUsualCutSpeed.setMaximum(10.0)
self.mUsualCutSpeed.setSingleStep(0.1)
self.mUsualCutSpeed.setProperty("value", 2.0)
self.mUsualCutSpeed.setObjectName("mUsualCutSpeed")
self.gridLayout.addWidget(self.mUsualCutSpeed, 5, 1, 1, 1)
spacerItem12 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.gridLayout.addItem(spacerItem12, 2, 4, 1, 1)
self.mSpeedLow = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mSpeedLow.setMaximumSize(QtCore.QSize(50, 16777215))
self.mSpeedLow.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mSpeedLow.setDecimals(1)
self.mSpeedLow.setMinimum(0.1)
self.mSpeedLow.setMaximum(10.0)
self.mSpeedLow.setSingleStep(0.1)
self.mSpeedLow.setProperty("value", 0.5)
self.mSpeedLow.setObjectName("mSpeedLow")
self.gridLayout.addWidget(self.mSpeedLow, 1, 3, 1, 1)
self.mHeatSpHigh = QtWidgets.QDoubleSpinBox(self.groupBox_8)
self.mHeatSpHigh.setMaximumSize(QtCore.QSize(50, 16777215))
self.mHeatSpHigh.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.mHeatSpHigh.setDecimals(0)
self.mHeatSpHigh.setMinimum(1.0)
self.mHeatSpHigh.setProperty("value", 80.0)
self.mHeatSpHigh.setObjectName("mHeatSpHigh")
self.gridLayout.addWidget(self.mHeatSpHigh, 2, 1, 1, 1)
self.label_30 = QtWidgets.QLabel(self.groupBox_8)
self.label_30.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_30.setObjectName("label_30")
self.gridLayout.addWidget(self.label_30, 1, 0, 1, 1)
self.label_35 = QtWidgets.QLabel(self.groupBox_8)
self.label_35.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_35.setObjectName("label_35")
self.gridLayout.addWidget(self.label_35, 3, 0, 1, 1)
self.horizontalLayout_8.addWidget(self.groupBox_8)
spacerItem13 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_8.addItem(spacerItem13)
self.verticalLayout_12.addWidget(self.widget_8)
spacerItem14 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_12.addItem(spacerItem14)
self.tabs.addTab(self.tabMaterial, "")
self.tabGuillotine = QtWidgets.QWidget()
self.tabGuillotine.setObjectName("tabGuillotine")
self.gridLayout_4 = QtWidgets.QGridLayout(self.tabGuillotine)
self.gridLayout_4.setObjectName("gridLayout_4")
self.groupBox_15 = QtWidgets.QGroupBox(self.tabGuillotine)
self.groupBox_15.setObjectName("groupBox_15")
self.verticalLayout_16 = QtWidgets.QVBoxLayout(self.groupBox_15)
self.verticalLayout_16.setObjectName("verticalLayout_16")
self.pbReset = QtWidgets.QPushButton(self.groupBox_15)
self.pbReset.setEnabled(False)
self.pbReset.setObjectName("pbReset")
self.verticalLayout_16.addWidget(self.pbReset)
self.pbUnlock = QtWidgets.QPushButton(self.groupBox_15)
self.pbUnlock.setEnabled(False)
self.pbUnlock.setObjectName("pbUnlock")
self.verticalLayout_16.addWidget(self.pbUnlock)
spacerItem15 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_16.addItem(spacerItem15)
self.pbHome = QtWidgets.QPushButton(self.groupBox_15)
self.pbHome.setEnabled(False)
self.pbHome.setObjectName("pbHome")
self.verticalLayout_16.addWidget(self.pbHome)
spacerItem16 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_16.addItem(spacerItem16)
self.pbSetPosition = QtWidgets.QPushButton(self.groupBox_15)
self.pbSetPosition.setEnabled(False)
self.pbSetPosition.setObjectName("pbSetPosition")
self.verticalLayout_16.addWidget(self.pbSetPosition)
self.pbGoToPosition = QtWidgets.QPushButton(self.groupBox_15)
self.pbGoToPosition.setEnabled(False)
self.pbGoToPosition.setObjectName("pbGoToPosition")
self.verticalLayout_16.addWidget(self.pbGoToPosition)
spacerItem17 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_16.addItem(spacerItem17)
self.pbStartHeating = QtWidgets.QPushButton(self.groupBox_15)
self.pbStartHeating.setEnabled(False)
self.pbStartHeating.setObjectName("pbStartHeating")
self.verticalLayout_16.addWidget(self.pbStartHeating)
self.pbStopHeating = QtWidgets.QPushButton(self.groupBox_15)
self.pbStopHeating.setEnabled(False)
self.pbStopHeating.setObjectName("pbStopHeating")
self.verticalLayout_16.addWidget(self.pbStopHeating)
self.gridLayout_4.addWidget(self.groupBox_15, 0, 5, 1, 1)
self.groupBox_14 = QtWidgets.QGroupBox(self.tabGuillotine)
self.groupBox_14.setObjectName("groupBox_14")
self.gridLayout_3 = QtWidgets.QGridLayout(self.groupBox_14)
self.gridLayout_3.setObjectName("gridLayout_3")
self.grblStatus = QtWidgets.QLineEdit(self.groupBox_14)
self.grblStatus.setEnabled(True)
self.grblStatus.setReadOnly(True)
self.grblStatus.setObjectName("grblStatus")
self.gridLayout_3.addWidget(self.grblStatus, 0, 1, 1, 3)
self.grblF = QtWidgets.QLineEdit(self.groupBox_14)
self.grblF.setMaximumSize(QtCore.QSize(60, 16777215))
self.grblF.setReadOnly(True)
self.grblF.setObjectName("grblF")
self.gridLayout_3.addWidget(self.grblF, 2, 5, 1, 1)
self.label_43 = QtWidgets.QLabel(self.groupBox_14)
self.label_43.setLayoutDirection(QtCore.Qt.LeftToRight)
self.label_43.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_43.setObjectName("label_43")
self.gridLayout_3.addWidget(self.label_43, 2, 0, 1, 1)
self.grblYD = QtWidgets.QLineEdit(self.groupBox_14)
self.grblYD.setMaximumSize(QtCore.QSize(60, 16777215))
self.grblYD.setReadOnly(True)
self.grblYD.setObjectName("grblYD")
self.gridLayout_3.addWidget(self.grblYD, 3, 2, 1, 1)
self.label_46 = QtWidgets.QLabel(self.groupBox_14)
self.label_46.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_46.setObjectName("label_46")
self.gridLayout_3.addWidget(self.label_46, 3, 4, 1, 1)
self.pbClearMsg = QtWidgets.QPushButton(self.groupBox_14)
self.pbClearMsg.setObjectName("pbClearMsg")
self.gridLayout_3.addWidget(self.pbClearMsg, 6, 0, 1, 2)
self.grblXG = QtWidgets.QLineEdit(self.groupBox_14)
self.grblXG.setMaximumSize(QtCore.QSize(60, 16777215))
self.grblXG.setReadOnly(True)
self.grblXG.setObjectName("grblXG")
self.gridLayout_3.addWidget(self.grblXG, 2, 1, 1, 1)
self.teMsgBox = QtWidgets.QTextEdit(self.groupBox_14)
self.teMsgBox.setObjectName("teMsgBox")
self.gridLayout_3.addWidget(self.teMsgBox, 5, 0, 1, 6)
self.label_45 = QtWidgets.QLabel(self.groupBox_14)
self.label_45.setObjectName("label_45")
self.gridLayout_3.addWidget(self.label_45, 1, 2, 1, 1)
self.label_41 = QtWidgets.QLabel(self.groupBox_14)
self.label_41.setObjectName("label_41")
self.gridLayout_3.addWidget(self.label_41, 0, 0, 1, 1)
self.label_42 = QtWidgets.QLabel(self.groupBox_14)
self.label_42.setObjectName("label_42")
self.gridLayout_3.addWidget(self.label_42, 1, 1, 1, 1)
self.grblYG = QtWidgets.QLineEdit(self.groupBox_14)
self.grblYG.setMaximumSize(QtCore.QSize(60, 16777215))
self.grblYG.setReadOnly(True)
self.grblYG.setObjectName("grblYG")
self.gridLayout_3.addWidget(self.grblYG, 3, 1, 1, 1)
self.label_47 = QtWidgets.QLabel(self.groupBox_14)
self.label_47.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_47.setObjectName("label_47")
self.gridLayout_3.addWidget(self.label_47, 2, 4, 1, 1)
self.label_44 = QtWidgets.QLabel(self.groupBox_14)
self.label_44.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.label_44.setObjectName("label_44")
self.gridLayout_3.addWidget(self.label_44, 3, 0, 1, 1)
self.grblXD = QtWidgets.QLineEdit(self.groupBox_14)
self.grblXD.setMaximumSize(QtCore.QSize(60, 16777215))
self.grblXD.setReadOnly(True)
self.grblXD.setObjectName("grblXD")
self.gridLayout_3.addWidget(self.grblXD, 2, 2, 1, 1)
self.grblS = QtWidgets.QLineEdit(self.groupBox_14)
self.grblS.setMaximumSize(QtCore.QSize(60, 16777215))
self.grblS.setReadOnly(True)
self.grblS.setObjectName("grblS")
self.gridLayout_3.addWidget(self.grblS, 3, 5, 1, 1)
self.pbConnect = QtWidgets.QPushButton(self.groupBox_14)
self.pbConnect.setEnabled(True)
self.pbConnect.setObjectName("pbConnect")
self.gridLayout_3.addWidget(self.pbConnect, 0, 5, 1, 1)
self.pbDisconnect = QtWidgets.QPushButton(self.groupBox_14)
self.pbDisconnect.setEnabled(False)
self.pbDisconnect.setObjectName("pbDisconnect")
self.gridLayout_3.addWidget(self.pbDisconnect, 1, 5, 1, 1)
self.gridLayout_4.addWidget(self.groupBox_14, 0, 3, 1, 1)
spacerItem18 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.gridLayout_4.addItem(spacerItem18, 0, 2, 1, 1)
spacerItem19 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.gridLayout_4.addItem(spacerItem19, 0, 0, 1, 1)
self.groupBox_13 = QtWidgets.QGroupBox(self.tabGuillotine)
self.groupBox_13.setMaximumSize(QtCore.QSize(220, 16777215))
self.groupBox_13.setObjectName("groupBox_13")
self.verticalLayout_15 = QtWidgets.QVBoxLayout(self.groupBox_13)
self.verticalLayout_15.setObjectName("verticalLayout_15")
self.widget_11 = QtWidgets.QWidget(self.groupBox_13)
self.widget_11.setObjectName("widget_11")
self.formLayout_13 = QtWidgets.QFormLayout(self.widget_11)
self.formLayout_13.setLabelAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter)
self.formLayout_13.setObjectName("formLayout_13")
self.label_38 = QtWidgets.QLabel(self.widget_11)
self.label_38.setAlignment(QtCore.Qt.AlignLeading|QtCore.Qt.AlignLeft|QtCore.Qt.AlignVCenter)
self.label_38.setObjectName("label_38")
self.formLayout_13.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.label_38)
self.gCuttingSpeed = QtWidgets.QDoubleSpinBox(self.widget_11)
self.gCuttingSpeed.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.gCuttingSpeed.setDecimals(1)
self.gCuttingSpeed.setMinimum(0.1)
self.gCuttingSpeed.setMaximum(10.0)
self.gCuttingSpeed.setProperty("value", 2.0)
self.gCuttingSpeed.setObjectName("gCuttingSpeed")
self.formLayout_13.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.gCuttingSpeed)
self.label_39 = QtWidgets.QLabel(self.widget_11)
self.label_39.setObjectName("label_39")
self.formLayout_13.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.label_39)
self.gApplyCalculatedHeating = QtWidgets.QCheckBox(self.widget_11)
self.gApplyCalculatedHeating.setAcceptDrops(False)
self.gApplyCalculatedHeating.setText("")
self.gApplyCalculatedHeating.setChecked(True)
self.gApplyCalculatedHeating.setObjectName("gApplyCalculatedHeating")
self.formLayout_13.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.gApplyCalculatedHeating)
self.label_40 = QtWidgets.QLabel(self.widget_11)
self.label_40.setObjectName("label_40")
self.formLayout_13.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.label_40)
self.gHeating = QtWidgets.QDoubleSpinBox(self.widget_11)
self.gHeating.setEnabled(False)
self.gHeating.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.gHeating.setMaximum(100.0)
self.gHeating.setProperty("value", 50.0)
self.gHeating.setObjectName("gHeating")
self.formLayout_13.setWidget(2, QtWidgets.QFormLayout.FieldRole, self.gHeating)
self.verticalLayout_15.addWidget(self.widget_11)
self.groupBox_12 = QtWidgets.QGroupBox(self.groupBox_13)
self.groupBox_12.setObjectName("groupBox_12")
self.formLayout_14 = QtWidgets.QFormLayout(self.groupBox_12)
self.formLayout_14.setObjectName("formLayout_14")
self.rbGuillotineVertical = QtWidgets.QRadioButton(self.groupBox_12)
self.rbGuillotineVertical.setChecked(True)
self.rbGuillotineVertical.setObjectName("rbGuillotineVertical")
self.formLayout_14.setWidget(0, QtWidgets.QFormLayout.LabelRole, self.rbGuillotineVertical)
self.gVDist = QtWidgets.QDoubleSpinBox(self.groupBox_12)
self.gVDist.setMaximumSize(QtCore.QSize(50, 16777215))
self.gVDist.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.gVDist.setDecimals(1)
self.gVDist.setMinimum(0.1)
self.gVDist.setMaximum(500.0)
self.gVDist.setProperty("value", 10.0)
self.gVDist.setObjectName("gVDist")
self.formLayout_14.setWidget(0, QtWidgets.QFormLayout.FieldRole, self.gVDist)
self.rbGuillotineHorizontal = QtWidgets.QRadioButton(self.groupBox_12)
self.rbGuillotineHorizontal.setObjectName("rbGuillotineHorizontal")
self.formLayout_14.setWidget(1, QtWidgets.QFormLayout.LabelRole, self.rbGuillotineHorizontal)
self.gHDist = QtWidgets.QDoubleSpinBox(self.groupBox_12)
self.gHDist.setEnabled(False)
self.gHDist.setMaximumSize(QtCore.QSize(50, 16777215))
self.gHDist.setButtonSymbols(QtWidgets.QAbstractSpinBox.NoButtons)
self.gHDist.setDecimals(1)
self.gHDist.setMinimum(0.1)
self.gHDist.setMaximum(1000.0)
self.gHDist.setProperty("value", 10.0)
self.gHDist.setObjectName("gHDist")
self.formLayout_14.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.gHDist)
self.rbGuillotineInclined = QtWidgets.QRadioButton(self.groupBox_12)
self.rbGuillotineInclined.setObjectName("rbGuillotineInclined")
self.formLayout_14.setWidget(2, QtWidgets.QFormLayout.LabelRole, self.rbGuillotineInclined)
self.verticalLayout_15.addWidget(self.groupBox_12)
self.groupBox_131 = QtWidgets.QGroupBox(self.groupBox_13)