ProjectPyramid/Ui_DistributionTypeSelectionDialog.py

Tue, 10 Dec 2024 15:49:00 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 10 Dec 2024 15:49:00 +0100
branch
eric7
changeset 171
4a8bf0845603
parent 169
0405f4f83719
permissions
-rw-r--r--

Updated copyright for 2025.

# 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