X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FScreen.py;h=7ac7841ca38bc20de7b098f5e2812593cc81ca90;hp=46b94fd4f0074e893bee14200a4e2110179c5412;hb=d36394c5c1659a13392cadab32a70105cabdb759;hpb=32027c3eaa6b04ce081640ef89a73a93081aea85 diff --git a/lib/python/Screens/Screen.py b/lib/python/Screens/Screen.py index 46b94fd..7ac7841 100644 --- a/lib/python/Screens/Screen.py +++ b/lib/python/Screens/Screen.py @@ -1,16 +1,23 @@ -from Components.HTMLSkin import * -from Components.GUISkin import * -from Components.Sources.Source import Source +from Tools.Profile import profile -import sys +profile("LOAD:GUISkin") +from Components.GUISkin import GUISkin +profile("LOAD:Source") +from Components.Sources.Source import Source +profile("LOAD:GUIComponent") +from Components.GUIComponent import GUIComponent -class Screen(dict, HTMLSkin, GUISkin): +class Screen(dict, GUISkin): + False, SUSPEND_STOPS, SUSPEND_PAUSES = range(3) ALLOW_SUSPEND = False - def __init__(self, session): + global_screen = None + + def __init__(self, session, parent = None): self.skinName = self.__class__.__name__ self.session = session + self.parent = parent GUISkin.__init__(self) self.onClose = [ ] @@ -22,7 +29,10 @@ class Screen(dict, HTMLSkin, GUISkin): self.onHide = [ ] self.execing = False - self.shown = False + + self.shown = True + # already shown is false until the screen is really shown (after creation) + self.already_shown = False self.renderer = [ ] @@ -42,7 +52,7 @@ class Screen(dict, HTMLSkin, GUISkin): tmp = self.close_on_next_exec self.close_on_next_exec = None self.execing = True - self.close(tmp) + self.close(*tmp) else: single = self.onFirstExecBegin self.onFirstExecBegin = [] @@ -66,10 +76,11 @@ class Screen(dict, HTMLSkin, GUISkin): x() def execEnd(self): + active_components = self.active_components # for (name, val) in self.items(): - for val in self.active_components: + self.active_components = None + for val in active_components: val.execEnd() - del self.active_components # assert self.session != None, "execEnd on non-execing screen!" # self.session = None self.execing = False @@ -89,18 +100,15 @@ class Screen(dict, HTMLSkin, GUISkin): # but currently we destroy the screen afterwards # anyway. for val in self.renderer: - val.disconnectAll() # disconnected converter/sources and probably destroy them - + val.disconnectAll() # disconnected converter/sources and probably destroy them. Sources will not be destroyed. + del self.session for (name, val) in self.items(): val.destroy() del self[name] - - for val in self.renderer: - val.destroy() - + self.renderer = [ ] - + # really delete all elements now self.__dict__.clear() @@ -114,9 +122,10 @@ class Screen(dict, HTMLSkin, GUISkin): self.instance.setFocus(o.instance) def show(self): - if self.shown or not self.instance: + if (self.shown and self.already_shown) or not self.instance: return self.shown = True + self.already_shown = True self.instance.show() for x in self.onShow: x() @@ -137,3 +146,13 @@ class Screen(dict, HTMLSkin, GUISkin): def __repr__(self): return str(type(self)) + + def getRelatedScreen(self, name): + if name == "session": + return self.session.screen + elif name == "parent": + return self.parent + elif name == "global": + return self.global_screen + else: + return None