From: Felix Domke Date: Tue, 2 Jan 2007 15:23:25 +0000 (+0000) Subject: standby clock X-Git-Tag: 2.6.0~2530 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/974c5968c1a263879795003dfdbdda6f96030982 standby clock --- diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py index cbd123ae..ebac55a8 100644 --- a/lib/python/Screens/Standby.py +++ b/lib/python/Screens/Standby.py @@ -3,6 +3,8 @@ from Components.ActionMap import ActionMap from Components.config import config from Components.AVSwitch import AVSwitch from enigma import eDVBVolumecontrol, eDBoxLCD, eServiceReference +from Components.Sources.Clock import Clock + class Standby(Screen): def Power(self): @@ -35,7 +37,8 @@ class Standby(Screen): def __init__(self, session, infobar): Screen.__init__(self, session) self.infobar = infobar - self. avswitch = AVSwitch() + self.avswitch = AVSwitch() + print "enter standby" self["actions"] = ActionMap( [ "StandbyActions" ], @@ -51,3 +54,18 @@ class Standby(Screen): self.avswitch.setInput("SCART") #set lcd brightness to standby value eDBoxLCD.getInstance().setLCDBrightness(config.lcd.standby.value * 20) + + def createSummary(self): + return StandbySummary + +class StandbySummary(Screen): + skin = """ + + + + + """ + + def __init__(self, session, parent): + Screen.__init__(self, session) + self["CurrentTime"] = Clock()