2 from Screens.Screen import Screen
3 from Screens.MessageBox import MessageBox
4 from Components.ActionMap import NumberActionMap
5 from Components.Label import Label
6 from Components.MenuList import MenuList
7 from Components.GUIComponent import *
8 from Components.ChoiceList import ChoiceEntryComponent, ChoiceList
12 class ChoiceBox(Screen):
13 def __init__(self, session, title = "", list = [], keys = None, selection = 0):
14 Screen.__init__(self, session)
16 self["text"] = Label(title)
19 self.__keys = [ "1", "2", "3", "4", "5", "6", "7", "8", "9", "0", "red", "green", "yellow", "blue" ] + (len(list) - 10) * [""]
21 self.__keys = keys + (len(list) - len(keys)) * [""]
26 strpos = str(self.__keys[pos])
27 self.list.append(ChoiceEntryComponent(key = strpos, text = x))
28 if self.__keys[pos] != "":
29 self.keymap[self.__keys[pos]] = list[pos]
31 self["list"] = ChoiceList(list = self.list, selection = selection)
33 self["actions"] = NumberActionMap(["WizardActions", "InputActions", "ColorActions", "DirectionActions"],
37 "1": self.keyNumberGlobal,
38 "2": self.keyNumberGlobal,
39 "3": self.keyNumberGlobal,
40 "4": self.keyNumberGlobal,
41 "5": self.keyNumberGlobal,
42 "6": self.keyNumberGlobal,
43 "7": self.keyNumberGlobal,
44 "8": self.keyNumberGlobal,
45 "9": self.keyNumberGlobal,
46 "0": self.keyNumberGlobal,
48 "green": self.keyGreen,
49 "yellow": self.keyYellow,
62 if len(self["list"].list) > 0:
64 self["list"].instance.moveSelection(self["list"].instance.moveUp)
65 if self["list"].l.getCurrentSelection()[0][0] != "--" or self["list"].l.getCurrentSelectionIndex() == 0:
69 if len(self["list"].list) > 0:
71 self["list"].instance.moveSelection(self["list"].instance.moveDown)
72 if self["list"].l.getCurrentSelection()[0][0] != "--" or self["list"].l.getCurrentSelectionIndex() == len(self["list"].list) - 1:
75 # runs a number shortcut
76 def keyNumberGlobal(self, number):
77 self.goKey(str(number))
79 # runs the current selected entry
81 self.goEntry(self["list"].l.getCurrentSelection()[0])
83 # runs a specific entry
84 def goEntry(self, entry):
85 if len(entry) > 2 and isinstance(entry[1], str) and entry[1] == "CALLFUNC":
86 # CALLFUNC wants to have the current selection as argument
87 arg = self["list"].l.getCurrentSelection()[0]
92 # lookups a key in the keymap, then runs it
94 if self.keymap.has_key(key):
95 entry = self.keymap[key]
98 # runs a color shortcut