From fe798a5d31319171dbb76c6d9fec268e691d3f77 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Sun, 11 Dec 2005 01:42:36 +0000 Subject: finish language-menu - the RT_VALIGN_CENTER doesn't work in eListboxPythonMultiContent... why? add language-screen to the start-wizard, which breaks the startwizard. bug in screen-handling? --- lib/python/Components/LanguageList.py | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lib/python/Components/LanguageList.py (limited to 'lib/python/Components/LanguageList.py') diff --git a/lib/python/Components/LanguageList.py b/lib/python/Components/LanguageList.py new file mode 100644 index 00000000..82b13eeb --- /dev/null +++ b/lib/python/Components/LanguageList.py @@ -0,0 +1,40 @@ +from HTMLComponent import * +from GUIComponent import * + +from MenuList import MenuList + +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 LanguageEntryComponent(file, name): + res = [ None ] + res.append((70, 0, 400, 30, 0, RT_HALIGN_LEFT, name)) + png = loadPNG("/usr/share/enigma2/countries/" + file + ".png") + if png == None: + png = loadPNG("/usr/share/enigma2/countries/missing.png") + res.append((0, 5, 60, 40, png)) + + return res + + +class LanguageList(HTMLComponent, GUIComponent, MenuList): + def __init__(self, list): + GUIComponent.__init__(self) + self.l = eListboxPythonMultiContent() + self.list = list + self.l.setList(list) + self.l.setFont(0, gFont("Arial", 25)) + + def GUIcreate(self, parent): + self.instance = eListbox(parent) + self.instance.setContent(self.l) + self.instance.setItemHeight(50) + -- cgit v1.2.3