add pvr state window
authorFelix Domke <tmbinc@elitedvb.net>
Thu, 26 Jan 2006 13:41:46 +0000 (13:41 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Thu, 26 Jan 2006 13:41:46 +0000 (13:41 +0000)
lib/python/Screens/PVRState.py [new file with mode: 0644]
lib/python/Screens/__init__.py

diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py
new file mode 100644 (file)
index 0000000..6ec0b0b
--- /dev/null
@@ -0,0 +1,11 @@
+from Screen import Screen
+
+from Components.Label import Label
+
+from enigma import *
+
+class PVRState(Screen):
+       def __init__(self, session):
+               Screen.__init__(self, session)
+               
+               self["state"] = Label(text="blub")
index bb1428f141dd5bb2bf4dfd7574252463a3aa3845..a8e1851ca2971079a5e8a4a2d2024eb0477ea908 100644 (file)
@@ -4,4 +4,5 @@ __all__ = ["ChannelSelection", "ClockDisplay", "ConfigMenu",
        "TimerEdit", "Setup", "HarddiskSetup", "FixedMenu",
        "Satconfig", "Scanconfig", "Ci.py", "Volume.py", "Mute.py",
        "EpgSelection", "EventView", "Standby", "ServiceInfo",
-       "AudioSelection", "SubserviceSelection", "InfoBarGenerics", "HelpMenu", "Wizard"]
+       "AudioSelection", "SubserviceSelection", "InfoBarGenerics", "HelpMenu", "Wizard",
+       "PVRState"]