X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/80453c6467be812555d6839aa37adc83a2c69708..8d4316d824f584eb3900fef898de59c9aca8d771:/lib/python/Screens/HelpMenu.py diff --git a/lib/python/Screens/HelpMenu.py b/lib/python/Screens/HelpMenu.py index e947ac91..abef38db 100644 --- a/lib/python/Screens/HelpMenu.py +++ b/lib/python/Screens/HelpMenu.py @@ -1,42 +1,48 @@ from Screen import Screen - -from Components.Pixmap import * -from Components.Pixmap import Pixmap -from Components.Pixmap import MovingPixmap +from Components.Pixmap import Pixmap, MovingPixmap from Components.Label import Label -from Components.Slider import Slider from Components.ActionMap import ActionMap from Components.HelpMenuList import HelpMenuList -import string -from xml.sax import make_parser -from xml.sax.handler import ContentHandler -from Components.MenuList import MenuList +from Screens.Rc import Rc -class HelpMenu(Screen): +class HelpMenu(Screen, Rc): def __init__(self, session, list): Screen.__init__(self, session) self.onSelChanged = [ ] - self["list"] = HelpMenuList(list, self.close) self["list"].onSelChanged.append(self.SelectionChanged) - - self["rc"] = Pixmap() - self["arrowup"] = MovingPixmap() + Rc.__init__(self) + self["long_key"] = Label("") self["actions"] = ActionMap(["WizardActions"], { "ok": self["list"].ok, "back": self.close, }, -1) - + + self.onLayoutFinish.append(self.SelectionChanged) + def SelectionChanged(self): - selection = self["list"].getCurrent()[3] - if selection is None: - self["arrowup"].instance.hide() + self.clearSelectedKeys() + selection = self["list"].getCurrent() + selection = selection[3] + #arrow = self["arrowup"] + print "selection:", selection + + if selection and len(selection) > 1 and selection[1] == "SHIFT": + self.selectKey("SHIFT") + + if selection and len(selection) > 1 and selection[1] == "long": + self["long_key"].setText(_("Long Keypress")) else: - self["arrowup"].moveTo(selection[1], selection[2], 1) - self["arrowup"].startMoving() - self["arrowup"].instance.show() + self["long_key"].setText("") + + self.selectKey(selection[0]) + #if selection is None: + print "select arrow" + # arrow.moveTo(selection[1], selection[2], 1) + # arrow.startMoving() + # arrow.show() class HelpableScreen: def __init__(self): @@ -44,8 +50,10 @@ class HelpableScreen: { "displayHelp": self.showHelp, }) + def showHelp(self): self.session.openWithCallback(self.callHelpAction, HelpMenu, self.helpList) + def callHelpAction(self, *args): if len(args): (actionmap, context, action) = args