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 depr = val.deprecationInfo
24 if val.applySkin(desktop):
26 print "WARNING: OBSOLETE COMPONENT '%s' USED IN SKIN. USE '%s' INSTEAD!" % (key, depr[0])
27 print "OBSOLETE COMPONENT WILL BE REMOVED %s, PLEASE UPDATE!" % (depr[1])
29 print "warning, skin is missing element", key, "in", self
31 for w in self.additionalWidgets:
32 w.instance = w.widget(parent)
33 # w.instance.thisown = 0
34 applyAllAttributes(w.instance, desktop, w.skinAttributes)
36 for f in self.onLayoutFinish:
37 if type(f) is not type(self.close): # is this the best way to do this?
38 exec(f) in globals(), locals()
42 def deleteGUIScreen(self):
43 for (name, val) in self.items():
44 if isinstance(val, GUIComponent):
48 self.deleteGUIScreen()
50 def createSummary(self):
53 def addSummary(self, summary):
54 self.summaries.append(summary)
56 def removeSummary(self, summary):
57 self.summaries.remove(summary)
59 def setTitle(self, title):
60 self.instance.setTitle(title)
62 self.summaries.setTitle(title)