diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Network.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/python/Screens/Network.py b/lib/python/Screens/Network.py new file mode 100644 index 00000000..b71ac328 --- /dev/null +++ b/lib/python/Screens/Network.py @@ -0,0 +1,23 @@ +from Screen import Screen +from Components.ActionMap import ActionMap +from Components.Label import Label + + +class Network(Screen): + def __init__(self, session): + Screen.__init__(self, session) + + self["text"] = Label("Enigma v2.0a") + + self["tuner"] = Label("Detected NIMs:") + self["tunerA"] = Label(" Tuner A: Fujitsu QST (DVB-S)") + self["tunerB"] = Label(" Tuner B: Fujitsu QST (DVB-S)") + + self["hdd"] = Label("Detected HDD:") + self["hddA"] = Label(" not found") + + self["actions"] = ActionMap(["SetupActions"], + { + "cancel": self.close, + "ok": self.close, + }) |
