-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules.py
More file actions
58 lines (51 loc) · 2.58 KB
/
rules.py
File metadata and controls
58 lines (51 loc) · 2.58 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
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'rules.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_Dialog(object):
def setupUi(self, Dialog):
Dialog.setObjectName("Dialog")
Dialog.resize(600, 125)
Dialog.setMinimumSize(QtCore.QSize(600, 125))
Dialog.setMaximumSize(QtCore.QSize(600, 125))
self.gridLayout = QtWidgets.QGridLayout(Dialog)
self.gridLayout.setObjectName("gridLayout")
self.verticalLayout = QtWidgets.QVBoxLayout()
self.verticalLayout.setObjectName("verticalLayout")
self.cboxDocVid = QtWidgets.QCheckBox(Dialog)
font = QtGui.QFont()
font.setPointSize(10)
self.cboxDocVid.setFont(font)
self.cboxDocVid.setObjectName("cboxDocVid")
self.verticalLayout.addWidget(self.cboxDocVid)
self.cboxCodSpec = QtWidgets.QCheckBox(Dialog)
font = QtGui.QFont()
font.setPointSize(10)
self.cboxCodSpec.setFont(font)
self.cboxCodSpec.setObjectName("cboxCodSpec")
self.verticalLayout.addWidget(self.cboxCodSpec)
self.gridLayout.addLayout(self.verticalLayout, 0, 0, 1, 1)
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem)
self.btnOK = QtWidgets.QPushButton(Dialog)
font = QtGui.QFont()
font.setPointSize(10)
self.btnOK.setFont(font)
self.btnOK.setObjectName("btnOK")
self.horizontalLayout.addWidget(self.btnOK)
spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout.addItem(spacerItem1)
self.gridLayout.addLayout(self.horizontalLayout, 1, 0, 1, 1)
self.retranslateUi(Dialog)
QtCore.QMetaObject.connectSlotsByName(Dialog)
def retranslateUi(self, Dialog):
_translate = QtCore.QCoreApplication.translate
Dialog.setWindowTitle(_translate("Dialog", "Правила"))
self.cboxDocVid.setText(_translate("Dialog", "Проверить поля \"Вид документа\" и \"Уровень образования\""))
self.cboxCodSpec.setText(_translate("Dialog", "Проверить поле \"Код специальности\""))
self.btnOK.setText(_translate("Dialog", "Принять"))