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): GUIComponent.__init__(self) def GUIcreate(self, parent): self.instance = eVideoWidget(parent) def GUIdelete(self): self.instance = None