5ff77980a12634b68a2f0f24e6674ac5747e6d6d
[vuplus_dvbapp] / lib / python / Components / ConditionalWidget.py
1 import skin
2 from GUIComponent import *
3
4 from enigma import *
5
6 class Widget(GUIComponent):
7         
8         SHOWN = 0
9         HIDDEN = 1
10         
11         def __init__(self):
12                 GUIComponent.__init__(self)
13                 self.instance = None
14                 self.state = self.SHOWN
15         
16         def GUIcreate(self, parent):
17                 self.instance = self.createWidget(parent)
18         
19         def GUIdelete(self):
20                 self.removeWidget(self.instance)
21                 self.instance = None
22         
23         def removeWidget(self, w):
24                 pass
25         
26         def showWidget(self):
27                 self.state = self.SHOWN
28                 self.instance.show()
29
30         def hideWidget(self):
31                 self.state = self.HIDDEN
32                 self.instance.hide()
33         
34         def removeWidget(self, instance):
35                 pass
36
37 class ConditionalWidget(Widget):
38         def __init__(self, withTimer = True):
39                 Widget.__init__(self)
40                 
41                 self.setConnect(None)
42                 
43                 if (withTimer):
44                         self.conditionCheckTimer = eTimer()
45                         self.conditionCheckTimer.timeout.get().append(self.update)
46                         self.conditionCheckTimer.start(1000)
47                 
48         def setConnect(self, conditionalFunction):
49                 self.conditionalFunction = conditionalFunction
50                 
51         def activateCondition(self, condition):
52                 if (condition):
53                         if (self.state == self.HIDDEN):
54                                 self.showWidget()
55                 else:
56                         if (self.state == self.SHOWN):
57                                 self.hideWidget()
58
59         def update(self):
60                 if (self.conditionalFunction != None):
61                         try:
62                                 self.conditionalFunction() # check, if the conditionalfunction is still valid
63                         except:
64                                 self.conditionalFunction = None
65                                 self.activateCondition(False)
66                         
67                         self.activateCondition(self.conditionalFunction())