add ability to remove list and config from a wizard
[enigma2.git] / lib / python / Components / BlinkingPixmap.py
index e564eb1e3c1c8d2a12810415916ad5fbb160f498..fef80620ffa71a07eb8ec9a6c4e56c80085da821 100644 (file)
@@ -1,78 +1,11 @@
-from HTMLComponent import *
-from GUIComponent import *
-
 from Pixmap import *
+from ConditionalWidget import *
 
-from enigma import *
-
-import time
-
-class BlinkingPixmap(GUIComponent, Pixmap):
-       SHOWN = 0
-       HIDDEN = 1
-       
+class BlinkingPixmap(BlinkingWidget):
        def __init__(self):
-               Pixmap.__init__(self)
-               GUIComponent.__init__(self)
-               
-               self.state = self.SHOWN
-               self.blinking = False
+               Widget.__init__(self)
                
-               self.setBlinkTime(500)
-
-               self.timer = eTimer()
-               self.timer.timeout.get().append(self.blink)
-       
-               
-       def createWidget(self, parent):
-               return self.getePixmap(parent)
-
-       def removeWidget(self, w):
-               pass
-       
-       def showPixmap(self):
-               print "Show pixmap"
-               self.state = self.SHOWN
-               self.instance.show()
-
-       def hidePixmap(self):
-               print "Hide pixmap"
-               self.state = self.HIDDEN
-               self.instance.hide()
-               
-       def setBlinkTime(self, time):
-               self.blinktime = time
-               
-       def blink(self):
-               if self.blinking == True:
-                       if (self.state == self.SHOWN):
-                               self.hidePixmap()
-                       elif (self.state == self.HIDDEN):
-                               self.showPixmap()
-                       
-       def startBlinking(self):
-               self.blinking = True
-               self.timer.start(self.blinktime)
-               
-       def stopBlinking(self):
-               self.blinking = False
-               if (self.state == self.SHOWN):
-                       self.hidePixmap()
-               self.timer.stop()
-               
-class BlinkingPixmapConditional(BlinkingPixmap, PixmapConditional):
+class BlinkingPixmapConditional(BlinkingWidgetConditional, PixmapConditional):
        def __init__(self):
-               BlinkingPixmap.__init__(self)
+               BlinkingWidgetConditional.__init__(self)
                PixmapConditional.__init__(self)
-               
-       def activateCondition(self, condition):
-               if (condition):
-                       if self.blinking: # we are already blinking
-                               pass
-                       else: # we don't blink
-                               self.startBlinking()
-               else:
-                       if self.blinking: # we are blinking
-                               self.stopBlinking()
-                       else: # we don't blink
-                               pass