src/eric7/Plugins/PluginWizardQInputDialog.py

branch
eric7
changeset 10061
8bdad5699288
parent 9653
e67609152c5e
child 10331
c1a2ff7e3575
equal deleted inserted replaced
10060:b946699e9e79 10061:8bdad5699288
14 from eric7.EricWidgets import EricMessageBox 14 from eric7.EricWidgets import EricMessageBox
15 from eric7.EricWidgets.EricApplication import ericApp 15 from eric7.EricWidgets.EricApplication import ericApp
16 from eric7.UI import Info 16 from eric7.UI import Info
17 17
18 # Start-Of-Header 18 # Start-Of-Header
19 name = "QInputDialog Wizard Plugin" 19 __header__ = {
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 20 "name": "QInputDialog Wizard Plugin",
21 autoactivate = True 21 "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
22 deactivateable = True 22 "autoactivate": True,
23 version = Info.VersionOnly 23 "deactivateable": True,
24 className = "InputDialogWizard" 24 "version": Info.VersionOnly,
25 packageName = "__core__" 25 "className": "InputDialogWizard",
26 shortDescription = "Show the QInputDialog wizard." 26 "packageName": "__core__",
27 longDescription = """This plugin shows the QInputDialog wizard.""" 27 "shortDescription": "Show the QInputDialog wizard.",
28 pyqtApi = 2 28 "longDescription": """This plugin shows the QInputDialog wizard.""",
29 "pyqtApi": 2,
30 }
29 # End-Of-Header 31 # End-Of-Header
30 32
31 error = "" 33 error = "" # noqa: U200
32 34
33 35
34 class InputDialogWizard(QObject): 36 class InputDialogWizard(QObject):
35 """ 37 """
36 Class implementing the QInputDialog wizard plugin. 38 Class implementing the QInputDialog wizard plugin.

eric ide

mercurial