|
1 # Form implementation generated from reading ui file 'ProjectPyramid/DistributionTypeSelectionDialog.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_DistributionTypeSelectionDialog(object): |
|
13 def setupUi(self, DistributionTypeSelectionDialog): |
|
14 DistributionTypeSelectionDialog.setObjectName("DistributionTypeSelectionDialog") |
|
15 DistributionTypeSelectionDialog.resize(400, 300) |
|
16 DistributionTypeSelectionDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(DistributionTypeSelectionDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.label = QtWidgets.QLabel(parent=DistributionTypeSelectionDialog) |
|
20 self.label.setObjectName("label") |
|
21 self.verticalLayout.addWidget(self.label) |
|
22 self.formatsList = QtWidgets.QListWidget(parent=DistributionTypeSelectionDialog) |
|
23 self.formatsList.setAlternatingRowColors(True) |
|
24 self.formatsList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection) |
|
25 self.formatsList.setObjectName("formatsList") |
|
26 self.verticalLayout.addWidget(self.formatsList) |
|
27 self.buttonBox = QtWidgets.QDialogButtonBox(parent=DistributionTypeSelectionDialog) |
|
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
30 self.buttonBox.setObjectName("buttonBox") |
|
31 self.verticalLayout.addWidget(self.buttonBox) |
|
32 |
|
33 self.retranslateUi(DistributionTypeSelectionDialog) |
|
34 self.buttonBox.accepted.connect(DistributionTypeSelectionDialog.accept) # type: ignore |
|
35 self.buttonBox.rejected.connect(DistributionTypeSelectionDialog.reject) # type: ignore |
|
36 QtCore.QMetaObject.connectSlotsByName(DistributionTypeSelectionDialog) |
|
37 DistributionTypeSelectionDialog.setTabOrder(self.formatsList, self.buttonBox) |
|
38 |
|
39 def retranslateUi(self, DistributionTypeSelectionDialog): |
|
40 _translate = QtCore.QCoreApplication.translate |
|
41 DistributionTypeSelectionDialog.setWindowTitle(_translate("DistributionTypeSelectionDialog", "Distribution Type")) |
|
42 self.label.setText(_translate("DistributionTypeSelectionDialog", "Select the distribution file formats below:")) |
|
43 self.formatsList.setToolTip(_translate("DistributionTypeSelectionDialog", "Check the distribution file formats that should be generated")) |