X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d5cacc98a3f6f21cb03e29bf5dac733c710cc49d..a782957c5f914aebbf1bbc458bb3cb046ebb4c7b:/lib/python/Plugins/Plugin.py diff --git a/lib/python/Plugins/Plugin.py b/lib/python/Plugins/Plugin.py index 3db70397..b2808c8e 100644 --- a/lib/python/Plugins/Plugin.py +++ b/lib/python/Plugins/Plugin.py @@ -11,6 +11,8 @@ class PluginDescriptor: # servicereference # reason + # you have to ignore unknown kwargs! + # argument: session WHERE_BLUEMENU = 0 WHERE_MAINMENU = 1 @@ -26,6 +28,13 @@ class PluginDescriptor: # start as wizard. In that case, fnc must be a screen class! WHERE_WIZARD = 6 + # like autostart, but for a session. currently, only session starts are + # delivered, and only on pre-loaded plugins + WHERE_SESSIONSTART = 7 + + # start as teletext plugin. arguments: session, serviceref + WHERE_TELETEXT = 8 + def __init__(self, name = "Plugin", where = [ ], description = "", icon = None, fnc = None): self.name = name if type(where) is list: @@ -44,7 +53,7 @@ class PluginDescriptor: def updateIcon(self, path): if type(self.iconstr) is str: - self.icon = loadPNG(path + self.iconstr) + self.icon = loadPNG(path + "/" + self.iconstr) else: self.icon = None