-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixerGUI.py
1941 lines (1932 loc) · 90.8 KB
/
mixerGUI.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 'mixer.ui'
#
# Created by: PyQt5 UI code generator 5.13.0
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(1059, 666)
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap(":/img/img/icon.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
MainWindow.setWindowIcon(icon)
MainWindow.setStyleSheet("background-color: rgb(255, 255, 255);")
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.verticalLayout = QtWidgets.QVBoxLayout(self.centralwidget)
self.verticalLayout.setContentsMargins(0, 0, 0, -1)
self.verticalLayout.setObjectName("verticalLayout")
self.horizontalFrame = QtWidgets.QFrame(self.centralwidget)
self.horizontalFrame.setStyleSheet("background-color: #7989ff;")
self.horizontalFrame.setObjectName("horizontalFrame")
self.horizontalLayout = QtWidgets.QHBoxLayout(self.horizontalFrame)
self.horizontalLayout.setObjectName("horizontalLayout")
self.label_4 = QtWidgets.QLabel(self.horizontalFrame)
font = QtGui.QFont()
font.setFamily("MS Reference Sans Serif")
font.setPointSize(20)
self.label_4.setFont(font)
self.label_4.setStyleSheet("min-height: 30px;\n"
"max-height: 30px;\n"
"min-width: 32.319px;\n"
"max-width: 32.319px;\n"
"margin-left:20px;\n"
"color: rgb(255, 255, 255);")
self.label_4.setText("")
self.label_4.setPixmap(QtGui.QPixmap(":/img/img/mixer.png"))
self.label_4.setScaledContents(True)
self.label_4.setObjectName("label_4")
self.horizontalLayout.addWidget(self.label_4)
self.label_3 = QtWidgets.QLabel(self.horizontalFrame)
font = QtGui.QFont()
font.setFamily("MS Reference Sans Serif")
font.setPointSize(20)
self.label_3.setFont(font)
self.label_3.setStyleSheet("min-width: 95.486px;\n"
"max-width: 95.486px;\n"
"min-height: 30px;\n"
"max-height: 30px;\n"
"color: rgb(255, 255, 255);")
self.label_3.setScaledContents(True)
self.label_3.setObjectName("label_3")
self.horizontalLayout.addWidget(self.label_3)
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem)
self.verticalLayout.addWidget(self.horizontalFrame)
self.tabWidget = QtWidgets.QTabWidget(self.centralwidget)
self.tabWidget.setEnabled(True)
font = QtGui.QFont()
font.setFamily("MS Shell Dlg 2")
font.setPointSize(11)
font.setBold(False)
font.setWeight(50)
font.setStrikeOut(False)
font.setKerning(True)
self.tabWidget.setFont(font)
self.tabWidget.setStyleSheet("QTabWidget::pane { /* The tab widget frame */\n"
" border: 0px;\n"
" border-top: 1px; \n"
" border-style: solid;\n"
" border-color: rgb(194, 194, 194);\n"
"}\n"
"\n"
"QTabWidget::tab-bar {\n"
" alignment: center;\n"
"}\n"
"\n"
"/* Style the tab using the tab sub-control. Note that\n"
" it reads QTabBar _not_ QTabWidget */\n"
"QTabBar::tab {\n"
" background: rgba(255, 255, 255, 0%);\n"
" color: #444;\n"
" border: 0px;\n"
" min-height: 30;\n"
" max-height: 30;\n"
" padding-right:10px;\n"
" padding-left:10px;\n"
"}\n"
"\n"
"QTabBar::tab:hover {\n"
" background: rgba(255, 255, 255, 0%);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: #7989ff;\n"
"}\n"
"\n"
"QTabBar::tab:selected {\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: #7989ff; /* same as pane color */\n"
"}\n"
"\n"
"QTabBar::tab:!selected {\n"
" margin-top: 2px; /* make non-selected tabs look smaller */\n"
"}\n"
"\n"
"QTabBar::tab:disabled {\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: #c8c8c8; /* same as pane color */\n"
" color: #c8c8c8;\n"
"}")
self.tabWidget.setObjectName("tabWidget")
self.ImportTab = QtWidgets.QWidget()
self.ImportTab.setObjectName("ImportTab")
self.horizontalLayout_11 = QtWidgets.QHBoxLayout(self.ImportTab)
self.horizontalLayout_11.setObjectName("horizontalLayout_11")
spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_11.addItem(spacerItem1)
self.verticalLayout_16 = QtWidgets.QVBoxLayout()
self.verticalLayout_16.setContentsMargins(-1, 0, -1, 0)
self.verticalLayout_16.setObjectName("verticalLayout_16")
self.label_13 = QtWidgets.QLabel(self.ImportTab)
font = QtGui.QFont()
font.setFamily("MS Shell Dlg 2")
font.setPointSize(12)
font.setBold(False)
font.setWeight(50)
self.label_13.setFont(font)
self.label_13.setStyleSheet("margin-bottom: 5px;\n"
"margin-top: 10px;")
self.label_13.setObjectName("label_13")
self.verticalLayout_16.addWidget(self.label_13)
self.label_14 = QtWidgets.QLabel(self.ImportTab)
self.label_14.setStyleSheet("min-width:350px;\n"
"max-width:350px;\n"
"margin-bottom: 25px;")
self.label_14.setWordWrap(True)
self.label_14.setObjectName("label_14")
self.verticalLayout_16.addWidget(self.label_14)
self.CSVCloudRadioButton = QtWidgets.QRadioButton(self.ImportTab)
self.CSVCloudRadioButton.setEnabled(True)
self.CSVCloudRadioButton.setStyleSheet("QRadioButton::indicator {\n"
" width: 13px;\n"
" height: 13px;\n"
"}\n"
"QRadioButton::indicator::unchecked {\n"
" image: url(:/img/img/rb_option_two.png);\n"
"}\n"
"\n"
"QRadioButton::indicator:unchecked:pressed {\n"
" image: url(:/img/img/rb_option_one.png);\n"
"}\n"
"\n"
"QRadioButton::indicator::checked {\n"
" image: url(:/img/img/rb_option_one.png);\n"
"}\n"
"\n"
"QRadioButton::indicator::disabled {\n"
" image: url(:/img/img/rb_disabled.png);\n"
"}")
self.CSVCloudRadioButton.setObjectName("CSVCloudRadioButton")
self.verticalLayout_16.addWidget(self.CSVCloudRadioButton)
self.CloudCSVImportWidget = QtWidgets.QWidget(self.ImportTab)
self.CloudCSVImportWidget.setStyleSheet("")
self.CloudCSVImportWidget.setObjectName("CloudCSVImportWidget")
self.verticalLayout_7 = QtWidgets.QVBoxLayout(self.CloudCSVImportWidget)
self.verticalLayout_7.setObjectName("verticalLayout_7")
self.label_17 = QtWidgets.QLabel(self.CloudCSVImportWidget)
self.label_17.setObjectName("label_17")
self.verticalLayout_7.addWidget(self.label_17)
self.horizontalLayout_8 = QtWidgets.QHBoxLayout()
self.horizontalLayout_8.setSpacing(0)
self.horizontalLayout_8.setObjectName("horizontalLayout_8")
self.URLLineEdit = QtWidgets.QLineEdit(self.CloudCSVImportWidget)
font = QtGui.QFont()
font.setFamily("MS Shell Dlg 2")
font.setPointSize(10)
self.URLLineEdit.setFont(font)
self.URLLineEdit.setStyleSheet("QLineEdit {\n"
" min-width:360px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QLineEdit::focus {\n"
" border-bottom-color:rgb(121, 137, 255);\n"
"}\n"
"\n"
"QLineEdit::disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15);\n"
"}")
self.URLLineEdit.setObjectName("URLLineEdit")
self.horizontalLayout_8.addWidget(self.URLLineEdit, 0, QtCore.Qt.AlignLeft)
spacerItem2 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_8.addItem(spacerItem2)
self.verticalLayout_7.addLayout(self.horizontalLayout_8)
self.URLValidationLabel = QtWidgets.QLabel(self.CloudCSVImportWidget)
font = QtGui.QFont()
font.setPointSize(8)
self.URLValidationLabel.setFont(font)
self.URLValidationLabel.setObjectName("URLValidationLabel")
self.verticalLayout_7.addWidget(self.URLValidationLabel)
self.verticalLayout_16.addWidget(self.CloudCSVImportWidget)
self.CSVLocalRadioButton = QtWidgets.QRadioButton(self.ImportTab)
self.CSVLocalRadioButton.setStyleSheet("QRadioButton::indicator {\n"
" width: 13px;\n"
" height: 13px;\n"
"}\n"
"QRadioButton::indicator::unchecked {\n"
" image: url(:/img/img/rb_option_two.png);\n"
"}\n"
"\n"
"QRadioButton::indicator:unchecked:pressed {\n"
" image: url(:/img/img/rb_option_one.png);\n"
"}\n"
"\n"
"QRadioButton::indicator::checked {\n"
" image: url(:/img/img/rb_option_one.png);\n"
"}\n"
"\n"
"QRadioButton::indicator::disabled {\n"
" image: url(:/img/img/rb_disabled.png);\n"
"}")
self.CSVLocalRadioButton.setObjectName("CSVLocalRadioButton")
self.verticalLayout_16.addWidget(self.CSVLocalRadioButton)
self.LocalCSVImportWidget = QtWidgets.QWidget(self.ImportTab)
self.LocalCSVImportWidget.setEnabled(True)
self.LocalCSVImportWidget.setStyleSheet("")
self.LocalCSVImportWidget.setObjectName("LocalCSVImportWidget")
self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.LocalCSVImportWidget)
self.verticalLayout_8.setObjectName("verticalLayout_8")
self.label_19 = QtWidgets.QLabel(self.LocalCSVImportWidget)
self.label_19.setObjectName("label_19")
self.verticalLayout_8.addWidget(self.label_19)
self.horizontalLayout_9 = QtWidgets.QHBoxLayout()
self.horizontalLayout_9.setSpacing(0)
self.horizontalLayout_9.setObjectName("horizontalLayout_9")
self.PathLineEdit = QtWidgets.QLineEdit(self.LocalCSVImportWidget)
self.PathLineEdit.setEnabled(True)
font = QtGui.QFont()
font.setFamily("MS Shell Dlg 2")
font.setPointSize(10)
self.PathLineEdit.setFont(font)
self.PathLineEdit.setStyleSheet("QLineEdit {\n"
" min-width:300px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QLineEdit::focus {\n"
" border-bottom-color:rgb(121, 137, 255);\n"
"}\n"
"\n"
"QLineEdit::disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15);\n"
"}")
self.PathLineEdit.setObjectName("PathLineEdit")
self.horizontalLayout_9.addWidget(self.PathLineEdit, 0, QtCore.Qt.AlignLeft)
self.LocalCSVPushButton = QtWidgets.QPushButton(self.LocalCSVImportWidget)
font = QtGui.QFont()
font.setFamily("MS Shell Dlg 2")
font.setPointSize(10)
self.LocalCSVPushButton.setFont(font)
self.LocalCSVPushButton.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
self.LocalCSVPushButton.setStyleSheet("QPushButton#LocalCSVPushButton {\n"
" min-width:60px;\n"
" max-width:60px;\n"
" min-height:30;\n"
" max-height:30px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 0px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QPushButton#LocalCSVPushButton:hover {\n"
" background-color: rgba(0,0,0,.2);\n"
"}\n"
"\n"
"QPushButton#LocalCSVPushButton:pressed {\n"
" background-color: rgba(0,0,0,.25); \n"
"}\n"
"\n"
"QPushButton#LocalCSVPushButton:disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15); \n"
"}")
self.LocalCSVPushButton.setObjectName("LocalCSVPushButton")
self.horizontalLayout_9.addWidget(self.LocalCSVPushButton)
spacerItem3 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_9.addItem(spacerItem3)
self.verticalLayout_8.addLayout(self.horizontalLayout_9)
self.PathValidationLabel = QtWidgets.QLabel(self.LocalCSVImportWidget)
font = QtGui.QFont()
font.setPointSize(8)
self.PathValidationLabel.setFont(font)
self.PathValidationLabel.setObjectName("PathValidationLabel")
self.verticalLayout_8.addWidget(self.PathValidationLabel)
self.verticalLayout_16.addWidget(self.LocalCSVImportWidget)
self.horizontalLayout_29 = QtWidgets.QHBoxLayout()
self.horizontalLayout_29.setContentsMargins(-1, 0, -1, -1)
self.horizontalLayout_29.setSpacing(0)
self.horizontalLayout_29.setObjectName("horizontalLayout_29")
spacerItem4 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_29.addItem(spacerItem4)
self.LoadingLabel = QtWidgets.QLabel(self.ImportTab)
font = QtGui.QFont()
font.setPointSize(10)
font.setBold(True)
font.setWeight(75)
self.LoadingLabel.setFont(font)
self.LoadingLabel.setObjectName("LoadingLabel")
self.horizontalLayout_29.addWidget(self.LoadingLabel)
spacerItem5 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_29.addItem(spacerItem5)
self.verticalLayout_16.addLayout(self.horizontalLayout_29)
spacerItem6 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_16.addItem(spacerItem6)
self.ImportPushButton = QtWidgets.QPushButton(self.ImportTab)
self.ImportPushButton.setStyleSheet("QPushButton#ImportPushButton {\n"
" min-width:80px;\n"
" max-width:80px;\n"
" min-height:30;\n"
" max-height:30px;\n"
"\n"
" color: rgb(255, 255, 255);\n"
"\n"
" background: #7989ff;\n"
" border: 2px;\n"
" border-style: solid;\n"
" border-color: #7989ff;\n"
" border-radius: 15;\n"
"\n"
" margin-bottom: 10px;\n"
"}\n"
"\n"
"QPushButton#ImportPushButton:hover {\n"
" background-color: rgb(110, 126, 231);\n"
" border-color: rgb(110, 126, 231);\n"
"}\n"
"\n"
"QPushButton#ImportPushButton:pressed {\n"
" background-color: rgb(101, 116, 214);\n"
" border-color: rgb(101, 116, 214);\n"
"}")
self.ImportPushButton.setObjectName("ImportPushButton")
self.verticalLayout_16.addWidget(self.ImportPushButton, 0, QtCore.Qt.AlignHCenter)
spacerItem7 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_16.addItem(spacerItem7)
self.horizontalLayout_11.addLayout(self.verticalLayout_16)
spacerItem8 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_11.addItem(spacerItem8)
self.tabWidget.addTab(self.ImportTab, "")
self.ShemaTab = QtWidgets.QWidget()
self.ShemaTab.setObjectName("ShemaTab")
self.horizontalLayout_4 = QtWidgets.QHBoxLayout(self.ShemaTab)
self.horizontalLayout_4.setObjectName("horizontalLayout_4")
self.verticalFrame = QtWidgets.QFrame(self.ShemaTab)
self.verticalFrame.setStyleSheet("margin-right:10px;")
self.verticalFrame.setObjectName("verticalFrame")
self.verticalLayout_5 = QtWidgets.QVBoxLayout(self.verticalFrame)
self.verticalLayout_5.setObjectName("verticalLayout_5")
self.label_22 = QtWidgets.QLabel(self.verticalFrame)
font = QtGui.QFont()
font.setPointSize(12)
self.label_22.setFont(font)
self.label_22.setStyleSheet("margin-bottom: 5px;\n"
"margin-top: 5px;")
self.label_22.setObjectName("label_22")
self.verticalLayout_5.addWidget(self.label_22)
self.label_23 = QtWidgets.QLabel(self.verticalFrame)
self.label_23.setStyleSheet("min-width:220px;\n"
"max-width:220px;\n"
"margin-bottom: 20px;")
self.label_23.setWordWrap(True)
self.label_23.setObjectName("label_23")
self.verticalLayout_5.addWidget(self.label_23)
self.TargetComboBox = QtWidgets.QComboBox(self.verticalFrame)
self.TargetComboBox.setStyleSheet("QComboBox#TargetComboBox {\n"
" min-width:200px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"\n"
"QComboBox#TargetComboBox:drop-down {\n"
" border:0px;\n"
" width: 15px;\n"
"}\n"
"\n"
"QComboBox#TargetComboBox:down-arrow {\n"
" right:3px;\n"
" width: 10px;\n"
" image: url(:/img/img/dd_arrow.png);\n"
"}\n"
"\n"
"QComboBox QAbstractItemView {\n"
" border: 0px;\n"
" background: #ebebeb;\n"
" color: #495057;\n"
"}")
self.TargetComboBox.setObjectName("TargetComboBox")
self.verticalLayout_5.addWidget(self.TargetComboBox)
self.TargetValidationLabel = QtWidgets.QLabel(self.verticalFrame)
self.TargetValidationLabel.setObjectName("TargetValidationLabel")
self.verticalLayout_5.addWidget(self.TargetValidationLabel)
spacerItem9 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_5.addItem(spacerItem9)
self.label_25 = QtWidgets.QLabel(self.verticalFrame)
self.label_25.setStyleSheet("min-width:220px;\n"
"max-width:220px;\n"
"margin-top:50px;\n"
"margin-bottom: 10px;")
self.label_25.setWordWrap(True)
self.label_25.setObjectName("label_25")
self.verticalLayout_5.addWidget(self.label_25)
self.ApplyShemaPushButton = QtWidgets.QPushButton(self.verticalFrame)
font = QtGui.QFont()
font.setPointSize(10)
font.setBold(False)
font.setWeight(50)
self.ApplyShemaPushButton.setFont(font)
self.ApplyShemaPushButton.setStyleSheet("QPushButton#ApplyShemaPushButton {\n"
" min-width:80px;\n"
" max-width:80px;\n"
" min-height:30;\n"
" max-height:30px;\n"
"\n"
" color: rgb(255, 255, 255);\n"
"\n"
" background: #7989ff;\n"
" border: 2px;\n"
" border-style: solid;\n"
" border-color: #7989ff;\n"
" border-radius: 15;\n"
"\n"
" margin-bottom: 10px;\n"
"}\n"
"\n"
"QPushButton#ApplyShemaPushButton:hover {\n"
" background-color: rgb(110, 126, 231);\n"
" border-color: rgb(110, 126, 231);\n"
"}\n"
"\n"
"QPushButton#ApplyShemaPushButton:pressed {\n"
" background-color: rgb(101, 116, 214);\n"
" border-color: rgb(101, 116, 214);\n"
"}")
self.ApplyShemaPushButton.setObjectName("ApplyShemaPushButton")
self.verticalLayout_5.addWidget(self.ApplyShemaPushButton, 0, QtCore.Qt.AlignHCenter)
self.horizontalLayout_4.addWidget(self.verticalFrame)
self.verticalLayout_6 = QtWidgets.QVBoxLayout()
self.verticalLayout_6.setObjectName("verticalLayout_6")
self.ManageColumnsWidget = QtWidgets.QWidget(self.ShemaTab)
self.ManageColumnsWidget.setObjectName("ManageColumnsWidget")
self.verticalLayout_33 = QtWidgets.QVBoxLayout(self.ManageColumnsWidget)
self.verticalLayout_33.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_33.setObjectName("verticalLayout_33")
self.label_15 = QtWidgets.QLabel(self.ManageColumnsWidget)
font = QtGui.QFont()
font.setPointSize(12)
self.label_15.setFont(font)
self.label_15.setStyleSheet("margin-bottom: 5px;\n"
"margin-top: 10px;")
self.label_15.setObjectName("label_15")
self.verticalLayout_33.addWidget(self.label_15)
self.label_20 = QtWidgets.QLabel(self.ManageColumnsWidget)
self.label_20.setObjectName("label_20")
self.verticalLayout_33.addWidget(self.label_20)
self.ManageColumnsScrollArea = QtWidgets.QScrollArea(self.ManageColumnsWidget)
self.ManageColumnsScrollArea.setWidgetResizable(True)
self.ManageColumnsScrollArea.setObjectName("ManageColumnsScrollArea")
self.ManageColumnsScrollAreaWidgetContents = QtWidgets.QWidget()
self.ManageColumnsScrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 771, 148))
self.ManageColumnsScrollAreaWidgetContents.setObjectName("ManageColumnsScrollAreaWidgetContents")
self.verticalLayout_34 = QtWidgets.QVBoxLayout(self.ManageColumnsScrollAreaWidgetContents)
self.verticalLayout_34.setObjectName("verticalLayout_34")
self.ManageColumnsScrollArea.setWidget(self.ManageColumnsScrollAreaWidgetContents)
self.verticalLayout_33.addWidget(self.ManageColumnsScrollArea)
self.ColumnsValidationLabel = QtWidgets.QLabel(self.ManageColumnsWidget)
self.ColumnsValidationLabel.setObjectName("ColumnsValidationLabel")
self.verticalLayout_33.addWidget(self.ColumnsValidationLabel)
self.verticalWidget = QtWidgets.QWidget(self.ManageColumnsWidget)
self.verticalWidget.setObjectName("verticalWidget")
self.verticalLayout_11 = QtWidgets.QVBoxLayout(self.verticalWidget)
self.verticalLayout_11.setContentsMargins(1, 1, -1, 1)
self.verticalLayout_11.setObjectName("verticalLayout_11")
self.verticalLayout_33.addWidget(self.verticalWidget)
self.verticalLayout_6.addWidget(self.ManageColumnsWidget)
self.TargetFeaturesWidget = QtWidgets.QWidget(self.ShemaTab)
self.TargetFeaturesWidget.setEnabled(True)
self.TargetFeaturesWidget.setObjectName("TargetFeaturesWidget")
self.verticalLayout_32 = QtWidgets.QVBoxLayout(self.TargetFeaturesWidget)
self.verticalLayout_32.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_32.setObjectName("verticalLayout_32")
self.label_16 = QtWidgets.QLabel(self.TargetFeaturesWidget)
font = QtGui.QFont()
font.setPointSize(12)
self.label_16.setFont(font)
self.label_16.setStyleSheet("margin-bottom: 5px;\n"
"margin-top: 10px;")
self.label_16.setObjectName("label_16")
self.verticalLayout_32.addWidget(self.label_16)
self.label_21 = QtWidgets.QLabel(self.TargetFeaturesWidget)
self.label_21.setObjectName("label_21")
self.verticalLayout_32.addWidget(self.label_21)
self.TargetFeaturesScrollArea = QtWidgets.QScrollArea(self.TargetFeaturesWidget)
self.TargetFeaturesScrollArea.setWidgetResizable(True)
self.TargetFeaturesScrollArea.setObjectName("TargetFeaturesScrollArea")
self.TargetFeaturesScrollAreaWidgetContents = QtWidgets.QWidget()
self.TargetFeaturesScrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 771, 174))
self.TargetFeaturesScrollAreaWidgetContents.setObjectName("TargetFeaturesScrollAreaWidgetContents")
self.verticalLayout_35 = QtWidgets.QVBoxLayout(self.TargetFeaturesScrollAreaWidgetContents)
self.verticalLayout_35.setObjectName("verticalLayout_35")
self.TargetFeaturesScrollArea.setWidget(self.TargetFeaturesScrollAreaWidgetContents)
self.verticalLayout_32.addWidget(self.TargetFeaturesScrollArea)
self.verticalLayout_6.addWidget(self.TargetFeaturesWidget)
self.verticalWidget_5 = QtWidgets.QWidget(self.ShemaTab)
self.verticalWidget_5.setObjectName("verticalWidget_5")
self.verticalLayout_12 = QtWidgets.QVBoxLayout(self.verticalWidget_5)
self.verticalLayout_12.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_12.setSpacing(6)
self.verticalLayout_12.setObjectName("verticalLayout_12")
self.verticalLayout_6.addWidget(self.verticalWidget_5)
spacerItem10 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.verticalLayout_6.addItem(spacerItem10)
self.horizontalLayout_4.addLayout(self.verticalLayout_6)
self.tabWidget.addTab(self.ShemaTab, "")
self.AnalyzeTab = QtWidgets.QWidget()
self.AnalyzeTab.setObjectName("AnalyzeTab")
self.horizontalLayout_7 = QtWidgets.QHBoxLayout(self.AnalyzeTab)
self.horizontalLayout_7.setContentsMargins(-1, 0, -1, 0)
self.horizontalLayout_7.setObjectName("horizontalLayout_7")
self.verticalLayout_9 = QtWidgets.QVBoxLayout()
self.verticalLayout_9.setContentsMargins(0, 0, -1, -1)
self.verticalLayout_9.setObjectName("verticalLayout_9")
self.scrollArea_2 = QtWidgets.QScrollArea(self.AnalyzeTab)
self.scrollArea_2.setStyleSheet("min-width:250px;\n"
"max-width:250px;\n"
"border:0px;\n"
"background-color: rgba(255, 255, 255,0);")
self.scrollArea_2.setWidgetResizable(True)
self.scrollArea_2.setObjectName("scrollArea_2")
self.scrollAreaWidgetContents_2 = QtWidgets.QWidget()
self.scrollAreaWidgetContents_2.setGeometry(QtCore.QRect(0, 0, 250, 30))
self.scrollAreaWidgetContents_2.setObjectName("scrollAreaWidgetContents_2")
self.verticalLayout_36 = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents_2)
self.verticalLayout_36.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_36.setSpacing(0)
self.verticalLayout_36.setObjectName("verticalLayout_36")
self.scrollArea_2.setWidget(self.scrollAreaWidgetContents_2)
self.verticalLayout_9.addWidget(self.scrollArea_2)
self.horizontalLayout_7.addLayout(self.verticalLayout_9)
self.line_5 = QtWidgets.QFrame(self.AnalyzeTab)
self.line_5.setFrameShape(QtWidgets.QFrame.VLine)
self.line_5.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line_5.setObjectName("line_5")
self.horizontalLayout_7.addWidget(self.line_5)
self.tableWidget = QtWidgets.QTableWidget(self.AnalyzeTab)
self.tableWidget.setStyleSheet("border:0px;")
self.tableWidget.setColumnCount(2)
self.tableWidget.setObjectName("tableWidget")
self.tableWidget.setRowCount(0)
self.horizontalLayout_7.addWidget(self.tableWidget)
self.tabWidget.addTab(self.AnalyzeTab, "")
self.TrainTab = QtWidgets.QWidget()
self.TrainTab.setObjectName("TrainTab")
self.verticalLayout_14 = QtWidgets.QVBoxLayout(self.TrainTab)
self.verticalLayout_14.setObjectName("verticalLayout_14")
self.horizontalLayout_14 = QtWidgets.QHBoxLayout()
self.horizontalLayout_14.setContentsMargins(0, -1, 0, -1)
self.horizontalLayout_14.setObjectName("horizontalLayout_14")
spacerItem11 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_14.addItem(spacerItem11)
self.verticalLayout_10 = QtWidgets.QVBoxLayout()
self.verticalLayout_10.setContentsMargins(-1, 10, -1, -1)
self.verticalLayout_10.setObjectName("verticalLayout_10")
self.label_31 = QtWidgets.QLabel(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(12)
self.label_31.setFont(font)
self.label_31.setStyleSheet("")
self.label_31.setObjectName("label_31")
self.verticalLayout_10.addWidget(self.label_31)
self.label_36 = QtWidgets.QLabel(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_36.setFont(font)
self.label_36.setStyleSheet("margin-top: 20px;")
self.label_36.setObjectName("label_36")
self.verticalLayout_10.addWidget(self.label_36)
self.ModelNameLineEdit = QtWidgets.QLineEdit(self.TrainTab)
self.ModelNameLineEdit.setStyleSheet("QLineEdit {\n"
" min-width:300px;\n"
" max-width:300px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QLineEdit::focus {\n"
" border-bottom-color:rgb(121, 137, 255);\n"
"}")
self.ModelNameLineEdit.setObjectName("ModelNameLineEdit")
self.verticalLayout_10.addWidget(self.ModelNameLineEdit)
self.ModelNameValidationLabel = QtWidgets.QLabel(self.TrainTab)
self.ModelNameValidationLabel.setObjectName("ModelNameValidationLabel")
self.verticalLayout_10.addWidget(self.ModelNameValidationLabel)
self.label_33 = QtWidgets.QLabel(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_33.setFont(font)
self.label_33.setStyleSheet("margin-top: 20px;")
self.label_33.setObjectName("label_33")
self.verticalLayout_10.addWidget(self.label_33)
self.label_35 = QtWidgets.QLabel(self.TrainTab)
self.label_35.setStyleSheet("min-width:300px;\n"
"max-width:300px;")
self.label_35.setWordWrap(True)
self.label_35.setObjectName("label_35")
self.verticalLayout_10.addWidget(self.label_35)
self.TrainOptionComboBox = QtWidgets.QComboBox(self.TrainTab)
self.TrainOptionComboBox.setStyleSheet("QComboBox#TrainOptionComboBox {\n"
" min-width:300px;\n"
" max-width:300px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"\n"
"QComboBox#TrainOptionComboBox:drop-down {\n"
" border:0px;\n"
" width: 15px;\n"
"}\n"
"\n"
"QComboBox#TrainOptionComboBox:down-arrow {\n"
" right:3px;\n"
" width: 10px;\n"
" image: url(:/img/img/dd_arrow.png);\n"
"}\n"
"\n"
"QComboBox QAbstractItemView {\n"
" border: 0px;\n"
" background: #ebebeb;\n"
" color: #495057;\n"
"}")
self.TrainOptionComboBox.setObjectName("TrainOptionComboBox")
self.verticalLayout_10.addWidget(self.TrainOptionComboBox)
self.horizontalLayout_5 = QtWidgets.QHBoxLayout()
self.horizontalLayout_5.setContentsMargins(-1, 0, -1, -1)
self.horizontalLayout_5.setObjectName("horizontalLayout_5")
self.label_34 = QtWidgets.QLabel(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_34.setFont(font)
self.label_34.setStyleSheet("margin-top: 20px;")
self.label_34.setObjectName("label_34")
self.horizontalLayout_5.addWidget(self.label_34)
self.TrainTestParametersInfoPushButton = QtWidgets.QPushButton(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
self.TrainTestParametersInfoPushButton.setFont(font)
self.TrainTestParametersInfoPushButton.setStyleSheet(" min-width:14px;\n"
" max-width:14px;\n"
" min-height:14px;\n"
" max-height:14px;\n"
"\n"
" color: rgb(255, 255, 255);\n"
"\n"
" background: #666666;\n"
" border: 1px;\n"
" border-style: solid;\n"
" border-color: #666666;\n"
" border-radius: 7;")
self.TrainTestParametersInfoPushButton.setObjectName("TrainTestParametersInfoPushButton")
self.horizontalLayout_5.addWidget(self.TrainTestParametersInfoPushButton, 0, QtCore.Qt.AlignBottom)
spacerItem12 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_5.addItem(spacerItem12)
self.verticalLayout_10.addLayout(self.horizontalLayout_5)
self.label_38 = QtWidgets.QLabel(self.TrainTab)
self.label_38.setStyleSheet("min-width:300px;\n"
"max-width:300px;")
self.label_38.setWordWrap(True)
self.label_38.setObjectName("label_38")
self.verticalLayout_10.addWidget(self.label_38)
self.TestTrainParametersLineEdit = QtWidgets.QLineEdit(self.TrainTab)
self.TestTrainParametersLineEdit.setStyleSheet("QLineEdit {\n"
" min-width:300px;\n"
" max-width:300px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QLineEdit::focus {\n"
" border-bottom-color:rgb(121, 137, 255);\n"
"}")
self.TestTrainParametersLineEdit.setObjectName("TestTrainParametersLineEdit")
self.verticalLayout_10.addWidget(self.TestTrainParametersLineEdit)
self.TestTrainParametersValidationLabel = QtWidgets.QLabel(self.TrainTab)
self.TestTrainParametersValidationLabel.setObjectName("TestTrainParametersValidationLabel")
self.verticalLayout_10.addWidget(self.TestTrainParametersValidationLabel)
spacerItem13 = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding)
self.verticalLayout_10.addItem(spacerItem13)
self.horizontalLayout_14.addLayout(self.verticalLayout_10)
spacerItem14 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_14.addItem(spacerItem14)
self.verticalLayout_13 = QtWidgets.QVBoxLayout()
self.verticalLayout_13.setContentsMargins(0, 10, -1, -1)
self.verticalLayout_13.setObjectName("verticalLayout_13")
self.label_32 = QtWidgets.QLabel(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(12)
self.label_32.setFont(font)
self.label_32.setStyleSheet("")
self.label_32.setObjectName("label_32")
self.verticalLayout_13.addWidget(self.label_32, 0, QtCore.Qt.AlignLeft)
self.horizontalLayout_6 = QtWidgets.QHBoxLayout()
self.horizontalLayout_6.setContentsMargins(-1, 0, -1, -1)
self.horizontalLayout_6.setObjectName("horizontalLayout_6")
self.label_39 = QtWidgets.QLabel(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.label_39.setFont(font)
self.label_39.setStyleSheet("margin-top: 15px;")
self.label_39.setObjectName("label_39")
self.horizontalLayout_6.addWidget(self.label_39)
self.ClassifierParametersInfoPushButton = QtWidgets.QPushButton(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
self.ClassifierParametersInfoPushButton.setFont(font)
self.ClassifierParametersInfoPushButton.setStyleSheet(" min-width:14px;\n"
" max-width:14px;\n"
" min-height:14px;\n"
" max-height:14px;\n"
"\n"
" color: rgb(255, 255, 255);\n"
"\n"
" background: #666666;\n"
" border: 1px;\n"
" border-style: solid;\n"
" border-color: #666666;\n"
" border-radius: 7;")
self.ClassifierParametersInfoPushButton.setObjectName("ClassifierParametersInfoPushButton")
self.horizontalLayout_6.addWidget(self.ClassifierParametersInfoPushButton, 0, QtCore.Qt.AlignBottom)
spacerItem15 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_6.addItem(spacerItem15)
self.verticalLayout_13.addLayout(self.horizontalLayout_6)
self.label_37 = QtWidgets.QLabel(self.TrainTab)
self.label_37.setStyleSheet("min-width:300px;\n"
"max-width:300px;")
self.label_37.setWordWrap(True)
self.label_37.setObjectName("label_37")
self.verticalLayout_13.addWidget(self.label_37)
self.ClassifierParametersLineEdit = QtWidgets.QLineEdit(self.TrainTab)
self.ClassifierParametersLineEdit.setStyleSheet("QLineEdit {\n"
" min-width:300px;\n"
" max-width:300px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QLineEdit::focus {\n"
" border-bottom-color:rgb(121, 137, 255);\n"
"}")
self.ClassifierParametersLineEdit.setObjectName("ClassifierParametersLineEdit")
self.verticalLayout_13.addWidget(self.ClassifierParametersLineEdit)
self.ClassifierParametersValidationLabel = QtWidgets.QLabel(self.TrainTab)
self.ClassifierParametersValidationLabel.setStyleSheet("margin-bottom: 15px;")
self.ClassifierParametersValidationLabel.setObjectName("ClassifierParametersValidationLabel")
self.verticalLayout_13.addWidget(self.ClassifierParametersValidationLabel)
self.CountVectorizerWidget = QtWidgets.QWidget(self.TrainTab)
self.CountVectorizerWidget.setObjectName("CountVectorizerWidget")
self.verticalLayout_22 = QtWidgets.QVBoxLayout(self.CountVectorizerWidget)
self.verticalLayout_22.setContentsMargins(0, 0, 0, 0)
self.verticalLayout_22.setObjectName("verticalLayout_22")
self.horizontalLayout_10 = QtWidgets.QHBoxLayout()
self.horizontalLayout_10.setContentsMargins(-1, 0, -1, -1)
self.horizontalLayout_10.setObjectName("horizontalLayout_10")
self.CountVectorizerCadioButton = QtWidgets.QRadioButton(self.CountVectorizerWidget)
font = QtGui.QFont()
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.CountVectorizerCadioButton.setFont(font)
self.CountVectorizerCadioButton.setStyleSheet("QRadioButton::indicator {\n"
" width: 13px;\n"
" height: 13px;\n"
"}\n"
"QRadioButton::indicator::unchecked {\n"
" image: url(:/img/img/rb_option_two.png);\n"
"}\n"
"\n"
"QRadioButton::indicator:unchecked:pressed {\n"
" image: url(:/img/img/rb_option_one.png);\n"
"}\n"
"\n"
"QRadioButton::indicator::checked {\n"
" image: url(:/img/img/rb_option_one.png);\n"
"}\n"
"\n"
"QRadioButton::indicator::disabled {\n"
" image: url(:/img/img/rb_disabled.png);\n"
"}")
self.CountVectorizerCadioButton.setObjectName("CountVectorizerCadioButton")
self.horizontalLayout_10.addWidget(self.CountVectorizerCadioButton)
self.CountVectParametersInfoPushButton = QtWidgets.QPushButton(self.CountVectorizerWidget)
font = QtGui.QFont()
font.setPointSize(9)
self.CountVectParametersInfoPushButton.setFont(font)
self.CountVectParametersInfoPushButton.setStyleSheet(" min-width:14px;\n"
" max-width:14px;\n"
" min-height:14px;\n"
" max-height:14px;\n"
"\n"
" color: rgb(255, 255, 255);\n"
"\n"
" background: #666666;\n"
" border: 1px;\n"
" border-style: solid;\n"
" border-color: #666666;\n"
" border-radius: 7;")
self.CountVectParametersInfoPushButton.setObjectName("CountVectParametersInfoPushButton")
self.horizontalLayout_10.addWidget(self.CountVectParametersInfoPushButton)
spacerItem16 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_10.addItem(spacerItem16)
self.verticalLayout_22.addLayout(self.horizontalLayout_10)
self.label_46 = QtWidgets.QLabel(self.CountVectorizerWidget)
self.label_46.setStyleSheet("min-width:300px;\n"
"max-width:300px;")
self.label_46.setWordWrap(True)
self.label_46.setObjectName("label_46")
self.verticalLayout_22.addWidget(self.label_46)
self.CountVectorizerParametersLineEdit = QtWidgets.QLineEdit(self.CountVectorizerWidget)
self.CountVectorizerParametersLineEdit.setStyleSheet("QLineEdit {\n"
" min-width:300px;\n"
" max-width:300px;\n"
" min-height:30;\n"
" max-height:30px;\n"
" \n"
" padding-left: 5px;\n"
"\n"
" color: #495057;\n"
"\n"
" background: rgba(0,0,0,.08);\n"
" border-bottom: 2px;\n"
" border-style: solid;\n"
" border-bottom-color: rgba(0,0,0,.3);\n"
" border-top-left-radius: 3px;\n"
" border-top-right-radius: 3px;\n"
" border-bottom-right-radius: 0px;\n"
" border-bottom-left-radius: 0px;\n"
"}\n"
"\n"
"QLineEdit::focus {\n"
" border-bottom-color:rgb(121, 137, 255);\n"
"}\n"
"\n"
"QLineEdit::disabled {\n"
" background: rgba(0,0,0,.04);\n"
" border-bottom-color: rgba(0,0,0,.15);\n"
"}")
self.CountVectorizerParametersLineEdit.setObjectName("CountVectorizerParametersLineEdit")
self.verticalLayout_22.addWidget(self.CountVectorizerParametersLineEdit)
self.CounVectorizerParametersValidationLabel = QtWidgets.QLabel(self.CountVectorizerWidget)
self.CounVectorizerParametersValidationLabel.setStyleSheet("margin-bottom: 15px;")
self.CounVectorizerParametersValidationLabel.setObjectName("CounVectorizerParametersValidationLabel")
self.verticalLayout_22.addWidget(self.CounVectorizerParametersValidationLabel)
self.verticalLayout_13.addWidget(self.CountVectorizerWidget)
self.horizontalLayout_12 = QtWidgets.QHBoxLayout()
self.horizontalLayout_12.setContentsMargins(-1, 0, -1, -1)
self.horizontalLayout_12.setObjectName("horizontalLayout_12")
self.TfIdfTransformerRadioButton = QtWidgets.QRadioButton(self.TrainTab)
font = QtGui.QFont()
font.setPointSize(9)
font.setBold(True)
font.setWeight(75)
self.TfIdfTransformerRadioButton.setFont(font)
self.TfIdfTransformerRadioButton.setStyleSheet("QRadioButton::indicator {\n"
" width: 13px;\n"
" height: 13px;\n"
"}\n"
"QRadioButton::indicator::unchecked {\n"
" image: url(:/img/img/rb_option_two.png);\n"
"}\n"
"\n"
"QRadioButton::indicator:unchecked:pressed {\n"