src/eric7/Plugins/PluginWizardQColorDialog.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 = "QColorDialog Wizard Plugin" 19 __header__ = {
20 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 20 "name": "QColorDialog 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 = "ColorDialogWizard" 24 "version": Info.VersionOnly,
25 packageName = "__core__" 25 "className": "ColorDialogWizard",
26 shortDescription = "Show the QColorDialog wizard." 26 "packageName": "__core__",
27 longDescription = """This plugin shows the QColorDialog wizard.""" 27 "shortDescription": "Show the QColorDialog wizard.",
28 pyqtApi = 2 28 "longDescription": """This plugin shows the QColorDialog 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 ColorDialogWizard(QObject): 36 class ColorDialogWizard(QObject):
35 """ 37 """
36 Class implementing the QColorDialog wizard plugin. 38 Class implementing the QColorDialog wizard plugin.

eric ide

mercurial