# Form implementation generated from reading ui file 'app/ui/dlgReplaceFiles.ui' # # Created by: PyQt6 UI code generator 6.7.0 # # 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 PyQt6 import QtCore, QtGui, QtWidgets class Ui_Dialog(object): def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(1038, 774) self.buttonBox = QtWidgets.QDialogButtonBox(parent=Dialog) self.buttonBox.setGeometry(QtCore.QRect(680, 730, 341, 32)) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.label = QtWidgets.QLabel(parent=Dialog) self.label.setGeometry(QtCore.QRect(10, 15, 181, 24)) self.label.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight|QtCore.Qt.AlignmentFlag.AlignTrailing|QtCore.Qt.AlignmentFlag.AlignVCenter) self.label.setObjectName("label") self.label_2 = QtWidgets.QLabel(parent=Dialog) self.label_2.setGeometry(QtCore.QRect(10, 50, 181, 24)) self.label_2.setAlignment(QtCore.Qt.AlignmentFlag.AlignRight|QtCore.Qt.AlignmentFlag.AlignTrailing|QtCore.Qt.AlignmentFlag.AlignVCenter) self.label_2.setObjectName("label_2") self.lblSourceDirectory = QtWidgets.QLabel(parent=Dialog) self.lblSourceDirectory.setGeometry(QtCore.QRect(200, 15, 811, 24)) self.lblSourceDirectory.setObjectName("lblSourceDirectory") self.lblDestinationDirectory = QtWidgets.QLabel(parent=Dialog) self.lblDestinationDirectory.setGeometry(QtCore.QRect(200, 50, 811, 24)) self.lblDestinationDirectory.setObjectName("lblDestinationDirectory") self.tableWidget = QtWidgets.QTableWidget(parent=Dialog) self.tableWidget.setGeometry(QtCore.QRect(20, 90, 1001, 621)) self.tableWidget.setAlternatingRowColors(True) self.tableWidget.setColumnCount(3) self.tableWidget.setObjectName("tableWidget") self.tableWidget.setRowCount(0) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) # type: ignore self.buttonBox.rejected.connect(Dialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(Dialog) def retranslateUi(self, Dialog): _translate = QtCore.QCoreApplication.translate Dialog.setWindowTitle(_translate("Dialog", "Dialog")) self.label.setText(_translate("Dialog", "Source directory:")) self.label_2.setText(_translate("Dialog", "Destination directory:")) self.lblSourceDirectory.setText(_translate("Dialog", "lblSourceDirectory")) self.lblDestinationDirectory.setText(_translate("Dialog", "lblDestinationDirectory"))