13 from PyQt6.QtWidgets import QDialog |
13 from PyQt6.QtWidgets import QDialog |
14 |
14 |
15 from eric7.EricGui.EricAction import EricAction |
15 from eric7.EricGui.EricAction import EricAction |
16 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
17 from eric7.EricWidgets.EricApplication import ericApp |
17 from eric7.EricWidgets.EricApplication import ericApp |
18 from eric7.UI import Info |
18 from eric7.__version__ import VersionOnly |
19 |
19 |
20 # Start-Of-Header |
20 # Start-Of-Header |
21 __header__ = { |
21 __header__ = { |
22 "name": "QFileDialog Wizard Plugin", |
22 "name": "QFileDialog Wizard Plugin", |
23 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
23 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
24 "autoactivate": True, |
24 "autoactivate": True, |
25 "deactivateable": True, |
25 "deactivateable": True, |
26 "version": Info.VersionOnly, |
26 "version": VersionOnly, |
27 "className": "FileDialogWizard", |
27 "className": "FileDialogWizard", |
28 "packageName": "__core__", |
28 "packageName": "__core__", |
29 "shortDescription": "Show the QFileDialog wizard.", |
29 "shortDescription": "Show the QFileDialog wizard.", |
30 "longDescription": """This plugin shows the QFileDialog wizard.""", |
30 "longDescription": """This plugin shows the QFileDialog wizard.""", |
31 "pyqtApi": 2, |
31 "pyqtApi": 2, |