simplify, cleanup and fix ParentalControlList
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Fri, 15 Feb 2008 16:11:57 +0000 (16:11 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Fri, 15 Feb 2008 16:11:57 +0000 (16:11 +0000)
lib/python/Components/ParentalControlList.py

index 489cb13..602e1e5 100644 (file)
@@ -1,6 +1,3 @@
-from HTMLComponent import HTMLComponent
-from GUIComponent import GUIComponent
-
 from MenuList import MenuList
 from Components.ParentalControl import parentalControl
 from Tools.Directories import SCOPE_SKIN_IMAGE, resolveFilename
@@ -17,24 +14,12 @@ def ParentalControlEntryComponent(service, name, locked = True):
                res.append((eListboxPythonMultiContent.TYPE_PIXMAP_ALPHATEST, 0, 0, 32, 32, lockPicture))
        return res
 
-class ParentalControlList(MenuList, HTMLComponent, GUIComponent):
-       def __init__(self, list):
-               GUIComponent.__init__(self)
-               self.l = eListboxPythonMultiContent()
-               self.list = list
-               self.l.setList(list)
+class ParentalControlList(MenuList):
+       def __init__(self, list, enableWrapAround = False):
+               MenuList.__init__(self, list, enableWrapAround, eListboxPythonMultiContent())
                self.l.setFont(0, gFont("Regular", 20))
                self.l.setItemHeight(32)
 
-       GUI_WIDGET = eListbox
-       
-       def setList(self, list):
-               self.list = list
-               self.l.setList(list)
-               
-       def postWidgetCreate(self, instance):
-               instance.setContent(self.l)
-
        def toggleSelectedLock(self):
                print "self.l.getCurrentSelection():", self.l.getCurrentSelection()
                print "self.l.getCurrentSelectionIndex():", self.l.getCurrentSelectionIndex()