1 from GUIComponent import GUIComponent
2 from enigma import eVideoWidget
4 class VideoWindow(GUIComponent):
5 def __init__(self, decoder = 1):
6 GUIComponent.__init__(self)
9 GUI_WIDGET = eVideoWidget
11 def postWidgetCreate(self, instance):
12 instance.setDecoder(self.decoder)