|
1 # Form implementation generated from reading ui file 'PyInstallerInterface/PyInstallerExecDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.1 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_PyInstallerExecDialog(object): |
|
13 def setupUi(self, PyInstallerExecDialog): |
|
14 PyInstallerExecDialog.setObjectName("PyInstallerExecDialog") |
|
15 PyInstallerExecDialog.resize(750, 600) |
|
16 PyInstallerExecDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout_3 = QtWidgets.QVBoxLayout(PyInstallerExecDialog) |
|
18 self.verticalLayout_3.setObjectName("verticalLayout_3") |
|
19 self.messagesGroup = QtWidgets.QGroupBox(parent=PyInstallerExecDialog) |
|
20 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Preferred) |
|
21 sizePolicy.setHorizontalStretch(0) |
|
22 sizePolicy.setVerticalStretch(3) |
|
23 sizePolicy.setHeightForWidth(self.messagesGroup.sizePolicy().hasHeightForWidth()) |
|
24 self.messagesGroup.setSizePolicy(sizePolicy) |
|
25 self.messagesGroup.setObjectName("messagesGroup") |
|
26 self.verticalLayout = QtWidgets.QVBoxLayout(self.messagesGroup) |
|
27 self.verticalLayout.setObjectName("verticalLayout") |
|
28 self.contents = QtWidgets.QTextBrowser(parent=self.messagesGroup) |
|
29 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding) |
|
30 sizePolicy.setHorizontalStretch(0) |
|
31 sizePolicy.setVerticalStretch(3) |
|
32 sizePolicy.setHeightForWidth(self.contents.sizePolicy().hasHeightForWidth()) |
|
33 self.contents.setSizePolicy(sizePolicy) |
|
34 self.contents.setObjectName("contents") |
|
35 self.verticalLayout.addWidget(self.contents) |
|
36 self.verticalLayout_3.addWidget(self.messagesGroup) |
|
37 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyInstallerExecDialog) |
|
38 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
39 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
40 self.buttonBox.setObjectName("buttonBox") |
|
41 self.verticalLayout_3.addWidget(self.buttonBox) |
|
42 |
|
43 self.retranslateUi(PyInstallerExecDialog) |
|
44 self.buttonBox.accepted.connect(PyInstallerExecDialog.accept) # type: ignore |
|
45 self.buttonBox.rejected.connect(PyInstallerExecDialog.reject) # type: ignore |
|
46 QtCore.QMetaObject.connectSlotsByName(PyInstallerExecDialog) |
|
47 |
|
48 def retranslateUi(self, PyInstallerExecDialog): |
|
49 _translate = QtCore.QCoreApplication.translate |
|
50 PyInstallerExecDialog.setWindowTitle(_translate("PyInstallerExecDialog", "PyInstaller")) |
|
51 self.messagesGroup.setTitle(_translate("PyInstallerExecDialog", "Messages")) |
|
52 self.contents.setWhatsThis(_translate("PyInstallerExecDialog", "<b>Packager Execution</b>\n" |
|
53 "<p>This shows the output of the packager command.</p>")) |