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 wxUSE_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 #wxLogMessage("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
):
213 self
.element
= element
216 self
.className
= element
.getAttribute('class')
217 self
.subclass
= element
.getAttribute('subclass')
218 if self
.hasName
: self
.name
= element
.getAttribute('name')
219 # Set parameters (text element children)
221 nodes
= element
.childNodes
[:]
223 if node
.nodeType
== minidom
.Node
.ELEMENT_NODE
:
226 continue # do nothing for object children here
227 if tag
not in self
.allParams
and tag
not in self
.styles
:
228 print 'WARNING: unknown parameter for %s: %s' % \
229 (self
.className
, tag
)
230 elif tag
in self
.specials
:
231 self
.special(tag
, node
)
232 elif tag
== 'content':
233 if self
.className
== 'wxCheckListBox':
234 self
.params
[tag
] = xxxParamContentCheckList(node
)
236 self
.params
[tag
] = xxxParamContent(node
)
237 elif tag
== 'font': # has children
238 self
.params
[tag
] = xxxParamFont(element
, node
)
239 elif tag
in self
.bitmapTags
:
240 # Can have attributes
241 self
.params
[tag
] = xxxParamBitmap(node
)
242 else: # simple parameter
243 self
.params
[tag
] = xxxParam(node
)
244 elif node
.nodeType
== minidom
.Node
.TEXT_NODE
and node
.data
.isspace():
245 # Remove empty text nodes
246 element
.removeChild(node
)
249 # Check that all required params are set
250 for param
in self
.required
:
251 if not self
.params
.has_key(param
):
252 # If default is specified, set it
253 if self
.default
.has_key(param
):
254 elem
= g
.tree
.dom
.createElement(param
)
255 if param
== 'content':
256 if self
.className
== 'wxCheckListBox':
257 self
.params
[param
] = xxxParamContentCheckList(elem
)
259 self
.params
[param
] = xxxParamContent(elem
)
261 self
.params
[param
] = xxxParam(elem
)
262 # Find place to put new element: first present element after param
264 paramStyles
= self
.allParams
+ self
.styles
265 for p
in paramStyles
[paramStyles
.index(param
) + 1:]:
266 # Content params don't have same type
267 if self
.params
.has_key(p
) and p
!= 'content':
271 nextTextElem
= self
.params
[p
].node
272 self
.element
.insertBefore(elem
, nextTextElem
)
274 self
.element
.appendChild(elem
)
276 wxLogWarning('Required parameter %s of %s missing' %
277 (param
, self
.className
))
278 # Returns real tree object
279 def treeObject(self
):
280 if self
.hasChild
: return self
.child
282 # Returns tree image index
284 if self
.hasChild
: return self
.child
.treeImage()
286 # Class name plus wx name
288 if self
.hasChild
: return self
.child
.treeName()
289 if self
.subclass
: className
= self
.subclass
290 else: className
= self
.className
291 if self
.hasName
and self
.name
: return className
+ ' "' + self
.name
+ '"'
293 # Class name or subclass
295 if self
.subclass
: return self
.subclass
+ '(' + self
.className
+ ')'
296 else: return self
.className
297 # Sets name of tree object
298 def setTreeName(self
, name
):
299 if self
.hasChild
: obj
= self
.child
302 obj
.element
.setAttribute('name', name
)
304 ################################################################################
306 # This is a little special: it is both xxxObject and xxxNode
307 class xxxParamFont(xxxObject
, xxxNode
):
308 allParams
= ['size', 'family', 'style', 'weight', 'underlined',
310 def __init__(self
, parent
, element
):
311 xxxObject
.__init
__(self
, parent
, element
)
312 xxxNode
.__init
__(self
, element
)
313 self
.parentNode
= parent
# required to behave similar to DOM node
315 for p
in self
.allParams
:
317 v
.append(str(self
.params
[p
].value()))
321 def update(self
, value
):
322 # `value' is a list of strings corresponding to all parameters
324 # Remove old elements first
325 childNodes
= elem
.childNodes
[:]
326 for node
in childNodes
: elem
.removeChild(node
)
330 for param
in self
.allParams
:
332 fontElem
= g
.tree
.dom
.createElement(param
)
333 textNode
= g
.tree
.dom
.createTextNode(value
[i
])
334 self
.params
[param
] = textNode
335 fontElem
.appendChild(textNode
)
336 elem
.appendChild(fontElem
)
343 ################################################################################
345 class xxxContainer(xxxObject
):
349 # Simulate normal parameter for encoding
352 return g
.currentEncoding
353 def update(self
, val
):
354 g
.currentEncoding
= val
356 # Special class for root node
357 class xxxMainNode(xxxContainer
):
358 allParams
= ['encoding']
359 hasStyle
= hasName
= False
360 def __init__(self
, dom
):
361 xxxContainer
.__init
__(self
, None, dom
.documentElement
)
362 self
.className
= 'XML tree'
363 # Reset required parameters after processing XML, because encoding is
365 self
.required
= ['encoding']
366 self
.params
['encoding'] = xxxEncoding()
368 ################################################################################
371 class xxxPanel(xxxContainer
):
372 allParams
= ['pos', 'size', 'style']
373 styles
= ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle',
376 class xxxDialog(xxxContainer
):
377 allParams
= ['title', 'centered', 'pos', 'size', 'style']
378 paramDict
= {'centered': ParamBool}
380 default
= {'title': ''}
381 winStyles
= ['wxDEFAULT_DIALOG_STYLE',
382 'wxCAPTION', 'wxMINIMIZE_BOX', 'wxMAXIMIZE_BOX', 'wxCLOSE_BOX',
385 'wxNO_3D', 'wxDIALOG_NO_PARENT']
386 styles
= ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle',
389 class xxxFrame(xxxContainer
):
390 allParams
= ['title', 'centered', 'pos', 'size', 'style']
391 paramDict
= {'centered': ParamBool}
393 default
= {'title': ''}
394 winStyles
= ['wxDEFAULT_FRAME_STYLE',
395 'wxCAPTION', 'wxMINIMIZE_BOX', 'wxMAXIMIZE_BOX', 'wxCLOSE_BOX',
397 'wxSYSTEM_MENU', 'wxRESIZE_BORDER',
398 'wxFRAME_TOOL_WINDOW', 'wxFRAME_NO_TASKBAR',
399 'wxFRAME_FLOAT_ON_PARENT', 'wxFRAME_SHAPED'
401 styles
= ['fg', 'bg', 'font', 'enabled', 'focused', 'hidden', 'exstyle',
404 class xxxTool(xxxObject
):
405 allParams
= ['bitmap', 'bitmap2', 'radio', 'toggle', 'tooltip', 'longhelp', 'label']
406 required
= ['bitmap']
407 paramDict
= {'bitmap2': ParamBitmap, 'radio': ParamBool, 'toggle': ParamBool}
410 class xxxToolBar(xxxContainer
):
411 allParams
= ['bitmapsize', 'margins', 'packing', 'separation', 'dontattachtoframe',
412 'pos', 'size', 'style']
414 paramDict
= {'bitmapsize': ParamPosSize
, 'margins': ParamPosSize
,
415 'packing': ParamInt
, 'separation': ParamInt
,
416 'dontattachtoframe': ParamBool
, 'style': ParamNonGenericStyle
}
417 winStyles
= ['wxTB_FLAT', 'wxTB_DOCKABLE', 'wxTB_VERTICAL', 'wxTB_HORIZONTAL',
418 'wxTB_3DBUTTONS','wxTB_TEXT', 'wxTB_NOICONS', 'wxTB_NODIVIDER',
419 'wxTB_NOALIGN', 'wxTB_HORZ_LAYOUT', 'wxTB_HORZ_TEXT']
421 class xxxWizard(xxxContainer
):
422 allParams
= ['title', 'bitmap', 'pos']
424 default
= {'title': ''}
426 exStyles
= ['wxWIZARD_EX_HELPBUTTON']
428 class xxxWizardPage(xxxContainer
):
429 allParams
= ['bitmap']
433 class xxxWizardPageSimple(xxxContainer
):
434 allParams
= ['bitmap']
438 ################################################################################
441 class xxxBitmap(xxxObject
):
442 allParams
= ['bitmap']
443 required
= ['bitmap']
446 class xxxIcon(xxxObject
):
449 ################################################################################
452 class xxxStaticText(xxxObject
):
453 allParams
= ['label', 'pos', 'size', 'style']
455 default
= {'label': ''}
456 winStyles
= ['wxALIGN_LEFT', 'wxALIGN_RIGHT', 'wxALIGN_CENTRE', 'wxST_NO_AUTORESIZE']
458 class xxxStaticLine(xxxObject
):
459 allParams
= ['pos', 'size', 'style']
460 winStyles
= ['wxLI_HORIZONTAL', 'wxLI_VERTICAL']
462 class xxxStaticBitmap(xxxObject
):
463 allParams
= ['bitmap', 'pos', 'size', 'style']
464 required
= ['bitmap']
466 class xxxTextCtrl(xxxObject
):
467 allParams
= ['value', 'pos', 'size', 'style']
468 winStyles
= ['wxTE_PROCESS_ENTER', 'wxTE_PROCESS_TAB', 'wxTE_MULTILINE',
469 'wxTE_PASSWORD', 'wxTE_READONLY', 'wxHSCROLL']
470 paramDict
= {'value': ParamMultilineText}
472 class xxxChoice(xxxObject
):
473 allParams
= ['content', 'selection', 'pos', 'size', 'style']
474 required
= ['content']
475 default
= {'content': '[]'}
476 winStyles
= ['wxCB_SORT']
478 class xxxSlider(xxxObject
):
479 allParams
= ['value', 'min', 'max', 'pos', 'size', 'style',
480 'tickfreq', 'pagesize', 'linesize', 'thumb', 'tick',
482 paramDict
= {'value': ParamInt
, 'tickfreq': ParamInt
, 'pagesize': ParamInt
,
483 'linesize': ParamInt
, 'thumb': ParamInt
, 'thumb': ParamInt
,
484 'tick': ParamInt
, 'selmin': ParamInt
, 'selmax': ParamInt
}
485 required
= ['value', 'min', 'max']
486 winStyles
= ['wxSL_HORIZONTAL', 'wxSL_VERTICAL', 'wxSL_AUTOTICKS', 'wxSL_LABELS',
487 'wxSL_LEFT', 'wxSL_RIGHT', 'wxSL_TOP', 'wxSL_BOTTOM',
488 'wxSL_BOTH', 'wxSL_SELRANGE', 'wxSL_INVERSE']
490 class xxxGauge(xxxObject
):
491 allParams
= ['range', 'pos', 'size', 'style', 'value', 'shadow', 'bezel']
492 paramDict
= {'range': ParamInt
, 'value': ParamInt
,
493 'shadow': ParamInt
, 'bezel': ParamInt
}
494 winStyles
= ['wxGA_HORIZONTAL', 'wxGA_VERTICAL', 'wxGA_PROGRESSBAR', 'wxGA_SMOOTH']
496 class xxxScrollBar(xxxObject
):
497 allParams
= ['pos', 'size', 'style', 'value', 'thumbsize', 'range', 'pagesize']
498 paramDict
= {'value': ParamInt
, 'range': ParamInt
, 'thumbsize': ParamInt
,
499 'pagesize': ParamInt
}
500 winStyles
= ['wxSB_HORIZONTAL', 'wxSB_VERTICAL']
502 class xxxListCtrl(xxxObject
):
503 allParams
= ['pos', 'size', 'style']
504 winStyles
= ['wxLC_LIST', 'wxLC_REPORT', 'wxLC_ICON', 'wxLC_SMALL_ICON',
505 'wxLC_ALIGN_TOP', 'wxLC_ALIGN_LEFT', 'wxLC_AUTOARRANGE',
506 'wxLC_USER_TEXT', 'wxLC_EDIT_LABELS', 'wxLC_NO_HEADER',
507 'wxLC_SINGLE_SEL', 'wxLC_SORT_ASCENDING', 'wxLC_SORT_DESCENDING']
509 class xxxTreeCtrl(xxxObject
):
510 allParams
= ['pos', 'size', 'style']
511 winStyles
= ['wxTR_HAS_BUTTONS', 'wxTR_NO_LINES', 'wxTR_LINES_AT_ROOT',
512 'wxTR_EDIT_LABELS', 'wxTR_MULTIPLE']
514 class xxxHtmlWindow(xxxObject
):
515 allParams
= ['pos', 'size', 'style', 'borders', 'url', 'htmlcode']
516 paramDict
= {'borders': ParamInt, 'htmlcode':ParamMultilineText}
517 winStyles
= ['wxHW_SCROLLBAR_NEVER', 'wxHW_SCROLLBAR_AUTO']
519 class xxxCalendarCtrl(xxxObject
):
520 allParams
= ['pos', 'size', 'style']
522 class xxxNotebook(xxxContainer
):
523 allParams
= ['usenotebooksizer', 'pos', 'size', 'style']
524 paramDict
= {'usenotebooksizer': ParamBool}
525 winStyles
= ['wxNB_FIXEDWIDTH', 'wxNB_LEFT', 'wxNB_RIGHT', 'wxNB_BOTTOM']
527 class xxxSplitterWindow(xxxContainer
):
528 allParams
= ['orientation', 'sashpos', 'minsize', 'pos', 'size', 'style']
529 paramDict
= {'orientation': ParamOrientation, 'sashpos': ParamUnit, 'minsize': ParamUnit }
530 winStyles
= ['wxSP_3D', 'wxSP_3DSASH', 'wxSP_3DBORDER', 'wxSP_BORDER',
531 'wxSP_NOBORDER', 'wxSP_PERMIT_UNSPLIT', 'wxSP_LIVE_UPDATE',
534 class xxxGenericDirCtrl(xxxObject
):
535 allParams
= ['defaultfolder', 'filter', 'defaultfilter', 'pos', 'size', 'style']
536 paramDict
= {'defaultfilter': ParamInt}
537 winStyles
= ['wxDIRCTRL_DIR_ONLY', 'wxDIRCTRL_3D_INTERNAL', 'wxDIRCTRL_SELECT_FIRST',
538 'wxDIRCTRL_SHOW_FILTERS', 'wxDIRCTRL_EDIT_LABELS']
540 class xxxScrolledWindow(xxxContainer
):
541 allParams
= ['pos', 'size', 'style']
542 winStyles
= ['wxHSCROLL', 'wxVSCROLL']
544 ################################################################################
547 class xxxButton(xxxObject
):
548 allParams
= ['label', 'default', 'pos', 'size', 'style']
549 paramDict
= {'default': ParamBool}
551 winStyles
= ['wxBU_LEFT', 'wxBU_TOP', 'wxBU_RIGHT', 'wxBU_BOTTOM']
553 class xxxBitmapButton(xxxObject
):
554 allParams
= ['bitmap', 'selected', 'focus', 'disabled', 'default',
555 'pos', 'size', 'style']
556 required
= ['bitmap']
557 winStyles
= ['wxBU_AUTODRAW', 'wxBU_LEFT', 'wxBU_TOP',
558 'wxBU_RIGHT', 'wxBU_BOTTOM']
560 class xxxRadioButton(xxxObject
):
561 allParams
= ['label', 'value', 'pos', 'size', 'style']
562 paramDict
= {'value': ParamBool}
564 winStyles
= ['wxRB_GROUP']
566 class xxxSpinButton(xxxObject
):
567 allParams
= ['value', 'min', 'max', 'pos', 'size', 'style']
568 paramDict
= {'value': ParamInt}
569 winStyles
= ['wxSP_HORIZONTAL', 'wxSP_VERTICAL', 'wxSP_ARROW_KEYS', 'wxSP_WRAP']
571 class xxxSpinCtrl(xxxObject
):
572 allParams
= ['value', 'min', 'max', 'pos', 'size', 'style']
573 paramDict
= {'value': ParamInt}
574 winStyles
= ['wxSP_HORIZONTAL', 'wxSP_VERTICAL', 'wxSP_ARROW_KEYS', 'wxSP_WRAP']
576 class xxxToggleButton(xxxObject
):
577 allParams
= ['label', 'checked', 'pos', 'size', 'style']
578 paramDict
= {'checked': ParamBool}
581 ################################################################################
584 class xxxStaticBox(xxxObject
):
585 allParams
= ['label', 'pos', 'size', 'style']
588 class xxxRadioBox(xxxObject
):
589 allParams
= ['label', 'content', 'selection', 'dimension', 'pos', 'size', 'style']
590 paramDict
= {'dimension': ParamInt}
591 required
= ['label', 'content']
592 default
= {'content': '[]'}
593 winStyles
= ['wxRA_SPECIFY_ROWS', 'wxRA_SPECIFY_COLS']
595 class xxxCheckBox(xxxObject
):
596 allParams
= ['label', 'checked', 'pos', 'size', 'style']
597 paramDict
= {'checked': ParamBool}
598 winStyles
= ['wxCHK_2STATE', 'wxCHK_3STATE', 'wxCHK_ALLOW_3RD_STATE_FOR_USER',
602 class xxxComboBox(xxxObject
):
603 allParams
= ['content', 'selection', 'value', 'pos', 'size', 'style']
604 required
= ['content']
605 default
= {'content': '[]'}
606 winStyles
= ['wxCB_SIMPLE', 'wxCB_SORT', 'wxCB_READONLY', 'wxCB_DROPDOWN']
608 class xxxListBox(xxxObject
):
609 allParams
= ['content', 'selection', 'pos', 'size', 'style']
610 required
= ['content']
611 default
= {'content': '[]'}
612 winStyles
= ['wxLB_SINGLE', 'wxLB_MULTIPLE', 'wxLB_EXTENDED', 'wxLB_HSCROLL',
613 'wxLB_ALWAYS_SB', 'wxLB_NEEDED_SB', 'wxLB_SORT']
615 class xxxCheckList(xxxObject
):
616 allParams
= ['content', 'pos', 'size', 'style']
617 required
= ['content']
618 default
= {'content': '[]'}
619 winStyles
= ['wxLC_LIST', 'wxLC_REPORT', 'wxLC_ICON', 'wxLC_SMALL_ICON',
620 'wxLC_ALIGN_TOP', 'wxLC_ALIGN_LEFT', 'wxLC_AUTOARRANGE',
621 'wxLC_USER_TEXT', 'wxLC_EDIT_LABELS', 'wxLC_NO_HEADER',
622 'wxLC_SINGLE_SEL', 'wxLC_SORT_ASCENDING', 'wxLC_SORT_DESCENDING']
623 paramDict
= {'content': ParamContentCheckList}
625 ################################################################################
628 class xxxSizer(xxxContainer
):
629 hasName
= hasStyle
= False
630 paramDict
= {'orient': ParamOrient}
632 itemTag
= 'sizeritem' # different for some sizers
634 class xxxBoxSizer(xxxSizer
):
635 allParams
= ['orient']
636 required
= ['orient']
637 default
= {'orient': 'wxVERTICAL'}
638 # Tree icon depends on orientation
640 if self
.params
['orient'].value() == 'wxHORIZONTAL': return self
.imageH
641 else: return self
.imageV
643 class xxxStaticBoxSizer(xxxBoxSizer
):
644 allParams
= ['label', 'orient']
645 required
= ['label', 'orient']
647 class xxxGridSizer(xxxSizer
):
648 allParams
= ['cols', 'rows', 'vgap', 'hgap']
650 default
= {'cols': '2', 'rows': '2'}
652 class xxxStdDialogButtonSizer(xxxSizer
):
656 # For repeated parameters
658 def __init__(self
, node
):
660 self
.l
, self
.data
= [], []
661 def append(self
, param
):
663 self
.data
.append(param
.value())
669 self
.l
, self
.data
= [], []
671 class xxxFlexGridSizer(xxxGridSizer
):
672 specials
= ['growablecols', 'growablerows']
673 allParams
= ['cols', 'rows', 'vgap', 'hgap'] + specials
674 paramDict
= {'growablecols':ParamIntList, 'growablerows':ParamIntList}
675 # Special processing for growable* parameters
676 # (they are represented by several nodes)
677 def special(self
, tag
, node
):
678 if not self
.params
.has_key(tag
):
679 # Create new multi-group
680 self
.params
[tag
] = xxxParamMulti(node
)
681 self
.params
[tag
].append(xxxParamInt(node
))
682 def setSpecial(self
, param
, value
):
683 # Straightforward implementation: remove, add again
684 self
.params
[param
].remove()
685 del self
.params
[param
]
687 node
= g
.tree
.dom
.createElement(param
)
688 text
= g
.tree
.dom
.createTextNode(str(i
))
689 node
.appendChild(text
)
690 self
.element
.appendChild(node
)
691 self
.special(param
, node
)
693 class xxxGridBagSizer(xxxSizer
):
694 specials
= ['growablecols', 'growablerows']
695 allParams
= ['vgap', 'hgap'] + specials
696 paramDict
= {'growablecols':ParamIntList, 'growablerows':ParamIntList}
697 # Special processing for growable* parameters
698 # (they are represented by several nodes)
699 def special(self
, tag
, node
):
700 if not self
.params
.has_key(tag
):
701 # Create new multi-group
702 self
.params
[tag
] = xxxParamMulti(node
)
703 self
.params
[tag
].append(xxxParamInt(node
))
704 def setSpecial(self
, param
, value
):
705 # Straightforward implementation: remove, add again
706 self
.params
[param
].remove()
707 del self
.params
[param
]
709 node
= g
.tree
.dom
.createElement(param
)
710 text
= g
.tree
.dom
.createTextNode(str(i
))
711 node
.appendChild(text
)
712 self
.element
.appendChild(node
)
713 self
.special(param
, node
)
715 # Container with only one child.
717 class xxxChildContainer(xxxObject
):
718 hasName
= hasStyle
= False
720 def __init__(self
, parent
, element
):
721 xxxObject
.__init
__(self
, parent
, element
)
722 # Must have one child with 'object' tag, but we don't check it
723 nodes
= element
.childNodes
[:] # create copy
725 if node
.nodeType
== minidom
.Node
.ELEMENT_NODE
:
726 if node
.tagName
== 'object':
727 # Create new xxx object for child node
728 self
.child
= MakeXXXFromDOM(self
, node
)
729 self
.child
.parent
= parent
730 # Copy hasChildren and isSizer attributes
731 self
.hasChildren
= self
.child
.hasChildren
732 self
.isSizer
= self
.child
.isSizer
735 element
.removeChild(node
)
737 assert 0, 'no child found'
739 class xxxSizerItem(xxxChildContainer
):
740 allParams
= ['option', 'flag', 'border', 'minsize', 'ratio']
741 paramDict
= {'option': ParamInt, 'minsize': ParamPosSize, 'ratio': ParamPosSize}
742 #default = {'cellspan': '1,1'}
743 def __init__(self
, parent
, element
):
744 # For GridBag sizer items, extra parameters added
745 if isinstance(parent
, xxxGridBagSizer
):
746 self
.allParams
= self
.allParams
+ ['cellpos', 'cellspan']
747 xxxChildContainer
.__init
__(self
, parent
, element
)
748 # Remove pos parameter - not needed for sizeritems
749 if 'pos' in self
.child
.allParams
:
750 self
.child
.allParams
= self
.child
.allParams
[:]
751 self
.child
.allParams
.remove('pos')
753 class xxxSizerItemButton(xxxSizerItem
):
756 def __init__(self
, parent
, element
):
757 xxxChildContainer
.__init
__(self
, parent
, element
)
758 # Remove pos parameter - not needed for sizeritems
759 if 'pos' in self
.child
.allParams
:
760 self
.child
.allParams
= self
.child
.allParams
[:]
761 self
.child
.allParams
.remove('pos')
763 class xxxNotebookPage(xxxChildContainer
):
764 allParams
= ['label', 'selected']
765 paramDict
= {'selected': ParamBool}
767 def __init__(self
, parent
, element
):
768 xxxChildContainer
.__init
__(self
, parent
, element
)
769 # pos and size dont matter for notebookpages
770 if 'pos' in self
.child
.allParams
:
771 self
.child
.allParams
= self
.child
.allParams
[:]
772 self
.child
.allParams
.remove('pos')
773 if 'size' in self
.child
.allParams
:
774 self
.child
.allParams
= self
.child
.allParams
[:]
775 self
.child
.allParams
.remove('size')
777 class xxxSpacer(xxxObject
):
778 hasName
= hasStyle
= False
779 allParams
= ['size', 'option', 'flag', 'border']
780 paramDict
= {'option': ParamInt}
781 default
= {'size': '0,0'}
783 class xxxMenuBar(xxxContainer
):
784 allParams
= ['style']
785 paramDict
= {'style': ParamNonGenericStyle}
# no generic styles
786 winStyles
= ['wxMB_DOCKABLE']
788 class xxxMenu(xxxContainer
):
789 allParams
= ['label', 'help', 'style']
790 default
= {'label': ''}
791 paramDict
= {'style': ParamNonGenericStyle}
# no generic styles
792 winStyles
= ['wxMENU_TEAROFF']
794 class xxxMenuItem(xxxObject
):
795 allParams
= ['label', 'bitmap', 'accel', 'help',
796 'checkable', 'radio', 'enabled', 'checked']
797 default
= {'label': ''}
800 class xxxSeparator(xxxObject
):
801 hasName
= hasStyle
= False
803 ################################################################################
806 class xxxUnknown(xxxObject
):
807 allParams
= ['pos', 'size', 'style']
808 paramDict
= {'style': ParamNonGenericStyle}
# no generic styles
810 ################################################################################
814 'wxDialog': xxxDialog
,
817 'wxToolBar': xxxToolBar
,
818 'wxWizard': xxxWizard
,
819 'wxWizardPage': xxxWizardPage
,
820 'wxWizardPageSimple': xxxWizardPageSimple
,
822 'wxBitmap': xxxBitmap
,
825 'wxButton': xxxButton
,
826 'wxBitmapButton': xxxBitmapButton
,
827 'wxRadioButton': xxxRadioButton
,
828 'wxSpinButton': xxxSpinButton
,
829 'wxToggleButton' : xxxToggleButton
,
831 'wxStaticBox': xxxStaticBox
,
832 'wxStaticBitmap': xxxStaticBitmap
,
833 'wxRadioBox': xxxRadioBox
,
834 'wxComboBox': xxxComboBox
,
835 'wxCheckBox': xxxCheckBox
,
836 'wxListBox': xxxListBox
,
838 'wxStaticText': xxxStaticText
,
839 'wxStaticLine': xxxStaticLine
,
840 'wxTextCtrl': xxxTextCtrl
,
841 'wxChoice': xxxChoice
,
842 'wxSlider': xxxSlider
,
844 'wxScrollBar': xxxScrollBar
,
845 'wxTreeCtrl': xxxTreeCtrl
,
846 'wxListCtrl': xxxListCtrl
,
847 'wxCheckListBox': xxxCheckList
,
848 'wxNotebook': xxxNotebook
,
849 'wxSplitterWindow': xxxSplitterWindow
,
850 'notebookpage': xxxNotebookPage
,
851 'wxHtmlWindow': xxxHtmlWindow
,
852 'wxCalendarCtrl': xxxCalendarCtrl
,
853 'wxGenericDirCtrl': xxxGenericDirCtrl
,
854 'wxSpinCtrl': xxxSpinCtrl
,
855 'wxScrolledWindow': xxxScrolledWindow
,
857 'wxBoxSizer': xxxBoxSizer
,
858 'wxStaticBoxSizer': xxxStaticBoxSizer
,
859 'wxGridSizer': xxxGridSizer
,
860 'wxFlexGridSizer': xxxFlexGridSizer
,
861 'wxGridBagSizer': xxxGridBagSizer
,
862 'wxStdDialogButtonSizer': xxxStdDialogButtonSizer
,
863 'sizeritem': xxxSizerItem
, 'button': xxxSizerItemButton
,
866 'wxMenuBar': xxxMenuBar
,
868 'wxMenuItem': xxxMenuItem
,
869 'separator': xxxSeparator
,
871 'unknown': xxxUnknown
,
874 # Create IDs for all parameters of all classes
875 paramIDs
= {'fg': wxNewId(), 'bg': wxNewId(), 'exstyle': wxNewId(), 'font': wxNewId(),
876 'enabled': wxNewId(), 'focused': wxNewId(), 'hidden': wxNewId(),
877 'tooltip': wxNewId(), 'encoding': wxNewId(),
878 'cellpos': wxNewId(), 'cellspan': wxNewId()
880 for cl
in xxxDict
.values():
882 for param
in cl
.allParams
+ cl
.paramDict
.keys():
883 if not paramIDs
.has_key(param
):
884 paramIDs
[param
] = wxNewId()
886 ################################################################################
889 # Test for object elements
891 return node
.nodeType
== minidom
.Node
.ELEMENT_NODE
and node
.tagName
== 'object'
893 # Make XXX object from some DOM object, selecting correct class
894 def MakeXXXFromDOM(parent
, element
):
896 klass
= xxxDict
[element
.getAttribute('class')]
898 # If we encounter a weird class, use unknown template
899 print 'WARNING: unsupported class:', element
.getAttribute('class')
901 return klass(parent
, element
)
903 # Make empty DOM element
904 def MakeEmptyDOM(className
):
905 elem
= g
.tree
.dom
.createElement('object')
906 elem
.setAttribute('class', className
)
907 # Set required and default parameters
908 xxxClass
= xxxDict
[className
]
909 defaultNotRequired
= filter(lambda x
, l
=xxxClass
.required
: x
not in l
,
910 xxxClass
.default
.keys())
911 for param
in xxxClass
.required
+ defaultNotRequired
:
912 textElem
= g
.tree
.dom
.createElement(param
)
914 textNode
= g
.tree
.dom
.createTextNode(xxxClass
.default
[param
])
916 textNode
= g
.tree
.dom
.createTextNode('')
917 textElem
.appendChild(textNode
)
918 elem
.appendChild(textElem
)
921 # Make empty XXX object
922 def MakeEmptyXXX(parent
, className
):
923 # Make corresponding DOM object first
924 elem
= MakeEmptyDOM(className
)
925 # If parent is a sizer, we should create sizeritem object, except for spacers
927 if parent
.isSizer
and className
!= 'spacer':
928 sizerItemElem
= MakeEmptyDOM(parent
.itemTag
)
929 sizerItemElem
.appendChild(elem
)
931 elif isinstance(parent
, xxxNotebook
):
932 pageElem
= MakeEmptyDOM('notebookpage')
933 pageElem
.appendChild(elem
)
935 # Now just make object
936 return MakeXXXFromDOM(parent
, elem
)