add pvr state window
[vuplus_dvbapp] / lib / python / Screens / PVRState.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")