aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-12 18:40:52 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-12 18:40:52 +0000
commit03368ffabdc8649667ba47d72fd2925ab909c9f3 (patch)
tree4d34d7b38d593564b7d4966eb686f649d0f2360a /lib/python
parent26c943f3c5251d676c93aa4b9bd6264b759f53fa (diff)
downloadenigma2-03368ffabdc8649667ba47d72fd2925ab909c9f3.tar.gz
enigma2-03368ffabdc8649667ba47d72fd2925ab909c9f3.zip
add
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Standby.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/python/Screens/Standby.py b/lib/python/Screens/Standby.py
new file mode 100644
index 00000000..1b648e55
--- /dev/null
+++ b/lib/python/Screens/Standby.py
@@ -0,0 +1,21 @@
+from Screen import Screen
+from Components.ActionMap import ActionMap
+
+class Standby(Screen):
+ def Power(self):
+ print "leave standby"
+ self.close()
+
+ def __init__(self, session):
+ Screen.__init__(self, session)
+
+ print "enter standby"
+
+ self["actions"] = ActionMap( [ "StandbyActions" ],
+ {
+ "power": self.Power
+ })
+
+ #stop/pause? playing services
+ #switch off avs
+ \ No newline at end of file