follow itemHeight changes
[enigma2.git] / lib / python / Components / HelpMenuList.py
index e6f8539167cc93eb0d20e494fc19d037a6d5b993..7dc51faeed6fc68fb2be8a6c3c00b5b91e2163f9 100644 (file)
@@ -36,24 +36,28 @@ class HelpMenuList(GUIComponent):
                self.l.setList(l)
                
                self.l.setFont(0, gFont("Regular", 26))
+               self.l.setItemHeight(42)
        
        def ok(self):
                # a list entry has a "private" tuple as first entry...
-               l = self.l.getCurrentSelection()[0]
-               
+               l = self.getCurrent()
+               if l is None:
+                       return
                # ...containing (Actionmap, Context, Action, keydata).
                # we returns this tuple to the callback.
                self.callback(l[0], l[1], l[2])
        
        def getCurrent(self):
-               return self.l.getCurrentSelection()[0]
+               sel = self.l.getCurrentSelection()
+               return sel and sel[0]
 
-       def GUIcreate(self, parent):
-               self.instance = eListbox(parent)
-               self.instance.setContent(self.l)
-               self.instance.setItemHeight(42)
-               
-       def GUIdelete(self):
-               self.instance.setContent(None)
-               self.instance = None
+       GUI_WIDGET = eListbox
+
+       def postWidgetCreate(self, instance):
+               instance.setContent(self.l)
+
+               instance.selectionChanged.get().append(self.selectionChanged)
 
+       def selectionChanged(self):
+               for x in self.onSelChanged:
+                       x()