aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-16 02:32:34 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-16 02:32:34 +0000
commitdf9f96469021c23af6e5886e05bb9df004cb7c15 (patch)
tree99cdbc376d9596e81c9625aea79f4de35801f685 /lib
parenteabcf8e80696baf83ecfac2aa44cf5a4853c4679 (diff)
downloadenigma2-df9f96469021c23af6e5886e05bb9df004cb7c15.tar.gz
enigma2-df9f96469021c23af6e5886e05bb9df004cb7c15.zip
generic setup
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Screens/Setup.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py
new file mode 100644
index 00000000..6630923e
--- /dev/null
+++ b/lib/python/Screens/Setup.py
@@ -0,0 +1,15 @@
+from Screen import Screen
+from Components.ActionMap import ActionMap
+
+class Setup(Screen):
+ def __init__(self, session, setup):
+ Screen.__init__(self, session)
+
+ print "request setup for " + setup
+
+ self["actions"] = ActionMap(["OkCancelActions"],
+ {
+ #"ok": self.inc,
+ "cancel": self.close
+ })
+