blob: c1b4262ff166a90e60dcde58a6c9db5ae17e13e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
from Pixmap import *
from enigma import *
import time
class BlinkingPixmap(Pixmap):
def __init__(self):
Pixmap.__init__(self)
self.blinking = True
self.setBlinkTime(500)
self.timer = eTimer()
self.timer.timeout.get().append(self.blink)
def setBlinkTime(self, time):
self.blinktime = time
def blink(self):
if self.blinking == True:
if (self.state == self.SHOWN):
self.hideWidget()
elif (self.state == self.HIDDEN):
self.showWidget()
def startBlinking(self):
self.blinking = True
self.timer.start(self.blinktime)
def stopBlinking(self):
self.blinking = False
if (self.state == self.SHOWN):
self.hideWidget()
self.timer.stop()
class BlinkingPixmapConditional(BlinkingPixmap, PixmapConditional):
def __init__(self):
BlinkingPixmap.__init__(self)
PixmapConditional.__init__(self)
def activateCondition(self, condition):
if (condition):
if not self.blinking: # we are already blinking
self.startBlinking()
else:
if self.blinking: # we are blinking
self.stopBlinking()
|