RefactoringRope/Ui_AddParameterDialog.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/AddParameterDialog.ui' 1 # Form implementation generated from reading ui file 'RefactoringRope/AddParameterDialog.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
19 self.vboxlayout.setSpacing(6) 19 self.vboxlayout.setSpacing(6)
20 self.vboxlayout.setObjectName("vboxlayout") 20 self.vboxlayout.setObjectName("vboxlayout")
21 self.gridlayout = QtWidgets.QGridLayout() 21 self.gridlayout = QtWidgets.QGridLayout()
22 self.gridlayout.setSpacing(6) 22 self.gridlayout.setSpacing(6)
23 self.gridlayout.setObjectName("gridlayout") 23 self.gridlayout.setObjectName("gridlayout")
24 self.label = QtWidgets.QLabel(AddParameterDialog) 24 self.label = QtWidgets.QLabel(parent=AddParameterDialog)
25 self.label.setObjectName("label") 25 self.label.setObjectName("label")
26 self.gridlayout.addWidget(self.label, 0, 0, 1, 1) 26 self.gridlayout.addWidget(self.label, 0, 0, 1, 1)
27 self.nameEdit = QtWidgets.QLineEdit(AddParameterDialog) 27 self.nameEdit = QtWidgets.QLineEdit(parent=AddParameterDialog)
28 self.nameEdit.setClearButtonEnabled(True) 28 self.nameEdit.setClearButtonEnabled(True)
29 self.nameEdit.setObjectName("nameEdit") 29 self.nameEdit.setObjectName("nameEdit")
30 self.gridlayout.addWidget(self.nameEdit, 0, 1, 1, 1) 30 self.gridlayout.addWidget(self.nameEdit, 0, 1, 1, 1)
31 self.label_2 = QtWidgets.QLabel(AddParameterDialog) 31 self.label_2 = QtWidgets.QLabel(parent=AddParameterDialog)
32 self.label_2.setObjectName("label_2") 32 self.label_2.setObjectName("label_2")
33 self.gridlayout.addWidget(self.label_2, 1, 0, 1, 1) 33 self.gridlayout.addWidget(self.label_2, 1, 0, 1, 1)
34 self.defaultEdit = QtWidgets.QLineEdit(AddParameterDialog) 34 self.defaultEdit = QtWidgets.QLineEdit(parent=AddParameterDialog)
35 self.defaultEdit.setClearButtonEnabled(True) 35 self.defaultEdit.setClearButtonEnabled(True)
36 self.defaultEdit.setObjectName("defaultEdit") 36 self.defaultEdit.setObjectName("defaultEdit")
37 self.gridlayout.addWidget(self.defaultEdit, 1, 1, 1, 1) 37 self.gridlayout.addWidget(self.defaultEdit, 1, 1, 1, 1)
38 self.label_3 = QtWidgets.QLabel(AddParameterDialog) 38 self.label_3 = QtWidgets.QLabel(parent=AddParameterDialog)
39 self.label_3.setObjectName("label_3") 39 self.label_3.setObjectName("label_3")
40 self.gridlayout.addWidget(self.label_3, 2, 0, 1, 1) 40 self.gridlayout.addWidget(self.label_3, 2, 0, 1, 1)
41 self.valueEdit = QtWidgets.QLineEdit(AddParameterDialog) 41 self.valueEdit = QtWidgets.QLineEdit(parent=AddParameterDialog)
42 self.valueEdit.setClearButtonEnabled(True) 42 self.valueEdit.setClearButtonEnabled(True)
43 self.valueEdit.setObjectName("valueEdit") 43 self.valueEdit.setObjectName("valueEdit")
44 self.gridlayout.addWidget(self.valueEdit, 2, 1, 1, 1) 44 self.gridlayout.addWidget(self.valueEdit, 2, 1, 1, 1)
45 self.vboxlayout.addLayout(self.gridlayout) 45 self.vboxlayout.addLayout(self.gridlayout)
46 self.buttonBox = QtWidgets.QDialogButtonBox(AddParameterDialog) 46 self.buttonBox = QtWidgets.QDialogButtonBox(parent=AddParameterDialog)
47 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) 47 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
48 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) 48 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
49 self.buttonBox.setObjectName("buttonBox") 49 self.buttonBox.setObjectName("buttonBox")
50 self.vboxlayout.addWidget(self.buttonBox) 50 self.vboxlayout.addWidget(self.buttonBox)
51 51
64 self.nameEdit.setToolTip(_translate("AddParameterDialog", "Enter the name of the new parameter")) 64 self.nameEdit.setToolTip(_translate("AddParameterDialog", "Enter the name of the new parameter"))
65 self.label_2.setText(_translate("AddParameterDialog", "Default:")) 65 self.label_2.setText(_translate("AddParameterDialog", "Default:"))
66 self.defaultEdit.setToolTip(_translate("AddParameterDialog", "Enter the default value of the new parameter")) 66 self.defaultEdit.setToolTip(_translate("AddParameterDialog", "Enter the default value of the new parameter"))
67 self.label_3.setText(_translate("AddParameterDialog", "Value:")) 67 self.label_3.setText(_translate("AddParameterDialog", "Value:"))
68 self.valueEdit.setToolTip(_translate("AddParameterDialog", "Enter a value for the new parameter that is passed by all calls")) 68 self.valueEdit.setToolTip(_translate("AddParameterDialog", "Enter a value for the new parameter that is passed by all calls"))
69
70
71 if __name__ == "__main__":
72 import sys
73 app = QtWidgets.QApplication(sys.argv)
74 AddParameterDialog = QtWidgets.QDialog()
75 ui = Ui_AddParameterDialog()
76 ui.setupUi(AddParameterDialog)
77 AddParameterDialog.show()
78 sys.exit(app.exec())

eric ide

mercurial