13 from PyQt6.QtGui import QPixmap |
13 from PyQt6.QtGui import QPixmap |
14 |
14 |
15 from eric7.UI import Info |
15 from eric7.UI import Info |
16 |
16 |
17 # Start-Of-Header |
17 # Start-Of-Header |
18 name = "Listspace Plugin" |
18 __header__ = { |
19 author = "Detlev Offenbach <detlev@die-offenbachs.de>" |
19 "name": "Listspace Plugin", |
20 autoactivate = False |
20 "author": "Detlev Offenbach <detlev@die-offenbachs.de>", |
21 deactivateable = False |
21 "autoactivate": False, |
22 version = Info.VersionOnly |
22 "deactivateable": False, |
23 pluginType = "viewmanager" |
23 "version": Info.VersionOnly, |
24 pluginTypename = "listspace" |
24 "pluginType": "viewmanager", |
25 displayString = QT_TRANSLATE_NOOP("VmListspacePlugin", "Listspace") |
25 "pluginTypename": "listspace", |
26 className = "VmListspacePlugin" |
26 "displayString": QT_TRANSLATE_NOOP("VmListspacePlugin", "Listspace"), |
27 packageName = "__core__" |
27 "className": "VmListspacePlugin", |
28 shortDescription = "Implements the Listspace view manager." |
28 "packageName": "__core__", |
29 longDescription = """This plugin provides the listspace view manager.""" |
29 "shortDescription": "Implements the Listspace view manager.", |
30 pyqtApi = 2 |
30 "longDescription": """This plugin provides the listspace view manager.""", |
|
31 "pyqtApi": 2, |
|
32 } |
31 # End-Of-Header |
33 # End-Of-Header |
32 |
34 |
33 error = "" |
35 error = "" # noqa: U200 |
34 |
36 |
35 |
37 |
36 def previewPix(): |
38 def previewPix(): |
37 """ |
39 """ |
38 Module function to return a preview pixmap. |
40 Module function to return a preview pixmap. |