from HTMLComponent import HTMLComponent
from GUIComponent import GUIComponent
-from config import KEY_LEFT, KEY_RIGHT, KEY_0, KEY_DELETE, KEY_OK, KEY_TIMEOUT, ConfigElement
+from config import KEY_LEFT, KEY_RIGHT, KEY_HOME, KEY_END, KEY_0, KEY_DELETE, KEY_BACKSPACE, KEY_OK, KEY_TOGGLEOW, KEY_ASCII, KEY_TIMEOUT, KEY_NUMBERS, ConfigElement
from Components.ActionMap import NumberActionMap
-from enigma import eListbox, eListboxPythonConfigContent, eTimer
+from enigma import eListbox, eListboxPythonConfigContent, eRCInput, eTimer
from Screens.MessageBox import MessageBox
class ConfigList(HTMLComponent, GUIComponent, object):
self.list = list
self.onSelectionChanged = [ ]
self.current = None
- self.help_window = None
- self.setHelpWindowSession(session)
+ self.session = session
def execBegin(self):
- self.timer.timeout.get().append(self.timeout)
+ rcinput = eRCInput.getInstance()
+ rcinput.setKeyboardMode(rcinput.kmAscii)
+ self.timer.callback.append(self.timeout)
def execEnd(self):
- self.timer.timeout.get().remove(self.timeout)
-
- def setHelpWindowSession(self, session):
- assert self.help_window is None, "you can't move a help window to another session"
- self.session = session
+ rcinput = eRCInput.getInstance()
+ rcinput.setKeyboardMode(rcinput.kmNone)
+ self.timer.callback.remove(self.timeout)
def toggle(self):
selection = self.getCurrent()
if selection and selection[1].enabled:
selection[1].handleKey(key)
self.invalidateCurrent()
- if self.help_window:
- self.help_window.update(selection[1])
- if key not in [KEY_TIMEOUT, KEY_LEFT, KEY_RIGHT, KEY_DELETE, KEY_OK]:
+ if key in KEY_NUMBERS:
self.timer.start(1000, 1)
def getCurrent(self):
def getCurrentIndex(self):
return self.l.getCurrentSelectionIndex()
+ def setCurrentIndex(self, index):
+ if self.instance is not None:
+ self.instance.moveSelectionTo(index)
+
def invalidateCurrent(self):
self.l.invalidateEntry(self.l.getCurrentSelectionIndex())
GUI_WIDGET = eListbox
def selectionChanged(self):
- n = self.getCurrent()
-
- if self.help_window:
- self.session.deleteDialog(self.help_window)
-
- nh = n and n[1].helpWindow()
- if nh is not None and self.session is not None:
- self.help_window = self.session.instantiateDialog(*nh)
- self.help_window.show()
-
- self.current = n
+ if self.current:
+ self.current[1].onDeselect(self.session)
+ self.current = self.getCurrent()
+ if self.current:
+ self.current[1].onSelect(self.session)
for x in self.onSelectionChanged:
x()
def postWidgetCreate(self, instance):
- instance.setContent(self.l)
instance.selectionChanged.get().append(self.selectionChanged)
+ instance.setContent(self.l)
def preWidgetRemove(self, instance):
+ if self.current:
+ self.current[1].onDeselect(self.session)
instance.selectionChanged.get().remove(self.selectionChanged)
+ instance.setContent(None)
def setList(self, l):
self.timer.stop()
class ConfigListScreen:
def __init__(self, list, session = None, on_change = None):
- self["config_actions"] = NumberActionMap(["SetupActions", "TextInputActions"],
+ self["config_actions"] = NumberActionMap(["SetupActions", "InputAsciiActions", "KeyboardInputActions"],
{
+ "gotAsciiCode": self.keyGotAscii,
"ok": self.keyOK,
"left": self.keyLeft,
"right": self.keyRight,
- "delete": self.keyDelete,
+ "home": self.keyHome,
+ "end": self.keyEnd,
+ "deleteForward": self.keyDelete,
+ "deleteBackward": self.keyBackspace,
+ "toggleOverwrite": self.keyToggleOW,
"1": self.keyNumberGlobal,
"2": self.keyNumberGlobal,
"3": self.keyNumberGlobal,
self["config"].handleKey(KEY_RIGHT)
self.__changed()
+ def keyHome(self):
+ self["config"].handleKey(KEY_HOME)
+ self.__changed()
+
+ def keyEnd(self):
+ self["config"].handleKey(KEY_END)
+ self.__changed()
+
def keyDelete(self):
self["config"].handleKey(KEY_DELETE)
self.__changed()
+ def keyBackspace(self):
+ self["config"].handleKey(KEY_BACKSPACE)
+ self.__changed()
+
+ def keyToggleOW(self):
+ self["config"].handleKey(KEY_TOGGLEOW)
+ self.__changed()
+
+ def keyGotAscii(self):
+ self["config"].handleKey(KEY_ASCII)
+ self.__changed()
+
def keyNumberGlobal(self, number):
self["config"].handleKey(KEY_0 + number)
self.__changed()