add simple event source
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Fri, 27 Jul 2007 22:18:41 +0000 (22:18 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Fri, 27 Jul 2007 22:18:41 +0000 (22:18 +0000)
lib/python/Components/Sources/Event.py [new file with mode: 0644]
lib/python/Components/Sources/Makefile.am

diff --git a/lib/python/Components/Sources/Event.py b/lib/python/Components/Sources/Event.py
new file mode 100644 (file)
index 0000000..7b589d9
--- /dev/null
@@ -0,0 +1,26 @@
+from Components.VariableText import VariableText
+from Components.GUIComponent import GUIComponent
+from enigma import eEPGCache, eServiceReference as Ref, eLabel
+from Source import Source
+
+class Event(VariableText, GUIComponent, Source, object):
+       def __init__(self, timer=None):
+               Source.__init__(self)
+               GUIComponent.__init__(self)
+               VariableText.__init__(self)
+               self.event = None
+
+       GUI_WIDGET = eLabel
+
+       def getCurrentEvent(self):
+               return self.event
+
+       event = property(getCurrentEvent)
+
+       def newEvent(self, event):
+               if not self.event or self.event != event:
+                       self.event = event
+                       if not event:
+                               self.changed((self.CHANGED_CLEAR,))
+                       else:
+                               self.changed((self.CHANGED_ALL,))
index 43efcf5c3da87108608f9dc180826ecf02a9cc8c..0ac22bf4bd730b467356feac5dd6cca81aea4516 100644 (file)
@@ -3,4 +3,4 @@ installdir = $(LIBDIR)/enigma2/python/Components/Sources
 install_PYTHON = \
        __init__.py Clock.py EventInfo.py Source.py List.py CurrentService.py \
        FrontendStatus.py Boolean.py Config.py ServiceList.py RdsDecoder.py StreamService.py \
 install_PYTHON = \
        __init__.py Clock.py EventInfo.py Source.py List.py CurrentService.py \
        FrontendStatus.py Boolean.py Config.py ServiceList.py RdsDecoder.py StreamService.py \
-       StaticText.py CanvasSource.py ServiceEvent.py
+       StaticText.py CanvasSource.py ServiceEvent.py Event.py