3 from xml.dom import EMPTY_NAMESPACE
5 from Tools.XMLTools import elementsWithTag, mergeText
10 print " " * i + str(x)
12 for n in x.childNodes:
19 # first we search in the current path
20 skinfile = file('data/skin.xml', 'r')
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())
28 def parsePosition(str):
30 return ePoint(int(x), int(y))
34 return eSize(int(x), int(y))
37 name, size = str.split(';')
38 return gFont(name, int(size))
43 return colorNames[str]
45 raise ("color '%s' must be #aarrggbb or valid named color" % (str))
46 return gRGB(int(str[1:], 0x10))
48 def collectAttributes(skinAttributes, node):
50 for p in range(node.attributes.length):
51 a = node.attributes.item(p)
53 # convert to string (was: unicode)
55 # TODO: proper UTF8 translation?! (for value)
56 # TODO: localization? as in e1?
59 skinAttributes.append((attrib, value))
61 def applySingleAttribute(guiObject, desktop, attrib, value):
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 == 'zPosition':
75 guiObject.setZPosition(int(value))
76 elif attrib == "pixmap":
78 desktop.makeCompatiblePixmap(ptr.__deref__())
79 guiObject.setPixmap(ptr.__deref__())
80 # guiObject.setPixmapFromFile(value)
81 elif attrib == "alphatest": # used by ePixmap
82 guiObject.setAlphatest(
86 elif attrib == "orientation": # used by eSlider
88 guiObject.setOrientation(
89 { "orVertical": guiObject.orVertical,
90 "orHorizontal": guiObject.orHorizontal
93 print "oprientation must be either orVertical or orHorizontal!"
94 elif attrib == "valign":
97 { "top": guiObject.alignTop,
98 "center": guiObject.alignCenter,
99 "bottom": guiObject.alignBottom
102 print "valign must be either top, center or bottom!"
103 elif attrib == "halign":
106 { "left": guiObject.alignLeft,
107 "center": guiObject.alignCenter,
108 "right": guiObject.alignRight,
109 "block": guiObject.alignBlock
112 print "halign must be either left, center, right or block!"
113 elif attrib == "flags":
114 flags = value.split(',')
117 fv = eWindow.__dict__[f]
118 guiObject.setFlag(fv)
120 print "illegal flag %s!" % f
121 elif attrib == "backgroundColor":
122 guiObject.setBackgroundColor(parseColor(value))
123 elif attrib == "foregroundColor":
124 guiObject.setForegroundColor(parseColor(value))
125 elif attrib == "selectionDisabled":
126 guiObject.setSelectionEnable(0)
127 elif attrib == "transparent":
128 guiObject.setTransparent(int(value))
129 elif attrib != 'name':
130 print "unsupported attribute " + attrib + "=" + value
133 print "widget %s (%s) doesn't support attribute %s!" % ("", guiObject.__class__.__name__, attrib)
135 def applyAllAttributes(guiObject, desktop, attributes):
136 for (attrib, value) in attributes:
137 applySingleAttribute(guiObject, desktop, attrib, value)
139 def loadSkin(desktop):
140 print "loading skin..."
142 skin = dom.childNodes[0]
143 assert skin.tagName == "skin", "root element in skin must be 'skin'!"
145 for c in elementsWithTag(skin.childNodes, "colors"):
146 for color in elementsWithTag(c.childNodes, "color"):
147 name = str(color.getAttribute("name"))
148 color = str(color.getAttribute("value"))
151 raise ("need color and name, got %s %s" % (name, color))
153 colorNames[name] = parseColor(color)
155 for windowstyle in elementsWithTag(skin.childNodes, "windowstyle"):
156 style = eWindowStyleSkinned()
158 style.setTitleFont(gFont("Arial", 20));
159 style.setTitleOffset(eSize(20, 5));
161 for borderset in elementsWithTag(windowstyle.childNodes, "borderset"):
162 bsName = str(borderset.getAttribute("name"))
163 for pixmap in elementsWithTag(borderset.childNodes, "pixmap"):
164 bpName = str(pixmap.getAttribute("pos"))
165 filename = str(pixmap.getAttribute("filename"))
167 png = loadPNG(filename)
170 desktop.makeCompatiblePixmap(png.__deref__())
171 style.setPixmap(eWindowStyleSkinned.__dict__[bsName], eWindowStyleSkinned.__dict__[bpName], png.__deref__())
173 for color in elementsWithTag(windowstyle.childNodes, "color"):
174 type = str(color.getAttribute("name"))
175 color = parseColor(color.getAttribute("color"))
178 style.setColor(eWindowStyleSkinned.__dict__["col" + type], color)
180 raise ("Unknown color %s" % (type))
182 x = eWindowStyleManagerPtr()
183 eWindowStyleManager.getInstance(x)
186 def readSkin(screen, skin, name, desktop):
189 # first, find the corresponding screen element
190 skin = dom.childNodes[0]
192 for x in elementsWithTag(skin.childNodes, "screen"):
193 if x.getAttribute('name') == name:
199 print screen.__dict__
200 if "parsedSkin" in screen.__dict__:
201 myscreen = screen.parsedSkin
202 elif "skin" in screen.__dict__:
203 myscreen = screen.parsedSkin = xml.dom.minidom.parseString(screen.skin).childNodes[0]
205 assert myscreen is not None, "no skin for screen '" + name + "' found!"
207 screen.skinAttributes = [ ]
208 collectAttributes(screen.skinAttributes, myscreen)
210 screen.additionalWidgets = [ ]
212 # now walk all widgets
213 for widget in elementsWithTag(myscreen.childNodes, "widget"):
214 wname = widget.getAttribute('name')
216 print "widget has no name!"
219 # get corresponding gui object
221 attributes = screen[wname].skinAttributes = [ ]
223 raise str("component with name '" + wname + "' was not found in skin of screen '" + name + "'!")
225 collectAttributes(attributes, widget)
227 # now walk additional objects
228 for widget in elementsWithTag(myscreen.childNodes, lambda x: x != "widget"):
229 if widget.tagName == "applet":
230 codeText = mergeText(widget.childNodes).strip()
231 type = widget.getAttribute('type')
233 code = compile(codeText, "skin applet", "exec")
235 if type == "onLayoutFinish":
236 screen.onLayoutFinish.append(code)
238 raise str("applet type '%s' unknown!" % type)
242 class additionalWidget:
245 w = additionalWidget()
247 if widget.tagName == "eLabel":
249 elif widget.tagName == "ePixmap":
252 raise str("unsupported stuff : %s" % widget.tagName)
254 w.skinAttributes = [ ]
255 collectAttributes(w.skinAttributes, widget)
257 # applyAttributes(guiObject, widget, desktop)
258 # guiObject.thisown = 0
259 screen.additionalWidgets.append(w)