-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestionCheckUI.py
More file actions
105 lines (98 loc) · 5.61 KB
/
questionCheckUI.py
File metadata and controls
105 lines (98 loc) · 5.61 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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'questionCheckUI.ui'
#
# Created by: PyQt5 UI code generator 5.11.2
#
# WARNING! All changes made in this file will be lost!
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_questionCheck(object):
def setupUi(self, questionCheck):
questionCheck.setObjectName("questionCheck")
questionCheck.resize(521, 265)
self.horizontalLayout = QtWidgets.QHBoxLayout(questionCheck)
self.horizontalLayout.setObjectName("horizontalLayout")
self.groupBox = QtWidgets.QGroupBox(questionCheck)
self.groupBox.setObjectName("groupBox")
self.horizontalLayout_2 = QtWidgets.QHBoxLayout(self.groupBox)
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
self.verticalLayout = QtWidgets.QVBoxLayout()
self.verticalLayout.setObjectName("verticalLayout")
self.A_necessity = QtWidgets.QCheckBox(self.groupBox)
self.A_necessity.setObjectName("A_necessity")
self.verticalLayout.addWidget(self.A_necessity)
self.A_suggestion = QtWidgets.QCheckBox(self.groupBox)
self.A_suggestion.setObjectName("A_suggestion")
self.verticalLayout.addWidget(self.A_suggestion)
self.B_necessity = QtWidgets.QCheckBox(self.groupBox)
self.B_necessity.setObjectName("B_necessity")
self.verticalLayout.addWidget(self.B_necessity)
self.B_suggestion = QtWidgets.QCheckBox(self.groupBox)
self.B_suggestion.setObjectName("B_suggestion")
self.verticalLayout.addWidget(self.B_suggestion)
self.B_independent = QtWidgets.QCheckBox(self.groupBox)
self.B_independent.setObjectName("B_independent")
self.verticalLayout.addWidget(self.B_independent)
self.horizontalLayout_2.addLayout(self.verticalLayout)
self.horizontalLayout.addWidget(self.groupBox)
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.groupBox_2 = QtWidgets.QGroupBox(questionCheck)
self.groupBox_2.setObjectName("groupBox_2")
self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.groupBox_2)
self.verticalLayout_3.setObjectName("verticalLayout_3")
self.allRadioButton = QtWidgets.QRadioButton(self.groupBox_2)
self.allRadioButton.setChecked(True)
self.allRadioButton.setObjectName("allRadioButton")
self.verticalLayout_3.addWidget(self.allRadioButton)
self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
self.horizontalLayout_3.setSpacing(9)
self.horizontalLayout_3.setObjectName("horizontalLayout_3")
self.partRadioButton = QtWidgets.QRadioButton(self.groupBox_2)
self.partRadioButton.setObjectName("partRadioButton")
self.horizontalLayout_3.addWidget(self.partRadioButton)
self.lowSpinBox = QtWidgets.QSpinBox(self.groupBox_2)
self.lowSpinBox.setEnabled(False)
self.lowSpinBox.setMinimum(1)
self.lowSpinBox.setMaximum(13)
self.lowSpinBox.setObjectName("lowSpinBox")
self.horizontalLayout_3.addWidget(self.lowSpinBox)
self.label = QtWidgets.QLabel(self.groupBox_2)
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Preferred)
sizePolicy.setHorizontalStretch(0)
sizePolicy.setVerticalStretch(0)
sizePolicy.setHeightForWidth(self.label.sizePolicy().hasHeightForWidth())
self.label.setSizePolicy(sizePolicy)
self.label.setObjectName("label")
self.horizontalLayout_3.addWidget(self.label)
self.upperSpinBox = QtWidgets.QSpinBox(self.groupBox_2)
self.upperSpinBox.setEnabled(False)
self.upperSpinBox.setMinimum(1)
self.upperSpinBox.setMaximum(13)
self.upperSpinBox.setProperty("value", 13)
self.upperSpinBox.setObjectName("upperSpinBox")
self.horizontalLayout_3.addWidget(self.upperSpinBox)
self.verticalLayout_3.addLayout(self.horizontalLayout_3)
self.verticalLayout_2.addWidget(self.groupBox_2)
self.buttonBox = QtWidgets.QDialogButtonBox(questionCheck)
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
self.buttonBox.setObjectName("buttonBox")
self.verticalLayout_2.addWidget(self.buttonBox)
self.horizontalLayout.addLayout(self.verticalLayout_2)
self.retranslateUi(questionCheck)
self.buttonBox.accepted.connect(questionCheck.accept)
self.buttonBox.rejected.connect(questionCheck.reject)
QtCore.QMetaObject.connectSlotsByName(questionCheck)
def retranslateUi(self, questionCheck):
_translate = QtCore.QCoreApplication.translate
questionCheck.setWindowTitle(_translate("questionCheck", "审核问卷数据"))
self.groupBox.setTitle(_translate("questionCheck", "审核内容"))
self.A_necessity.setText(_translate("questionCheck", "问卷A审核-必要性"))
self.A_suggestion.setText(_translate("questionCheck", "问卷A审核-提示性"))
self.B_necessity.setText(_translate("questionCheck", "问卷B审核-必要性"))
self.B_suggestion.setText(_translate("questionCheck", "问卷B审核-提示性"))
self.B_independent.setText(_translate("questionCheck", "问卷B-独立审核"))
self.groupBox_2.setTitle(_translate("questionCheck", "调查小区范围"))
self.allRadioButton.setText(_translate("questionCheck", "全部"))
self.partRadioButton.setText(_translate("questionCheck", "选择"))
self.label.setText(_translate("questionCheck", "至"))