use MultiContent wraps in plugin list
authorFelix Domke <tmbinc@elitedvb.net>
Fri, 24 Feb 2006 22:37:30 +0000 (22:37 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Fri, 24 Feb 2006 22:37:30 +0000 (22:37 +0000)
lib/python/Components/MultiContent.py
lib/python/Components/PluginList.py

index a72834197183091d2d670ac2fd0d9233cc3c6d17..dab096d352c7c81ecbb43e03883c46755fe143a3 100644 (file)
@@ -11,5 +11,8 @@ RT_WRAP = 32
 
 from enigma import eListboxPythonMultiContent
 
-def MultiContentEntryText(pos = (0, 0), size = (0, 0), font = 0, flags = 0, text = "", private = ()):
-       return (eListboxPythonMultiContent.TYPE_TEXT, pos[0], pos[1], size[0], size[1], font, flags, text) + private
+def MultiContentEntryText(pos = (0, 0), size = (0, 0), font = 0, flags = RT_HALIGN_LEFT | RT_VALIGN_TOP, text = ""):
+       return (eListboxPythonMultiContent.TYPE_TEXT, pos[0], pos[1], size[0], size[1], font, flags, text)
+
+def MultiContentEntryPixmap(pos = (0, 0), size = (0, 0), png = None):
+       return (eListboxPythonMultiContent.TYPE_PIXMAP, pos[0], pos[1], size[0], size[1], png)
index b9b5bcc7f92f2994198f7d62be7d0184a08c8af2..226820334d25e7d8d74e681850973648c0cd2b90 100644 (file)
@@ -3,30 +3,22 @@ from GUIComponent import *
 
 from MenuList import MenuList
 
-from Tools.Directories import *
+from Tools.Directories import resolveFilename, SCOPE_SKIN_IMAGE
+from Components.MultiContent import RT_HALIGN_LEFT, MultiContentEntryText, MultiContentEntryPixmap
 
 from enigma import *
 
-RT_HALIGN_LEFT = 0
-RT_HALIGN_RIGHT = 1
-RT_HALIGN_CENTER = 2
-RT_HALIGN_BLOCK = 4
-
-RT_VALIGN_TOP = 0
-RT_VALIGN_CENTER = 8
-RT_VALIGN_BOTTOM = 16
-
 def PluginEntryComponent(plugin):
        res = [ plugin ]
        
-       res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 5, 300, 25, 0, RT_HALIGN_LEFT, plugin.name))
-       res.append((eListboxPythonMultiContent.TYPE_TEXT, 80, 26, 300, 17, 1, RT_HALIGN_LEFT, plugin.description))
+       res.append(MultiContentEntryText(pos=(80, 5), size=(300, 25), font=0, text=plugin.name))
+       res.append(MultiContentEntryText(pos=(80, 26), size=(300, 17), font=1, text=plugin.description))
 
        if plugin.icon is None:
                png = loadPNG(resolveFilename(SCOPE_SKIN_IMAGE, "/plugin.png"))
        else:
                png = plugin.icon
-       res.append((eListboxPythonMultiContent.TYPE_PIXMAP, 10, 5, 60, 40, png))
+       res.append(MultiContentEntryPixmap(pos=(10, 5), size=(60, 40), png = png))
        
        return res