X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=mytest.py;h=0ec61dde090a6911685b3486fc42908c518b6efb;hp=99695e0525d0b9de620ba3501cfe614e01b6474b;hb=439941c4d23e8384ea334d599b42b338beb7ebd5;hpb=3c919c91a7778a049bad0317f6f7df86ff509415 diff --git a/mytest.py b/mytest.py index 99695e0..0ec61dd 100755 --- a/mytest.py +++ b/mytest.py @@ -405,6 +405,34 @@ class PowerKey: if not Screens.Standby.inStandby and self.session.current_dialog and self.session.current_dialog.ALLOW_SUSPEND and self.session.in_exec: self.session.open(Screens.Standby.Standby) +class TimerKey: + def __init__(self, session): + self.session = session + globalActionMap.actions["timer_down"]=self.timerDown + globalActionMap.actions["timer_up"]=self.timerUp + self.timerblocked = 1 + + def MenuClosed(self, *val): + self.session.infobar = None + + def doAction(self): + self.timerblocked = 1 + + if self.session.current_dialog and not self.session.current_dialog.ALLOW_SUSPEND: + return + + self.session.infobar = self + from Screens.TimerEdit import TimerEditList + menu_screen = self.session.openWithCallback(self.MenuClosed, TimerEditList) + return + + def timerDown(self): + self.timerblocked = 0 + + def timerUp(self): + if self.timerblocked == 0: + self.doAction() + profile("Scart") from Screens.Scart import Scart @@ -489,6 +517,9 @@ def runScreenTest(): profile("Init:PowerKey") power = PowerKey(session) + profile("Init:TimerKey") + timer = TimerKey(session) + # we need session.scart to access it from within menu.xml session.scart = AutoScartControl(session)