RefactoringRope/Ui_UseFunctionDialog.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/UseFunctionDialog.ui' 1 # Form implementation generated from reading ui file 'RefactoringRope/UseFunctionDialog.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 UseFunctionDialog.setSizeGripEnabled(True) 16 UseFunctionDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(UseFunctionDialog) 17 self.vboxlayout = QtWidgets.QVBoxLayout(UseFunctionDialog)
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.description = QtWidgets.QLabel(UseFunctionDialog) 21 self.description = QtWidgets.QLabel(parent=UseFunctionDialog)
22 self.description.setWordWrap(True) 22 self.description.setWordWrap(True)
23 self.description.setObjectName("description") 23 self.description.setObjectName("description")
24 self.vboxlayout.addWidget(self.description) 24 self.vboxlayout.addWidget(self.description)
25 self.buttonBox = QtWidgets.QDialogButtonBox(UseFunctionDialog) 25 self.buttonBox = QtWidgets.QDialogButtonBox(parent=UseFunctionDialog)
26 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) 26 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
27 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.NoButton|QtWidgets.QDialogButtonBox.StandardButton.Ok) 27 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.NoButton|QtWidgets.QDialogButtonBox.StandardButton.Ok)
28 self.buttonBox.setObjectName("buttonBox") 28 self.buttonBox.setObjectName("buttonBox")
29 self.vboxlayout.addWidget(self.buttonBox) 29 self.vboxlayout.addWidget(self.buttonBox)
30 30
34 QtCore.QMetaObject.connectSlotsByName(UseFunctionDialog) 34 QtCore.QMetaObject.connectSlotsByName(UseFunctionDialog)
35 35
36 def retranslateUi(self, UseFunctionDialog): 36 def retranslateUi(self, UseFunctionDialog):
37 _translate = QtCore.QCoreApplication.translate 37 _translate = QtCore.QCoreApplication.translate
38 UseFunctionDialog.setWindowTitle(_translate("UseFunctionDialog", "Use Function")) 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())

eric ide

mercurial