diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/About.py | 24 | ||||
| -rw-r--r-- | lib/python/Screens/Makefile.am | 2 |
2 files changed, 25 insertions, 1 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py new file mode 100644 index 00000000..ae3ce394 --- /dev/null +++ b/lib/python/Screens/About.py @@ -0,0 +1,24 @@ +from Screen import Screen +from Components.ActionMap import ActionMap +from Components.Label import Label + + +class About(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, + }) +
\ No newline at end of file diff --git a/lib/python/Screens/Makefile.am b/lib/python/Screens/Makefile.am index e645997d..9250018e 100644 --- a/lib/python/Screens/Makefile.am +++ b/lib/python/Screens/Makefile.am @@ -3,4 +3,4 @@ installdir = $(LIBDIR)/enigma2/python/Screens install_DATA = \ ChannelSelection.py ClockDisplay.py ConfigMenu.py InfoBar.py Menu.py \ MessageBox.py ScartLoopThrough.py Screen.py ServiceScan.py TimerEdit.py \ - MovieSelection.py SetupRCU.py Setup.py __init__.py + MovieSelection.py Setup.py __init__.py |
