mirror of
https://github.com/shizand/statapp.git
synced 2025-10-15 15:14:20 +03:00
Closes #2 --------- Co-authored-by: MisterMLiL <99662459+MisterMLiL@users.noreply.github.com>
86 lines
3.7 KiB
Python
Generated
86 lines
3.7 KiB
Python
Generated
# -*- coding: utf-8 -*-
|
|
|
|
################################################################################
|
|
## Form generated from reading UI file 'generate_window.ui'
|
|
##
|
|
## Created by: Qt User Interface Compiler version 5.15.2
|
|
##
|
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
################################################################################
|
|
|
|
from PySide2.QtCore import *
|
|
from PySide2.QtGui import *
|
|
from PySide2.QtWidgets import *
|
|
|
|
|
|
class Ui_GenerateWindow(object):
|
|
def setupUi(self, GenerateWindow):
|
|
if not GenerateWindow.objectName():
|
|
GenerateWindow.setObjectName(u"GenerateWindow")
|
|
GenerateWindow.resize(503, 182)
|
|
font = QFont()
|
|
font.setPointSize(12)
|
|
GenerateWindow.setFont(font)
|
|
self.gridLayout_2 = QGridLayout(GenerateWindow)
|
|
self.gridLayout_2.setObjectName(u"gridLayout_2")
|
|
self.gridLayout = QGridLayout()
|
|
self.gridLayout.setObjectName(u"gridLayout")
|
|
self.generatePushButton = QPushButton(GenerateWindow)
|
|
self.generatePushButton.setObjectName(u"generatePushButton")
|
|
|
|
self.gridLayout.addWidget(self.generatePushButton, 3, 0, 1, 2)
|
|
|
|
self.label_2 = QLabel(GenerateWindow)
|
|
self.label_2.setObjectName(u"label_2")
|
|
|
|
self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1)
|
|
|
|
self.label_3 = QLabel(GenerateWindow)
|
|
self.label_3.setObjectName(u"label_3")
|
|
|
|
self.gridLayout.addWidget(self.label_3, 2, 0, 1, 1)
|
|
|
|
self.matSpinBox = QDoubleSpinBox(GenerateWindow)
|
|
self.matSpinBox.setObjectName(u"matSpinBox")
|
|
self.matSpinBox.setMaximum(1000000.000000000000000)
|
|
|
|
self.gridLayout.addWidget(self.matSpinBox, 1, 1, 1, 1)
|
|
|
|
self.label = QLabel(GenerateWindow)
|
|
self.label.setObjectName(u"label")
|
|
|
|
self.gridLayout.addWidget(self.label, 0, 0, 1, 1)
|
|
|
|
self.countSpinBox = QSpinBox(GenerateWindow)
|
|
self.countSpinBox.setObjectName(u"countSpinBox")
|
|
self.countSpinBox.setMinimum(1)
|
|
self.countSpinBox.setMaximum(500)
|
|
|
|
self.gridLayout.addWidget(self.countSpinBox, 0, 1, 1, 1)
|
|
|
|
self.deviationSpinBox = QDoubleSpinBox(GenerateWindow)
|
|
self.deviationSpinBox.setObjectName(u"deviationSpinBox")
|
|
self.deviationSpinBox.setMaximum(1000000.000000000000000)
|
|
|
|
self.gridLayout.addWidget(self.deviationSpinBox, 2, 1, 1, 1)
|
|
|
|
|
|
self.gridLayout_2.addLayout(self.gridLayout, 0, 0, 1, 1)
|
|
|
|
QWidget.setTabOrder(self.countSpinBox, self.matSpinBox)
|
|
QWidget.setTabOrder(self.matSpinBox, self.deviationSpinBox)
|
|
QWidget.setTabOrder(self.deviationSpinBox, self.generatePushButton)
|
|
|
|
self.retranslateUi(GenerateWindow)
|
|
|
|
QMetaObject.connectSlotsByName(GenerateWindow)
|
|
# setupUi
|
|
|
|
def retranslateUi(self, GenerateWindow):
|
|
GenerateWindow.setWindowTitle(QCoreApplication.translate("GenerateWindow", u"Dialog", None))
|
|
self.generatePushButton.setText(QCoreApplication.translate("GenerateWindow", u"\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c", None))
|
|
self.label_2.setText(QCoreApplication.translate("GenerateWindow", u"\u041c\u0430\u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u0435", None))
|
|
self.label_3.setText(QCoreApplication.translate("GenerateWindow", u"\u0421\u0440\u0435\u0434\u043d\u0435\u043a\u0432\u0430\u0434\u0440\u0430\u0442\u0438\u0447\u043d\u043e\u0435 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d\u0438\u0435", None))
|
|
self.label.setText(QCoreApplication.translate("GenerateWindow", u"\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043d\u0430\u0431\u043b\u044e\u0434\u0435\u043d\u0438\u0439", None))
|
|
# retranslateUi
|