-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain_Form.py
More file actions
2413 lines (2371 loc) · 117 KB
/
Main_Form.py
File metadata and controls
2413 lines (2371 loc) · 117 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
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
# Form implementation generated from reading ui file 'Main_Form.ui'
#
# Created by: PyQt6 UI code generator 6.6.1
#
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt6 import QtCore, QtGui, QtWidgets
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(1000, 541)
self.centralwidget = QtWidgets.QWidget(parent=MainWindow)
self.centralwidget.setMinimumSize(QtCore.QSize(1000, 500))
self.centralwidget.setObjectName("centralwidget")
self.verticalLayout_8 = QtWidgets.QVBoxLayout(self.centralwidget)
self.verticalLayout_8.setObjectName("verticalLayout_8")
self.stackedWidget = QtWidgets.QStackedWidget(parent=self.centralwidget)
self.stackedWidget.setObjectName("stackedWidget")
self.Main_page = QtWidgets.QWidget()
self.Main_page.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.Main_page.setObjectName("Main_page")
self.verticalLayout_9 = QtWidgets.QVBoxLayout(self.Main_page)
self.verticalLayout_9.setObjectName("verticalLayout_9")
self.horizontalLayout_5 = QtWidgets.QHBoxLayout()
self.horizontalLayout_5.setObjectName("horizontalLayout_5")
self.Glavnaya = QtWidgets.QLabel(parent=self.Main_page)
self.Glavnaya.setMaximumSize(QtCore.QSize(760, 142))
font = QtGui.QFont()
font.setPointSize(72)
self.Glavnaya.setFont(font)
self.Glavnaya.setContextMenuPolicy(QtCore.Qt.ContextMenuPolicy.DefaultContextMenu)
self.Glavnaya.setStyleSheet("")
self.Glavnaya.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
self.Glavnaya.setObjectName("Glavnaya")
self.horizontalLayout_5.addWidget(self.Glavnaya)
self.verticalLayout_9.addLayout(self.horizontalLayout_5)
self.verticalLayout = QtWidgets.QVBoxLayout()
self.verticalLayout.setObjectName("verticalLayout")
self.verticalLayout_9.addLayout(self.verticalLayout)
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
self.Button_Zapolnit = QtWidgets.QPushButton(parent=self.Main_page)
self.Button_Zapolnit.setMaximumSize(QtCore.QSize(270, 120))
font = QtGui.QFont()
font.setPointSize(24)
self.Button_Zapolnit.setFont(font)
self.Button_Zapolnit.setStyleSheet("#Button_Zapolnit{\n"
"border-top: 2px solid;\n"
"border-top-color: rgb(255, 76, 0);\n"
"border-bottom: 2px solid;\n"
"border-bottom-color: rgb(255, 76, 0);\n"
"}\n"
"#Button_Zapolnit:hover {\n"
"background: rgb(219, 219, 219);\n"
"}\n"
"#Button_Zapolnit:pressed {\n"
"background: rgb(204, 204, 204);\n"
"}")
self.Button_Zapolnit.setObjectName("Button_Zapolnit")
self.horizontalLayout.addWidget(self.Button_Zapolnit)
self.Button_Spisok = QtWidgets.QPushButton(parent=self.Main_page)
self.Button_Spisok.setMaximumSize(QtCore.QSize(270, 120))
font = QtGui.QFont()
font.setPointSize(24)
self.Button_Spisok.setFont(font)
self.Button_Spisok.setStyleSheet("#Button_Spisok{\n"
"border-top: 2px solid;\n"
"border-top-color: rgb(255, 76, 0);\n"
"border-bottom: 2px solid;\n"
"border-bottom-color: rgb(255, 76, 0);\n"
"}\n"
"#Button_Spisok:hover {\n"
"background: rgb(219, 219, 219);\n"
"}\n"
"#Button_Spisok:pressed {\n"
"background: rgb(204, 204, 204);\n"
"}")
self.Button_Spisok.setObjectName("Button_Spisok")
self.horizontalLayout.addWidget(self.Button_Spisok)
self.verticalLayout_9.addLayout(self.horizontalLayout)
self.stackedWidget.addWidget(self.Main_page)
self.Add_page = QtWidgets.QWidget()
self.Add_page.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.Add_page.setObjectName("Add_page")
self.verticalLayout_10 = QtWidgets.QVBoxLayout(self.Add_page)
self.verticalLayout_10.setObjectName("verticalLayout_10")
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.horizontalLayout_14 = QtWidgets.QHBoxLayout()
self.horizontalLayout_14.setObjectName("horizontalLayout_14")
self.Dobavochnoe_pole = QtWidgets.QLabel(parent=self.Add_page)
self.Dobavochnoe_pole.setMaximumSize(QtCore.QSize(777, 112))
font = QtGui.QFont()
font.setPointSize(48)
self.Dobavochnoe_pole.setFont(font)
self.Dobavochnoe_pole.setStyleSheet("")
self.Dobavochnoe_pole.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
self.Dobavochnoe_pole.setObjectName("Dobavochnoe_pole")
self.horizontalLayout_14.addWidget(self.Dobavochnoe_pole)
self.verticalLayout_2.addLayout(self.horizontalLayout_14)
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.Dobavit_dokument_label = QtWidgets.QLabel(parent=self.Add_page)
self.Dobavit_dokument_label.setMaximumSize(QtCore.QSize(300, 35))
font = QtGui.QFont()
font.setPointSize(20)
self.Dobavit_dokument_label.setFont(font)
self.Dobavit_dokument_label.setStyleSheet("#Dobavit_dokument_label{\n"
"\n"
"}")
self.Dobavit_dokument_label.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
self.Dobavit_dokument_label.setObjectName("Dobavit_dokument_label")
self.horizontalLayout_2.addWidget(self.Dobavit_dokument_label)
self.Button_Dok = QtWidgets.QPushButton(parent=self.Add_page)
self.Button_Dok.setMaximumSize(QtCore.QSize(250, 44))
font = QtGui.QFont()
font.setPointSize(16)
self.Button_Dok.setFont(font)
self.Button_Dok.setStyleSheet("#Button_Dok {\n"
"border-top: 2px solid;\n"
"border-top-color: rgb(255, 76, 0);\n"
"border-bottom: 2px solid;\n"
"border-bottom-color: rgb(255, 76, 0);\n"
"}\n"
"#Button_Dok:hover {\n"
"background: rgb(219, 219, 219);\n"
"}\n"
"#Button_Dok:pressed {\n"
"background: rgb(204, 204, 204);\n"
"}")
self.Button_Dok.setObjectName("Button_Dok")
self.horizontalLayout_2.addWidget(self.Button_Dok)
self.Button_Forma_plus = QtWidgets.QPushButton(parent=self.Add_page)
self.Button_Forma_plus.setMaximumSize(QtCore.QSize(310, 44))
font = QtGui.QFont()
font.setPointSize(16)
self.Button_Forma_plus.setFont(font)
self.Button_Forma_plus.setStyleSheet("#Button_Forma_plus {\n"
"border-top: 2px solid;\n"
"border-top-color: rgb(255, 76, 0);\n"
"border-bottom: 2px solid;\n"
"border-bottom-color: rgb(255, 76, 0);\n"
"}\n"
"#Button_Forma_plus:hover {\n"
"background: rgb(219, 219, 219);\n"
"}\n"
"#Button_Forma_plus:pressed {\n"
"background: rgb(204, 204, 204);\n"
"}")
self.Button_Forma_plus.setObjectName("Button_Forma_plus")
self.horizontalLayout_2.addWidget(self.Button_Forma_plus)
self.verticalLayout_2.addLayout(self.horizontalLayout_2)
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
self.horizontalLayout_3.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
self.horizontalLayout_3.setSpacing(6)
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
self.scrollArea = QtWidgets.QScrollArea(parent=self.Add_page)
self.scrollArea.setMaximumSize(QtCore.QSize(16777215, 16777215))
self.scrollArea.setStyleSheet("")
self.scrollArea.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarPolicy.ScrollBarAlwaysOn)
self.scrollArea.setWidgetResizable(True)
self.scrollArea.setAlignment(QtCore.Qt.AlignmentFlag.AlignHCenter|QtCore.Qt.AlignmentFlag.AlignTop)
self.scrollArea.setObjectName("scrollArea")
self.scrollAreaWidgetContents_3 = QtWidgets.QWidget()
self.scrollAreaWidgetContents_3.setGeometry(QtCore.QRect(0, 0, 941, 287))
self.scrollAreaWidgetContents_3.setLayoutDirection(QtCore.Qt.LayoutDirection.LeftToRight)
self.scrollAreaWidgetContents_3.setObjectName("scrollAreaWidgetContents_3")
self.verticalLayout_7 = QtWidgets.QVBoxLayout(self.scrollAreaWidgetContents_3)
self.verticalLayout_7.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
self.verticalLayout_7.setObjectName("verticalLayout_7")
self.stackedWidget_2 = QtWidgets.QStackedWidget(parent=self.scrollAreaWidgetContents_3)
self.stackedWidget_2.setObjectName("stackedWidget_2")
self.page_2 = QtWidgets.QWidget()
self.page_2.setObjectName("page_2")
self.verticalLayout_14 = QtWidgets.QVBoxLayout(self.page_2)
self.verticalLayout_14.setObjectName("verticalLayout_14")
self.horizontalLayout_97 = QtWidgets.QHBoxLayout()
self.horizontalLayout_97.setObjectName("horizontalLayout_97")
self.widget = QtWidgets.QWidget(parent=self.page_2)
self.widget.setMaximumSize(QtCore.QSize(900, 400))
self.widget.setStyleSheet("#widget {\n"
"background-color: rgb(228, 228, 228)\n"
"}")
self.widget.setObjectName("widget")
self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.widget)
self.verticalLayout_3.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.horizontalLayout_7 = QtWidgets.QHBoxLayout()
self.horizontalLayout_7.setObjectName("horizontalLayout_7")
self.horizontalLayout_8 = QtWidgets.QHBoxLayout()
self.horizontalLayout_8.setObjectName("horizontalLayout_8")
self.Vopros = QtWidgets.QLineEdit(parent=self.widget)
self.Vopros.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Vopros.setFont(font)
self.Vopros.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Vopros.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Vopros.setObjectName("Vopros")
self.horizontalLayout_8.addWidget(self.Vopros)
self.horizontalLayout_9 = QtWidgets.QHBoxLayout()
self.horizontalLayout_9.setContentsMargins(28, -1, -1, -1)
self.horizontalLayout_9.setObjectName("horizontalLayout_9")
self.comboBox = QtWidgets.QComboBox(parent=self.widget)
self.comboBox.setMaximumSize(QtCore.QSize(220, 80))
font = QtGui.QFont()
font.setPointSize(14)
self.comboBox.setFont(font)
self.comboBox.setStyleSheet("#comboBox {\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190) ;\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#comboBox:hover {\n"
"background-color: rgb(219, 219, 219);\n"
"}\n"
"#comboBox:pressed { \n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"")
self.comboBox.setObjectName("comboBox")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.comboBox.addItem("")
self.horizontalLayout_9.addWidget(self.comboBox)
self.horizontalLayout_8.addLayout(self.horizontalLayout_9)
self.horizontalLayout_7.addLayout(self.horizontalLayout_8)
self.verticalLayout_3.addLayout(self.horizontalLayout_7)
self.horizontalLayout_10 = QtWidgets.QHBoxLayout()
self.horizontalLayout_10.setObjectName("horizontalLayout_10")
self.horizontalLayout_24 = QtWidgets.QHBoxLayout()
self.horizontalLayout_24.setContentsMargins(-1, -1, 228, -1)
self.horizontalLayout_24.setObjectName("horizontalLayout_24")
self.dateEdit = QtWidgets.QDateEdit(parent=self.widget)
self.dateEdit.setMaximumSize(QtCore.QSize(160, 45))
font = QtGui.QFont()
font.setPointSize(14)
self.dateEdit.setFont(font)
self.dateEdit.setStyleSheet("#dateEdit {\n"
"border: 2px solid;\n"
"border-radius: 5px;\n"
"border-color:rgb(190, 190, 190) ;\n"
"background-color:rgb(243, 243, 243);\n"
"}\n"
"#dateEdit:hover {\n"
"background-color: rgb(243, 243, 243);\n"
"}\n"
"#dateEdit:pressed { \n"
"background-color:rgb(243, 243, 243);\n"
"}\n"
"\n"
"")
self.dateEdit.setObjectName("dateEdit")
self.horizontalLayout_24.addWidget(self.dateEdit)
self.horizontalLayout_10.addLayout(self.horizontalLayout_24)
self.horizontalLayout_11 = QtWidgets.QHBoxLayout()
self.horizontalLayout_11.setObjectName("horizontalLayout_11")
self.Tag = QtWidgets.QLineEdit(parent=self.widget)
self.Tag.setMaximumSize(QtCore.QSize(100, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Tag.setFont(font)
self.Tag.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Tag.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Tag.setObjectName("Tag")
self.horizontalLayout_11.addWidget(self.Tag)
self.verticalLayout_13 = QtWidgets.QVBoxLayout()
self.verticalLayout_13.setObjectName("verticalLayout_13")
spacerItem = QtWidgets.QSpacerItem(45, 30, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Fixed)
self.verticalLayout_13.addItem(spacerItem)
self.Button_Question = QtWidgets.QPushButton(parent=self.widget)
self.Button_Question.setMaximumSize(QtCore.QSize(33, 33))
font = QtGui.QFont()
font.setPointSize(20)
self.Button_Question.setFont(font)
self.Button_Question.setStyleSheet("#Button_Question {\n"
"border: 2px solid;\n"
"border-radius: 7px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_Question:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_Question:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}")
self.Button_Question.setObjectName("Button_Question")
self.verticalLayout_13.addWidget(self.Button_Question)
self.horizontalLayout_11.addLayout(self.verticalLayout_13)
self.horizontalLayout_10.addLayout(self.horizontalLayout_11)
self.verticalLayout_3.addLayout(self.horizontalLayout_10)
self.horizontalLayout_13 = QtWidgets.QHBoxLayout()
self.horizontalLayout_13.setSpacing(3)
self.horizontalLayout_13.setObjectName("horizontalLayout_13")
self.Button_delete = QtWidgets.QPushButton(parent=self.widget)
self.Button_delete.setMaximumSize(QtCore.QSize(41, 41))
self.Button_delete.setStyleSheet("#Button_delete {\n"
"image: url(:/delete/Rectangle_32.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_delete:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_delete:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.Button_delete.setText("")
icon = QtGui.QIcon()
icon.addPixmap(QtGui.QPixmap("../../../../../1621635.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
self.Button_delete.setIcon(icon)
self.Button_delete.setObjectName("Button_delete")
self.horizontalLayout_13.addWidget(self.Button_delete)
self.pushButton_copy = QtWidgets.QPushButton(parent=self.widget)
self.pushButton_copy.setMaximumSize(QtCore.QSize(41, 41))
self.pushButton_copy.setStyleSheet("#pushButton_copy {\n"
"image: url(:/copy/1621635.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#pushButton_copy:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#pushButton_copy:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.pushButton_copy.setText("")
self.pushButton_copy.setObjectName("pushButton_copy")
self.horizontalLayout_13.addWidget(self.pushButton_copy)
self.horizontalLayout_26 = QtWidgets.QHBoxLayout()
self.horizontalLayout_26.setSpacing(0)
self.horizontalLayout_26.setObjectName("horizontalLayout_26")
self.Obyazatelny_vopros = QtWidgets.QLabel(parent=self.widget)
self.Obyazatelny_vopros.setMaximumSize(QtCore.QSize(400, 34))
font = QtGui.QFont()
font.setPointSize(20)
self.Obyazatelny_vopros.setFont(font)
self.Obyazatelny_vopros.setObjectName("Obyazatelny_vopros")
self.horizontalLayout_26.addWidget(self.Obyazatelny_vopros)
self.widget_2 = QtWidgets.QWidget(parent=self.widget)
self.widget_2.setMinimumSize(QtCore.QSize(45, 45))
self.widget_2.setMaximumSize(QtCore.QSize(45, 45))
self.widget_2.setObjectName("widget_2")
self.pushButton_2 = QtWidgets.QPushButton(parent=self.widget_2)
self.pushButton_2.setGeometry(QtCore.QRect(0, 0, 45, 45))
self.pushButton_2.setMaximumSize(QtCore.QSize(45, 45))
self.pushButton_2.setText("")
self.pushButton_2.setObjectName("pushButton_2")
self.pushButton_3 = QtWidgets.QPushButton(parent=self.widget_2)
self.pushButton_3.setGeometry(QtCore.QRect(0, 0, 45, 45))
self.pushButton_3.setMaximumSize(QtCore.QSize(45, 45))
self.pushButton_3.setText("")
icon1 = QtGui.QIcon()
icon1.addPixmap(QtGui.QPixmap("../../../../../png-clipart-check-mark-computer-icons-symbol-miscellaneous-angle.png"), QtGui.QIcon.Mode.Normal, QtGui.QIcon.State.Off)
self.pushButton_3.setIcon(icon1)
self.pushButton_3.setObjectName("pushButton_3")
self.horizontalLayout_26.addWidget(self.widget_2)
self.horizontalLayout_13.addLayout(self.horizontalLayout_26)
self.verticalLayout_3.addLayout(self.horizontalLayout_13)
self.horizontalLayout_97.addWidget(self.widget)
self.verticalLayout_14.addLayout(self.horizontalLayout_97)
self.stackedWidget_2.addWidget(self.page_2)
self.page_4 = QtWidgets.QWidget()
self.page_4.setObjectName("page_4")
self.verticalLayout_17 = QtWidgets.QVBoxLayout(self.page_4)
self.verticalLayout_17.setObjectName("verticalLayout_17")
self.horizontalLayout_98 = QtWidgets.QHBoxLayout()
self.horizontalLayout_98.setObjectName("horizontalLayout_98")
self.widget_3 = QtWidgets.QWidget(parent=self.page_4)
self.widget_3.setMaximumSize(QtCore.QSize(900, 400))
self.widget_3.setStyleSheet("#widget_3 {\n"
"background-color: rgb(228, 228, 228)\n"
"}")
self.widget_3.setObjectName("widget_3")
self.verticalLayout_15 = QtWidgets.QVBoxLayout(self.widget_3)
self.verticalLayout_15.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
self.verticalLayout_15.setObjectName("verticalLayout_15")
self.horizontalLayout_21 = QtWidgets.QHBoxLayout()
self.horizontalLayout_21.setObjectName("horizontalLayout_21")
self.horizontalLayout_27 = QtWidgets.QHBoxLayout()
self.horizontalLayout_27.setObjectName("horizontalLayout_27")
self.Vopros_2 = QtWidgets.QLineEdit(parent=self.widget_3)
self.Vopros_2.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Vopros_2.setFont(font)
self.Vopros_2.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Vopros_2.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Vopros_2.setObjectName("Vopros_2")
self.horizontalLayout_27.addWidget(self.Vopros_2)
self.horizontalLayout_28 = QtWidgets.QHBoxLayout()
self.horizontalLayout_28.setContentsMargins(28, -1, -1, -1)
self.horizontalLayout_28.setObjectName("horizontalLayout_28")
self.comboBox_2 = QtWidgets.QComboBox(parent=self.widget_3)
self.comboBox_2.setMaximumSize(QtCore.QSize(220, 80))
font = QtGui.QFont()
font.setPointSize(14)
self.comboBox_2.setFont(font)
self.comboBox_2.setStyleSheet("#comboBox_2 {\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190) ;\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#comboBox_2:hover {\n"
"background-color: rgb(219, 219, 219);\n"
"}\n"
"#comboBox_2:pressed { \n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"\n"
"")
self.comboBox_2.setObjectName("comboBox_2")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.comboBox_2.addItem("")
self.horizontalLayout_28.addWidget(self.comboBox_2)
self.horizontalLayout_27.addLayout(self.horizontalLayout_28)
self.horizontalLayout_21.addLayout(self.horizontalLayout_27)
self.verticalLayout_15.addLayout(self.horizontalLayout_21)
self.horizontalLayout_29 = QtWidgets.QHBoxLayout()
self.horizontalLayout_29.setContentsMargins(0, -1, -1, -1)
self.horizontalLayout_29.setObjectName("horizontalLayout_29")
self.horizontalLayout_30 = QtWidgets.QHBoxLayout()
self.horizontalLayout_30.setObjectName("horizontalLayout_30")
self.Kratki_otvet = QtWidgets.QLineEdit(parent=self.widget_3)
self.Kratki_otvet.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Kratki_otvet.setFont(font)
self.Kratki_otvet.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Kratki_otvet.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Kratki_otvet.setObjectName("Kratki_otvet")
self.horizontalLayout_30.addWidget(self.Kratki_otvet)
self.horizontalLayout_29.addLayout(self.horizontalLayout_30)
self.horizontalLayout_31 = QtWidgets.QHBoxLayout()
self.horizontalLayout_31.setObjectName("horizontalLayout_31")
self.Tag_2 = QtWidgets.QLineEdit(parent=self.widget_3)
self.Tag_2.setMaximumSize(QtCore.QSize(100, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Tag_2.setFont(font)
self.Tag_2.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Tag_2.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Tag_2.setObjectName("Tag_2")
self.horizontalLayout_31.addWidget(self.Tag_2)
self.verticalLayout_16 = QtWidgets.QVBoxLayout()
self.verticalLayout_16.setObjectName("verticalLayout_16")
spacerItem1 = QtWidgets.QSpacerItem(45, 30, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Fixed)
self.verticalLayout_16.addItem(spacerItem1)
self.Button_Question_2 = QtWidgets.QPushButton(parent=self.widget_3)
self.Button_Question_2.setMaximumSize(QtCore.QSize(33, 33))
font = QtGui.QFont()
font.setPointSize(20)
self.Button_Question_2.setFont(font)
self.Button_Question_2.setStyleSheet("#Button_Question_2 {\n"
"border: 2px solid;\n"
"border-radius: 7px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_Question_2:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_Question_2:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"\n"
"")
self.Button_Question_2.setObjectName("Button_Question_2")
self.verticalLayout_16.addWidget(self.Button_Question_2)
self.horizontalLayout_31.addLayout(self.verticalLayout_16)
self.horizontalLayout_29.addLayout(self.horizontalLayout_31)
self.verticalLayout_15.addLayout(self.horizontalLayout_29)
self.horizontalLayout_32 = QtWidgets.QHBoxLayout()
self.horizontalLayout_32.setSpacing(3)
self.horizontalLayout_32.setObjectName("horizontalLayout_32")
self.Button_delete_2 = QtWidgets.QPushButton(parent=self.widget_3)
self.Button_delete_2.setMaximumSize(QtCore.QSize(41, 41))
self.Button_delete_2.setStyleSheet("#Button_delete_2 {\n"
"image: url(:/delete/Rectangle_32.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_delete_2:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_delete_2:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.Button_delete_2.setText("")
self.Button_delete_2.setIcon(icon)
self.Button_delete_2.setObjectName("Button_delete_2")
self.horizontalLayout_32.addWidget(self.Button_delete_2)
self.pushButton_copy_2 = QtWidgets.QPushButton(parent=self.widget_3)
self.pushButton_copy_2.setMaximumSize(QtCore.QSize(41, 41))
self.pushButton_copy_2.setStyleSheet("#pushButton_copy_2{\n"
"image: url(:/copy/1621635.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#pushButton_copy_2:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#pushButton_copy_2:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.pushButton_copy_2.setText("")
self.pushButton_copy_2.setObjectName("pushButton_copy_2")
self.horizontalLayout_32.addWidget(self.pushButton_copy_2)
self.horizontalLayout_33 = QtWidgets.QHBoxLayout()
self.horizontalLayout_33.setSpacing(0)
self.horizontalLayout_33.setObjectName("horizontalLayout_33")
self.Obyazatelny_vopros_2 = QtWidgets.QLabel(parent=self.widget_3)
self.Obyazatelny_vopros_2.setMaximumSize(QtCore.QSize(400, 34))
font = QtGui.QFont()
font.setPointSize(20)
self.Obyazatelny_vopros_2.setFont(font)
self.Obyazatelny_vopros_2.setObjectName("Obyazatelny_vopros_2")
self.horizontalLayout_33.addWidget(self.Obyazatelny_vopros_2)
self.widget_4 = QtWidgets.QWidget(parent=self.widget_3)
self.widget_4.setMinimumSize(QtCore.QSize(45, 45))
self.widget_4.setMaximumSize(QtCore.QSize(45, 45))
self.widget_4.setObjectName("widget_4")
self.pushButton_4 = QtWidgets.QPushButton(parent=self.widget_4)
self.pushButton_4.setGeometry(QtCore.QRect(0, 0, 45, 45))
self.pushButton_4.setMaximumSize(QtCore.QSize(45, 45))
self.pushButton_4.setText("")
self.pushButton_4.setObjectName("pushButton_4")
self.pushButton_5 = QtWidgets.QPushButton(parent=self.widget_4)
self.pushButton_5.setGeometry(QtCore.QRect(0, 0, 45, 45))
self.pushButton_5.setMaximumSize(QtCore.QSize(45, 45))
self.pushButton_5.setText("")
self.pushButton_5.setIcon(icon1)
self.pushButton_5.setObjectName("pushButton_5")
self.horizontalLayout_33.addWidget(self.widget_4)
self.horizontalLayout_32.addLayout(self.horizontalLayout_33)
self.verticalLayout_15.addLayout(self.horizontalLayout_32)
self.horizontalLayout_98.addWidget(self.widget_3)
self.verticalLayout_17.addLayout(self.horizontalLayout_98)
self.stackedWidget_2.addWidget(self.page_4)
self.page_5 = QtWidgets.QWidget()
self.page_5.setObjectName("page_5")
self.verticalLayout_20 = QtWidgets.QVBoxLayout(self.page_5)
self.verticalLayout_20.setObjectName("verticalLayout_20")
self.horizontalLayout_99 = QtWidgets.QHBoxLayout()
self.horizontalLayout_99.setObjectName("horizontalLayout_99")
self.widget_5 = QtWidgets.QWidget(parent=self.page_5)
self.widget_5.setMaximumSize(QtCore.QSize(900, 400))
self.widget_5.setStyleSheet("#widget_5 {\n"
"background-color: rgb(228, 228, 228)\n"
"}")
self.widget_5.setObjectName("widget_5")
self.verticalLayout_18 = QtWidgets.QVBoxLayout(self.widget_5)
self.verticalLayout_18.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
self.verticalLayout_18.setObjectName("verticalLayout_18")
self.horizontalLayout_34 = QtWidgets.QHBoxLayout()
self.horizontalLayout_34.setObjectName("horizontalLayout_34")
self.horizontalLayout_35 = QtWidgets.QHBoxLayout()
self.horizontalLayout_35.setObjectName("horizontalLayout_35")
self.Vopros_3 = QtWidgets.QLineEdit(parent=self.widget_5)
self.Vopros_3.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Vopros_3.setFont(font)
self.Vopros_3.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Vopros_3.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Vopros_3.setObjectName("Vopros_3")
self.horizontalLayout_35.addWidget(self.Vopros_3)
self.horizontalLayout_36 = QtWidgets.QHBoxLayout()
self.horizontalLayout_36.setContentsMargins(28, -1, -1, -1)
self.horizontalLayout_36.setObjectName("horizontalLayout_36")
self.comboBox_3 = QtWidgets.QComboBox(parent=self.widget_5)
self.comboBox_3.setMaximumSize(QtCore.QSize(220, 80))
font = QtGui.QFont()
font.setPointSize(14)
self.comboBox_3.setFont(font)
self.comboBox_3.setStyleSheet("#comboBox_3 {\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190) ;\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#comboBox_3:hover {\n"
"background-color: rgb(219, 219, 219);\n"
"}\n"
"#comboBox_3:pressed { \n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"")
self.comboBox_3.setObjectName("comboBox_3")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.comboBox_3.addItem("")
self.horizontalLayout_36.addWidget(self.comboBox_3)
self.horizontalLayout_35.addLayout(self.horizontalLayout_36)
self.horizontalLayout_34.addLayout(self.horizontalLayout_35)
self.verticalLayout_18.addLayout(self.horizontalLayout_34)
self.horizontalLayout_37 = QtWidgets.QHBoxLayout()
self.horizontalLayout_37.setObjectName("horizontalLayout_37")
self.horizontalLayout_38 = QtWidgets.QHBoxLayout()
self.horizontalLayout_38.setObjectName("horizontalLayout_38")
self.Kratki_otvet_2 = QtWidgets.QLineEdit(parent=self.widget_5)
self.Kratki_otvet_2.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Kratki_otvet_2.setFont(font)
self.Kratki_otvet_2.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Kratki_otvet_2.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Kratki_otvet_2.setObjectName("Kratki_otvet_2")
self.horizontalLayout_38.addWidget(self.Kratki_otvet_2)
self.horizontalLayout_37.addLayout(self.horizontalLayout_38)
self.horizontalLayout_39 = QtWidgets.QHBoxLayout()
self.horizontalLayout_39.setObjectName("horizontalLayout_39")
self.Tag_3 = QtWidgets.QLineEdit(parent=self.widget_5)
self.Tag_3.setMaximumSize(QtCore.QSize(100, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Tag_3.setFont(font)
self.Tag_3.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Tag_3.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Tag_3.setObjectName("Tag_3")
self.horizontalLayout_39.addWidget(self.Tag_3)
self.verticalLayout_19 = QtWidgets.QVBoxLayout()
self.verticalLayout_19.setObjectName("verticalLayout_19")
spacerItem2 = QtWidgets.QSpacerItem(45, 30, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Fixed)
self.verticalLayout_19.addItem(spacerItem2)
self.Button_Question_3 = QtWidgets.QPushButton(parent=self.widget_5)
self.Button_Question_3.setMaximumSize(QtCore.QSize(33, 33))
font = QtGui.QFont()
font.setPointSize(20)
self.Button_Question_3.setFont(font)
self.Button_Question_3.setStyleSheet("#Button_Question_3 {\n"
"border: 2px solid;\n"
"border-radius: 7px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_Question_3:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_Question_3:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}")
self.Button_Question_3.setObjectName("Button_Question_3")
self.verticalLayout_19.addWidget(self.Button_Question_3)
self.horizontalLayout_39.addLayout(self.verticalLayout_19)
self.horizontalLayout_37.addLayout(self.horizontalLayout_39)
self.verticalLayout_18.addLayout(self.horizontalLayout_37)
self.horizontalLayout_40 = QtWidgets.QHBoxLayout()
self.horizontalLayout_40.setContentsMargins(-1, 10, -1, -1)
self.horizontalLayout_40.setObjectName("horizontalLayout_40")
self.pushButton_DOPvariany = QtWidgets.QPushButton(parent=self.widget_5)
self.pushButton_DOPvariany.setMaximumSize(QtCore.QSize(300, 40))
font = QtGui.QFont()
font.setPointSize(16)
self.pushButton_DOPvariany.setFont(font)
self.pushButton_DOPvariany.setStyleSheet("#pushButton_DOPvariany {\n"
"border-top: 2px solid;\n"
"border-top-color: rgb(255, 76, 0);\n"
"border-bottom: 2px solid;\n"
"border-bottom-color: rgb(255, 76, 0);\n"
"}\n"
"#pushButton_DOPvariany:hover {\n"
"background: rgb(219, 219, 219);\n"
"}\n"
"#pushButton_DOPvariany:pressed {\n"
"background: rgb(204, 204, 204);\n"
"}")
self.pushButton_DOPvariany.setObjectName("pushButton_DOPvariany")
self.horizontalLayout_40.addWidget(self.pushButton_DOPvariany)
self.verticalLayout_18.addLayout(self.horizontalLayout_40)
self.horizontalLayout_41 = QtWidgets.QHBoxLayout()
self.horizontalLayout_41.setSpacing(3)
self.horizontalLayout_41.setObjectName("horizontalLayout_41")
self.Button_delete_3 = QtWidgets.QPushButton(parent=self.widget_5)
self.Button_delete_3.setMaximumSize(QtCore.QSize(41, 41))
self.Button_delete_3.setStyleSheet("#Button_delete_3 {\n"
"image: url(:/delete/Rectangle_32.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_delete_3:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_delete_3:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.Button_delete_3.setText("")
self.Button_delete_3.setIcon(icon)
self.Button_delete_3.setObjectName("Button_delete_3")
self.horizontalLayout_41.addWidget(self.Button_delete_3)
self.pushButton_copy_3 = QtWidgets.QPushButton(parent=self.widget_5)
self.pushButton_copy_3.setMaximumSize(QtCore.QSize(41, 41))
self.pushButton_copy_3.setStyleSheet("#pushButton_copy_3 {\n"
"image: url(:/copy/1621635.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#pushButton_copy_3:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#pushButton_copy_3:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.pushButton_copy_3.setText("")
self.pushButton_copy_3.setObjectName("pushButton_copy_3")
self.horizontalLayout_41.addWidget(self.pushButton_copy_3)
self.horizontalLayout_42 = QtWidgets.QHBoxLayout()
self.horizontalLayout_42.setSpacing(0)
self.horizontalLayout_42.setObjectName("horizontalLayout_42")
self.Obyazatelny_vopros_3 = QtWidgets.QLabel(parent=self.widget_5)
self.Obyazatelny_vopros_3.setMaximumSize(QtCore.QSize(400, 34))
font = QtGui.QFont()
font.setPointSize(20)
self.Obyazatelny_vopros_3.setFont(font)
self.Obyazatelny_vopros_3.setObjectName("Obyazatelny_vopros_3")
self.horizontalLayout_42.addWidget(self.Obyazatelny_vopros_3)
self.widget_6 = QtWidgets.QWidget(parent=self.widget_5)
self.widget_6.setMinimumSize(QtCore.QSize(45, 45))
self.widget_6.setMaximumSize(QtCore.QSize(45, 45))
self.widget_6.setObjectName("widget_6")
self.pushButton_6 = QtWidgets.QPushButton(parent=self.widget_6)
self.pushButton_6.setGeometry(QtCore.QRect(0, 0, 45, 45))
self.pushButton_6.setMaximumSize(QtCore.QSize(45, 45))
self.pushButton_6.setText("")
self.pushButton_6.setObjectName("pushButton_6")
self.pushButton_7 = QtWidgets.QPushButton(parent=self.widget_6)
self.pushButton_7.setGeometry(QtCore.QRect(0, 0, 45, 45))
self.pushButton_7.setMaximumSize(QtCore.QSize(45, 45))
self.pushButton_7.setText("")
self.pushButton_7.setIcon(icon1)
self.pushButton_7.setObjectName("pushButton_7")
self.horizontalLayout_42.addWidget(self.widget_6)
self.horizontalLayout_41.addLayout(self.horizontalLayout_42)
self.verticalLayout_18.addLayout(self.horizontalLayout_41)
self.horizontalLayout_99.addWidget(self.widget_5)
self.verticalLayout_20.addLayout(self.horizontalLayout_99)
self.stackedWidget_2.addWidget(self.page_5)
self.page_6 = QtWidgets.QWidget()
self.page_6.setObjectName("page_6")
self.verticalLayout_23 = QtWidgets.QVBoxLayout(self.page_6)
self.verticalLayout_23.setObjectName("verticalLayout_23")
self.horizontalLayout_100 = QtWidgets.QHBoxLayout()
self.horizontalLayout_100.setObjectName("horizontalLayout_100")
self.widget_7 = QtWidgets.QWidget(parent=self.page_6)
self.widget_7.setMaximumSize(QtCore.QSize(900, 400))
self.widget_7.setStyleSheet("#widget_7 {\n"
"background-color: rgb(228, 228, 228)\n"
"}")
self.widget_7.setObjectName("widget_7")
self.verticalLayout_21 = QtWidgets.QVBoxLayout(self.widget_7)
self.verticalLayout_21.setSizeConstraint(QtWidgets.QLayout.SizeConstraint.SetDefaultConstraint)
self.verticalLayout_21.setObjectName("verticalLayout_21")
self.horizontalLayout_43 = QtWidgets.QHBoxLayout()
self.horizontalLayout_43.setObjectName("horizontalLayout_43")
self.horizontalLayout_44 = QtWidgets.QHBoxLayout()
self.horizontalLayout_44.setObjectName("horizontalLayout_44")
self.Vopros_4 = QtWidgets.QLineEdit(parent=self.widget_7)
self.Vopros_4.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Vopros_4.setFont(font)
self.Vopros_4.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Vopros_4.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Vopros_4.setObjectName("Vopros_4")
self.horizontalLayout_44.addWidget(self.Vopros_4)
self.horizontalLayout_45 = QtWidgets.QHBoxLayout()
self.horizontalLayout_45.setContentsMargins(28, -1, -1, -1)
self.horizontalLayout_45.setObjectName("horizontalLayout_45")
self.comboBox_4 = QtWidgets.QComboBox(parent=self.widget_7)
self.comboBox_4.setMaximumSize(QtCore.QSize(220, 80))
font = QtGui.QFont()
font.setPointSize(14)
self.comboBox_4.setFont(font)
self.comboBox_4.setStyleSheet("#comboBox_4 {\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190) ;\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#comboBox_4:hover {\n"
"background-color: rgb(219, 219, 219);\n"
"}\n"
"#comboBox_4:pressed { \n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"")
self.comboBox_4.setObjectName("comboBox_4")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.comboBox_4.addItem("")
self.horizontalLayout_45.addWidget(self.comboBox_4)
self.horizontalLayout_44.addLayout(self.horizontalLayout_45)
self.horizontalLayout_43.addLayout(self.horizontalLayout_44)
self.verticalLayout_21.addLayout(self.horizontalLayout_43)
self.horizontalLayout_46 = QtWidgets.QHBoxLayout()
self.horizontalLayout_46.setObjectName("horizontalLayout_46")
self.horizontalLayout_47 = QtWidgets.QHBoxLayout()
self.horizontalLayout_47.setContentsMargins(-1, -1, 0, -1)
self.horizontalLayout_47.setObjectName("horizontalLayout_47")
self.Kratki_otvet_3 = QtWidgets.QLineEdit(parent=self.widget_7)
self.Kratki_otvet_3.setMaximumSize(QtCore.QSize(425, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Kratki_otvet_3.setFont(font)
self.Kratki_otvet_3.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Kratki_otvet_3.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Kratki_otvet_3.setObjectName("Kratki_otvet_3")
self.horizontalLayout_47.addWidget(self.Kratki_otvet_3)
self.horizontalLayout_46.addLayout(self.horizontalLayout_47)
self.horizontalLayout_48 = QtWidgets.QHBoxLayout()
self.horizontalLayout_48.setObjectName("horizontalLayout_48")
self.Tag_4 = QtWidgets.QLineEdit(parent=self.widget_7)
self.Tag_4.setMaximumSize(QtCore.QSize(100, 60))
font = QtGui.QFont()
font.setPointSize(20)
self.Tag_4.setFont(font)
self.Tag_4.setStyleSheet("border-top: 0px solid;\n"
"border-bottom: 2px solid;\n"
"background-color: rgb(228, 228, 228);")
self.Tag_4.setAlignment(QtCore.Qt.AlignmentFlag.AlignBottom|QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft)
self.Tag_4.setObjectName("Tag_4")
self.horizontalLayout_48.addWidget(self.Tag_4)
self.verticalLayout_22 = QtWidgets.QVBoxLayout()
self.verticalLayout_22.setObjectName("verticalLayout_22")
spacerItem3 = QtWidgets.QSpacerItem(45, 30, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Fixed)
self.verticalLayout_22.addItem(spacerItem3)
self.Button_Question_4 = QtWidgets.QPushButton(parent=self.widget_7)
self.Button_Question_4.setMaximumSize(QtCore.QSize(33, 33))
font = QtGui.QFont()
font.setPointSize(20)
self.Button_Question_4.setFont(font)
self.Button_Question_4.setStyleSheet("#Button_Question_4 {\n"
"border: 2px solid;\n"
"border-radius: 7px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_Question_4:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_Question_4:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}")
self.Button_Question_4.setObjectName("Button_Question_4")
self.verticalLayout_22.addWidget(self.Button_Question_4)
self.horizontalLayout_48.addLayout(self.verticalLayout_22)
self.horizontalLayout_46.addLayout(self.horizontalLayout_48)
self.verticalLayout_21.addLayout(self.horizontalLayout_46)
self.horizontalLayout_49 = QtWidgets.QHBoxLayout()
self.horizontalLayout_49.setContentsMargins(0, 10, 0, -1)
self.horizontalLayout_49.setObjectName("horizontalLayout_49")
self.pushButton_DOPvariany_2 = QtWidgets.QPushButton(parent=self.widget_7)
self.pushButton_DOPvariany_2.setMaximumSize(QtCore.QSize(300, 40))
font = QtGui.QFont()
font.setPointSize(16)
font.setStyleStrategy(QtGui.QFont.StyleStrategy.PreferDefault)
self.pushButton_DOPvariany_2.setFont(font)
self.pushButton_DOPvariany_2.setLayoutDirection(QtCore.Qt.LayoutDirection.LeftToRight)
self.pushButton_DOPvariany_2.setStyleSheet("#pushButton_DOPvariany_2 {\n"
"border-top: 2px solid;\n"
"border-top-color: rgb(255, 76, 0);\n"
"border-bottom: 2px solid;\n"
"border-bottom-color: rgb(255, 76, 0);\n"
"}\n"
"#pushButton_DOPvariany_2:hover {\n"
"background: rgb(219, 219, 219);\n"
"}\n"
"#pushButton_DOPvariany_2:pressed {\n"
"background: rgb(204, 204, 204);\n"
"}")
self.pushButton_DOPvariany_2.setObjectName("pushButton_DOPvariany_2")
self.horizontalLayout_49.addWidget(self.pushButton_DOPvariany_2)
self.verticalLayout_21.addLayout(self.horizontalLayout_49)
self.horizontalLayout_50 = QtWidgets.QHBoxLayout()
self.horizontalLayout_50.setObjectName("horizontalLayout_50")
self.Button_delete_4 = QtWidgets.QPushButton(parent=self.widget_7)
self.Button_delete_4.setMaximumSize(QtCore.QSize(41, 41))
self.Button_delete_4.setStyleSheet("#Button_delete_4 {\n"
"image: url(:/delete/Rectangle_32.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#Button_delete_4:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#Button_delete_4:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"\n"
"")
self.Button_delete_4.setText("")
self.Button_delete_4.setIcon(icon)
self.Button_delete_4.setObjectName("Button_delete_4")
self.horizontalLayout_50.addWidget(self.Button_delete_4)
self.pushButton_copy_4 = QtWidgets.QPushButton(parent=self.widget_7)
self.pushButton_copy_4.setMaximumSize(QtCore.QSize(41, 41))
self.pushButton_copy_4.setStyleSheet("#pushButton_copy_4{\n"
"image: url(:/copy/1621635.png);\n"
"border: 2px solid;\n"
"border-radius: 9px;\n"
"border-color:rgb(190, 190, 190);\n"
"background-color: rgb(228, 228, 228);\n"
"}\n"
"#pushButton_copy_4:hover {\n"
"background-color:rgb(219, 219, 219);\n"
"}\n"
"#pushButton_copy_4:pressed { \n"
"background-color:rgb(204, 204, 204);\n"
"}\n"
"")
self.pushButton_copy_4.setText("")
self.pushButton_copy_4.setObjectName("pushButton_copy_4")
self.horizontalLayout_50.addWidget(self.pushButton_copy_4)
self.horizontalLayout_51 = QtWidgets.QHBoxLayout()
self.horizontalLayout_51.setSpacing(0)
self.horizontalLayout_51.setObjectName("horizontalLayout_51")
self.Obyazatelny_vopros_4 = QtWidgets.QLabel(parent=self.widget_7)
self.Obyazatelny_vopros_4.setMaximumSize(QtCore.QSize(400, 34))
font = QtGui.QFont()
font.setPointSize(20)
self.Obyazatelny_vopros_4.setFont(font)
self.Obyazatelny_vopros_4.setObjectName("Obyazatelny_vopros_4")