aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/VideoWindow.py
blob: 31190d95046b19c48c1dbddf7e1a2dfc933099f1 (plain)
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)