Tue, 10 Dec 2024 15:49:01 +0100
Updated copyright for 2025.
# Form implementation generated from reading ui file 'RefactoringRope/ConfirmationDialog.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_ConfirmationDialog(object): def setupUi(self, ConfirmationDialog): ConfirmationDialog.setObjectName("ConfirmationDialog") ConfirmationDialog.resize(500, 58) ConfirmationDialog.setSizeGripEnabled(True) self.vboxlayout = QtWidgets.QVBoxLayout(ConfirmationDialog) self.vboxlayout.setContentsMargins(6, 6, 6, 6) self.vboxlayout.setSpacing(6) self.vboxlayout.setObjectName("vboxlayout") self.description = QtWidgets.QLabel(parent=ConfirmationDialog) self.description.setWordWrap(True) self.description.setObjectName("description") self.vboxlayout.addWidget(self.description) self.buttonBox = QtWidgets.QDialogButtonBox(parent=ConfirmationDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.vboxlayout.addWidget(self.buttonBox) self.retranslateUi(ConfirmationDialog) self.buttonBox.rejected.connect(ConfirmationDialog.reject) # type: ignore self.buttonBox.accepted.connect(ConfirmationDialog.accept) # type: ignore QtCore.QMetaObject.connectSlotsByName(ConfirmationDialog) def retranslateUi(self, ConfirmationDialog): _translate = QtCore.QCoreApplication.translate ConfirmationDialog.setWindowTitle(_translate("ConfirmationDialog", "Confirmation"))