50 lines
1.7 KiB
Python
50 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
################################################################################
|
|
## Form generated from reading UI file 'varEdit.ui'
|
|
##
|
|
## Created by: Qt User Interface Compiler version 6.3.0
|
|
##
|
|
## WARNING! All changes made in this file will be lost when recompiling UI file!
|
|
################################################################################
|
|
|
|
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
|
|
QMetaObject, QObject, QPoint, QRect,
|
|
QSize, QTime, QUrl, Qt)
|
|
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
|
|
QFont, QFontDatabase, QGradient, QIcon,
|
|
QImage, QKeySequence, QLinearGradient, QPainter,
|
|
QPalette, QPixmap, QRadialGradient, QTransform)
|
|
from PySide6.QtWidgets import (QApplication, QDoubleSpinBox, QHBoxLayout, QLabel,
|
|
QSizePolicy, QWidget)
|
|
|
|
class Ui_varEdit(object):
|
|
def setupUi(self, varEdit):
|
|
if not varEdit.objectName():
|
|
varEdit.setObjectName(u"varEdit")
|
|
varEdit.resize(400, 300)
|
|
self.horizontalLayout = QHBoxLayout(varEdit)
|
|
self.horizontalLayout.setObjectName(u"horizontalLayout")
|
|
self.name = QLabel(varEdit)
|
|
self.name.setObjectName(u"name")
|
|
|
|
self.horizontalLayout.addWidget(self.name)
|
|
|
|
self.value = QDoubleSpinBox(varEdit)
|
|
self.value.setObjectName(u"value")
|
|
self.value.setDecimals(5)
|
|
|
|
self.horizontalLayout.addWidget(self.value)
|
|
|
|
|
|
self.retranslateUi(varEdit)
|
|
|
|
QMetaObject.connectSlotsByName(varEdit)
|
|
# setupUi
|
|
|
|
def retranslateUi(self, varEdit):
|
|
varEdit.setWindowTitle(QCoreApplication.translate("varEdit", u"Form", None))
|
|
self.name.setText(QCoreApplication.translate("varEdit", u"TextLabel", None))
|
|
# retranslateUi
|
|
|