work on ci support
[enigma2.git] / skin.py
1 from enigma import *
2 import xml.dom.minidom
3 from xml.dom import EMPTY_NAMESPACE
4
5 from Tools.XMLTools import elementsWithTag, mergeText
6
7 colorNames = dict()
8
9 def dump(x, i=0):
10         print " " * i + str(x)
11         try:
12                 for n in x.childNodes:
13                         dump(n, i + 1)
14         except:
15                 None
16
17 # read the skin
18 try:
19         # first we search in the current path
20         skinfile = file('data/skin.xml', 'r')
21 except:
22         # if not found in the current path, we use the global datadir-path
23         skinfile = file('/usr/share/enigma2/skin.xml', 'r')
24 dom = xml.dom.minidom.parseString(skinfile.read())
25 skinfile.close()
26
27
28 def parsePosition(str):
29         x, y = str.split(',')
30         return ePoint(int(x), int(y))
31
32 def parseSize(str):
33         x, y = str.split(',')
34         return eSize(int(x), int(y))
35
36 def parseFont(str):
37         name, size = str.split(';')
38         return gFont(name, int(size))
39
40 def parseColor(str):
41         if str[0] != '#':
42                 try:
43                         return colorNames[str]
44                 except:
45                         raise ("color '%s' must be #aarrggbb or valid named color" % (str))
46         return gRGB(int(str[1:], 0x10))
47
48 def collectAttributes(skinAttributes, node):
49         # walk all attributes
50         for p in range(node.attributes.length):
51                 a = node.attributes.item(p)
52                 
53                 # convert to string (was: unicode)
54                 attrib = str(a.name)
55                 # TODO: proper UTF8 translation?! (for value)
56                 # TODO: localization? as in e1?
57                 value = str(a.value)
58                 
59                 skinAttributes.append((attrib, value))
60
61 def applySingleAttribute(guiObject, desktop, attrib, value):            
62         # and set attributes
63         try:
64                 if attrib == 'position':
65                         guiObject.move(parsePosition(value))
66                 elif attrib == 'size':
67                         guiObject.resize(parseSize(value))
68                 elif attrib == 'title':
69                         guiObject.setTitle(value)
70                 elif attrib == 'text':
71                         guiObject.setText(value)
72                 elif attrib == 'font':
73                         guiObject.setFont(parseFont(value))
74                 elif attrib == "pixmap":
75                         ptr = gPixmapPtr()
76                         if loadPNG(ptr, value):
77                                 raise "loading PNG failed!"
78                         x = ptr
79                         ptr = ptr.__deref__()
80                         desktop.makeCompatiblePixmap(ptr)
81                         guiObject.setPixmap(ptr)
82                         # guiObject.setPixmapFromFile(value)
83                 elif attrib == "orientation": # used by eSlider
84                         try:
85                                 guiObject.setOrientation(
86                                         { "orVertical": guiObject.orVertical,
87                                                 "orHorizontal": guiObject.orHorizontal
88                                         }[value])
89                         except KeyError:
90                                 print "oprientation must be either orVertical or orHorizontal!"
91                 elif attrib == "valign":
92                         try:
93                                 guiObject.setVAlign(
94                                         { "top": guiObject.alignTop,
95                                                 "center": guiObject.alignCenter,
96                                                 "bottom": guiObject.alignBottom
97                                         }[value])
98                         except KeyError:
99                                 print "valign must be either top, center or bottom!"
100                 elif attrib == "halign":
101                         try:
102                                 guiObject.setHAlign(
103                                         { "left": guiObject.alignLeft,
104                                                 "center": guiObject.alignCenter,
105                                                 "right": guiObject.alignRight,
106                                                 "block": guiObject.alignBlock
107                                         }[value])
108                         except KeyError:
109                                 print "halign must be either left, center, right or block!"
110                 elif attrib == "flags":
111                         flags = value.split(',')
112                         for f in flags:
113                                 try:
114                                         fv = eWindow.__dict__[f]
115                                         guiObject.setFlag(fv)
116                                 except KeyError:
117                                         print "illegal flag %s!" % f
118                 elif attrib == "backgroundColor":
119                         guiObject.setBackgroundColor(parseColor(value))
120                 elif attrib == "foregroundColor":
121                         guiObject.setForegroundColor(parseColor(value))
122                 elif attrib != 'name':
123                         print "unsupported attribute " + attrib + "=" + value
124         except int:
125 # AttributeError:
126                 print "widget %s (%s) doesn't support attribute %s!" % ("", guiObject.__class__.__name__, attrib)
127
128 def applyAllAttributes(guiObject, desktop, attributes):
129         for (attrib, value) in attributes:
130                 applySingleAttribute(guiObject, desktop, attrib, value)
131
132 def loadSkin(desktop):
133         print "loading skin..."
134         
135         def getPNG(x):
136                 g = gPixmapPtr()
137                 loadPNG(g, x)
138                 g = g.grabRef()
139                 return g
140         
141         skin = dom.childNodes[0]
142         assert skin.tagName == "skin", "root element in skin must be 'skin'!"
143         
144         for c in elementsWithTag(skin.childNodes, "colors"):
145                 for color in elementsWithTag(c.childNodes, "color"):
146                         name = str(color.getAttribute("name"))
147                         color = str(color.getAttribute("value"))
148                         
149                         if not len(color):
150                                 raise ("need color and name, got %s %s" % (name, color))
151                                 
152                         colorNames[name] = parseColor(color)
153         
154         for windowstyle in elementsWithTag(skin.childNodes, "windowstyle"):
155                 style = eWindowStyleSkinned()
156                 
157                 style.setTitleFont(gFont("Arial", 20));
158                 style.setTitleOffset(eSize(20, 5));
159                 
160                 for borderset in elementsWithTag(windowstyle.childNodes, "borderset"):
161                         bsName = str(borderset.getAttribute("name"))
162                         for pixmap in elementsWithTag(borderset.childNodes, "pixmap"):
163                                 bpName = str(pixmap.getAttribute("pos"))
164                                 filename = str(pixmap.getAttribute("filename"))
165                                 
166                                 png = getPNG(filename)
167                                 
168                                 # adapt palette
169                                 desktop.makeCompatiblePixmap(png)
170                                 style.setPixmap(eWindowStyleSkinned.__dict__[bsName], eWindowStyleSkinned.__dict__[bpName], png)
171
172                 for color in elementsWithTag(windowstyle.childNodes, "color"):
173                         type = str(color.getAttribute("name"))
174                         color = parseColor(color.getAttribute("color"))
175                         
176                         try:
177                                 style.setColor(eWindowStyleSkinned.__dict__["col" + type], color)
178                         except:
179                                 raise ("Unknown color %s" % (type))
180                         
181                 x = eWindowStyleManagerPtr()
182                 eWindowStyleManager.getInstance(x)
183                 x.setStyle(style)
184
185 def readSkin(screen, skin, name, desktop):
186         myscreen = None
187         
188         # first, find the corresponding screen element
189         skin = dom.childNodes[0]
190         
191         for x in elementsWithTag(skin.childNodes, "screen"):
192                 if x.getAttribute('name') == name:
193                         myscreen = x
194         del skin
195         
196         if myscreen is None:
197                 # try embedded skin
198                 print screen.__dict__
199                 if "parsedSkin" in screen.__dict__:
200                         myscreen = screen.parsedSkin
201                 elif "skin" in screen.__dict__:
202                         myscreen = screen.parsedSkin = xml.dom.minidom.parseString(screen.skin).childNodes[0]
203         
204         assert myscreen is not None, "no skin for screen '" + name + "' found!"
205
206         screen.skinAttributes = [ ]
207         collectAttributes(screen.skinAttributes, myscreen)
208         
209         screen.additionalWidgets = [ ]
210         
211         # now walk all widgets
212         for widget in elementsWithTag(myscreen.childNodes, "widget"):
213                 wname = widget.getAttribute('name')
214                 if wname == None:
215                         print "widget has no name!"
216                         continue
217                 
218                 # get corresponding gui object
219                 try:
220                         attributes = screen[wname].skinAttributes = [ ]
221                 except:
222                         raise str("component with name '" + wname + "' was not found in skin of screen '" + name + "'!")
223                 
224                 collectAttributes(attributes, widget)
225
226         # now walk additional objects
227         for widget in elementsWithTag(myscreen.childNodes, lambda x: x != "widget"):
228                 if widget.tagName == "applet":
229                         codeText = mergeText(widget.childNodes).strip()
230                         type = widget.getAttribute('type')
231
232                         code = compile(codeText, "skin applet", "exec")
233                         
234                         if type == "onLayoutFinish":
235                                 screen.onLayoutFinish.append(code)
236                         else:
237                                 raise str("applet type '%s' unknown!" % type)
238                         
239                         continue
240                 
241                 class additionalWidget:
242                         pass
243                 
244                 w = additionalWidget()
245                 
246                 if widget.tagName == "eLabel":
247                         w.widget = eLabel
248                 elif widget.tagName == "ePixmap":
249                         w.widget = ePixmap
250                 else:
251                         raise str("unsupported stuff : %s" % widget.tagName)
252                 
253                 w.skinAttributes = [ ]
254                 collectAttributes(w.skinAttributes, widget)
255                 
256                 # applyAttributes(guiObject, widget, desktop)
257                 # guiObject.thisown = 0
258                 screen.additionalWidgets.append(w)