39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
# Form implementation generated from reading ui file 'c:\Users\aky547\GitHub\SemesterapparatsManager\src\ui\dialogs\dialog_sources\about.ui'
|
|
#
|
|
# Created by: PySide6 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 PySide6 import QtCore, QtGui, QtWidgets
|
|
|
|
|
|
class Ui_about(object):
|
|
def setupUi(self, about):
|
|
about.setObjectName("about")
|
|
about.resize(301, 313)
|
|
self.verticalLayout = QtWidgets.QVBoxLayout(about)
|
|
self.verticalLayout.setObjectName("verticalLayout")
|
|
self.version = QtWidgets.QLabel(parent=about)
|
|
font = QtGui.QFont()
|
|
font.setPointSize(12)
|
|
font.setBold(True)
|
|
self.version.setFont(font)
|
|
self.version.setScaledContents(False)
|
|
self.version.setObjectName("version")
|
|
self.verticalLayout.addWidget(self.version)
|
|
self.description = QtWidgets.QTextEdit(parent=about)
|
|
self.description.setFocusPolicy(QtCore.Qt.FocusPolicy.NoFocus)
|
|
self.description.setReadOnly(True)
|
|
self.description.setObjectName("description")
|
|
self.verticalLayout.addWidget(self.description)
|
|
|
|
self.retranslateUi(about)
|
|
QtCore.QMetaObject.connectSlotsByName(about)
|
|
|
|
def retranslateUi(self, about):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
about.setWindowTitle(_translate("about", "Dialog"))
|
|
self.version.setText(_translate("about", "SemesterapparatsManagement"))
|