1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
from GUIComponent import *
from enigma import eListboxPythonMultiContent, eListbox, gFont
from Tools.KeyBindings import queryKeyBinding, getKeyDescription
# [ ( actionmap, context, [(action, help), (action, help), ...] ), (actionmap, ... ), ... ]
class HelpMenuList(GUIComponent):
def __init__(self, list, callback):
GUIComponent.__init__(self)
self.l = eListboxPythonMultiContent()
self.callback = callback
l = [ ]
for (actionmap, context, actions) in list:
for (action, help) in actions:
entry = [ ]
entry.append( (actionmap, context, action) )
buttons = queryKeyBinding(context, action)
buttonstring = ""
first = True
for n in buttons:
name = getKeyDescription(n)
if name is None:
continue
if not first:
buttonstring += ", or "
first = False
buttonstring += name
if not first:
buttonstring = "You can also press " + buttonstring + "."
entry.append( (0, 0, 200, 36, 0, 0, help) )
entry.append( (0, 40, 200, 20, 1, 0, buttonstring) )
l.append(entry)
self.l.setList(l)
self.l.setFont(0, gFont("Regular", 36))
self.l.setFont(1, gFont("Regular", 18))
def GUIcreate(self, parent):
self.instance = eListbox(parent)
self.instance.setContent(self.l)
self.instance.setItemHeight(75)
def GUIdelete(self):
self.instance.setContent(None)
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])
|