aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-26 13:41:46 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-26 13:41:46 +0000
commit2c15dca8aef39a4f75286ae57757efb31bbf926b (patch)
treee667fc70490aa1b555f7962625d6577ee659df19 /lib/python
parentf7ff87f985d26835958bb2404265f3029e35c72a (diff)
downloadenigma2-2c15dca8aef39a4f75286ae57757efb31bbf926b.tar.gz
enigma2-2c15dca8aef39a4f75286ae57757efb31bbf926b.zip
add pvr state window
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/PVRState.py11
-rw-r--r--lib/python/Screens/__init__.py3
2 files changed, 13 insertions, 1 deletions
diff --git a/lib/python/Screens/PVRState.py b/lib/python/Screens/PVRState.py
new file mode 100644
index 00000000..6ec0b0be
--- /dev/null
+++ b/lib/python/Screens/PVRState.py
@@ -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")
diff --git a/lib/python/Screens/__init__.py b/lib/python/Screens/__init__.py
index bb1428f1..a8e1851c 100644
--- a/lib/python/Screens/__init__.py
+++ b/lib/python/Screens/__init__.py
@@ -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"]