add VideoWindow Component
[enigma2.git] / lib / python / Components / VideoWindow.py
diff --git a/lib/python/Components/VideoWindow.py b/lib/python/Components/VideoWindow.py
new file mode 100644 (file)
index 0000000..db24798
--- /dev/null
@@ -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