aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/HelpMenuList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-15 01:17:14 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-15 01:17:14 +0000
commit80453c6467be812555d6839aa37adc83a2c69708 (patch)
tree07f90c1b5743702cec8110f9030f97807a5ae950 /lib/python/Components/HelpMenuList.py
parent5a6917c166569dee402a82e384ec85d7adf61fa7 (diff)
downloadenigma2-80453c6467be812555d6839aa37adc83a2c69708.tar.gz
enigma2-80453c6467be812555d6839aa37adc83a2c69708.zip
new help
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
-rw-r--r--lib/python/Components/HelpMenuList.py57
1 files changed, 28 insertions, 29 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py
index 521496b6..c8ff3795 100644
--- a/lib/python/Components/HelpMenuList.py
+++ b/lib/python/Components/HelpMenuList.py
@@ -3,13 +3,14 @@ from GUIComponent import *
from enigma import eListboxPythonMultiContent, eListbox, gFont
from Tools.KeyBindings import queryKeyBinding, getKeyDescription
+#getKeyPositions
# [ ( actionmap, context, [(action, help), (action, help), ...] ), (actionmap, ... ), ... ]
class HelpMenuList(GUIComponent):
def __init__(self, list, callback):
GUIComponent.__init__(self)
-
+ self.onSelChanged = [ ]
self.l = eListboxPythonMultiContent()
self.callback = callback
@@ -18,48 +19,46 @@ class HelpMenuList(GUIComponent):
for (action, help) in actions:
entry = [ ]
- entry.append( (actionmap, context, action) )
buttons = queryKeyBinding(context, action)
- buttonstring = ""
-
- first = True
+
+ name = None
+
for n in buttons:
name = getKeyDescription(n)
- if name is None:
- continue
-
- if not first:
- buttonstring += ", or "
-
- first = False
- buttonstring += name
+ if name is not None:
+ break
- if not first:
- buttonstring = "You can also press " + buttonstring + "."
-
- entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 550, 36, 0, 0, help) )
- entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 40, 550, 20, 1, 0, buttonstring) )
+ entry.append( (actionmap, context, action, name ) )
+ entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 400, 28, 0, 0, help) )
l.append(entry)
self.l.setList(l)
- self.l.setFont(0, gFont("Regular", 36))
- self.l.setFont(1, gFont("Regular", 18))
+ self.l.setFont(0, gFont("Regular", 26))
+ def ok(self):
+ # a list entry has a "private" tuple as first entry...
+ l = self.l.getCurrentSelection()[0]
+
+ # ...containing (Actionmap, Context, Action, keydata).
+ # we returns this tuple to the callback.
+ self.callback(l[0], l[1], l[2])
+
+ def getCurrent(self):
+ return self.l.getCurrentSelection()[0]
+
def GUIcreate(self, parent):
self.instance = eListbox(parent)
self.instance.setContent(self.l)
- self.instance.setItemHeight(75)
-
+ self.instance.setItemHeight(42)
+ self.instance.selectionChanged.get().append(self.selectionChanged)
+
def GUIdelete(self):
self.instance.setContent(None)
+ self.instance.selectionChanged.get().remove(self.selectionChanged)
self.instance = None
- def ok(self):
- # a list entry has a "private" tuple as first entry...
- l = self.l.getCurrentSelection()[0]
-
- # ...containing (Actionmap, Context, Action).
- # we returns this tuple to the callback.
- self.callback(l[0], l[1], l[2])
+ def selectionChanged(self):
+ for x in self.onSelChanged:
+ x()