add notifications
[vuplus_dvbapp] / lib / python / Screens / Screen.py
1 from Components.HTMLSkin import *
2 from Components.GUISkin import *
3
4 import sys
5
6 class Screen(dict, HTMLSkin, GUISkin):
7         """ bla """
8
9         def __init__(self, session):
10                 self.skinName = self.__class__.__name__
11                 self.session = session
12                 GUISkin.__init__(self)
13                 
14                 self.onClose = [ ]
15                 self.onExecBegin = [ ]
16                 self.onShown = [ ]
17                 
18                 self.execing = False
19                 
20                 # in order to support screens *without* a help,
21                 # we need the list in every screen. how ironic.
22                 self.helpList = [ ]
23                 
24         def execBegin(self):
25                 self.active_components = [ ]
26                 for x in self.onExecBegin:
27                         x()
28                         if self.session.currentDialog != self:
29                                 return
30
31 #               assert self.session == None, "a screen can only exec one per time"
32 #               self.session = session
33
34                 for (name, val) in self.items():
35                         val.execBegin()
36                         if self.session.currentDialog != self:
37                                 return
38                         self.active_components.append(val)
39
40                 self.execing = True
41         
42                 for x in self.onShown:
43                         x()
44         
45         def execEnd(self):
46 #               for (name, val) in self.items():
47                 for val in self.active_components:
48                         val.execEnd()
49 #               assert self.session != None, "execEnd on non-execing screen!"
50 #               self.session = None
51                 self.execing = False
52         
53         # never call this directly - it will be called from the session!
54         def doClose(self):
55                 for x in self.onClose:
56                         x()
57                 
58                 # fixup circular references
59                 del self.helpList
60                 GUISkin.close(self)
61                 
62                 del self.session
63                 for (name, val) in self.items():
64                         del self[name]
65         
66         def close(self, *retval):
67                 self.session.close(*retval)
68
69         def setFocus(self, o):
70                 self.instance.setFocus(o.instance)