11 from PyQt6.QtWidgets import QDialog |
11 from PyQt6.QtWidgets import QDialog |
12 |
12 |
13 from eric7.EricGui.EricAction import EricAction |
13 from eric7.EricGui.EricAction import EricAction |
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.__version__ import VersionOnly |
17 |
17 |
18 # Start-Of-Header |
18 # Start-Of-Header |
19 __header__ = { |
19 __header__ = { |
20 "name": "QInputDialog Wizard Plugin", |
20 "name": "QInputDialog Wizard Plugin", |
21 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
21 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
22 "autoactivate": True, |
22 "autoactivate": True, |
23 "deactivateable": True, |
23 "deactivateable": True, |
24 "version": Info.VersionOnly, |
24 "version": VersionOnly, |
25 "className": "InputDialogWizard", |
25 "className": "InputDialogWizard", |
26 "packageName": "__core__", |
26 "packageName": "__core__", |
27 "shortDescription": "Show the QInputDialog wizard.", |
27 "shortDescription": "Show the QInputDialog wizard.", |
28 "longDescription": """This plugin shows the QInputDialog wizard.""", |
28 "longDescription": """This plugin shows the QInputDialog wizard.""", |
29 "pyqtApi": 2, |
29 "pyqtApi": 2, |