add about
authorRonny Strutz <ronny.strutz@multimedia-labs.de>
Sun, 28 Aug 2005 23:42:39 +0000 (23:42 +0000)
committerRonny Strutz <ronny.strutz@multimedia-labs.de>
Sun, 28 Aug 2005 23:42:39 +0000 (23:42 +0000)
remove SetupRCU

lib/python/Screens/About.py [new file with mode: 0644]
lib/python/Screens/Makefile.am

diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py
new file mode 100644 (file)
index 0000000..ae3ce39
--- /dev/null
@@ -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
index e645997d7e3b99f63ec35ef89e96125863788354..9250018ec0c821fbbbf394184aa1a0400a65eab7 100644 (file)
@@ -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 \
 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