diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-04-08 00:58:50 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-04-08 00:58:50 +0000 |
| commit | bf976ae7302a8f3e2b6ecde2336a9cbef890720d (patch) | |
| tree | a58867cbf507598bccb650e9ebc22c3e1c86c662 /lib/python/Components/VideoWindow.py | |
| parent | 20300cb86cf5ba1f21ce2416c434e95aa04c6c64 (diff) | |
| download | enigma2-bf976ae7302a8f3e2b6ecde2336a9cbef890720d.tar.gz enigma2-bf976ae7302a8f3e2b6ecde2336a9cbef890720d.zip | |
add VideoWindow Component
Diffstat (limited to 'lib/python/Components/VideoWindow.py')
| -rw-r--r-- | lib/python/Components/VideoWindow.py | 12 |
1 files changed, 12 insertions, 0 deletions
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 |
