RefactoringRope/Ui_UseFunctionDialog.py

Sat, 26 Oct 2024 15:54:44 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 26 Oct 2024 15:54:44 +0200
branch
eric7
changeset 423
9dfc89a5aadf
parent 422
f98253eed7f0
permissions
-rw-r--r--

Recompiled the forms and made some modal dialog usages clearer with respect to parent relationship.

# 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"))

eric ide

mercurial