You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/FITK_Component/FITKWidget/FITKWorkingDirDialog_ui.py

74 lines
4.0 KiB
Python

# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'e:\01-Projects\19-Fly\01-AppFlow-gitea\FITK_Component\FITKWidget\FITKWorkingDirDialog.ui'
#
# Created by: PyQt5 UI code generator 5.15.10
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again. Do not edit this file unless you know what you are doing.
from PyQt5 import QtCore, QtGui, QtWidgets
class Ui_FITKWorkingDirDialog(object):
def setupUi(self, FITKWorkingDirDialog):
FITKWorkingDirDialog.setObjectName("FITKWorkingDirDialog")
FITKWorkingDirDialog.resize(400, 165)
self.gridLayout = QtWidgets.QGridLayout(FITKWorkingDirDialog)
self.gridLayout.setObjectName("gridLayout")
self.verticalLayout_2 = QtWidgets.QVBoxLayout()
self.verticalLayout_2.setObjectName("verticalLayout_2")
self.label = QtWidgets.QLabel(FITKWorkingDirDialog)
self.label.setObjectName("label")
self.verticalLayout_2.addWidget(self.label)
self.currentWorkingDirLabel = QtWidgets.QLabel(FITKWorkingDirDialog)
self.currentWorkingDirLabel.setText("")
self.currentWorkingDirLabel.setObjectName("currentWorkingDirLabel")
self.verticalLayout_2.addWidget(self.currentWorkingDirLabel)
self.gridLayout.addLayout(self.verticalLayout_2, 0, 0, 1, 1)
self.line = QtWidgets.QFrame(FITKWorkingDirDialog)
self.line.setFrameShape(QtWidgets.QFrame.HLine)
self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
self.line.setObjectName("line")
self.gridLayout.addWidget(self.line, 1, 0, 1, 1)
self.verticalLayout = QtWidgets.QVBoxLayout()
self.verticalLayout.setObjectName("verticalLayout")
self.label_3 = QtWidgets.QLabel(FITKWorkingDirDialog)
self.label_3.setObjectName("label_3")
self.verticalLayout.addWidget(self.label_3)
self.horizontalLayout = QtWidgets.QHBoxLayout()
self.horizontalLayout.setObjectName("horizontalLayout")
self.workingDirlineEdit = QtWidgets.QLineEdit(FITKWorkingDirDialog)
self.workingDirlineEdit.setObjectName("workingDirlineEdit")
self.horizontalLayout.addWidget(self.workingDirlineEdit)
self.browseButton = QtWidgets.QPushButton(FITKWorkingDirDialog)
self.browseButton.setMaximumSize(QtCore.QSize(40, 16777215))
self.browseButton.setText("")
self.browseButton.setObjectName("browseButton")
self.horizontalLayout.addWidget(self.browseButton)
self.verticalLayout.addLayout(self.horizontalLayout)
self.gridLayout.addLayout(self.verticalLayout, 2, 0, 1, 1)
self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
self.horizontalLayout_2.setObjectName("horizontalLayout_2")
spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
self.horizontalLayout_2.addItem(spacerItem)
self.pushButton_OK = QtWidgets.QPushButton(FITKWorkingDirDialog)
self.pushButton_OK.setObjectName("pushButton_OK")
self.horizontalLayout_2.addWidget(self.pushButton_OK)
self.pushButton_Cancel = QtWidgets.QPushButton(FITKWorkingDirDialog)
self.pushButton_Cancel.setObjectName("pushButton_Cancel")
self.horizontalLayout_2.addWidget(self.pushButton_Cancel)
self.gridLayout.addLayout(self.horizontalLayout_2, 3, 0, 1, 1)
self.retranslateUi(FITKWorkingDirDialog)
QtCore.QMetaObject.connectSlotsByName(FITKWorkingDirDialog)
def retranslateUi(self, FITKWorkingDirDialog):
_translate = QtCore.QCoreApplication.translate
FITKWorkingDirDialog.setWindowTitle(_translate("FITKWorkingDirDialog", "Working Dir"))
self.label.setText(_translate("FITKWorkingDirDialog", "Current Working Dir:"))
self.label_3.setText(_translate("FITKWorkingDirDialog", "New Working Dir:"))
self.pushButton_OK.setText(_translate("FITKWorkingDirDialog", "OK"))
self.pushButton_Cancel.setText(_translate("FITKWorkingDirDialog", "Cancel"))