1 from GUIComponent import GUIComponent
2 from skin import applyAllAttributes
3 from Tools.CList import CList
9 self.onLayoutFinish = [ ]
10 self.summaries = CList()
12 def createGUIScreen(self, parent, desktop):
13 for val in self.renderer:
14 if isinstance(val, GUIComponent):
16 if not val.applySkin(desktop):
17 print "warning, skin is missing renderer", val, "in", self
21 if isinstance(val, GUIComponent):
23 if not val.applySkin(desktop):
24 print "warning, skin is missing element", key, "in", self
26 for w in self.additionalWidgets:
27 w.instance = w.widget(parent)
28 # w.instance.thisown = 0
29 applyAllAttributes(w.instance, desktop, w.skinAttributes)
31 for f in self.onLayoutFinish:
32 if type(f) is not type(self.close): # is this the best way to do this?
33 exec(f) in globals(), locals()
37 def deleteGUIScreen(self):
38 for (name, val) in self.items():
39 if isinstance(val, GUIComponent):
43 self.deleteGUIScreen()
45 def createSummary(self):
48 def addSummary(self, summary):
49 self.summaries.append(summary)
51 def removeSummary(self, summary):
52 self.summaries.remove(summary)
54 def setTitle(self, title):
55 self.instance.setTitle(title)
57 self.summaries.setTitle(title)