|
|
@@ -0,0 +1,68 @@
|
|
|
+# -*- coding: utf-8 -*-
|
|
|
+
|
|
|
+################################################################################
|
|
|
+## Form generated from reading UI file 'AggProcess.ui'
|
|
|
+##
|
|
|
+## Created by: Qt User Interface Compiler version 6.5.1
|
|
|
+##
|
|
|
+## 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, QGridLayout, QLayout, QLineEdit,
|
|
|
+ QPushButton, QSizePolicy, QVBoxLayout, QWidget)
|
|
|
+
|
|
|
+class Ui_Form(object):
|
|
|
+ def setupUi(self, Form):
|
|
|
+ if not Form.objectName():
|
|
|
+ Form.setObjectName(u"Form")
|
|
|
+ Form.resize(1507, 873)
|
|
|
+ self.verticalLayout = QVBoxLayout(Form)
|
|
|
+ self.verticalLayout.setObjectName(u"verticalLayout")
|
|
|
+ self.gridLayout = QGridLayout()
|
|
|
+ self.gridLayout.setObjectName(u"gridLayout")
|
|
|
+ self.gridLayout.setSizeConstraint(QLayout.SetMaximumSize)
|
|
|
+ self.selectDirBtn = QPushButton(Form)
|
|
|
+ self.selectDirBtn.setObjectName(u"selectDirBtn")
|
|
|
+
|
|
|
+ self.gridLayout.addWidget(self.selectDirBtn, 0, 1, 1, 1)
|
|
|
+
|
|
|
+ self.startBtn = QPushButton(Form)
|
|
|
+ self.startBtn.setObjectName(u"startBtn")
|
|
|
+
|
|
|
+ self.gridLayout.addWidget(self.startBtn, 1, 0, 1, 3)
|
|
|
+
|
|
|
+ self.dataPath = QLineEdit(Form)
|
|
|
+ self.dataPath.setObjectName(u"dataPath")
|
|
|
+ self.dataPath.setEnabled(False)
|
|
|
+
|
|
|
+ self.gridLayout.addWidget(self.dataPath, 0, 0, 1, 1)
|
|
|
+
|
|
|
+ self.selectFileBtn = QPushButton(Form)
|
|
|
+ self.selectFileBtn.setObjectName(u"selectFileBtn")
|
|
|
+
|
|
|
+ self.gridLayout.addWidget(self.selectFileBtn, 0, 2, 1, 1)
|
|
|
+
|
|
|
+
|
|
|
+ self.verticalLayout.addLayout(self.gridLayout)
|
|
|
+
|
|
|
+
|
|
|
+ self.retranslateUi(Form)
|
|
|
+
|
|
|
+ QMetaObject.connectSlotsByName(Form)
|
|
|
+ # setupUi
|
|
|
+
|
|
|
+ def retranslateUi(self, Form):
|
|
|
+ Form.setWindowTitle(QCoreApplication.translate("Form", u"Form", None))
|
|
|
+ self.selectDirBtn.setText(QCoreApplication.translate("Form", u"\u9009\u62e9\u6587\u4ef6\u5939", None))
|
|
|
+ self.startBtn.setText(QCoreApplication.translate("Form", u"\u542f\u52a8\u5206\u6790\u7a0b\u5e8f", None))
|
|
|
+ self.dataPath.setPlaceholderText(QCoreApplication.translate("Form", u"\u5f85\u5206\u6790\u6570\u636e\u76ee\u5f55\u8def\u5f84", None))
|
|
|
+ self.selectFileBtn.setText(QCoreApplication.translate("Form", u"\u9009\u62e9\u6587\u4ef6", None))
|
|
|
+ # retranslateUi
|
|
|
+
|