aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+ })
+