retune after sending a diseqc command in the positioner setup plugin
[enigma2.git] / lib / python / Plugins / Plugin.py
index 3db703979cc622e281d34f2de4003d2852a7efa5..b2808c8ec6838da15733c38824560ab53b7838e7 100644 (file)
@@ -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