blob: cf8e1894bf50b8dde0a9cfe201c6183adbd1bde2 (
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
|
from GUIComponent import *
from skin import applyAllAttributes
class GUISkin:
__module__ = __name__
def __init__(self):
self.onLayoutFinish = [ ]
pass
def createGUIScreen(self, parent, desktop):
for (name, val) in self.items():
if isinstance(val, GUIComponent):
val.GUIcreate(parent)
val.applySkin(desktop)
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):
for (name, val) in self.items():
if isinstance(val, GUIComponent):
val.GUIdelete()
def close(self):
self.deleteGUIScreen()
|