|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/InlineDialog.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_InlineDialog(object): |
|
13 def setupUi(self, InlineDialog): |
|
14 InlineDialog.setObjectName("InlineDialog") |
|
15 InlineDialog.resize(500, 133) |
|
16 InlineDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(InlineDialog) |
|
18 self.verticalLayout.setContentsMargins(6, 6, 6, 6) |
|
19 self.verticalLayout.setSpacing(6) |
|
20 self.verticalLayout.setObjectName("verticalLayout") |
|
21 self.description = QtWidgets.QLabel(InlineDialog) |
|
22 self.description.setObjectName("description") |
|
23 self.verticalLayout.addWidget(self.description) |
|
24 self.removeCheckBox = QtWidgets.QCheckBox(InlineDialog) |
|
25 self.removeCheckBox.setChecked(True) |
|
26 self.removeCheckBox.setObjectName("removeCheckBox") |
|
27 self.verticalLayout.addWidget(self.removeCheckBox) |
|
28 self.currentCheckBox = QtWidgets.QCheckBox(InlineDialog) |
|
29 self.currentCheckBox.setObjectName("currentCheckBox") |
|
30 self.verticalLayout.addWidget(self.currentCheckBox) |
|
31 self.hierarchyCheckBox = QtWidgets.QCheckBox(InlineDialog) |
|
32 self.hierarchyCheckBox.setObjectName("hierarchyCheckBox") |
|
33 self.verticalLayout.addWidget(self.hierarchyCheckBox) |
|
34 self.buttonBox = QtWidgets.QDialogButtonBox(InlineDialog) |
|
35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
37 self.buttonBox.setObjectName("buttonBox") |
|
38 self.verticalLayout.addWidget(self.buttonBox) |
|
39 |
|
40 self.retranslateUi(InlineDialog) |
|
41 self.buttonBox.rejected.connect(InlineDialog.reject) # type: ignore |
|
42 QtCore.QMetaObject.connectSlotsByName(InlineDialog) |
|
43 InlineDialog.setTabOrder(self.removeCheckBox, self.currentCheckBox) |
|
44 InlineDialog.setTabOrder(self.currentCheckBox, self.hierarchyCheckBox) |
|
45 InlineDialog.setTabOrder(self.hierarchyCheckBox, self.buttonBox) |
|
46 |
|
47 def retranslateUi(self, InlineDialog): |
|
48 _translate = QtCore.QCoreApplication.translate |
|
49 InlineDialog.setWindowTitle(_translate("InlineDialog", "Inline")) |
|
50 self.removeCheckBox.setText(_translate("InlineDialog", "&Remove the definition")) |
|
51 self.currentCheckBox.setText(_translate("InlineDialog", "Only inline the ¤t occurrence")) |
|
52 self.hierarchyCheckBox.setText(_translate("InlineDialog", "Do for all matching methods in class &hierarchy")) |
|
53 |
|
54 |
|
55 if __name__ == "__main__": |
|
56 import sys |
|
57 app = QtWidgets.QApplication(sys.argv) |
|
58 InlineDialog = QtWidgets.QDialog() |
|
59 ui = Ui_InlineDialog() |
|
60 ui.setupUi(InlineDialog) |
|
61 InlineDialog.show() |
|
62 sys.exit(app.exec()) |