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