Sun, 30 Mar 2025 15:25:10 +0200
Created global tag <release-10.4.0>.
# Form implementation generated from reading ui file 'ProjectDjango/DjangoMigrationSelectionDialog.ui' # # Created by: PyQt6 UI code generator 6.8.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_DjangoMigrationSelectionDialog(object): def setupUi(self, DjangoMigrationSelectionDialog): DjangoMigrationSelectionDialog.setObjectName("DjangoMigrationSelectionDialog") DjangoMigrationSelectionDialog.resize(561, 110) DjangoMigrationSelectionDialog.setSizeGripEnabled(True) self.gridLayout = QtWidgets.QGridLayout(DjangoMigrationSelectionDialog) self.gridLayout.setObjectName("gridLayout") self.applicationComboBox = QtWidgets.QComboBox(parent=DjangoMigrationSelectionDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.applicationComboBox.sizePolicy().hasHeightForWidth()) self.applicationComboBox.setSizePolicy(sizePolicy) self.applicationComboBox.setObjectName("applicationComboBox") self.gridLayout.addWidget(self.applicationComboBox, 0, 1, 1, 1) self.migrationsComboBox = QtWidgets.QComboBox(parent=DjangoMigrationSelectionDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.migrationsComboBox.sizePolicy().hasHeightForWidth()) self.migrationsComboBox.setSizePolicy(sizePolicy) self.migrationsComboBox.setObjectName("migrationsComboBox") self.gridLayout.addWidget(self.migrationsComboBox, 1, 1, 1, 1) self.label_2 = QtWidgets.QLabel(parent=DjangoMigrationSelectionDialog) self.label_2.setObjectName("label_2") self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) self.label = QtWidgets.QLabel(parent=DjangoMigrationSelectionDialog) self.label.setObjectName("label") self.gridLayout.addWidget(self.label, 0, 0, 1, 1) self.buttonBox = QtWidgets.QDialogButtonBox(parent=DjangoMigrationSelectionDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2) self.retranslateUi(DjangoMigrationSelectionDialog) self.buttonBox.accepted.connect(DjangoMigrationSelectionDialog.accept) # type: ignore self.buttonBox.rejected.connect(DjangoMigrationSelectionDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(DjangoMigrationSelectionDialog) def retranslateUi(self, DjangoMigrationSelectionDialog): _translate = QtCore.QCoreApplication.translate DjangoMigrationSelectionDialog.setWindowTitle(_translate("DjangoMigrationSelectionDialog", "Select Migration")) self.applicationComboBox.setToolTip(_translate("DjangoMigrationSelectionDialog", "Select the application")) self.migrationsComboBox.setToolTip(_translate("DjangoMigrationSelectionDialog", "Select a migration")) self.label_2.setText(_translate("DjangoMigrationSelectionDialog", "Migration:")) self.label.setText(_translate("DjangoMigrationSelectionDialog", "Application:"))