aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/VideoWindow.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/VideoWindow.py')
-rw-r--r--lib/python/Components/VideoWindow.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/python/Components/VideoWindow.py b/lib/python/Components/VideoWindow.py
new file mode 100644
index 00000000..db247980
--- /dev/null
+++ b/lib/python/Components/VideoWindow.py
@@ -0,0 +1,12 @@
+from GUIComponent import GUIComponent
+from enigma import eVideoWidget
+
+class VideoWindow(GUIComponent):
+ def __init__(self):
+ GUIComponent.__init__(self)
+
+ def GUIcreate(self, parent):
+ self.instance = eVideoWidget(parent)
+
+ def GUIdelete(self):
+ self.instance = None