aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/VideoWindow.py
blob: db247980caf69e738dafd086c136bd3ffe69cc0a (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):
		GUIComponent.__init__(self)
	
	def GUIcreate(self, parent):
		self.instance = eVideoWidget(parent)

	def GUIdelete(self):
		self.instance = None