RefactoringRope/Ui_UseFunctionDialog.py

branch
eric7
changeset 422
f98253eed7f0
child 423
9dfc89a5aadf
diff -r e3167d354ab6 -r f98253eed7f0 RefactoringRope/Ui_UseFunctionDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/RefactoringRope/Ui_UseFunctionDialog.py	Sat Oct 26 15:50:43 2024 +0200
@@ -0,0 +1,48 @@
+# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/UseFunctionDialog.ui'
+#
+# Created by: PyQt6 UI code generator 6.3.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(UseFunctionDialog)
+        self.description.setWordWrap(True)
+        self.description.setObjectName("description")
+        self.vboxlayout.addWidget(self.description)
+        self.buttonBox = QtWidgets.QDialogButtonBox(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"))
+
+
+if __name__ == "__main__":
+    import sys
+    app = QtWidgets.QApplication(sys.argv)
+    UseFunctionDialog = QtWidgets.QDialog()
+    ui = Ui_UseFunctionDialog()
+    ui.setupUi(UseFunctionDialog)
+    UseFunctionDialog.show()
+    sys.exit(app.exec())

eric ide

mercurial