aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/LanguageList.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-11 01:42:36 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-11 01:42:36 +0000
commitfe798a5d31319171dbb76c6d9fec268e691d3f77 (patch)
treec4165575c6780e0b9f96428d8b69b14a5de7aea8 /lib/python/Components/LanguageList.py
parent490bc59fbd4777f1a5041a71c1de7c5e76ff1eae (diff)
downloadenigma2-fe798a5d31319171dbb76c6d9fec268e691d3f77.tar.gz
enigma2-fe798a5d31319171dbb76c6d9fec268e691d3f77.zip
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?
Diffstat (limited to 'lib/python/Components/LanguageList.py')
-rw-r--r--lib/python/Components/LanguageList.py40
1 files changed, 40 insertions, 0 deletions
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)
+