From 6675ac314e701888a48e058e52674222878513cf Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Sun, 28 Aug 2005 23:42:39 +0000 Subject: [PATCH] add about remove SetupRCU --- lib/python/Screens/About.py | 24 ++++++++++++++++++++++++ lib/python/Screens/Makefile.am | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 lib/python/Screens/About.py diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py new file mode 100644 index 0000000..ae3ce39 --- /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 e645997..9250018 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 -- 2.7.4