--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/PyInstallerInterface/Ui_PyInstallerExecDialog.py Tue Oct 29 17:39:59 2024 +0100 @@ -0,0 +1,53 @@ +# Form implementation generated from reading ui file 'PyInstallerInterface/PyInstallerExecDialog.ui' +# +# Created by: PyQt6 UI code generator 6.7.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 PyQt6 import QtCore, QtGui, QtWidgets + + +class Ui_PyInstallerExecDialog(object): + def setupUi(self, PyInstallerExecDialog): + PyInstallerExecDialog.setObjectName("PyInstallerExecDialog") + PyInstallerExecDialog.resize(750, 600) + PyInstallerExecDialog.setSizeGripEnabled(True) + self.verticalLayout_3 = QtWidgets.QVBoxLayout(PyInstallerExecDialog) + self.verticalLayout_3.setObjectName("verticalLayout_3") + self.messagesGroup = QtWidgets.QGroupBox(parent=PyInstallerExecDialog) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(3) + sizePolicy.setHeightForWidth(self.messagesGroup.sizePolicy().hasHeightForWidth()) + self.messagesGroup.setSizePolicy(sizePolicy) + self.messagesGroup.setObjectName("messagesGroup") + self.verticalLayout = QtWidgets.QVBoxLayout(self.messagesGroup) + self.verticalLayout.setObjectName("verticalLayout") + self.contents = QtWidgets.QTextBrowser(parent=self.messagesGroup) + sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) + sizePolicy.setHorizontalStretch(0) + sizePolicy.setVerticalStretch(3) + sizePolicy.setHeightForWidth(self.contents.sizePolicy().hasHeightForWidth()) + self.contents.setSizePolicy(sizePolicy) + self.contents.setObjectName("contents") + self.verticalLayout.addWidget(self.contents) + self.verticalLayout_3.addWidget(self.messagesGroup) + self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyInstallerExecDialog) + self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) + self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) + self.buttonBox.setObjectName("buttonBox") + self.verticalLayout_3.addWidget(self.buttonBox) + + self.retranslateUi(PyInstallerExecDialog) + self.buttonBox.accepted.connect(PyInstallerExecDialog.accept) # type: ignore + self.buttonBox.rejected.connect(PyInstallerExecDialog.reject) # type: ignore + QtCore.QMetaObject.connectSlotsByName(PyInstallerExecDialog) + + def retranslateUi(self, PyInstallerExecDialog): + _translate = QtCore.QCoreApplication.translate + PyInstallerExecDialog.setWindowTitle(_translate("PyInstallerExecDialog", "PyInstaller")) + self.messagesGroup.setTitle(_translate("PyInstallerExecDialog", "Messages")) + self.contents.setWhatsThis(_translate("PyInstallerExecDialog", "<b>Packager Execution</b>\n" +"<p>This shows the output of the packager command.</p>"))