diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-16 02:32:34 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-16 02:32:34 +0000 |
| commit | df9f96469021c23af6e5886e05bb9df004cb7c15 (patch) | |
| tree | 99cdbc376d9596e81c9625aea79f4de35801f685 /lib/python/Screens/Setup.py | |
| parent | eabcf8e80696baf83ecfac2aa44cf5a4853c4679 (diff) | |
| download | enigma2-df9f96469021c23af6e5886e05bb9df004cb7c15.tar.gz enigma2-df9f96469021c23af6e5886e05bb9df004cb7c15.zip | |
generic setup
Diffstat (limited to 'lib/python/Screens/Setup.py')
| -rw-r--r-- | lib/python/Screens/Setup.py | 15 |
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 + }) + |
