aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-02-15 15:50:59 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-02-15 15:50:59 +0000
commit94508f85d46155eb05868cada7b34bb2b4a667a5 (patch)
treebf7572d791ae221a06946c903a17945bbddf0596 /lib/python/Components
parent1a356266af95c3dcf2d85baee824a1bae55c5de2 (diff)
downloadenigma2-94508f85d46155eb05868cada7b34bb2b4a667a5.tar.gz
enigma2-94508f85d46155eb05868cada7b34bb2b4a667a5.zip
fix and simplify PluginList
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/PluginList.py17
1 files changed, 3 insertions, 14 deletions
diff --git a/lib/python/Components/PluginList.py b/lib/python/Components/PluginList.py
index 153c61a5..7b995fa5 100644
--- a/lib/python/Components/PluginList.py
+++ b/lib/python/Components/PluginList.py
@@ -1,6 +1,3 @@
-from HTMLComponent import HTMLComponent
-from GUIComponent import GUIComponent
-
from MenuList import MenuList
from Tools.Directories import resolveFilename, SCOPE_SKIN_IMAGE
@@ -45,17 +42,9 @@ def PluginDownloadComponent(plugin, name):
return res
-class PluginList(MenuList, HTMLComponent, GUIComponent):
- def __init__(self, list):
- GUIComponent.__init__(self)
- self.l = eListboxPythonMultiContent()
- self.list = list
- self.l.setList(list)
+class PluginList(MenuList):
+ def __init__(self, list, enableWrapAround=False):
+ MenuList.__init__(self, list, enableWrapAround, eListboxPythonMultiContent())
self.l.setFont(0, gFont("Regular", 20))
self.l.setFont(1, gFont("Regular", 14))
self.l.setItemHeight(50)
-
- GUI_WIDGET = eListbox
-
- def postWidgetCreate(self, instance):
- instance.setContent(self.l)