]>
Commit | Line | Data |
---|---|---|
d14a1e28 RD |
1 | # Name: xxx.py ('xxx' is easy to distinguish from 'wx' :) ) |
2 | # Purpose: XML interface classes | |
3 | # Author: Roman Rolinsky <rolinsky@mema.ucl.ac.be> | |
4 | # Created: 22.08.2001 | |
5 | # RCS-ID: $Id$ | |
1fded56b | 6 | |
d14a1e28 RD |
7 | from xml.dom import minidom |
8 | from globals import * | |
9 | from params import * | |
10 | ||
11 | # Base class for interface parameter classes | |
12 | class xxxNode: | |
13 | def __init__(self, node): | |
14 | self.node = node | |
15 | def remove(self): | |
16 | self.node.parentNode.removeChild(self.node) | |
17 | self.node.unlink() | |
18 | ||
19 | # Generic (text) parameter class | |
20 | class xxxParam(xxxNode): | |
21 | # Standard use: for text nodes | |
22 | def __init__(self, node): | |
23 | xxxNode.__init__(self, node) | |
24 | if not node.hasChildNodes(): | |
25 | # If does not have child nodes, create empty text node | |
26 | text = g.tree.dom.createTextNode('') | |
27 | node.appendChild(text) | |
28 | else: | |
29 | text = node.childNodes[0] # first child must be text node | |
30 | assert text.nodeType == minidom.Node.TEXT_NODE | |
31 | # Append other text nodes if present and delete them | |
32 | extraText = '' | |
33 | for n in node.childNodes[1:]: | |
34 | if n.nodeType == minidom.Node.TEXT_NODE: | |
35 | extraText += n.data | |
36 | node.removeChild(n) | |
37 | n.unlink() | |
38 | else: break | |
39 | if extraText: text.data = text.data + extraText | |
40 | # Use convertion from unicode to current encoding | |
41 | self.textNode = text | |
42 | # Value returns string | |
29a41103 | 43 | if wx.USE_UNICODE: # no conversion is needed |
d14a1e28 RD |
44 | def value(self): |
45 | return self.textNode.data | |
46 | def update(self, value): | |
47 | self.textNode.data = value | |
48 | else: | |
49 | def value(self): | |
9a69d0aa RR |
50 | try: |
51 | return self.textNode.data.encode(g.currentEncoding) | |
52 | except LookupError: | |
53 | return self.textNode.data.encode() | |
d14a1e28 | 54 | def update(self, value): |
b81de788 | 55 | try: # handle exception if encoding is wrong |
80389ff7 | 56 | self.textNode.data = unicode(value, g.currentEncoding) |
b81de788 | 57 | except UnicodeDecodeError: |
9a69d0aa | 58 | self.textNode.data = unicode(value) |
29a41103 | 59 | #wx.LogMessage("Unicode error: set encoding in file\nglobals.py to something appropriate") |
d14a1e28 RD |
60 | |
61 | # Integer parameter | |
62 | class xxxParamInt(xxxParam): | |
63 | # Standard use: for text nodes | |
64 | def __init__(self, node): | |
65 | xxxParam.__init__(self, node) | |
66 | # Value returns string | |
67 | def value(self): | |
68 | try: | |
69 | return int(self.textNode.data) | |
70 | except ValueError: | |
71 | return -1 # invalid value | |
72 | def update(self, value): | |
73 | self.textNode.data = str(value) | |
74 | ||
75 | # Content parameter | |
76 | class xxxParamContent(xxxNode): | |
77 | def __init__(self, node): | |
78 | xxxNode.__init__(self, node) | |
79 | data, l = [], [] # data is needed to quicker value retrieval | |
80 | nodes = node.childNodes[:] # make a copy of the child list | |
81 | for n in nodes: | |
82 | if n.nodeType == minidom.Node.ELEMENT_NODE: | |
83 | assert n.tagName == 'item', 'bad content content' | |
84 | if not n.hasChildNodes(): | |
85 | # If does not have child nodes, create empty text node | |
86 | text = g.tree.dom.createTextNode('') | |
87 | node.appendChild(text) | |
88 | else: | |
89 | # !!! normalize? | |
90 | text = n.childNodes[0] # first child must be text node | |
91 | assert text.nodeType == minidom.Node.TEXT_NODE | |
92 | l.append(text) | |
93 | data.append(str(text.data)) | |
94 | else: # remove other | |
95 | node.removeChild(n) | |
96 | n.unlink() | |
97 | self.l, self.data = l, data | |
98 | def value(self): | |
99 | return self.data | |
100 | def update(self, value): | |
101 | # If number if items is not the same, recreate children | |
102 | if len(value) != len(self.l): # remove first if number of items has changed | |
103 | childNodes = self.node.childNodes[:] | |
104 | for n in childNodes: | |
105 | self.node.removeChild(n) | |
106 | l = [] | |
107 | for str in value: | |
108 | itemElem = g.tree.dom.createElement('item') | |
109 | itemText = g.tree.dom.createTextNode(str) | |
110 | itemElem.appendChild(itemText) | |
111 | self.node.appendChild(itemElem) | |
112 | l.append(itemText) | |
113 | self.l = l | |
114 | else: | |
115 | for i in range(len(value)): | |
116 | self.l[i].data = value[i] | |
117 | self.data = value | |
118 | ||
119 | # Content parameter for checklist | |
120 | class xxxParamContentCheckList(xxxNode): | |
121 | def __init__(self, node): | |
122 | xxxNode.__init__(self, node) | |
123 | data, l = [], [] # data is needed to quicker value retrieval | |
124 | nodes = node.childNodes[:] # make a copy of the child list | |
125 | for n in nodes: | |
126 | if n.nodeType == minidom.Node.ELEMENT_NODE: | |
127 | assert n.tagName == 'item', 'bad content content' | |
128 | checked = n.getAttribute('checked') | |
129 | if not checked: checked = 0 | |
130 | if not n.hasChildNodes(): | |
131 | # If does not have child nodes, create empty text node | |
132 | text = g.tree.dom.createTextNode('') | |
133 | node.appendChild(text) | |
134 | else: | |
135 | # !!! normalize? | |
136 | text = n.childNodes[0] # first child must be text node | |
137 | assert text.nodeType == minidom.Node.TEXT_NODE | |
138 | l.append((text, n)) | |
139 | data.append((str(text.data), int(checked))) | |
140 | else: # remove other | |
141 | node.removeChild(n) | |
142 | n.unlink() | |
143 | self.l, self.data = l, data | |
144 | def value(self): | |
145 | return self.data | |
146 | def update(self, value): | |
147 | # If number if items is not the same, recreate children | |
148 | if len(value) != len(self.l): # remove first if number of items has changed | |
149 | childNodes = self.node.childNodes[:] | |
150 | for n in childNodes: | |
151 | self.node.removeChild(n) | |
152 | l = [] | |
153 | for s,ch in value: | |
154 | itemElem = g.tree.dom.createElement('item') | |
155 | # Add checked only if True | |
156 | if ch: itemElem.setAttribute('checked', '1') | |
157 | itemText = g.tree.dom.createTextNode(s) | |
158 | itemElem.appendChild(itemText) | |
159 | self.node.appendChild(itemElem) | |
160 | l.append((itemText, itemElem)) | |
161 | self.l = l | |
162 | else: | |
163 | for i in range(len(value)): | |
164 | self.l[i][0].data = value[i][0] | |
165 | self.l[i][1].setAttribute('checked', str(value[i][1])) | |
166 | self.data = value | |
167 | ||
168 | # Bitmap parameter | |
169 | class xxxParamBitmap(xxxParam): | |
170 | def __init__(self, node): | |
171 | xxxParam.__init__(self, node) | |
172 | self.stock_id = node.getAttribute('stock_id') | |
173 | def value(self): | |
174 | return [self.stock_id, xxxParam.value(self)] | |
175 | def update(self, value): | |
176 | self.stock_id = value[0] | |
177 | if self.stock_id: | |
178 | self.node.setAttribute('stock_id', self.stock_id) | |
179 | elif self.node.hasAttribute('stock_id'): | |
180 | self.node.removeAttribute('stock_id') | |
181 | xxxParam.update(self, value[1]) | |
182 | ||
183 | ################################################################################ | |
184 | ||
185 | # Classes to interface DOM objects | |
186 | class xxxObject: | |
187 | # Default behavior | |
188 | hasChildren = False # has children elements? | |
189 | hasStyle = True # almost everyone | |
190 | hasName = True # has name attribute? | |
191 | isSizer = hasChild = False | |
192 | allParams = None # Some nodes have no parameters | |
193 | # Style parameters (all optional) | |
194 | styles = ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'tooltip'] | |
195 | # Special parameters | |
196 | specials = [] | |
197 | # Bitmap tags | |
198 | bitmapTags = ['bitmap', 'bitmap2', 'icon'] | |
199 | # Required paremeters: none by default | |
200 | required = [] | |
201 | # Default parameters with default values | |
202 | default = {} | |
203 | # Parameter types | |
204 | paramDict = {} | |
205 | # Window styles and extended styles | |
206 | winStyles = [] | |
207 | # Tree icon index | |
208 | #image = -1 | |
209 | # Construct a new xxx object from DOM element | |
210 | # parent is parent xxx object (or None if none), element is DOM element object | |
03319b65 | 211 | def __init__(self, parent, element, refElem=None): |
d14a1e28 RD |
212 | self.parent = parent |
213 | self.element = element | |
03319b65 | 214 | self.refElem = refElem |
d14a1e28 | 215 | self.undo = None |
03319b65 RR |
216 | # Reference are dereferenced |
217 | if element.tagName == 'object_ref': | |
218 | # Find original object | |
219 | self.ref = element.getAttribute('ref') | |
220 | if refElem: | |
221 | self.className = self.refElem.getAttribute('class') | |
222 | else: | |
223 | self.className = 'xxxUnknown' | |
224 | self.required = [] | |
225 | else: | |
226 | # Get attributes | |
227 | self.ref = None | |
228 | self.className = element.getAttribute('class') | |
2481bf3c | 229 | self.subclass = element.getAttribute('subclass') |
d14a1e28 RD |
230 | if self.hasName: self.name = element.getAttribute('name') |
231 | # Set parameters (text element children) | |
232 | self.params = {} | |
233 | nodes = element.childNodes[:] | |
234 | for node in nodes: | |
235 | if node.nodeType == minidom.Node.ELEMENT_NODE: | |
236 | tag = node.tagName | |
03319b65 | 237 | if tag in ['object', 'object_ref']: |
d14a1e28 | 238 | continue # do nothing for object children here |
03319b65 | 239 | elif tag not in self.allParams and tag not in self.styles: |
d14a1e28 RD |
240 | print 'WARNING: unknown parameter for %s: %s' % \ |
241 | (self.className, tag) | |
242 | elif tag in self.specials: | |
243 | self.special(tag, node) | |
244 | elif tag == 'content': | |
edfeb1b8 | 245 | if self.className == 'wxCheckListBox': |
d14a1e28 RD |
246 | self.params[tag] = xxxParamContentCheckList(node) |
247 | else: | |
248 | self.params[tag] = xxxParamContent(node) | |
249 | elif tag == 'font': # has children | |
250 | self.params[tag] = xxxParamFont(element, node) | |
251 | elif tag in self.bitmapTags: | |
252 | # Can have attributes | |
253 | self.params[tag] = xxxParamBitmap(node) | |
254 | else: # simple parameter | |
255 | self.params[tag] = xxxParam(node) | |
71b1eafc RR |
256 | elif node.nodeType == minidom.Node.TEXT_NODE and node.data.isspace(): |
257 | # Remove empty text nodes | |
258 | element.removeChild(node) | |
259 | node.unlink() | |
f19b8f11 | 260 | |
d14a1e28 RD |
261 | # Check that all required params are set |
262 | for param in self.required: | |
263 | if not self.params.has_key(param): | |
264 | # If default is specified, set it | |
265 | if self.default.has_key(param): | |
266 | elem = g.tree.dom.createElement(param) | |
267 | if param == 'content': | |
edfeb1b8 | 268 | if self.className == 'wxCheckListBox': |
d14a1e28 RD |
269 | self.params[param] = xxxParamContentCheckList(elem) |
270 | else: | |
271 | self.params[param] = xxxParamContent(elem) | |
272 | else: | |
273 | self.params[param] = xxxParam(elem) | |
274 | # Find place to put new element: first present element after param | |
275 | found = False | |
276 | paramStyles = self.allParams + self.styles | |
277 | for p in paramStyles[paramStyles.index(param) + 1:]: | |
278 | # Content params don't have same type | |
279 | if self.params.has_key(p) and p != 'content': | |
280 | found = True | |
281 | break | |
282 | if found: | |
283 | nextTextElem = self.params[p].node | |
284 | self.element.insertBefore(elem, nextTextElem) | |
285 | else: | |
286 | self.element.appendChild(elem) | |
287 | else: | |
29a41103 | 288 | wx.LogWarning('Required parameter %s of %s missing' % |
d14a1e28 RD |
289 | (param, self.className)) |
290 | # Returns real tree object | |
291 | def treeObject(self): | |
292 | if self.hasChild: return self.child | |
293 | return self | |
294 | # Returns tree image index | |
295 | def treeImage(self): | |
296 | if self.hasChild: return self.child.treeImage() | |
297 | return self.image | |
298 | # Class name plus wx name | |
299 | def treeName(self): | |
300 | if self.hasChild: return self.child.treeName() | |
2481bf3c RR |
301 | if self.subclass: className = self.subclass |
302 | else: className = self.className | |
303 | if self.hasName and self.name: return className + ' "' + self.name + '"' | |
304 | return className | |
305 | # Class name or subclass | |
306 | def panelName(self): | |
03319b65 RR |
307 | if self.subclass: name = self.subclass + '(' + self.className + ')' |
308 | name = self.className | |
309 | if self.ref: name = 'ref: ' + self.ref + ', ' + name | |
310 | return name | |
64b9ac75 RR |
311 | # Sets name of tree object |
312 | def setTreeName(self, name): | |
313 | if self.hasChild: obj = self.child | |
314 | else: obj = self | |
315 | obj.name = name | |
316 | obj.element.setAttribute('name', name) | |
d14a1e28 | 317 | |
03319b65 RR |
318 | # Imitation of FindResource/DoFindResource from xmlres.cpp |
319 | def DoFindResource(parent, name, classname, recursive): | |
320 | for n in parent.childNodes: | |
321 | if n.nodeType == minidom.Node.ELEMENT_NODE and \ | |
322 | n.tagName in ['object', 'object_ref'] and \ | |
323 | n.getAttribute('name') == name: | |
324 | cls = n.getAttribute('class') | |
325 | if not classname or cls == classname: return n | |
326 | if not cls or n.tagName == 'object_ref': | |
327 | refName = n.getAttribute('ref') | |
328 | if not refName: continue | |
329 | refNode = FindResource(refName) | |
330 | if refName and refNode.getAttribute('class') == classname: | |
331 | return n | |
332 | if recursive: | |
333 | for n in parent.childNodes: | |
334 | if n.nodeType == minidom.Node.ELEMENT_NODE and \ | |
335 | n.tagName in ['object', 'object_ref']: | |
336 | found = DoFindResource(n, name, classname, True) | |
337 | if found: return found | |
338 | def FindResource(name, classname='', recursive=True): | |
339 | found = DoFindResource(g.tree.mainNode, name, classname, recursive) | |
340 | if found: return found | |
29a41103 | 341 | wx.LogError('XRC resource "%s" not found!' % name) |
03319b65 RR |
342 | |
343 | ||
d14a1e28 RD |
344 | ################################################################################ |
345 | ||
346 | # This is a little special: it is both xxxObject and xxxNode | |
347 | class xxxParamFont(xxxObject, xxxNode): | |
0d9b8891 | 348 | allParams = ['size', 'family', 'style', 'weight', 'underlined', |
d14a1e28 RD |
349 | 'face', 'encoding'] |
350 | def __init__(self, parent, element): | |
351 | xxxObject.__init__(self, parent, element) | |
352 | xxxNode.__init__(self, element) | |
353 | self.parentNode = parent # required to behave similar to DOM node | |
354 | v = [] | |
355 | for p in self.allParams: | |
356 | try: | |
357 | v.append(str(self.params[p].value())) | |
358 | except KeyError: | |
359 | v.append('') | |
360 | self.data = v | |
361 | def update(self, value): | |
362 | # `value' is a list of strings corresponding to all parameters | |
363 | elem = self.element | |
364 | # Remove old elements first | |
365 | childNodes = elem.childNodes[:] | |
366 | for node in childNodes: elem.removeChild(node) | |
367 | i = 0 | |
368 | self.params.clear() | |
369 | v = [] | |
370 | for param in self.allParams: | |
371 | if value[i]: | |
372 | fontElem = g.tree.dom.createElement(param) | |
373 | textNode = g.tree.dom.createTextNode(value[i]) | |
374 | self.params[param] = textNode | |
375 | fontElem.appendChild(textNode) | |
376 | elem.appendChild(fontElem) | |
377 | v.append(value[i]) | |
378 | i += 1 | |
379 | self.data = v | |
380 | def value(self): | |
381 | return self.data | |
382 | ||
383 | ################################################################################ | |
384 | ||
385 | class xxxContainer(xxxObject): | |
386 | hasChildren = True | |
64bce500 | 387 | exStyles = [] |
d14a1e28 RD |
388 | |
389 | # Simulate normal parameter for encoding | |
390 | class xxxEncoding: | |
d14a1e28 | 391 | def value(self): |
7353d818 | 392 | return g.currentEncoding |
d14a1e28 | 393 | def update(self, val): |
7353d818 | 394 | g.currentEncoding = val |
d14a1e28 RD |
395 | |
396 | # Special class for root node | |
397 | class xxxMainNode(xxxContainer): | |
398 | allParams = ['encoding'] | |
399 | hasStyle = hasName = False | |
400 | def __init__(self, dom): | |
401 | xxxContainer.__init__(self, None, dom.documentElement) | |
402 | self.className = 'XML tree' | |
403 | # Reset required parameters after processing XML, because encoding is | |
404 | # a little special | |
405 | self.required = ['encoding'] | |
7353d818 | 406 | self.params['encoding'] = xxxEncoding() |
d14a1e28 RD |
407 | |
408 | ################################################################################ | |
409 | # Top-level windwows | |
410 | ||
411 | class xxxPanel(xxxContainer): | |
412 | allParams = ['pos', 'size', 'style'] | |
306b6fe9 | 413 | winStyles = ['wxNO_3D', 'wxTAB_TRAVERSAL'] |
d14a1e28 RD |
414 | styles = ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle', |
415 | 'tooltip'] | |
d14a1e28 RD |
416 | |
417 | class xxxDialog(xxxContainer): | |
418 | allParams = ['title', 'centered', 'pos', 'size', 'style'] | |
419 | paramDict = {'centered': ParamBool} | |
420 | required = ['title'] | |
421 | default = {'title': ''} | |
306b6fe9 RR |
422 | winStyles = ['wxDEFAULT_DIALOG_STYLE', 'wxCAPTION', |
423 | 'wxSTAY_ON_TOP', 'wxSYSTEM_MENU', 'wxTHICK_FRAME', | |
424 | 'wxRESIZE_BORDER', 'wxRESIZE_BOX', 'wxCLOSE_BOX', | |
425 | 'wxMAXIMIZE_BOX', 'wxMINIMIZE_BOX', | |
426 | 'wxDIALOG_MODAL', 'wxDIALOG_MODELESS', 'wxDIALOG_NO_PARENT' | |
427 | 'wxNO_3D', 'wxTAB_TRAVERSAL'] | |
428 | exStyles = ['wxWS_EX_VALIDATE_RECURSIVELY', 'wxDIALOG_EX_METAL'] | |
d14a1e28 RD |
429 | styles = ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle', |
430 | 'tooltip'] | |
d14a1e28 RD |
431 | |
432 | class xxxFrame(xxxContainer): | |
433 | allParams = ['title', 'centered', 'pos', 'size', 'style'] | |
434 | paramDict = {'centered': ParamBool} | |
435 | required = ['title'] | |
436 | default = {'title': ''} | |
306b6fe9 RR |
437 | winStyles = ['wxDEFAULT_FRAME_STYLE', 'wxDEFAULT_DIALOG_STYLE', 'wxCAPTION', |
438 | 'wxSTAY_ON_TOP', 'wxSYSTEM_MENU', 'wxTHICK_FRAME', | |
439 | 'wxRESIZE_BORDER', 'wxRESIZE_BOX', 'wxCLOSE_BOX', | |
440 | 'wxMAXIMIZE_BOX', 'wxMINIMIZE_BOX', | |
441 | 'wxFRAME_NO_TASKBAR', 'wxFRAME_SHAPED', 'wxFRAME_TOOL_WINDOW', | |
442 | 'wxFRAME_FLOAT_ON_PARENT', | |
443 | 'wxNO_3D', 'wxTAB_TRAVERSAL'] | |
444 | exStyles = ['wxWS_EX_VALIDATE_RECURSIVELY', 'wxFRAME_EX_METAL'] | |
d14a1e28 RD |
445 | styles = ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle', |
446 | 'tooltip'] | |
d14a1e28 RD |
447 | |
448 | class xxxTool(xxxObject): | |
71b1eafc | 449 | allParams = ['bitmap', 'bitmap2', 'radio', 'toggle', 'tooltip', 'longhelp', 'label'] |
d14a1e28 | 450 | required = ['bitmap'] |
71b1eafc | 451 | paramDict = {'bitmap2': ParamBitmap, 'radio': ParamBool, 'toggle': ParamBool} |
d14a1e28 RD |
452 | hasStyle = False |
453 | ||
454 | class xxxToolBar(xxxContainer): | |
71b1eafc | 455 | allParams = ['bitmapsize', 'margins', 'packing', 'separation', 'dontattachtoframe', |
d14a1e28 RD |
456 | 'pos', 'size', 'style'] |
457 | hasStyle = False | |
458 | paramDict = {'bitmapsize': ParamPosSize, 'margins': ParamPosSize, | |
c032d94e | 459 | 'packing': ParamUnit, 'separation': ParamUnit, |
71b1eafc RR |
460 | 'dontattachtoframe': ParamBool, 'style': ParamNonGenericStyle} |
461 | winStyles = ['wxTB_FLAT', 'wxTB_DOCKABLE', 'wxTB_VERTICAL', 'wxTB_HORIZONTAL', | |
462 | 'wxTB_3DBUTTONS','wxTB_TEXT', 'wxTB_NOICONS', 'wxTB_NODIVIDER', | |
463 | 'wxTB_NOALIGN', 'wxTB_HORZ_LAYOUT', 'wxTB_HORZ_TEXT'] | |
d14a1e28 | 464 | |
306b6fe9 RR |
465 | class xxxStatusBar(xxxObject): |
466 | hasStyle = False | |
467 | allParams = ['fields', 'widths', 'styles', 'style'] | |
468 | paramDict = {'fields': ParamIntNN, 'widths': ParamText, 'styles': ParamText, | |
469 | 'style': ParamNonGenericStyle} | |
470 | winStyles = ['wxST_SIZEGRIP'] | |
471 | ||
64bce500 RR |
472 | class xxxWizard(xxxContainer): |
473 | allParams = ['title', 'bitmap', 'pos'] | |
474 | required = ['title'] | |
475 | default = {'title': ''} | |
476 | winStyles = [] | |
477 | exStyles = ['wxWIZARD_EX_HELPBUTTON'] | |
478 | ||
479 | class xxxWizardPage(xxxContainer): | |
480 | allParams = ['bitmap'] | |
481 | winStyles = [] | |
482 | exStyles = [] | |
483 | ||
484 | class xxxWizardPageSimple(xxxContainer): | |
485 | allParams = ['bitmap'] | |
486 | winStyles = [] | |
487 | exStyles = [] | |
488 | ||
d14a1e28 RD |
489 | ################################################################################ |
490 | # Bitmap, Icon | |
491 | ||
492 | class xxxBitmap(xxxObject): | |
493 | allParams = ['bitmap'] | |
494 | required = ['bitmap'] | |
495 | ||
496 | # Just like bitmap | |
497 | class xxxIcon(xxxObject): | |
f19b8f11 | 498 | allParams = [] |
d14a1e28 RD |
499 | |
500 | ################################################################################ | |
501 | # Controls | |
502 | ||
503 | class xxxStaticText(xxxObject): | |
504 | allParams = ['label', 'pos', 'size', 'style'] | |
505 | required = ['label'] | |
506 | default = {'label': ''} | |
507 | winStyles = ['wxALIGN_LEFT', 'wxALIGN_RIGHT', 'wxALIGN_CENTRE', 'wxST_NO_AUTORESIZE'] | |
508 | ||
509 | class xxxStaticLine(xxxObject): | |
510 | allParams = ['pos', 'size', 'style'] | |
511 | winStyles = ['wxLI_HORIZONTAL', 'wxLI_VERTICAL'] | |
512 | ||
513 | class xxxStaticBitmap(xxxObject): | |
514 | allParams = ['bitmap', 'pos', 'size', 'style'] | |
515 | required = ['bitmap'] | |
516 | ||
517 | class xxxTextCtrl(xxxObject): | |
518 | allParams = ['value', 'pos', 'size', 'style'] | |
306b6fe9 RR |
519 | winStyles = ['wxTE_NO_VSCROLL', |
520 | 'wxTE_AUTO_SCROLL', | |
521 | 'wxTE_PROCESS_ENTER', | |
522 | 'wxTE_PROCESS_TAB', | |
523 | 'wxTE_MULTILINE', | |
524 | 'wxTE_PASSWORD', | |
525 | 'wxTE_READONLY', | |
526 | 'wxHSCROLL', | |
527 | 'wxTE_RICH', | |
528 | 'wxTE_RICH2', | |
529 | 'wxTE_AUTO_URL', | |
530 | 'wxTE_NOHIDESEL', | |
531 | 'wxTE_LEFT', | |
532 | 'wxTE_CENTRE', | |
533 | 'wxTE_RIGHT', | |
534 | 'wxTE_DONTWRAP', | |
535 | 'wxTE_LINEWRAP', | |
536 | 'wxTE_WORDWRAP'] | |
d14a1e28 RD |
537 | paramDict = {'value': ParamMultilineText} |
538 | ||
539 | class xxxChoice(xxxObject): | |
540 | allParams = ['content', 'selection', 'pos', 'size', 'style'] | |
541 | required = ['content'] | |
542 | default = {'content': '[]'} | |
543 | winStyles = ['wxCB_SORT'] | |
544 | ||
545 | class xxxSlider(xxxObject): | |
546 | allParams = ['value', 'min', 'max', 'pos', 'size', 'style', | |
547 | 'tickfreq', 'pagesize', 'linesize', 'thumb', 'tick', | |
548 | 'selmin', 'selmax'] | |
c032d94e RR |
549 | paramDict = {'value': ParamInt, 'tickfreq': ParamIntNN, 'pagesize': ParamIntNN, |
550 | 'linesize': ParamIntNN, 'thumb': ParamUnit, | |
d14a1e28 RD |
551 | 'tick': ParamInt, 'selmin': ParamInt, 'selmax': ParamInt} |
552 | required = ['value', 'min', 'max'] | |
553 | winStyles = ['wxSL_HORIZONTAL', 'wxSL_VERTICAL', 'wxSL_AUTOTICKS', 'wxSL_LABELS', | |
554 | 'wxSL_LEFT', 'wxSL_RIGHT', 'wxSL_TOP', 'wxSL_BOTTOM', | |
6e2bdf8f | 555 | 'wxSL_BOTH', 'wxSL_SELRANGE', 'wxSL_INVERSE'] |
d14a1e28 RD |
556 | |
557 | class xxxGauge(xxxObject): | |
558 | allParams = ['range', 'pos', 'size', 'style', 'value', 'shadow', 'bezel'] | |
c032d94e RR |
559 | paramDict = {'range': ParamIntNN, 'value': ParamIntNN, |
560 | 'shadow': ParamIntNN, 'bezel': ParamIntNN} | |
d14a1e28 RD |
561 | winStyles = ['wxGA_HORIZONTAL', 'wxGA_VERTICAL', 'wxGA_PROGRESSBAR', 'wxGA_SMOOTH'] |
562 | ||
563 | class xxxScrollBar(xxxObject): | |
564 | allParams = ['pos', 'size', 'style', 'value', 'thumbsize', 'range', 'pagesize'] | |
c032d94e RR |
565 | paramDict = {'value': ParamIntNN, 'range': ParamIntNN, 'thumbsize': ParamIntNN, |
566 | 'pagesize': ParamIntNN} | |
d14a1e28 RD |
567 | winStyles = ['wxSB_HORIZONTAL', 'wxSB_VERTICAL'] |
568 | ||
569 | class xxxListCtrl(xxxObject): | |
570 | allParams = ['pos', 'size', 'style'] | |
571 | winStyles = ['wxLC_LIST', 'wxLC_REPORT', 'wxLC_ICON', 'wxLC_SMALL_ICON', | |
306b6fe9 RR |
572 | 'wxLC_ALIGN_TOP', 'wxLC_ALIGN_LEFT', 'wxLC_AUTOARRANGE', |
573 | 'wxLC_USER_TEXT', 'wxLC_EDIT_LABELS', 'wxLC_NO_HEADER', | |
574 | 'wxLC_SINGLE_SEL', 'wxLC_SORT_ASCENDING', 'wxLC_SORT_DESCENDING', | |
575 | 'wxLC_VIRTUAL', 'wxLC_HRULES', 'wxLC_VRULES', 'wxLC_NO_SORT_HEADER'] | |
d14a1e28 RD |
576 | |
577 | class xxxTreeCtrl(xxxObject): | |
578 | allParams = ['pos', 'size', 'style'] | |
306b6fe9 RR |
579 | winStyles = ['wxTR_EDIT_LABELS', |
580 | 'wxTR_NO_BUTTONS', | |
581 | 'wxTR_HAS_BUTTONS', | |
582 | 'wxTR_TWIST_BUTTONS', | |
583 | 'wxTR_NO_LINES', | |
584 | 'wxTR_FULL_ROW_HIGHLIGHT', | |
585 | 'wxTR_LINES_AT_ROOT', | |
586 | 'wxTR_HIDE_ROOT', | |
587 | 'wxTR_ROW_LINES', | |
588 | 'wxTR_HAS_VARIABLE_ROW_HEIGHT', | |
589 | 'wxTR_SINGLE', | |
590 | 'wxTR_MULTIPLE', | |
591 | 'wxTR_EXTENDED', | |
592 | 'wxTR_DEFAULT_STYLE'] | |
d14a1e28 RD |
593 | |
594 | class xxxHtmlWindow(xxxObject): | |
595 | allParams = ['pos', 'size', 'style', 'borders', 'url', 'htmlcode'] | |
306b6fe9 RR |
596 | paramDict = {'htmlcode':ParamMultilineText} |
597 | winStyles = ['wxHW_SCROLLBAR_NEVER', 'wxHW_SCROLLBAR_AUTO', 'wxHW_NO_SELECTION'] | |
d14a1e28 RD |
598 | |
599 | class xxxCalendarCtrl(xxxObject): | |
600 | allParams = ['pos', 'size', 'style'] | |
306b6fe9 RR |
601 | winStyles = ['wxCAL_SUNDAY_FIRST', 'wxCAL_MONDAY_FIRST', 'wxCAL_SHOW_HOLIDAYS', |
602 | 'wxCAL_NO_YEAR_CHANGE', 'wxCAL_NO_MONTH_CHANGE', | |
603 | 'wxCAL_SEQUENTIAL_MONTH_SELECTION', 'wxCAL_SHOW_SURROUNDING_WEEKS'] | |
d14a1e28 RD |
604 | |
605 | class xxxNotebook(xxxContainer): | |
306b6fe9 RR |
606 | allParams = ['pos', 'size', 'style'] |
607 | winStyles = ['wxNB_DEFAULT', 'wxNB_LEFT', 'wxNB_RIGHT', 'wxNB_BOTTOM', | |
608 | 'wxNB_FIXEDWIDTH', 'wxNB_MULTILINE', 'wxNB_NOPAGETHEME'] | |
d14a1e28 | 609 | |
306b6fe9 RR |
610 | class xxxChoicebook(xxxContainer): |
611 | allParams = ['pos', 'size', 'style'] | |
612 | winStyles = ['wxCHB_DEFAULT', 'wxCHB_LEFT', 'wxCHB_RIGHT', 'wxCHB_TOP', 'wxCHB_BOTTOM'] | |
613 | ||
614 | class xxxListbook(xxxContainer): | |
615 | allParams = ['pos', 'size', 'style'] | |
616 | winStyles = ['wxLB_DEFAULT', 'wxLB_LEFT', 'wxLB_RIGHT', 'wxLB_TOP', 'wxLB_BOTTOM'] | |
617 | ||
68ae5821 RD |
618 | class xxxSplitterWindow(xxxContainer): |
619 | allParams = ['orientation', 'sashpos', 'minsize', 'pos', 'size', 'style'] | |
620 | paramDict = {'orientation': ParamOrientation, 'sashpos': ParamUnit, 'minsize': ParamUnit } | |
306b6fe9 RR |
621 | winStyles = ['wxSP_3D', 'wxSP_3DSASH', 'wxSP_3DBORDER', |
622 | 'wxSP_FULLSASH', 'wxSP_NOBORDER', 'wxSP_PERMIT_UNSPLIT', 'wxSP_LIVE_UPDATE', | |
623 | 'wxSP_NO_XP_THEME' ] | |
68ae5821 | 624 | |
d14a1e28 RD |
625 | class xxxGenericDirCtrl(xxxObject): |
626 | allParams = ['defaultfolder', 'filter', 'defaultfilter', 'pos', 'size', 'style'] | |
c032d94e | 627 | paramDict = {'defaultfilter': ParamIntNN} |
d14a1e28 | 628 | winStyles = ['wxDIRCTRL_DIR_ONLY', 'wxDIRCTRL_3D_INTERNAL', 'wxDIRCTRL_SELECT_FIRST', |
306b6fe9 | 629 | 'wxDIRCTRL_SHOW_FILTERS'] |
d14a1e28 RD |
630 | |
631 | class xxxScrolledWindow(xxxContainer): | |
632 | allParams = ['pos', 'size', 'style'] | |
306b6fe9 RR |
633 | winStyles = ['wxHSCROLL', 'wxVSCROLL', 'wxNO_3D', 'wxTAB_TRAVERSAL'] |
634 | ||
635 | class xxxDateCtrl(xxxObject): | |
636 | allParams = ['pos', 'size', 'style', 'borders'] | |
637 | winStyles = ['wxDP_DEFAULT', 'wxDP_SPIN', 'wxDP_DROPDOWN', | |
638 | 'wxDP_ALLOWNONE', 'wxDP_SHOWCENTURY'] | |
d14a1e28 RD |
639 | |
640 | ################################################################################ | |
641 | # Buttons | |
642 | ||
643 | class xxxButton(xxxObject): | |
644 | allParams = ['label', 'default', 'pos', 'size', 'style'] | |
645 | paramDict = {'default': ParamBool} | |
646 | required = ['label'] | |
306b6fe9 | 647 | winStyles = ['wxBU_LEFT', 'wxBU_TOP', 'wxBU_RIGHT', 'wxBU_BOTTOM', 'wxBU_EXACTFIT'] |
d14a1e28 RD |
648 | |
649 | class xxxBitmapButton(xxxObject): | |
650 | allParams = ['bitmap', 'selected', 'focus', 'disabled', 'default', | |
651 | 'pos', 'size', 'style'] | |
29a41103 RD |
652 | paramDict = {'selected': ParamBitmap, 'focus': ParamBitmap, 'disabled': ParamBitmap, |
653 | 'default': ParamBool} | |
d14a1e28 | 654 | required = ['bitmap'] |
306b6fe9 RR |
655 | winStyles = ['wxBU_AUTODRAW', 'wxBU_LEFT', 'wxBU_RIGHT', |
656 | 'wxBU_TOP', 'wxBU_BOTTOM', 'wxBU_EXACTFIT'] | |
d14a1e28 RD |
657 | |
658 | class xxxRadioButton(xxxObject): | |
659 | allParams = ['label', 'value', 'pos', 'size', 'style'] | |
660 | paramDict = {'value': ParamBool} | |
661 | required = ['label'] | |
306b6fe9 | 662 | winStyles = ['wxRB_GROUP', 'wxRB_SINGLE'] |
d14a1e28 RD |
663 | |
664 | class xxxSpinButton(xxxObject): | |
665 | allParams = ['value', 'min', 'max', 'pos', 'size', 'style'] | |
666 | paramDict = {'value': ParamInt} | |
667 | winStyles = ['wxSP_HORIZONTAL', 'wxSP_VERTICAL', 'wxSP_ARROW_KEYS', 'wxSP_WRAP'] | |
668 | ||
669 | class xxxSpinCtrl(xxxObject): | |
670 | allParams = ['value', 'min', 'max', 'pos', 'size', 'style'] | |
671 | paramDict = {'value': ParamInt} | |
672 | winStyles = ['wxSP_HORIZONTAL', 'wxSP_VERTICAL', 'wxSP_ARROW_KEYS', 'wxSP_WRAP'] | |
673 | ||
3d49f2fb RD |
674 | class xxxToggleButton(xxxObject): |
675 | allParams = ['label', 'checked', 'pos', 'size', 'style'] | |
676 | paramDict = {'checked': ParamBool} | |
677 | required = ['label'] | |
678 | ||
d14a1e28 RD |
679 | ################################################################################ |
680 | # Boxes | |
681 | ||
682 | class xxxStaticBox(xxxObject): | |
683 | allParams = ['label', 'pos', 'size', 'style'] | |
684 | required = ['label'] | |
685 | ||
686 | class xxxRadioBox(xxxObject): | |
687 | allParams = ['label', 'content', 'selection', 'dimension', 'pos', 'size', 'style'] | |
c032d94e | 688 | paramDict = {'dimension': ParamIntNN} |
d14a1e28 RD |
689 | required = ['label', 'content'] |
690 | default = {'content': '[]'} | |
306b6fe9 RR |
691 | winStyles = ['wxRA_SPECIFY_ROWS', 'wxRA_SPECIFY_COLS', 'wxRA_HORIZONTAL', |
692 | 'wxRA_VERTICAL'] | |
d14a1e28 RD |
693 | |
694 | class xxxCheckBox(xxxObject): | |
695 | allParams = ['label', 'checked', 'pos', 'size', 'style'] | |
696 | paramDict = {'checked': ParamBool} | |
3d49f2fb RD |
697 | winStyles = ['wxCHK_2STATE', 'wxCHK_3STATE', 'wxCHK_ALLOW_3RD_STATE_FOR_USER', |
698 | 'wxALIGN_RIGHT'] | |
d14a1e28 RD |
699 | required = ['label'] |
700 | ||
701 | class xxxComboBox(xxxObject): | |
702 | allParams = ['content', 'selection', 'value', 'pos', 'size', 'style'] | |
703 | required = ['content'] | |
704 | default = {'content': '[]'} | |
705 | winStyles = ['wxCB_SIMPLE', 'wxCB_SORT', 'wxCB_READONLY', 'wxCB_DROPDOWN'] | |
706 | ||
707 | class xxxListBox(xxxObject): | |
708 | allParams = ['content', 'selection', 'pos', 'size', 'style'] | |
709 | required = ['content'] | |
710 | default = {'content': '[]'} | |
711 | winStyles = ['wxLB_SINGLE', 'wxLB_MULTIPLE', 'wxLB_EXTENDED', 'wxLB_HSCROLL', | |
306b6fe9 | 712 | 'wxLB_ALWAYS_SB', 'wxLB_NEEDED_SB', 'wxLB_SORT'] |
d14a1e28 RD |
713 | |
714 | class xxxCheckList(xxxObject): | |
715 | allParams = ['content', 'pos', 'size', 'style'] | |
716 | required = ['content'] | |
717 | default = {'content': '[]'} | |
306b6fe9 RR |
718 | winStyles = ['wxLB_SINGLE', 'wxLB_MULTIPLE', 'wxLB_EXTENDED', 'wxLB_HSCROLL', |
719 | 'wxLB_ALWAYS_SB', 'wxLB_NEEDED_SB', 'wxLB_SORT'] | |
d14a1e28 RD |
720 | paramDict = {'content': ParamContentCheckList} |
721 | ||
722 | ################################################################################ | |
723 | # Sizers | |
724 | ||
725 | class xxxSizer(xxxContainer): | |
726 | hasName = hasStyle = False | |
727 | paramDict = {'orient': ParamOrient} | |
728 | isSizer = True | |
64b9ac75 | 729 | itemTag = 'sizeritem' # different for some sizers |
d14a1e28 RD |
730 | |
731 | class xxxBoxSizer(xxxSizer): | |
732 | allParams = ['orient'] | |
733 | required = ['orient'] | |
734 | default = {'orient': 'wxVERTICAL'} | |
735 | # Tree icon depends on orientation | |
736 | def treeImage(self): | |
737 | if self.params['orient'].value() == 'wxHORIZONTAL': return self.imageH | |
738 | else: return self.imageV | |
739 | ||
740 | class xxxStaticBoxSizer(xxxBoxSizer): | |
741 | allParams = ['label', 'orient'] | |
742 | required = ['label', 'orient'] | |
743 | ||
744 | class xxxGridSizer(xxxSizer): | |
745 | allParams = ['cols', 'rows', 'vgap', 'hgap'] | |
746 | required = ['cols'] | |
747 | default = {'cols': '2', 'rows': '2'} | |
748 | ||
64bce500 RR |
749 | class xxxStdDialogButtonSizer(xxxSizer): |
750 | allParams = [] | |
64b9ac75 | 751 | itemTag = 'button' |
64bce500 | 752 | |
d14a1e28 RD |
753 | # For repeated parameters |
754 | class xxxParamMulti: | |
755 | def __init__(self, node): | |
756 | self.node = node | |
757 | self.l, self.data = [], [] | |
758 | def append(self, param): | |
759 | self.l.append(param) | |
760 | self.data.append(param.value()) | |
761 | def value(self): | |
762 | return self.data | |
763 | def remove(self): | |
764 | for param in self.l: | |
765 | param.remove() | |
766 | self.l, self.data = [], [] | |
767 | ||
768 | class xxxFlexGridSizer(xxxGridSizer): | |
769 | specials = ['growablecols', 'growablerows'] | |
770 | allParams = ['cols', 'rows', 'vgap', 'hgap'] + specials | |
306b6fe9 | 771 | paramDict = {'growablecols': ParamIntList, 'growablerows': ParamIntList} |
d14a1e28 RD |
772 | # Special processing for growable* parameters |
773 | # (they are represented by several nodes) | |
774 | def special(self, tag, node): | |
775 | if not self.params.has_key(tag): | |
776 | # Create new multi-group | |
777 | self.params[tag] = xxxParamMulti(node) | |
778 | self.params[tag].append(xxxParamInt(node)) | |
779 | def setSpecial(self, param, value): | |
780 | # Straightforward implementation: remove, add again | |
781 | self.params[param].remove() | |
782 | del self.params[param] | |
783 | for i in value: | |
784 | node = g.tree.dom.createElement(param) | |
785 | text = g.tree.dom.createTextNode(str(i)) | |
786 | node.appendChild(text) | |
787 | self.element.appendChild(node) | |
788 | self.special(param, node) | |
789 | ||
a4c013b2 RR |
790 | class xxxGridBagSizer(xxxSizer): |
791 | specials = ['growablecols', 'growablerows'] | |
792 | allParams = ['vgap', 'hgap'] + specials | |
793 | paramDict = {'growablecols':ParamIntList, 'growablerows':ParamIntList} | |
794 | # Special processing for growable* parameters | |
795 | # (they are represented by several nodes) | |
796 | def special(self, tag, node): | |
797 | if not self.params.has_key(tag): | |
798 | # Create new multi-group | |
799 | self.params[tag] = xxxParamMulti(node) | |
800 | self.params[tag].append(xxxParamInt(node)) | |
801 | def setSpecial(self, param, value): | |
802 | # Straightforward implementation: remove, add again | |
803 | self.params[param].remove() | |
804 | del self.params[param] | |
805 | for i in value: | |
806 | node = g.tree.dom.createElement(param) | |
807 | text = g.tree.dom.createTextNode(str(i)) | |
808 | node.appendChild(text) | |
809 | self.element.appendChild(node) | |
810 | self.special(param, node) | |
811 | ||
d14a1e28 RD |
812 | # Container with only one child. |
813 | # Not shown in tree. | |
814 | class xxxChildContainer(xxxObject): | |
815 | hasName = hasStyle = False | |
816 | hasChild = True | |
03319b65 RR |
817 | def __init__(self, parent, element, refElem=None): |
818 | xxxObject.__init__(self, parent, element, refElem) | |
d14a1e28 RD |
819 | # Must have one child with 'object' tag, but we don't check it |
820 | nodes = element.childNodes[:] # create copy | |
821 | for node in nodes: | |
822 | if node.nodeType == minidom.Node.ELEMENT_NODE: | |
03319b65 | 823 | if node.tagName in ['object', 'object_ref']: |
d14a1e28 RD |
824 | # Create new xxx object for child node |
825 | self.child = MakeXXXFromDOM(self, node) | |
826 | self.child.parent = parent | |
827 | # Copy hasChildren and isSizer attributes | |
828 | self.hasChildren = self.child.hasChildren | |
829 | self.isSizer = self.child.isSizer | |
830 | return # success | |
831 | else: | |
832 | element.removeChild(node) | |
833 | node.unlink() | |
834 | assert 0, 'no child found' | |
835 | ||
836 | class xxxSizerItem(xxxChildContainer): | |
a4c013b2 RR |
837 | allParams = ['option', 'flag', 'border', 'minsize', 'ratio'] |
838 | paramDict = {'option': ParamInt, 'minsize': ParamPosSize, 'ratio': ParamPosSize} | |
839 | #default = {'cellspan': '1,1'} | |
03319b65 | 840 | def __init__(self, parent, element, refElem=None): |
a4c013b2 RR |
841 | # For GridBag sizer items, extra parameters added |
842 | if isinstance(parent, xxxGridBagSizer): | |
843 | self.allParams = self.allParams + ['cellpos', 'cellspan'] | |
03319b65 | 844 | xxxChildContainer.__init__(self, parent, element, refElem) |
d14a1e28 RD |
845 | # Remove pos parameter - not needed for sizeritems |
846 | if 'pos' in self.child.allParams: | |
847 | self.child.allParams = self.child.allParams[:] | |
848 | self.child.allParams.remove('pos') | |
849 | ||
64b9ac75 RR |
850 | class xxxSizerItemButton(xxxSizerItem): |
851 | allParams = [] | |
852 | paramDict = {} | |
03319b65 RR |
853 | def __init__(self, parent, element, refElem=None): |
854 | xxxChildContainer.__init__(self, parent, element, refElem=None) | |
64b9ac75 RR |
855 | # Remove pos parameter - not needed for sizeritems |
856 | if 'pos' in self.child.allParams: | |
857 | self.child.allParams = self.child.allParams[:] | |
858 | self.child.allParams.remove('pos') | |
859 | ||
306b6fe9 | 860 | class xxxPage(xxxChildContainer): |
d14a1e28 RD |
861 | allParams = ['label', 'selected'] |
862 | paramDict = {'selected': ParamBool} | |
863 | required = ['label'] | |
03319b65 RR |
864 | def __init__(self, parent, element, refElem=None): |
865 | xxxChildContainer.__init__(self, parent, element, refElem) | |
d14a1e28 RD |
866 | # pos and size dont matter for notebookpages |
867 | if 'pos' in self.child.allParams: | |
868 | self.child.allParams = self.child.allParams[:] | |
869 | self.child.allParams.remove('pos') | |
870 | if 'size' in self.child.allParams: | |
871 | self.child.allParams = self.child.allParams[:] | |
872 | self.child.allParams.remove('size') | |
873 | ||
874 | class xxxSpacer(xxxObject): | |
875 | hasName = hasStyle = False | |
876 | allParams = ['size', 'option', 'flag', 'border'] | |
877 | paramDict = {'option': ParamInt} | |
878 | default = {'size': '0,0'} | |
28e65e0f RR |
879 | def __init__(self, parent, element, refElem=None): |
880 | # For GridBag sizer items, extra parameters added | |
881 | if isinstance(parent, xxxGridBagSizer): | |
882 | self.allParams = self.allParams + ['cellpos', 'cellspan'] | |
883 | xxxObject.__init__(self, parent, element, refElem) | |
d14a1e28 RD |
884 | |
885 | class xxxMenuBar(xxxContainer): | |
886 | allParams = ['style'] | |
887 | paramDict = {'style': ParamNonGenericStyle} # no generic styles | |
888 | winStyles = ['wxMB_DOCKABLE'] | |
889 | ||
890 | class xxxMenu(xxxContainer): | |
891 | allParams = ['label', 'help', 'style'] | |
892 | default = {'label': ''} | |
893 | paramDict = {'style': ParamNonGenericStyle} # no generic styles | |
894 | winStyles = ['wxMENU_TEAROFF'] | |
895 | ||
896 | class xxxMenuItem(xxxObject): | |
897 | allParams = ['label', 'bitmap', 'accel', 'help', | |
898 | 'checkable', 'radio', 'enabled', 'checked'] | |
899 | default = {'label': ''} | |
900 | hasStyle = False | |
901 | ||
902 | class xxxSeparator(xxxObject): | |
903 | hasName = hasStyle = False | |
904 | ||
905 | ################################################################################ | |
906 | # Unknown control | |
907 | ||
908 | class xxxUnknown(xxxObject): | |
909 | allParams = ['pos', 'size', 'style'] | |
306b6fe9 | 910 | winStyles = ['wxNO_FULL_REPAINT_ON_RESIZE'] |
d14a1e28 RD |
911 | |
912 | ################################################################################ | |
913 | ||
914 | xxxDict = { | |
915 | 'wxPanel': xxxPanel, | |
916 | 'wxDialog': xxxDialog, | |
917 | 'wxFrame': xxxFrame, | |
918 | 'tool': xxxTool, | |
919 | 'wxToolBar': xxxToolBar, | |
306b6fe9 | 920 | 'wxStatusBar': xxxStatusBar, |
64bce500 RR |
921 | 'wxWizard': xxxWizard, |
922 | 'wxWizardPage': xxxWizardPage, | |
923 | 'wxWizardPageSimple': xxxWizardPageSimple, | |
d14a1e28 RD |
924 | |
925 | 'wxBitmap': xxxBitmap, | |
926 | 'wxIcon': xxxIcon, | |
927 | ||
928 | 'wxButton': xxxButton, | |
929 | 'wxBitmapButton': xxxBitmapButton, | |
930 | 'wxRadioButton': xxxRadioButton, | |
931 | 'wxSpinButton': xxxSpinButton, | |
3d49f2fb | 932 | 'wxToggleButton' : xxxToggleButton, |
d14a1e28 RD |
933 | |
934 | 'wxStaticBox': xxxStaticBox, | |
935 | 'wxStaticBitmap': xxxStaticBitmap, | |
936 | 'wxRadioBox': xxxRadioBox, | |
937 | 'wxComboBox': xxxComboBox, | |
938 | 'wxCheckBox': xxxCheckBox, | |
939 | 'wxListBox': xxxListBox, | |
940 | ||
941 | 'wxStaticText': xxxStaticText, | |
942 | 'wxStaticLine': xxxStaticLine, | |
943 | 'wxTextCtrl': xxxTextCtrl, | |
944 | 'wxChoice': xxxChoice, | |
945 | 'wxSlider': xxxSlider, | |
946 | 'wxGauge': xxxGauge, | |
947 | 'wxScrollBar': xxxScrollBar, | |
948 | 'wxTreeCtrl': xxxTreeCtrl, | |
949 | 'wxListCtrl': xxxListCtrl, | |
edfeb1b8 | 950 | 'wxCheckListBox': xxxCheckList, |
306b6fe9 RR |
951 | 'notebookpage': xxxPage, |
952 | 'choicebookpage': xxxPage, | |
953 | 'listbookpage': xxxPage, | |
d14a1e28 | 954 | 'wxNotebook': xxxNotebook, |
306b6fe9 RR |
955 | 'wxChoicebook': xxxChoicebook, |
956 | 'wxListbook': xxxListbook, | |
68ae5821 | 957 | 'wxSplitterWindow': xxxSplitterWindow, |
d14a1e28 RD |
958 | 'wxHtmlWindow': xxxHtmlWindow, |
959 | 'wxCalendarCtrl': xxxCalendarCtrl, | |
960 | 'wxGenericDirCtrl': xxxGenericDirCtrl, | |
961 | 'wxSpinCtrl': xxxSpinCtrl, | |
962 | 'wxScrolledWindow': xxxScrolledWindow, | |
306b6fe9 | 963 | 'wxDatePickerCtrl': xxxDateCtrl, |
d14a1e28 RD |
964 | |
965 | 'wxBoxSizer': xxxBoxSizer, | |
966 | 'wxStaticBoxSizer': xxxStaticBoxSizer, | |
967 | 'wxGridSizer': xxxGridSizer, | |
968 | 'wxFlexGridSizer': xxxFlexGridSizer, | |
a4c013b2 | 969 | 'wxGridBagSizer': xxxGridBagSizer, |
64bce500 | 970 | 'wxStdDialogButtonSizer': xxxStdDialogButtonSizer, |
64b9ac75 | 971 | 'sizeritem': xxxSizerItem, 'button': xxxSizerItemButton, |
d14a1e28 RD |
972 | 'spacer': xxxSpacer, |
973 | ||
974 | 'wxMenuBar': xxxMenuBar, | |
975 | 'wxMenu': xxxMenu, | |
976 | 'wxMenuItem': xxxMenuItem, | |
977 | 'separator': xxxSeparator, | |
978 | ||
979 | 'unknown': xxxUnknown, | |
980 | } | |
981 | ||
982 | # Create IDs for all parameters of all classes | |
29a41103 RD |
983 | paramIDs = {'fg': wx.NewId(), 'bg': wx.NewId(), 'exstyle': wx.NewId(), 'font': wx.NewId(), |
984 | 'enabled': wx.NewId(), 'focused': wx.NewId(), 'hidden': wx.NewId(), | |
985 | 'tooltip': wx.NewId(), 'encoding': wx.NewId(), | |
986 | 'cellpos': wx.NewId(), 'cellspan': wx.NewId() | |
d14a1e28 RD |
987 | } |
988 | for cl in xxxDict.values(): | |
989 | if cl.allParams: | |
990 | for param in cl.allParams + cl.paramDict.keys(): | |
991 | if not paramIDs.has_key(param): | |
29a41103 | 992 | paramIDs[param] = wx.NewId() |
d14a1e28 RD |
993 | |
994 | ################################################################################ | |
995 | # Helper functions | |
996 | ||
997 | # Test for object elements | |
998 | def IsObject(node): | |
03319b65 | 999 | return node.nodeType == minidom.Node.ELEMENT_NODE and node.tagName in ['object', 'object_ref'] |
d14a1e28 RD |
1000 | |
1001 | # Make XXX object from some DOM object, selecting correct class | |
1002 | def MakeXXXFromDOM(parent, element): | |
03319b65 RR |
1003 | if element.tagName == 'object_ref': |
1004 | ref = element.getAttribute('ref') | |
1005 | refElem = FindResource(ref) | |
1006 | if refElem: cls = refElem.getAttribute('class') | |
1007 | else: return xxxUnknown(parent, element) | |
1008 | else: | |
1009 | refElem = None | |
1010 | cls = element.getAttribute('class') | |
d14a1e28 | 1011 | try: |
03319b65 | 1012 | klass = xxxDict[cls] |
d14a1e28 RD |
1013 | except KeyError: |
1014 | # If we encounter a weird class, use unknown template | |
1015 | print 'WARNING: unsupported class:', element.getAttribute('class') | |
1016 | klass = xxxUnknown | |
03319b65 | 1017 | return klass(parent, element, refElem) |
d14a1e28 RD |
1018 | |
1019 | # Make empty DOM element | |
1020 | def MakeEmptyDOM(className): | |
1021 | elem = g.tree.dom.createElement('object') | |
1022 | elem.setAttribute('class', className) | |
1023 | # Set required and default parameters | |
1024 | xxxClass = xxxDict[className] | |
1025 | defaultNotRequired = filter(lambda x, l=xxxClass.required: x not in l, | |
1026 | xxxClass.default.keys()) | |
1027 | for param in xxxClass.required + defaultNotRequired: | |
1028 | textElem = g.tree.dom.createElement(param) | |
1029 | try: | |
1030 | textNode = g.tree.dom.createTextNode(xxxClass.default[param]) | |
1031 | except KeyError: | |
1032 | textNode = g.tree.dom.createTextNode('') | |
1033 | textElem.appendChild(textNode) | |
1034 | elem.appendChild(textElem) | |
1035 | return elem | |
1036 | ||
1037 | # Make empty XXX object | |
1038 | def MakeEmptyXXX(parent, className): | |
1039 | # Make corresponding DOM object first | |
1040 | elem = MakeEmptyDOM(className) | |
1041 | # If parent is a sizer, we should create sizeritem object, except for spacers | |
1042 | if parent: | |
1043 | if parent.isSizer and className != 'spacer': | |
64b9ac75 | 1044 | sizerItemElem = MakeEmptyDOM(parent.itemTag) |
d14a1e28 RD |
1045 | sizerItemElem.appendChild(elem) |
1046 | elem = sizerItemElem | |
1047 | elif isinstance(parent, xxxNotebook): | |
1048 | pageElem = MakeEmptyDOM('notebookpage') | |
1049 | pageElem.appendChild(elem) | |
1050 | elem = pageElem | |
306b6fe9 RR |
1051 | elif isinstance(parent, xxxChoicebook): |
1052 | pageElem = MakeEmptyDOM('choicebookpage') | |
1053 | pageElem.appendChild(elem) | |
1054 | elem = pageElem | |
1055 | elif isinstance(parent, xxxListbook): | |
1056 | pageElem = MakeEmptyDOM('listbookpage') | |
1057 | pageElem.appendChild(elem) | |
1058 | elem = pageElem | |
d14a1e28 RD |
1059 | # Now just make object |
1060 | return MakeXXXFromDOM(parent, elem) | |
1fded56b | 1061 | |
03319b65 RR |
1062 | # Make empty DOM element for reference |
1063 | def MakeEmptyRefDOM(ref): | |
1064 | elem = g.tree.dom.createElement('object_ref') | |
1065 | elem.setAttribute('ref', ref) | |
1066 | return elem | |
1067 | ||
1068 | # Make empty XXX object | |
1069 | def MakeEmptyRefXXX(parent, ref): | |
1070 | # Make corresponding DOM object first | |
1071 | elem = MakeEmptyRefDOM(ref) | |
1072 | # If parent is a sizer, we should create sizeritem object, except for spacers | |
1073 | if parent: | |
1074 | if parent.isSizer: | |
1075 | sizerItemElem = MakeEmptyDOM(parent.itemTag) | |
1076 | sizerItemElem.appendChild(elem) | |
1077 | elem = sizerItemElem | |
1078 | elif isinstance(parent, xxxNotebook): | |
1079 | pageElem = MakeEmptyDOM('notebookpage') | |
1080 | pageElem.appendChild(elem) | |
1081 | elem = pageElem | |
306b6fe9 RR |
1082 | elif isinstance(parent, xxxChoicebook): |
1083 | pageElem = MakeEmptyDOM('choicebookpage') | |
1084 | pageElem.appendChild(elem) | |
1085 | elem = pageElem | |
1086 | elif isinstance(parent, xxxListbook): | |
1087 | pageElem = MakeEmptyDOM('listbookpage') | |
1088 | pageElem.appendChild(elem) | |
1089 | elem = pageElem | |
03319b65 RR |
1090 | # Now just make object |
1091 | return MakeXXXFromDOM(parent, elem) | |
1092 |