X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/bf976ae7302a8f3e2b6ecde2336a9cbef890720d..10db7be1b01656e6c5dec4954841ea803b73b884:/lib/python/Components/VideoWindow.py diff --git a/lib/python/Components/VideoWindow.py b/lib/python/Components/VideoWindow.py index db247980..2906aa31 100644 --- a/lib/python/Components/VideoWindow.py +++ b/lib/python/Components/VideoWindow.py @@ -1,12 +1,15 @@ from GUIComponent import GUIComponent -from enigma import eVideoWidget +from enigma import eVideoWidget, eSize class VideoWindow(GUIComponent): - def __init__(self): + def __init__(self, decoder = 1, fb_width = 720, fb_height = 576): GUIComponent.__init__(self) - - def GUIcreate(self, parent): - self.instance = eVideoWidget(parent) + self.decoder = decoder + self.fb_width = fb_width + self.fb_height = fb_height - def GUIdelete(self): - self.instance = None + GUI_WIDGET = eVideoWidget + + def postWidgetCreate(self, instance): + instance.setDecoder(self.decoder) + instance.setFBSize(eSize(self.fb_width, self.fb_height)); \ No newline at end of file