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>
7 from xml
.dom
import minidom
11 # Base class for interface parameter classes
13 def __init__(self
, node
):
16 self
.node
.parentNode
.removeChild(self
.node
)
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
)
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
33 for n
in node
.childNodes
[1:]:
34 if n
.nodeType
== minidom
.Node
.TEXT_NODE
:
39 if extraText
: text
.data
= text
.data
+ extraText
40 # Use convertion from unicode to current encoding
42 # Value returns string
43 if wx
.USE_UNICODE
: # no conversion is needed
45 return self
.textNode
.data
46 def update(self
, value
):
47 self
.textNode
.data
= value
51 return self
.textNode
.data
.encode(g
.currentEncoding
)
53 return self
.textNode
.data
.encode()
54 def update(self
, value
):
55 try: # handle exception if encoding is wrong
56 self
.textNode
.data
= unicode(value
, g
.currentEncoding
)
57 except UnicodeDecodeError:
58 self
.textNode
.data
= unicode(value
)
59 #wx.LogMessage("Unicode error: set encoding in file\nglobals.py to something appropriate")
62 class xxxParamInt(xxxParam
):
63 # Standard use: for text nodes
64 def __init__(self
, node
):
65 xxxParam
.__init
__(self
, node
)
66 # Value returns string
69 return int(self
.textNode
.data
)
71 return -1 # invalid value
72 def update(self
, value
):
73 self
.textNode
.data
= str(value
)
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
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
)
90 text
= n
.childNodes
[0] # first child must be text node
91 assert text
.nodeType
== minidom
.Node
.TEXT_NODE
93 data
.append(str(text
.data
))
97 self
.l
, self
.data
= l
, 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
[:]
105 self
.node
.removeChild(n
)
108 itemElem
= g
.tree
.dom
.createElement('item')
109 itemText
= g
.tree
.dom
.createTextNode(str)
110 itemElem
.appendChild(itemText
)
111 self
.node
.appendChild(itemElem
)
115 for i
in range(len(value
)):
116 self
.l
[i
].data
= value
[i
]
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
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
)
136 text
= n
.childNodes
[0] # first child must be text node
137 assert text
.nodeType
== minidom
.Node
.TEXT_NODE
139 data
.append((str(text
.data
), int(checked
)))
143 self
.l
, self
.data
= l
, 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
[:]
151 self
.node
.removeChild(n
)
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
))
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]))
169 class xxxParamBitmap(xxxParam
):
170 def __init__(self
, node
):
171 xxxParam
.__init
__(self
, node
)
172 self
.stock_id
= node
.getAttribute('stock_id')
174 return [self
.stock_id
, xxxParam
.value(self
)]
175 def update(self
, value
):
176 self
.stock_id
= value
[0]
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])
183 ################################################################################
185 # Classes to interface DOM objects
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']
198 bitmapTags
= ['bitmap', 'bitmap2', 'icon']
199 # Required paremeters: none by default
201 # Default parameters with default values
205 # Window styles and extended styles
209 # Construct a new xxx object from DOM element
210 # parent is parent xxx object (or None if none), element is DOM element object
211 def __init__(self
, parent
, element
, refElem
=None):
213 self
.element
= element
214 self
.refElem
= refElem
216 # Reference are dereferenced
217 if element
.tagName
== 'object_ref':
218 # Find original object
219 self
.ref
= element
.getAttribute('ref')
221 self
.className
= self
.refElem
.getAttribute('class')
223 self
.className
= 'xxxUnknown'
228 self
.className
= element
.getAttribute('class')
229 self
.subclass
= element
.getAttribute('subclass')
230 if self
.hasName
: self
.name
= element
.getAttribute('name')
231 # Set parameters (text element children)
233 nodes
= element
.childNodes
[:]
235 if node
.nodeType
== minidom
.Node
.ELEMENT_NODE
:
237 if tag
in ['object', 'object_ref']:
238 continue # do nothing for object children here
239 elif tag
not in self
.allParams
and tag
not in self
.styles
:
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':
245 if self
.className
== 'wxCheckListBox':
246 self
.params
[tag
] = xxxParamContentCheckList(node
)
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
)
256 elif node
.nodeType
== minidom
.Node
.TEXT_NODE
and node
.data
.isspace():
257 # Remove empty text nodes
258 element
.removeChild(node
)
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':
268 if self
.className
== 'wxCheckListBox':
269 self
.params
[param
] = xxxParamContentCheckList(elem
)
271 self
.params
[param
] = xxxParamContent(elem
)
273 self
.params
[param
] = xxxParam(elem
)
274 # Find place to put new element: first present element after param
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':
283 nextTextElem
= self
.params
[p
].node
284 self
.element
.insertBefore(elem
, nextTextElem
)
286 self
.element
.appendChild(elem
)
288 wx
.LogWarning('Required parameter %s of %s missing' %
289 (param
, self
.className
))
290 # Returns real tree object
291 def treeObject(self
):
292 if self
.hasChild
: return self
.child
294 # Returns tree image index
296 if self
.hasChild
: return self
.child
.treeImage()
298 # Class name plus wx name
300 if self
.hasChild
: return self
.child
.treeName()
301 if self
.subclass
: className
= self
.subclass
302 else: className
= self
.className
303 if self
.hasName
and self
.name
: return className
+ ' "' + self
.name
+ '"'
305 # Class name or subclass
307 if self
.subclass
: name
= self
.subclass
+ '(' + self
.className
+ ')'
308 name
= self
.className
309 if self
.ref
: name
= 'ref: ' + self
.ref
+ ', ' + name
311 # Sets name of tree object
312 def setTreeName(self
, name
):
313 if self
.hasChild
: obj
= self
.child
316 obj
.element
.setAttribute('name', name
)
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
:
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
341 wx
.LogError('XRC resource "%s" not found!' % name
)
344 ################################################################################
346 # This is a little special: it is both xxxObject and xxxNode
347 class xxxParamFont(xxxObject
, xxxNode
):
348 allParams
= ['size', 'family', 'style', 'weight', 'underlined',
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
355 for p
in self
.allParams
:
357 v
.append(str(self
.params
[p
].value()))
361 def update(self
, value
):
362 # `value' is a list of strings corresponding to all parameters
364 # Remove old elements first
365 childNodes
= elem
.childNodes
[:]
366 for node
in childNodes
: elem
.removeChild(node
)
370 for param
in self
.allParams
:
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
)
383 ################################################################################
385 class xxxContainer(xxxObject
):
389 # Simulate normal parameter for encoding
392 return g
.currentEncoding
393 def update(self
, val
):
394 g
.currentEncoding
= val
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
405 self
.required
= ['encoding']
406 self
.params
['encoding'] = xxxEncoding()
408 ################################################################################
411 class xxxPanel(xxxContainer
):
412 allParams
= ['pos', 'size', 'style']
413 winStyles
= ['wxNO_3D', 'wxTAB_TRAVERSAL']
414 styles
= ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle',
417 class xxxDialog(xxxContainer
):
418 allParams
= ['title', 'centered', 'pos', 'size', 'style']
419 paramDict
= {'centered': ParamBool}
421 default
= {'title': ''}
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']
429 styles
= ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle',
432 class xxxFrame(xxxContainer
):
433 allParams
= ['title', 'centered', 'pos', 'size', 'style']
434 paramDict
= {'centered': ParamBool}
436 default
= {'title': ''}
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']
445 styles
= ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle',
448 class xxxTool(xxxObject
):
449 allParams
= ['bitmap', 'bitmap2', 'radio', 'toggle', 'tooltip', 'longhelp', 'label']
450 required
= ['bitmap']
451 paramDict
= {'bitmap2': ParamBitmap, 'radio': ParamBool, 'toggle': ParamBool}
454 class xxxToolBar(xxxContainer
):
455 allParams
= ['bitmapsize', 'margins', 'packing', 'separation', 'dontattachtoframe',
456 'pos', 'size', 'style']
458 paramDict
= {'bitmapsize': ParamPosSize
, 'margins': ParamPosSize
,
459 'packing': ParamUnit
, 'separation': ParamUnit
,
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']
465 class xxxStatusBar(xxxObject
):
467 allParams
= ['fields', 'widths', 'styles', 'style']
468 paramDict
= {'fields': ParamIntNN
, 'widths': ParamText
, 'styles': ParamText
,
469 'style': ParamNonGenericStyle
}
470 winStyles
= ['wxST_SIZEGRIP']
472 class xxxWizard(xxxContainer
):
473 allParams
= ['title', 'bitmap', 'pos']
475 default
= {'title': ''}
477 exStyles
= ['wxWIZARD_EX_HELPBUTTON']
479 class xxxWizardPage(xxxContainer
):
480 allParams
= ['bitmap']
484 class xxxWizardPageSimple(xxxContainer
):
485 allParams
= ['bitmap']
489 ################################################################################
492 class xxxBitmap(xxxObject
):
493 allParams
= ['bitmap']
494 required
= ['bitmap']
497 class xxxIcon(xxxObject
):
500 ################################################################################
503 class xxxStaticText(xxxObject
):
504 allParams
= ['label', 'pos', 'size', 'style']
506 default
= {'label': ''}
507 winStyles
= ['wxALIGN_LEFT', 'wxALIGN_RIGHT', 'wxALIGN_CENTRE', 'wxST_NO_AUTORESIZE']
509 class xxxStaticLine(xxxObject
):
510 allParams
= ['pos', 'size', 'style']
511 winStyles
= ['wxLI_HORIZONTAL', 'wxLI_VERTICAL']
513 class xxxStaticBitmap(xxxObject
):
514 allParams
= ['bitmap', 'pos', 'size', 'style']
515 required
= ['bitmap']
517 class xxxTextCtrl(xxxObject
):
518 allParams
= ['value', 'pos', 'size', 'style']
519 winStyles
= ['wxTE_NO_VSCROLL',
521 'wxTE_PROCESS_ENTER',
537 paramDict
= {'value': ParamMultilineText}
539 class xxxChoice(xxxObject
):
540 allParams
= ['content', 'selection', 'pos', 'size', 'style']
541 required
= ['content']
542 default
= {'content': '[]'}
543 winStyles
= ['wxCB_SORT']
545 class xxxSlider(xxxObject
):
546 allParams
= ['value', 'min', 'max', 'pos', 'size', 'style',
547 'tickfreq', 'pagesize', 'linesize', 'thumb', 'tick',
549 paramDict
= {'value': ParamInt
, 'tickfreq': ParamIntNN
, 'pagesize': ParamIntNN
,
550 'linesize': ParamIntNN
, 'thumb': ParamUnit
,
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',
555 'wxSL_BOTH', 'wxSL_SELRANGE', 'wxSL_INVERSE']
557 class xxxGauge(xxxObject
):
558 allParams
= ['range', 'pos', 'size', 'style', 'value', 'shadow', 'bezel']
559 paramDict
= {'range': ParamIntNN
, 'value': ParamIntNN
,
560 'shadow': ParamIntNN
, 'bezel': ParamIntNN
}
561 winStyles
= ['wxGA_HORIZONTAL', 'wxGA_VERTICAL', 'wxGA_PROGRESSBAR', 'wxGA_SMOOTH']
563 class xxxScrollBar(xxxObject
):
564 allParams
= ['pos', 'size', 'style', 'value', 'thumbsize', 'range', 'pagesize']
565 paramDict
= {'value': ParamIntNN
, 'range': ParamIntNN
, 'thumbsize': ParamIntNN
,
566 'pagesize': ParamIntNN
}
567 winStyles
= ['wxSB_HORIZONTAL', 'wxSB_VERTICAL']
569 class xxxListCtrl(xxxObject
):
570 allParams
= ['pos', 'size', 'style']
571 winStyles
= ['wxLC_LIST', 'wxLC_REPORT', 'wxLC_ICON', 'wxLC_SMALL_ICON',
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']
577 class xxxTreeCtrl(xxxObject
):
578 allParams
= ['pos', 'size', 'style']
579 winStyles
= ['wxTR_EDIT_LABELS',
582 'wxTR_TWIST_BUTTONS',
584 'wxTR_FULL_ROW_HIGHLIGHT',
585 'wxTR_LINES_AT_ROOT',
588 'wxTR_HAS_VARIABLE_ROW_HEIGHT',
592 'wxTR_DEFAULT_STYLE']
594 class xxxHtmlWindow(xxxObject
):
595 allParams
= ['pos', 'size', 'style', 'borders', 'url', 'htmlcode']
596 paramDict
= {'htmlcode':ParamMultilineText}
597 winStyles
= ['wxHW_SCROLLBAR_NEVER', 'wxHW_SCROLLBAR_AUTO', 'wxHW_NO_SELECTION']
599 class xxxCalendarCtrl(xxxObject
):
600 allParams
= ['pos', 'size', 'style']
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']
605 class xxxNotebook(xxxContainer
):
606 allParams
= ['pos', 'size', 'style']
607 winStyles
= ['wxNB_DEFAULT', 'wxNB_LEFT', 'wxNB_RIGHT', 'wxNB_BOTTOM',
608 'wxNB_FIXEDWIDTH', 'wxNB_MULTILINE', 'wxNB_NOPAGETHEME']
610 class xxxChoicebook(xxxContainer
):
611 allParams
= ['pos', 'size', 'style']
612 winStyles
= ['wxCHB_DEFAULT', 'wxCHB_LEFT', 'wxCHB_RIGHT', 'wxCHB_TOP', 'wxCHB_BOTTOM']
614 class xxxListbook(xxxContainer
):
615 allParams
= ['pos', 'size', 'style']
616 winStyles
= ['wxLB_DEFAULT', 'wxLB_LEFT', 'wxLB_RIGHT', 'wxLB_TOP', 'wxLB_BOTTOM']
618 class xxxSplitterWindow(xxxContainer
):
619 allParams
= ['orientation', 'sashpos', 'minsize', 'pos', 'size', 'style']
620 paramDict
= {'orientation': ParamOrientation, 'sashpos': ParamUnit, 'minsize': ParamUnit }
621 winStyles
= ['wxSP_3D', 'wxSP_3DSASH', 'wxSP_3DBORDER',
622 'wxSP_FULLSASH', 'wxSP_NOBORDER', 'wxSP_PERMIT_UNSPLIT', 'wxSP_LIVE_UPDATE',
625 class xxxGenericDirCtrl(xxxObject
):
626 allParams
= ['defaultfolder', 'filter', 'defaultfilter', 'pos', 'size', 'style']
627 paramDict
= {'defaultfilter': ParamIntNN}
628 winStyles
= ['wxDIRCTRL_DIR_ONLY', 'wxDIRCTRL_3D_INTERNAL', 'wxDIRCTRL_SELECT_FIRST',
629 'wxDIRCTRL_SHOW_FILTERS']
631 class xxxScrolledWindow(xxxContainer
):
632 allParams
= ['pos', 'size', 'style']
633 winStyles
= ['wxHSCROLL', 'wxVSCROLL', 'wxNO_3D', 'wxTAB_TRAVERSAL']
635 class xxxDateCtrl(xxxObject
):
636 allParams
= ['pos', 'size', 'style', 'borders']
637 winStyles
= ['wxDP_DEFAULT', 'wxDP_SPIN', 'wxDP_DROPDOWN',
638 'wxDP_ALLOWNONE', 'wxDP_SHOWCENTURY']
640 ################################################################################
643 class xxxButton(xxxObject
):
644 allParams
= ['label', 'default', 'pos', 'size', 'style']
645 paramDict
= {'default': ParamBool}
647 winStyles
= ['wxBU_LEFT', 'wxBU_TOP', 'wxBU_RIGHT', 'wxBU_BOTTOM', 'wxBU_EXACTFIT']
649 class xxxBitmapButton(xxxObject
):
650 allParams
= ['bitmap', 'selected', 'focus', 'disabled', 'default',
651 'pos', 'size', 'style']
652 paramDict
= {'selected': ParamBitmap
, 'focus': ParamBitmap
, 'disabled': ParamBitmap
,
653 'default': ParamBool
}
654 required
= ['bitmap']
655 winStyles
= ['wxBU_AUTODRAW', 'wxBU_LEFT', 'wxBU_RIGHT',
656 'wxBU_TOP', 'wxBU_BOTTOM', 'wxBU_EXACTFIT']
658 class xxxRadioButton(xxxObject
):
659 allParams
= ['label', 'value', 'pos', 'size', 'style']
660 paramDict
= {'value': ParamBool}
662 winStyles
= ['wxRB_GROUP', 'wxRB_SINGLE']
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']
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']
674 class xxxToggleButton(xxxObject
):
675 allParams
= ['label', 'checked', 'pos', 'size', 'style']
676 paramDict
= {'checked': ParamBool}
679 ################################################################################
682 class xxxStaticBox(xxxObject
):
683 allParams
= ['label', 'pos', 'size', 'style']
686 class xxxRadioBox(xxxObject
):
687 allParams
= ['label', 'content', 'selection', 'dimension', 'pos', 'size', 'style']
688 paramDict
= {'dimension': ParamIntNN}
689 required
= ['label', 'content']
690 default
= {'content': '[]'}
691 winStyles
= ['wxRA_SPECIFY_ROWS', 'wxRA_SPECIFY_COLS', 'wxRA_HORIZONTAL',
694 class xxxCheckBox(xxxObject
):
695 allParams
= ['label', 'checked', 'pos', 'size', 'style']
696 paramDict
= {'checked': ParamBool}
697 winStyles
= ['wxCHK_2STATE', 'wxCHK_3STATE', 'wxCHK_ALLOW_3RD_STATE_FOR_USER',
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']
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',
712 'wxLB_ALWAYS_SB', 'wxLB_NEEDED_SB', 'wxLB_SORT']
714 class xxxCheckList(xxxObject
):
715 allParams
= ['content', 'pos', 'size', 'style']
716 required
= ['content']
717 default
= {'content': '[]'}
718 winStyles
= ['wxLB_SINGLE', 'wxLB_MULTIPLE', 'wxLB_EXTENDED', 'wxLB_HSCROLL',
719 'wxLB_ALWAYS_SB', 'wxLB_NEEDED_SB', 'wxLB_SORT']
720 paramDict
= {'content': ParamContentCheckList}
722 ################################################################################
725 class xxxSizer(xxxContainer
):
726 hasName
= hasStyle
= False
727 paramDict
= {'orient': ParamOrient}
729 itemTag
= 'sizeritem' # different for some sizers
731 class xxxBoxSizer(xxxSizer
):
732 allParams
= ['orient']
733 required
= ['orient']
734 default
= {'orient': 'wxVERTICAL'}
735 # Tree icon depends on orientation
737 if self
.params
['orient'].value() == 'wxHORIZONTAL': return self
.imageH
738 else: return self
.imageV
740 class xxxStaticBoxSizer(xxxBoxSizer
):
741 allParams
= ['label', 'orient']
742 required
= ['label', 'orient']
744 class xxxGridSizer(xxxSizer
):
745 allParams
= ['cols', 'rows', 'vgap', 'hgap']
747 default
= {'cols': '2', 'rows': '2'}
749 class xxxStdDialogButtonSizer(xxxSizer
):
753 # For repeated parameters
755 def __init__(self
, node
):
757 self
.l
, self
.data
= [], []
758 def append(self
, param
):
760 self
.data
.append(param
.value())
766 self
.l
, self
.data
= [], []
768 class xxxFlexGridSizer(xxxGridSizer
):
769 specials
= ['growablecols', 'growablerows']
770 allParams
= ['cols', 'rows', 'vgap', 'hgap'] + specials
771 paramDict
= {'growablecols': ParamIntList, 'growablerows': ParamIntList}
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
]
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
)
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
]
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
)
812 # Container with only one child.
814 class xxxChildContainer(xxxObject
):
815 hasName
= hasStyle
= False
817 def __init__(self
, parent
, element
, refElem
=None):
818 xxxObject
.__init
__(self
, parent
, element
, refElem
)
819 # Must have one child with 'object' tag, but we don't check it
820 nodes
= element
.childNodes
[:] # create copy
822 if node
.nodeType
== minidom
.Node
.ELEMENT_NODE
:
823 if node
.tagName
in ['object', 'object_ref']:
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
832 element
.removeChild(node
)
834 assert 0, 'no child found'
836 class xxxSizerItem(xxxChildContainer
):
837 allParams
= ['option', 'flag', 'border', 'minsize', 'ratio']
838 paramDict
= {'option': ParamInt, 'minsize': ParamPosSize, 'ratio': ParamPosSize}
839 #default = {'cellspan': '1,1'}
840 def __init__(self
, parent
, element
, refElem
=None):
841 # For GridBag sizer items, extra parameters added
842 if isinstance(parent
, xxxGridBagSizer
):
843 self
.allParams
= self
.allParams
+ ['cellpos', 'cellspan']
844 xxxChildContainer
.__init
__(self
, parent
, element
, refElem
)
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')
850 class xxxSizerItemButton(xxxSizerItem
):
853 def __init__(self
, parent
, element
, refElem
=None):
854 xxxChildContainer
.__init
__(self
, parent
, element
, refElem
=None)
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')
860 class xxxPage(xxxChildContainer
):
861 allParams
= ['label', 'selected']
862 paramDict
= {'selected': ParamBool}
864 def __init__(self
, parent
, element
, refElem
=None):
865 xxxChildContainer
.__init
__(self
, parent
, element
, refElem
)
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')
874 class xxxSpacer(xxxObject
):
875 hasName
= hasStyle
= False
876 allParams
= ['size', 'option', 'flag', 'border']
877 paramDict
= {'option': ParamInt}
878 default
= {'size': '0,0'}
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
)
885 class xxxMenuBar(xxxContainer
):
886 allParams
= ['style']
887 paramDict
= {'style': ParamNonGenericStyle}
# no generic styles
888 winStyles
= ['wxMB_DOCKABLE']
890 class xxxMenu(xxxContainer
):
891 allParams
= ['label', 'help', 'style']
892 default
= {'label': ''}
893 paramDict
= {'style': ParamNonGenericStyle}
# no generic styles
894 winStyles
= ['wxMENU_TEAROFF']
896 class xxxMenuItem(xxxObject
):
897 allParams
= ['label', 'bitmap', 'accel', 'help',
898 'checkable', 'radio', 'enabled', 'checked']
899 default
= {'label': ''}
902 class xxxSeparator(xxxObject
):
903 hasName
= hasStyle
= False
905 ################################################################################
908 class xxxUnknown(xxxObject
):
909 allParams
= ['pos', 'size', 'style']
910 winStyles
= ['wxNO_FULL_REPAINT_ON_RESIZE']
912 ################################################################################
916 'wxDialog': xxxDialog
,
919 'wxToolBar': xxxToolBar
,
920 'wxStatusBar': xxxStatusBar
,
921 'wxWizard': xxxWizard
,
922 'wxWizardPage': xxxWizardPage
,
923 'wxWizardPageSimple': xxxWizardPageSimple
,
925 'wxBitmap': xxxBitmap
,
928 'wxButton': xxxButton
,
929 'wxBitmapButton': xxxBitmapButton
,
930 'wxRadioButton': xxxRadioButton
,
931 'wxSpinButton': xxxSpinButton
,
932 'wxToggleButton' : xxxToggleButton
,
934 'wxStaticBox': xxxStaticBox
,
935 'wxStaticBitmap': xxxStaticBitmap
,
936 'wxRadioBox': xxxRadioBox
,
937 'wxComboBox': xxxComboBox
,
938 'wxCheckBox': xxxCheckBox
,
939 'wxListBox': xxxListBox
,
941 'wxStaticText': xxxStaticText
,
942 'wxStaticLine': xxxStaticLine
,
943 'wxTextCtrl': xxxTextCtrl
,
944 'wxChoice': xxxChoice
,
945 'wxSlider': xxxSlider
,
947 'wxScrollBar': xxxScrollBar
,
948 'wxTreeCtrl': xxxTreeCtrl
,
949 'wxListCtrl': xxxListCtrl
,
950 'wxCheckListBox': xxxCheckList
,
951 'notebookpage': xxxPage
,
952 'choicebookpage': xxxPage
,
953 'listbookpage': xxxPage
,
954 'wxNotebook': xxxNotebook
,
955 'wxChoicebook': xxxChoicebook
,
956 'wxListbook': xxxListbook
,
957 'wxSplitterWindow': xxxSplitterWindow
,
958 'wxHtmlWindow': xxxHtmlWindow
,
959 'wxCalendarCtrl': xxxCalendarCtrl
,
960 'wxGenericDirCtrl': xxxGenericDirCtrl
,
961 'wxSpinCtrl': xxxSpinCtrl
,
962 'wxScrolledWindow': xxxScrolledWindow
,
963 'wxDatePickerCtrl': xxxDateCtrl
,
965 'wxBoxSizer': xxxBoxSizer
,
966 'wxStaticBoxSizer': xxxStaticBoxSizer
,
967 'wxGridSizer': xxxGridSizer
,
968 'wxFlexGridSizer': xxxFlexGridSizer
,
969 'wxGridBagSizer': xxxGridBagSizer
,
970 'wxStdDialogButtonSizer': xxxStdDialogButtonSizer
,
971 'sizeritem': xxxSizerItem
, 'button': xxxSizerItemButton
,
974 'wxMenuBar': xxxMenuBar
,
976 'wxMenuItem': xxxMenuItem
,
977 'separator': xxxSeparator
,
979 'unknown': xxxUnknown
,
982 # Create IDs for all parameters of all classes
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()
988 for cl
in xxxDict
.values():
990 for param
in cl
.allParams
+ cl
.paramDict
.keys():
991 if not paramIDs
.has_key(param
):
992 paramIDs
[param
] = wx
.NewId()
994 ################################################################################
997 # Test for object elements
999 return node
.nodeType
== minidom
.Node
.ELEMENT_NODE
and node
.tagName
in ['object', 'object_ref']
1001 # Make XXX object from some DOM object, selecting correct class
1002 def MakeXXXFromDOM(parent
, element
):
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
)
1010 cls
= element
.getAttribute('class')
1012 klass
= xxxDict
[cls
]
1014 # If we encounter a weird class, use unknown template
1015 print 'WARNING: unsupported class:', element
.getAttribute('class')
1017 return klass(parent
, element
, refElem
)
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
)
1030 textNode
= g
.tree
.dom
.createTextNode(xxxClass
.default
[param
])
1032 textNode
= g
.tree
.dom
.createTextNode('')
1033 textElem
.appendChild(textNode
)
1034 elem
.appendChild(textElem
)
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
1043 if parent
.isSizer
and className
!= 'spacer':
1044 sizerItemElem
= MakeEmptyDOM(parent
.itemTag
)
1045 sizerItemElem
.appendChild(elem
)
1046 elem
= sizerItemElem
1047 elif isinstance(parent
, xxxNotebook
):
1048 pageElem
= MakeEmptyDOM('notebookpage')
1049 pageElem
.appendChild(elem
)
1051 elif isinstance(parent
, xxxChoicebook
):
1052 pageElem
= MakeEmptyDOM('choicebookpage')
1053 pageElem
.appendChild(elem
)
1055 elif isinstance(parent
, xxxListbook
):
1056 pageElem
= MakeEmptyDOM('listbookpage')
1057 pageElem
.appendChild(elem
)
1059 # Now just make object
1060 return MakeXXXFromDOM(parent
, elem
)
1062 # Make empty DOM element for reference
1063 def MakeEmptyRefDOM(ref
):
1064 elem
= g
.tree
.dom
.createElement('object_ref')
1065 elem
.setAttribute('ref', ref
)
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
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
)
1082 elif isinstance(parent
, xxxChoicebook
):
1083 pageElem
= MakeEmptyDOM('choicebookpage')
1084 pageElem
.appendChild(elem
)
1086 elif isinstance(parent
, xxxListbook
):
1087 pageElem
= MakeEmptyDOM('listbookpage')
1088 pageElem
.appendChild(elem
)
1090 # Now just make object
1091 return MakeXXXFromDOM(parent
, elem
)