ProjectPyramid/Ui_DistributionTypeSelectionDialog.py

branch
eric7
changeset 169
0405f4f83719
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectPyramid/Ui_DistributionTypeSelectionDialog.py	Mon Oct 28 17:35:47 2024 +0100
@@ -0,0 +1,43 @@
+# Form implementation generated from reading ui file 'ProjectPyramid/DistributionTypeSelectionDialog.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_DistributionTypeSelectionDialog(object):
+    def setupUi(self, DistributionTypeSelectionDialog):
+        DistributionTypeSelectionDialog.setObjectName("DistributionTypeSelectionDialog")
+        DistributionTypeSelectionDialog.resize(400, 300)
+        DistributionTypeSelectionDialog.setSizeGripEnabled(True)
+        self.verticalLayout = QtWidgets.QVBoxLayout(DistributionTypeSelectionDialog)
+        self.verticalLayout.setObjectName("verticalLayout")
+        self.label = QtWidgets.QLabel(parent=DistributionTypeSelectionDialog)
+        self.label.setObjectName("label")
+        self.verticalLayout.addWidget(self.label)
+        self.formatsList = QtWidgets.QListWidget(parent=DistributionTypeSelectionDialog)
+        self.formatsList.setAlternatingRowColors(True)
+        self.formatsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection)
+        self.formatsList.setObjectName("formatsList")
+        self.verticalLayout.addWidget(self.formatsList)
+        self.buttonBox = QtWidgets.QDialogButtonBox(parent=DistributionTypeSelectionDialog)
+        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
+        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
+        self.buttonBox.setObjectName("buttonBox")
+        self.verticalLayout.addWidget(self.buttonBox)
+
+        self.retranslateUi(DistributionTypeSelectionDialog)
+        self.buttonBox.accepted.connect(DistributionTypeSelectionDialog.accept) # type: ignore
+        self.buttonBox.rejected.connect(DistributionTypeSelectionDialog.reject) # type: ignore
+        QtCore.QMetaObject.connectSlotsByName(DistributionTypeSelectionDialog)
+        DistributionTypeSelectionDialog.setTabOrder(self.formatsList, self.buttonBox)
+
+    def retranslateUi(self, DistributionTypeSelectionDialog):
+        _translate = QtCore.QCoreApplication.translate
+        DistributionTypeSelectionDialog.setWindowTitle(_translate("DistributionTypeSelectionDialog", "Distribution Type"))
+        self.label.setText(_translate("DistributionTypeSelectionDialog", "Select the distribution file formats below:"))
+        self.formatsList.setToolTip(_translate("DistributionTypeSelectionDialog", "Check the distribution file formats that should be generated"))

eric ide

mercurial