blob: 1f2f42257c620cb63de4ec90d978759ce15bfefe (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
from HTMLComponent import *
from GUIComponent import *
from Pixmap import Pixmap
from enigma import *
import time
class BlinkingPixmap(GUIComponent, Pixmap):
SHOWN = 0
HIDDEN = 1
def __init__(self):
Pixmap.__init__(self)
GUIComponent.__init__(self)
self.state = self.SHOWN
self.blinking = False
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):
def __init__(self):
BlinkingPixmap.__init__(self)
self.setConnect(None)
self.conditionCheckTimer = eTimer()
self.conditionCheckTimer.timeout.get().append(self.conditionallyBlink)
self.conditionCheckTimer.start(1000)
def setConnect(self, conditionalFunction):
self.conditionalFunction = conditionalFunction
def conditionallyBlink(self):
try:
self.conditionalFunction() # check, if the conditionalfunction is still valid
except:
self.conditionalFunction = None
self.stopBlinking()
if self.conditionalFunction != None:
if self.conditionalFunction(): # we shall blink
if self.blinking: # we are already blinking
pass
else: # we don't blink
self.startBlinking()
else: # we shall not blink
if self.blinking: # we are blinking
self.stopBlinking()
else: # we don't blink
pass
|