PyInstallerInterface/Ui_PyInstallerCleanupDialog.py

branch
eric7
changeset 56
02709629940d
equal deleted inserted replaced
55:3794f1ca53af 56:02709629940d
1 # Form implementation generated from reading ui file 'PyInstallerInterface/PyInstallerCleanupDialog.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_PyInstallerCleanupDialog(object):
13 def setupUi(self, PyInstallerCleanupDialog):
14 PyInstallerCleanupDialog.setObjectName("PyInstallerCleanupDialog")
15 PyInstallerCleanupDialog.resize(400, 158)
16 PyInstallerCleanupDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(PyInstallerCleanupDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=PyInstallerCleanupDialog)
20 self.label.setWordWrap(True)
21 self.label.setObjectName("label")
22 self.verticalLayout.addWidget(self.label)
23 self.buildButton = QtWidgets.QRadioButton(parent=PyInstallerCleanupDialog)
24 self.buildButton.setObjectName("buildButton")
25 self.verticalLayout.addWidget(self.buildButton)
26 self.distButton = QtWidgets.QRadioButton(parent=PyInstallerCleanupDialog)
27 self.distButton.setObjectName("distButton")
28 self.verticalLayout.addWidget(self.distButton)
29 self.bothButton = QtWidgets.QRadioButton(parent=PyInstallerCleanupDialog)
30 self.bothButton.setChecked(True)
31 self.bothButton.setObjectName("bothButton")
32 self.verticalLayout.addWidget(self.bothButton)
33 self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyInstallerCleanupDialog)
34 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
35 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
36 self.buttonBox.setObjectName("buttonBox")
37 self.verticalLayout.addWidget(self.buttonBox)
38
39 self.retranslateUi(PyInstallerCleanupDialog)
40 self.buttonBox.accepted.connect(PyInstallerCleanupDialog.accept) # type: ignore
41 self.buttonBox.rejected.connect(PyInstallerCleanupDialog.reject) # type: ignore
42 QtCore.QMetaObject.connectSlotsByName(PyInstallerCleanupDialog)
43
44 def retranslateUi(self, PyInstallerCleanupDialog):
45 _translate = QtCore.QCoreApplication.translate
46 PyInstallerCleanupDialog.setWindowTitle(_translate("PyInstallerCleanupDialog", "Clean PyInstaller"))
47 self.label.setText(_translate("PyInstallerCleanupDialog", "Select the PyInstaller directories to be removed:"))
48 self.buildButton.setText(_translate("PyInstallerCleanupDialog", "Build Directory"))
49 self.distButton.setText(_translate("PyInstallerCleanupDialog", "Distribution Directory"))
50 self.bothButton.setText(_translate("PyInstallerCleanupDialog", "Both Directories"))

eric ide

mercurial