aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-28 23:42:39 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-08-28 23:42:39 +0000
commit6675ac314e701888a48e058e52674222878513cf (patch)
tree677af8f7b73a3f26bf48e44d6f154bec89a588fb /lib/python
parent301bab11f8453a6899153b7be338a352803b22cb (diff)
downloadenigma2-6675ac314e701888a48e058e52674222878513cf.tar.gz
enigma2-6675ac314e701888a48e058e52674222878513cf.zip
add about
remove SetupRCU
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/About.py24
-rw-r--r--lib/python/Screens/Makefile.am2
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