aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Makefile.am4
-rw-r--r--lib/python/Components/VideoWindow.py12
2 files changed, 13 insertions, 3 deletions
diff --git a/lib/python/Components/Makefile.am b/lib/python/Components/Makefile.am
index 8f43cae1..efb81c37 100644
--- a/lib/python/Components/Makefile.am
+++ b/lib/python/Components/Makefile.am
@@ -13,6 +13,4 @@ install_PYTHON = \
BlinkingPixmap.py Pixmap.py ConditionalWidget.py Slider.py LanguageList.py \
PluginList.py PluginComponent.py RecordingConfig.py About.py UsageConfig.py \
FIFOList.py ServiceEventTracker.py Input.py TimerSanityCheck.py FileList.py \
- MultiContent.py MediaPlayer.py TunerInfo.py
-
-
+ MultiContent.py MediaPlayer.py TunerInfo.py 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