1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/MethodToMethodObjectDialog.ui' |
1 # Form implementation generated from reading ui file 'RefactoringRope/MethodToMethodObjectDialog.ui' |
2 # |
2 # |
3 # Created by: PyQt6 UI code generator 6.3.1 |
3 # Created by: PyQt6 UI code generator 6.7.1 |
4 # |
4 # |
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
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. |
6 # run again. Do not edit this file unless you know what you are doing. |
7 |
7 |
8 |
8 |
18 self.vboxlayout.setContentsMargins(6, 6, 6, 6) |
18 self.vboxlayout.setContentsMargins(6, 6, 6, 6) |
19 self.vboxlayout.setSpacing(6) |
19 self.vboxlayout.setSpacing(6) |
20 self.vboxlayout.setObjectName("vboxlayout") |
20 self.vboxlayout.setObjectName("vboxlayout") |
21 self.hboxlayout = QtWidgets.QHBoxLayout() |
21 self.hboxlayout = QtWidgets.QHBoxLayout() |
22 self.hboxlayout.setObjectName("hboxlayout") |
22 self.hboxlayout.setObjectName("hboxlayout") |
23 self.label = QtWidgets.QLabel(MethodToMethodObjectDialog) |
23 self.label = QtWidgets.QLabel(parent=MethodToMethodObjectDialog) |
24 self.label.setObjectName("label") |
24 self.label.setObjectName("label") |
25 self.hboxlayout.addWidget(self.label) |
25 self.hboxlayout.addWidget(self.label) |
26 self.nameEdit = QtWidgets.QLineEdit(MethodToMethodObjectDialog) |
26 self.nameEdit = QtWidgets.QLineEdit(parent=MethodToMethodObjectDialog) |
27 self.nameEdit.setClearButtonEnabled(True) |
27 self.nameEdit.setClearButtonEnabled(True) |
28 self.nameEdit.setObjectName("nameEdit") |
28 self.nameEdit.setObjectName("nameEdit") |
29 self.hboxlayout.addWidget(self.nameEdit) |
29 self.hboxlayout.addWidget(self.nameEdit) |
30 self.vboxlayout.addLayout(self.hboxlayout) |
30 self.vboxlayout.addLayout(self.hboxlayout) |
31 self.buttonBox = QtWidgets.QDialogButtonBox(MethodToMethodObjectDialog) |
31 self.buttonBox = QtWidgets.QDialogButtonBox(parent=MethodToMethodObjectDialog) |
32 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
32 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
33 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
33 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
34 self.buttonBox.setObjectName("buttonBox") |
34 self.buttonBox.setObjectName("buttonBox") |
35 self.vboxlayout.addWidget(self.buttonBox) |
35 self.vboxlayout.addWidget(self.buttonBox) |
36 |
36 |
40 |
40 |
41 def retranslateUi(self, MethodToMethodObjectDialog): |
41 def retranslateUi(self, MethodToMethodObjectDialog): |
42 _translate = QtCore.QCoreApplication.translate |
42 _translate = QtCore.QCoreApplication.translate |
43 MethodToMethodObjectDialog.setWindowTitle(_translate("MethodToMethodObjectDialog", "Replace Method With Method Object")) |
43 MethodToMethodObjectDialog.setWindowTitle(_translate("MethodToMethodObjectDialog", "Replace Method With Method Object")) |
44 self.label.setText(_translate("MethodToMethodObjectDialog", "New Class Name:")) |
44 self.label.setText(_translate("MethodToMethodObjectDialog", "New Class Name:")) |
45 |
|
46 |
|
47 if __name__ == "__main__": |
|
48 import sys |
|
49 app = QtWidgets.QApplication(sys.argv) |
|
50 MethodToMethodObjectDialog = QtWidgets.QDialog() |
|
51 ui = Ui_MethodToMethodObjectDialog() |
|
52 ui.setupUi(MethodToMethodObjectDialog) |
|
53 MethodToMethodObjectDialog.show() |
|
54 sys.exit(app.exec()) |
|