X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/76ab06c06bdf77f0b0cecd225367862ef0de0d2f..4ea4f33a6a0382249996c4dae4db31ae2e059dbb:/lib/python/Components/ConfigList.py diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py index a54d27b1..9a68d428 100644 --- a/lib/python/Components/ConfigList.py +++ b/lib/python/Components/ConfigList.py @@ -14,22 +14,17 @@ 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): rcinput = eRCInput.getInstance() rcinput.setKeyboardMode(rcinput.kmAscii) - self.timer.timeout.get().append(self.timeout) + self.timer.callback.append(self.timeout) def execEnd(self): rcinput = eRCInput.getInstance() rcinput.setKeyboardMode(rcinput.kmNone) - 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 + self.timer.callback.remove(self.timeout) def toggle(self): selection = self.getCurrent() @@ -41,8 +36,6 @@ class ConfigList(HTMLComponent, GUIComponent, object): if selection and selection[1].enabled: selection[1].handleKey(key) self.invalidateCurrent() - if self.help_window: - self.help_window.update(selection[1]) if key in KEY_NUMBERS: self.timer.start(1000, 1) @@ -68,26 +61,23 @@ class ConfigList(HTMLComponent, GUIComponent, object): 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() @@ -119,13 +109,10 @@ class ConfigListScreen: { "gotAsciiCode": self.keyGotAscii, "ok": self.keyOK, - "accept": self.keyOK, "left": self.keyLeft, "right": self.keyRight, - "moveLeft": self.keyLeft, - "moveRight": self.keyRight, - "moveHome": self.keyHome, - "moveEnd": self.keyEnd, + "home": self.keyHome, + "end": self.keyEnd, "deleteForward": self.keyDelete, "deleteBackward": self.keyBackspace, "toggleOverwrite": self.keyToggleOW,