From bf976ae7302a8f3e2b6ecde2336a9cbef890720d Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Sat, 8 Apr 2006 00:58:50 +0000 Subject: add VideoWindow Component --- lib/python/Components/VideoWindow.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 lib/python/Components/VideoWindow.py (limited to 'lib/python/Components/VideoWindow.py') diff --git a/lib/python/Components/VideoWindow.py b/lib/python/Components/VideoWindow.py new file mode 100644 index 00000000..db247980 --- /dev/null +++ b/lib/python/Components/VideoWindow.py @@ -0,0 +1,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 -- cgit v1.2.3