add files for edition checker
This commit is contained in:
92
src/ui/widgets/widget_sources/new_edition_check_ui.py
Normal file
92
src/ui/widgets/widget_sources/new_edition_check_ui.py
Normal file
@@ -0,0 +1,92 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
################################################################################
|
||||
## Form generated from reading UI file 'new_edition_check.ui'
|
||||
##
|
||||
## Created by: Qt User Interface Compiler version 6.9.2
|
||||
##
|
||||
## 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, QDialog, QFrame, QHBoxLayout,
|
||||
QProgressBar, QPushButton, QSizePolicy, QStackedWidget,
|
||||
QVBoxLayout, QWidget)
|
||||
|
||||
class Ui_Dialog(object):
|
||||
def setupUi(self, Dialog):
|
||||
if not Dialog.objectName():
|
||||
Dialog.setObjectName(u"Dialog")
|
||||
Dialog.resize(632, 726)
|
||||
self.verticalLayout_4 = QVBoxLayout(Dialog)
|
||||
self.verticalLayout_4.setObjectName(u"verticalLayout_4")
|
||||
self.verticalLayout_3 = QVBoxLayout()
|
||||
self.verticalLayout_3.setObjectName(u"verticalLayout_3")
|
||||
self.frame = QFrame(Dialog)
|
||||
self.frame.setObjectName(u"frame")
|
||||
self.frame.setFrameShape(QFrame.StyledPanel)
|
||||
self.frame.setFrameShadow(QFrame.Raised)
|
||||
self.verticalLayout_5 = QVBoxLayout(self.frame)
|
||||
self.verticalLayout_5.setObjectName(u"verticalLayout_5")
|
||||
self.stackedWidget = QStackedWidget(self.frame)
|
||||
self.stackedWidget.setObjectName(u"stackedWidget")
|
||||
self.page = QWidget()
|
||||
self.page.setObjectName(u"page")
|
||||
self.stackedWidget.addWidget(self.page)
|
||||
self.page_2 = QWidget()
|
||||
self.page_2.setObjectName(u"page_2")
|
||||
self.stackedWidget.addWidget(self.page_2)
|
||||
|
||||
self.verticalLayout_5.addWidget(self.stackedWidget)
|
||||
|
||||
|
||||
self.verticalLayout_3.addWidget(self.frame)
|
||||
|
||||
self.progressBar = QProgressBar(Dialog)
|
||||
self.progressBar.setObjectName(u"progressBar")
|
||||
self.progressBar.setValue(24)
|
||||
|
||||
self.verticalLayout_3.addWidget(self.progressBar)
|
||||
|
||||
self.horizontalLayout = QHBoxLayout()
|
||||
self.horizontalLayout.setObjectName(u"horizontalLayout")
|
||||
self.btn_prev = QPushButton(Dialog)
|
||||
self.btn_prev.setObjectName(u"btn_prev")
|
||||
|
||||
self.horizontalLayout.addWidget(self.btn_prev)
|
||||
|
||||
self.btn_next = QPushButton(Dialog)
|
||||
self.btn_next.setObjectName(u"btn_next")
|
||||
|
||||
self.horizontalLayout.addWidget(self.btn_next)
|
||||
|
||||
self.btn_finish = QPushButton(Dialog)
|
||||
self.btn_finish.setObjectName(u"btn_finish")
|
||||
|
||||
self.horizontalLayout.addWidget(self.btn_finish)
|
||||
|
||||
|
||||
self.verticalLayout_3.addLayout(self.horizontalLayout)
|
||||
|
||||
|
||||
self.verticalLayout_4.addLayout(self.verticalLayout_3)
|
||||
|
||||
|
||||
self.retranslateUi(Dialog)
|
||||
|
||||
QMetaObject.connectSlotsByName(Dialog)
|
||||
# setupUi
|
||||
|
||||
def retranslateUi(self, Dialog):
|
||||
Dialog.setWindowTitle(QCoreApplication.translate("Dialog", u"Dialog", None))
|
||||
self.btn_prev.setText(QCoreApplication.translate("Dialog", u"Previous", None))
|
||||
self.btn_next.setText(QCoreApplication.translate("Dialog", u"Next", None))
|
||||
self.btn_finish.setText(QCoreApplication.translate("Dialog", u"Finish", None))
|
||||
# retranslateUi
|
||||
|
||||
Reference in New Issue
Block a user