8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import QObject |
10 from PyQt6.QtCore import QObject |
11 from PyQt6.QtGui import QAction |
11 from PyQt6.QtGui import QAction |
12 |
12 |
|
13 from eric7.__version__ import VersionOnly |
13 from eric7.EricGui import EricPixmapCache |
14 from eric7.EricGui import EricPixmapCache |
14 from eric7.EricGui.EricAction import EricAction |
15 from eric7.EricGui.EricAction import EricAction |
15 from eric7.EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
16 from eric7.UI import Info |
17 from eric7.UI import Info |
17 |
18 |
19 __header__ = { |
20 __header__ = { |
20 "name": "About Plugin", |
21 "name": "About Plugin", |
21 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
22 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
22 "autoactivate": True, |
23 "autoactivate": True, |
23 "deactivateable": True, |
24 "deactivateable": True, |
24 "version": Info.VersionOnly, |
25 "version": VersionOnly, |
25 "className": "AboutPlugin", |
26 "className": "AboutPlugin", |
26 "packageName": "__core__", |
27 "packageName": "__core__", |
27 "shortDescription": "Show the About dialogs.", |
28 "shortDescription": "Show the About dialogs.", |
28 "longDescription": """This plugin shows the About dialogs.""", |
29 "longDescription": """This plugin shows the About dialogs.""", |
29 "pyqtApi": 2, |
30 "pyqtApi": 2, |