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