|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/UseFunctionDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.3.1 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_UseFunctionDialog(object): |
|
13 def setupUi(self, UseFunctionDialog): |
|
14 UseFunctionDialog.setObjectName("UseFunctionDialog") |
|
15 UseFunctionDialog.resize(500, 61) |
|
16 UseFunctionDialog.setSizeGripEnabled(True) |
|
17 self.vboxlayout = QtWidgets.QVBoxLayout(UseFunctionDialog) |
|
18 self.vboxlayout.setContentsMargins(6, 6, 6, 6) |
|
19 self.vboxlayout.setSpacing(6) |
|
20 self.vboxlayout.setObjectName("vboxlayout") |
|
21 self.description = QtWidgets.QLabel(UseFunctionDialog) |
|
22 self.description.setWordWrap(True) |
|
23 self.description.setObjectName("description") |
|
24 self.vboxlayout.addWidget(self.description) |
|
25 self.buttonBox = QtWidgets.QDialogButtonBox(UseFunctionDialog) |
|
26 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
27 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.NoButton|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
28 self.buttonBox.setObjectName("buttonBox") |
|
29 self.vboxlayout.addWidget(self.buttonBox) |
|
30 |
|
31 self.retranslateUi(UseFunctionDialog) |
|
32 self.buttonBox.rejected.connect(UseFunctionDialog.reject) # type: ignore |
|
33 self.buttonBox.accepted.connect(UseFunctionDialog.accept) # type: ignore |
|
34 QtCore.QMetaObject.connectSlotsByName(UseFunctionDialog) |
|
35 |
|
36 def retranslateUi(self, UseFunctionDialog): |
|
37 _translate = QtCore.QCoreApplication.translate |
|
38 UseFunctionDialog.setWindowTitle(_translate("UseFunctionDialog", "Use Function")) |
|
39 |
|
40 |
|
41 if __name__ == "__main__": |
|
42 import sys |
|
43 app = QtWidgets.QApplication(sys.argv) |
|
44 UseFunctionDialog = QtWidgets.QDialog() |
|
45 ui = Ui_UseFunctionDialog() |
|
46 ui.setupUi(UseFunctionDialog) |
|
47 UseFunctionDialog.show() |
|
48 sys.exit(app.exec()) |