db247980caf69e738dafd086c136bd3ffe69cc0a
[enigma2.git] / lib / python / Components / VideoWindow.py
1 from GUIComponent import GUIComponent
2 from enigma import eVideoWidget
3
4 class VideoWindow(GUIComponent):
5         def __init__(self):
6                 GUIComponent.__init__(self)
7         
8         def GUIcreate(self, parent):
9                 self.instance = eVideoWidget(parent)
10
11         def GUIdelete(self):
12                 self.instance = None