RefactoringRope/Ui_InlineDialog.py

branch
eric7
changeset 423
9dfc89a5aadf
parent 422
f98253eed7f0
equal deleted inserted replaced
422:f98253eed7f0 423:9dfc89a5aadf
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/InlineDialog.ui' 1 # Form implementation generated from reading ui file 'RefactoringRope/InlineDialog.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
16 InlineDialog.setSizeGripEnabled(True) 16 InlineDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(InlineDialog) 17 self.verticalLayout = QtWidgets.QVBoxLayout(InlineDialog)
18 self.verticalLayout.setContentsMargins(6, 6, 6, 6) 18 self.verticalLayout.setContentsMargins(6, 6, 6, 6)
19 self.verticalLayout.setSpacing(6) 19 self.verticalLayout.setSpacing(6)
20 self.verticalLayout.setObjectName("verticalLayout") 20 self.verticalLayout.setObjectName("verticalLayout")
21 self.description = QtWidgets.QLabel(InlineDialog) 21 self.description = QtWidgets.QLabel(parent=InlineDialog)
22 self.description.setObjectName("description") 22 self.description.setObjectName("description")
23 self.verticalLayout.addWidget(self.description) 23 self.verticalLayout.addWidget(self.description)
24 self.removeCheckBox = QtWidgets.QCheckBox(InlineDialog) 24 self.removeCheckBox = QtWidgets.QCheckBox(parent=InlineDialog)
25 self.removeCheckBox.setChecked(True) 25 self.removeCheckBox.setChecked(True)
26 self.removeCheckBox.setObjectName("removeCheckBox") 26 self.removeCheckBox.setObjectName("removeCheckBox")
27 self.verticalLayout.addWidget(self.removeCheckBox) 27 self.verticalLayout.addWidget(self.removeCheckBox)
28 self.currentCheckBox = QtWidgets.QCheckBox(InlineDialog) 28 self.currentCheckBox = QtWidgets.QCheckBox(parent=InlineDialog)
29 self.currentCheckBox.setObjectName("currentCheckBox") 29 self.currentCheckBox.setObjectName("currentCheckBox")
30 self.verticalLayout.addWidget(self.currentCheckBox) 30 self.verticalLayout.addWidget(self.currentCheckBox)
31 self.hierarchyCheckBox = QtWidgets.QCheckBox(InlineDialog) 31 self.hierarchyCheckBox = QtWidgets.QCheckBox(parent=InlineDialog)
32 self.hierarchyCheckBox.setObjectName("hierarchyCheckBox") 32 self.hierarchyCheckBox.setObjectName("hierarchyCheckBox")
33 self.verticalLayout.addWidget(self.hierarchyCheckBox) 33 self.verticalLayout.addWidget(self.hierarchyCheckBox)
34 self.buttonBox = QtWidgets.QDialogButtonBox(InlineDialog) 34 self.buttonBox = QtWidgets.QDialogButtonBox(parent=InlineDialog)
35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) 35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) 36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
37 self.buttonBox.setObjectName("buttonBox") 37 self.buttonBox.setObjectName("buttonBox")
38 self.verticalLayout.addWidget(self.buttonBox) 38 self.verticalLayout.addWidget(self.buttonBox)
39 39
48 _translate = QtCore.QCoreApplication.translate 48 _translate = QtCore.QCoreApplication.translate
49 InlineDialog.setWindowTitle(_translate("InlineDialog", "Inline")) 49 InlineDialog.setWindowTitle(_translate("InlineDialog", "Inline"))
50 self.removeCheckBox.setText(_translate("InlineDialog", "&Remove the definition")) 50 self.removeCheckBox.setText(_translate("InlineDialog", "&Remove the definition"))
51 self.currentCheckBox.setText(_translate("InlineDialog", "Only inline the &current occurrence")) 51 self.currentCheckBox.setText(_translate("InlineDialog", "Only inline the &current occurrence"))
52 self.hierarchyCheckBox.setText(_translate("InlineDialog", "Do for all matching methods in class &hierarchy")) 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())

eric ide

mercurial