aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/GUISkin.py
blob: 0cf4d02753b7c436679851a64348091bb703ab0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from GUIComponent import GUIComponent
from skin import applyAllAttributes
from Tools.CList import CList

class GUISkin:
	__module__ = __name__

	def __init__(self):
		self.onLayoutFinish = [ ]
		self.summaries = CList()

	def createGUIScreen(self, parent, desktop):
		for val in self.renderer:
			if isinstance(val, GUIComponent):
				val.GUIcreate(parent)
				if not val.applySkin(desktop):
					print "warning, skin is missing renderer", val, "in", self

		for key in self:
			val = self[key]
			if isinstance(val, GUIComponent):
				val.GUIcreate(parent)
				if not val.applySkin(desktop):
					print "warning, skin is missing element", key, "in", self

		for w in self.additionalWidgets:
			w.instance = w.widget(parent)
			# w.instance.thisown = 0
			applyAllAttributes(w.instance, desktop, w.skinAttributes)

		for f in self.onLayoutFinish:
			if type(f) is not type(self.close): # is this the best way to do this?
				exec(f) in globals(), locals()
			else:
				f()

	def deleteGUIScreen(self):
		seenFakeSource = False
		for (name, val) in self.items():
			if name == "fake":
				seenFakeSource = True
			if isinstance(val, GUIComponent):
				val.GUIdelete()
		if seenFakeSource:
			del self["fake"]

	def close(self):
		self.deleteGUIScreen()

	def createSummary(self):
		return None

	def addSummary(self, summary):
		self.summaries.append(summary)

	def removeSummary(self, summary):
		self.summaries.remove(summary)

	def setTitle(self, title):
		self.instance.setTitle(title)
		self.title = title
		self.summaries.setTitle(title)