2 # Purpose: XRC editor, XML_tree class
3 # Author: Roman Rolinsky <rolinsky@mema.ucl.ac.be>
7 from xxx
import * # xxx imports globals and params
11 # Constant to define standart window name
12 STD_NAME
= '_XRCED_T_W'
18 def __init__(self
, name
):
21 def write(self
, data
):
23 encoding
= g
.currentEncoding
25 encoding
= wxGetDefaultPyEncoding()
27 self
.buffer += data
.encode(encoding
)
28 except UnicodeEncodeError:
29 self
.buffer += data
.encode(encoding
, 'xmlcharrefreplace')
32 wxMemoryFSHandler_AddFile(self
.name
, self
.buffer)
34 ################################################################################
36 # Redefine writing to include encoding
37 class MyDocument(minidom
.Document
):
39 minidom
.Document
.__init
__(self
)
41 def writexml(self
, writer
, indent
="", addindent
="", newl
="", encoding
=""):
42 if encoding
: encdstr
= 'encoding="%s"' % encoding
44 writer
.write('<?xml version="1.0" %s?>\n' % encdstr
)
45 for node
in self
.childNodes
:
46 node
.writexml(writer
, indent
, addindent
, newl
)
48 ################################################################################
50 # Ids for menu commands
60 STATIC_TEXT
= wxNewId()
64 BITMAP_BUTTON
= wxNewId()
65 RADIO_BUTTON
= wxNewId()
66 SPIN_BUTTON
= wxNewId()
67 TOGGLE_BUTTON
= wxNewId()
69 STATIC_BOX
= wxNewId()
75 STATIC_LINE
= wxNewId()
76 STATIC_BITMAP
= wxNewId()
80 SCROLL_BAR
= wxNewId()
83 CHECK_LIST
= wxNewId()
85 SPLITTER_WINDOW
= wxNewId()
86 SCROLLED_WINDOW
= wxNewId()
87 HTML_WINDOW
= wxNewId()
88 CALENDAR_CTRL
= wxNewId()
89 GENERIC_DIR_CTRL
= wxNewId()
93 WIZARD_PAGE
= wxNewId()
94 WIZARD_PAGE_SIMPLE
= wxNewId()
95 STATUS_BAR
= wxNewId()
98 STATIC_BOX_SIZER
= wxNewId()
99 GRID_SIZER
= wxNewId()
100 FLEX_GRID_SIZER
= wxNewId()
101 GRID_BAG_SIZER
= wxNewId()
102 STD_DIALOG_BUTTON_SIZER
= wxNewId()
108 MENU_ITEM
= wxNewId()
109 SEPARATOR
= wxNewId()
111 OK_BUTTON
= wxNewId()
112 YES_BUTTON
= wxNewId()
113 SAVE_BUTTON
= wxNewId()
114 APPLY_BUTTON
= wxNewId()
115 NO_BUTTON
= wxNewId()
116 CANCEL_BUTTON
= wxNewId()
117 HELP_BUTTON
= wxNewId()
118 CONTEXT_HELP_BUTTON
= wxNewId()
127 ID_EXPAND
= wxNewId()
128 ID_COLLAPSE
= wxNewId()
129 ID_PASTE_SIBLING
= wxNewId()
130 ID_TOOL_PASTE
= wxNewId()
131 ID_SUBCLASS
= wxNewId()
133 def __init__(self
, parent
):
134 self
.ID_DELETE
= parent
.ID_DELETE
135 EVT_MENU_RANGE(parent
, ID_NEW
.PANEL
, ID_NEW
.LAST
, parent
.OnCreate
)
136 EVT_MENU_RANGE(parent
, 1000 + ID_NEW
.PANEL
, 1000 + ID_NEW
.LAST
, parent
.OnReplace
)
137 EVT_MENU(parent
, self
.ID_COLLAPSE
, parent
.OnCollapse
)
138 EVT_MENU(parent
, self
.ID_EXPAND
, parent
.OnExpand
)
139 EVT_MENU(parent
, self
.ID_PASTE_SIBLING
, parent
.OnPaste
)
140 EVT_MENU(parent
, self
.ID_SUBCLASS
, parent
.OnSubclass
)
141 # We connect to tree, but process in frame
142 EVT_MENU_HIGHLIGHT_ALL(g
.tree
, parent
.OnPullDownHighlight
)
144 # Mapping from IDs to element names
146 ID_NEW
.PANEL
: 'wxPanel',
147 ID_NEW
.DIALOG
: 'wxDialog',
148 ID_NEW
.FRAME
: 'wxFrame',
149 ID_NEW
.WIZARD
: 'wxWizard',
150 ID_NEW
.WIZARD_PAGE
: 'wxWizardPage',
151 ID_NEW
.WIZARD_PAGE_SIMPLE
: 'wxWizardPageSimple',
152 ID_NEW
.TOOL_BAR
: 'wxToolBar',
154 ID_NEW
.MENU_BAR
: 'wxMenuBar',
155 ID_NEW
.MENU
: 'wxMenu',
156 ID_NEW
.MENU_ITEM
: 'wxMenuItem',
157 ID_NEW
.SEPARATOR
: 'separator',
159 ID_NEW
.STATIC_TEXT
: 'wxStaticText',
160 ID_NEW
.TEXT_CTRL
: 'wxTextCtrl',
162 ID_NEW
.BUTTON
: 'wxButton',
163 ID_NEW
.BITMAP_BUTTON
: 'wxBitmapButton',
164 ID_NEW
.RADIO_BUTTON
: 'wxRadioButton',
165 ID_NEW
.SPIN_BUTTON
: 'wxSpinButton',
166 ID_NEW
.TOGGLE_BUTTON
: 'wxToggleButton',
168 ID_NEW
.STATIC_BOX
: 'wxStaticBox',
169 ID_NEW
.CHECK_BOX
: 'wxCheckBox',
170 ID_NEW
.RADIO_BOX
: 'wxRadioBox',
171 ID_NEW
.COMBO_BOX
: 'wxComboBox',
172 ID_NEW
.LIST_BOX
: 'wxListBox',
174 ID_NEW
.STATIC_LINE
: 'wxStaticLine',
175 ID_NEW
.STATIC_BITMAP
: 'wxStaticBitmap',
176 ID_NEW
.CHOICE
: 'wxChoice',
177 ID_NEW
.SLIDER
: 'wxSlider',
178 ID_NEW
.GAUGE
: 'wxGauge',
179 ID_NEW
.SCROLL_BAR
: 'wxScrollBar',
180 ID_NEW
.TREE_CTRL
: 'wxTreeCtrl',
181 ID_NEW
.LIST_CTRL
: 'wxListCtrl',
182 ID_NEW
.CHECK_LIST
: 'wxCheckListBox',
183 ID_NEW
.NOTEBOOK
: 'wxNotebook',
184 ID_NEW
.SPLITTER_WINDOW
: 'wxSplitterWindow',
185 ID_NEW
.SCROLLED_WINDOW
: 'wxScrolledWindow',
186 ID_NEW
.HTML_WINDOW
: 'wxHtmlWindow',
187 ID_NEW
.CALENDAR_CTRL
: 'wxCalendarCtrl',
188 ID_NEW
.GENERIC_DIR_CTRL
: 'wxGenericDirCtrl',
189 ID_NEW
.SPIN_CTRL
: 'wxSpinCtrl',
191 ID_NEW
.BOX_SIZER
: 'wxBoxSizer',
192 ID_NEW
.STATIC_BOX_SIZER
: 'wxStaticBoxSizer',
193 ID_NEW
.GRID_SIZER
: 'wxGridSizer',
194 ID_NEW
.FLEX_GRID_SIZER
: 'wxFlexGridSizer',
195 ID_NEW
.GRID_BAG_SIZER
: 'wxGridBagSizer',
196 ID_NEW
.STD_DIALOG_BUTTON_SIZER
: 'wxStdDialogButtonSizer',
197 ID_NEW
.SPACER
: 'spacer',
198 ID_NEW
.UNKNOWN
: 'unknown',
200 ID_NEW
.OK_BUTTON
: 'wxButton',
201 ID_NEW
.YES_BUTTON
: 'wxButton',
202 ID_NEW
.SAVE_BUTTON
: 'wxButton',
203 ID_NEW
.APPLY_BUTTON
: 'wxButton',
204 ID_NEW
.NO_BUTTON
: 'wxButton',
205 ID_NEW
.CANCEL_BUTTON
: 'wxButton',
206 ID_NEW
.HELP_BUTTON
: 'wxButton',
207 ID_NEW
.CONTEXT_HELP_BUTTON
: 'wxButton',
210 (ID_NEW
.PANEL
, 'Panel', 'Create panel'),
211 (ID_NEW
.DIALOG
, 'Dialog', 'Create dialog'),
212 (ID_NEW
.FRAME
, 'Frame', 'Create frame'),
213 (ID_NEW
.WIZARD
, 'Wizard', 'Create wizard'),
215 (ID_NEW
.TOOL_BAR
, 'ToolBar', 'Create toolbar'),
216 (ID_NEW
.MENU_BAR
, 'MenuBar', 'Create menubar'),
217 (ID_NEW
.MENU
, 'Menu', 'Create menu')
220 (ID_NEW
.PANEL
, 'Panel', 'Create panel'),
221 (ID_NEW
.NOTEBOOK
, 'Notebook', 'Create notebook control'),
222 (ID_NEW
.SPLITTER_WINDOW
, 'SplitterWindow', 'Create splitter window'),
223 (ID_NEW
.TOOL_BAR
, 'ToolBar', 'Create toolbar'),
224 # (ID_NEW.WIZARD_PAGE, 'WizardPage', 'Create wizard page'),
225 (ID_NEW
.WIZARD_PAGE_SIMPLE
, 'WizardPageSimple', 'Create simple wizard page'),
228 (ID_NEW
.BOX_SIZER
, 'BoxSizer', 'Create box sizer'),
229 (ID_NEW
.STATIC_BOX_SIZER
, 'StaticBoxSizer',
230 'Create static box sizer'),
231 (ID_NEW
.GRID_SIZER
, 'GridSizer', 'Create grid sizer'),
232 (ID_NEW
.FLEX_GRID_SIZER
, 'FlexGridSizer',
233 'Create flexgrid sizer'),
234 (ID_NEW
.GRID_BAG_SIZER
, 'GridBagSizer',
235 'Create gridbag sizer'),
236 # (ID_NEW.STD_DIALOG_BUTTON_SIZER, 'StdDialogButtonSizer',
237 # 'Create standard button sizer'),
238 (ID_NEW
.SPACER
, 'Spacer', 'Create spacer'),
241 ['control', 'Various controls',
242 (ID_NEW
.STATIC_TEXT
, 'Label', 'Create label'),
243 (ID_NEW
.STATIC_BITMAP
, 'Bitmap', 'Create bitmap'),
244 (ID_NEW
.STATIC_LINE
, 'Line', 'Create line'),
245 (ID_NEW
.TEXT_CTRL
, 'TextBox', 'Create text box'),
246 (ID_NEW
.CHOICE
, 'Choice', 'Create choice'),
247 (ID_NEW
.SLIDER
, 'Slider', 'Create slider'),
248 (ID_NEW
.GAUGE
, 'Gauge', 'Create gauge'),
249 (ID_NEW
.SPIN_CTRL
, 'SpinCtrl', 'Create spin'),
250 (ID_NEW
.SCROLL_BAR
, 'ScrollBar', 'Create scroll bar'),
251 (ID_NEW
.TREE_CTRL
, 'TreeCtrl', 'Create tree'),
252 (ID_NEW
.LIST_CTRL
, 'ListCtrl', 'Create list'),
253 (ID_NEW
.CHECK_LIST
, 'CheckList', 'Create check list'),
254 (ID_NEW
.SCROLLED_WINDOW
, 'ScrolledWindow', 'Create scrolled window'),
255 (ID_NEW
.HTML_WINDOW
, 'HtmlWindow', 'Create HTML window'),
256 (ID_NEW
.CALENDAR_CTRL
, 'CalendarCtrl', 'Create calendar control'),
257 (ID_NEW
.GENERIC_DIR_CTRL
, 'GenericDirCtrl', 'Create generic dir control'),
258 (ID_NEW
.UNKNOWN
, 'Unknown', 'Create custom control placeholder'),
260 ['button', 'Buttons',
261 (ID_NEW
.BUTTON
, 'Button', 'Create button'),
262 (ID_NEW
.BITMAP_BUTTON
, 'BitmapButton', 'Create bitmap button'),
263 (ID_NEW
.RADIO_BUTTON
, 'RadioButton', 'Create radio button'),
264 (ID_NEW
.SPIN_BUTTON
, 'SpinButton', 'Create spin button'),
265 (ID_NEW
.TOGGLE_BUTTON
, 'ToggleButton', 'Create toggle button'),
268 (ID_NEW
.STATIC_BOX
, 'StaticBox', 'Create static box'),
269 (ID_NEW
.CHECK_BOX
, 'CheckBox', 'Create check box'),
270 (ID_NEW
.RADIO_BOX
, 'RadioBox', 'Create radio box'),
271 (ID_NEW
.COMBO_BOX
, 'ComboBox', 'Create combo box'),
272 (ID_NEW
.LIST_BOX
, 'ListBox', 'Create list box'),
274 ['container', 'Containers',
275 (ID_NEW
.PANEL
, 'Panel', 'Create panel'),
276 (ID_NEW
.NOTEBOOK
, 'Notebook', 'Create notebook control'),
277 (ID_NEW
.SPLITTER_WINDOW
, 'SplitterWindow', 'Create splitter window'),
278 (ID_NEW
.TOOL_BAR
, 'ToolBar', 'Create toolbar'),
279 # (ID_NEW.WIZARD_PAGE, 'Wizard Page', 'Create wizard page'),
280 (ID_NEW
.WIZARD_PAGE_SIMPLE
, 'WizardPageSimple', 'Create simple wizard page'),
283 (ID_NEW
.BOX_SIZER
, 'BoxSizer', 'Create box sizer'),
284 (ID_NEW
.STATIC_BOX_SIZER
, 'StaticBoxSizer',
285 'Create static box sizer'),
286 (ID_NEW
.GRID_SIZER
, 'GridSizer', 'Create grid sizer'),
287 (ID_NEW
.FLEX_GRID_SIZER
, 'FlexGridSizer',
288 'Create flexgrid sizer'),
289 (ID_NEW
.GRID_BAG_SIZER
, 'GridBagSizer',
290 'Create gridbag sizer'),
291 (ID_NEW
.SPACER
, 'Spacer', 'Create spacer'),
292 (ID_NEW
.STD_DIALOG_BUTTON_SIZER
, 'StdDialogButtonSizer',
293 'Create standard button sizer'),
296 self
.menuControls
= [
297 (ID_NEW
.MENU
, 'Menu', 'Create menu'),
298 (ID_NEW
.MENU_ITEM
, 'MenuItem', 'Create menu item'),
299 (ID_NEW
.SEPARATOR
, 'Separator', 'Create separator'),
301 self
.toolBarControls
= [
302 (ID_NEW
.TOOL
, 'Tool', 'Create tool'),
303 (ID_NEW
.SEPARATOR
, 'Separator', 'Create separator'),
304 ['control', 'Various controls',
305 (ID_NEW
.STATIC_TEXT
, 'Label', 'Create label'),
306 (ID_NEW
.STATIC_BITMAP
, 'Bitmap', 'Create bitmap'),
307 (ID_NEW
.STATIC_LINE
, 'Line', 'Create line'),
308 (ID_NEW
.TEXT_CTRL
, 'TextBox', 'Create text box'),
309 (ID_NEW
.CHOICE
, 'Choice', 'Create choice'),
310 (ID_NEW
.SLIDER
, 'Slider', 'Create slider'),
311 (ID_NEW
.GAUGE
, 'Gauge', 'Create gauge'),
312 (ID_NEW
.SCROLL_BAR
, 'ScrollBar', 'Create scroll bar'),
313 (ID_NEW
.LIST_CTRL
, 'ListCtrl', 'Create list control'),
314 (ID_NEW
.CHECK_LIST
, 'CheckList', 'Create check list'),
316 ['button', 'Buttons',
317 (ID_NEW
.BUTTON
, 'Button', 'Create button'),
318 (ID_NEW
.BITMAP_BUTTON
, 'BitmapButton', 'Create bitmap button'),
319 (ID_NEW
.RADIO_BUTTON
, 'RadioButton', 'Create radio button'),
320 (ID_NEW
.SPIN_BUTTON
, 'SpinButton', 'Create spin button'),
323 (ID_NEW
.STATIC_BOX
, 'StaticBox', 'Create static box'),
324 (ID_NEW
.CHECK_BOX
, 'CheckBox', 'Create check box'),
325 (ID_NEW
.RADIO_BOX
, 'RadioBox', 'Create radio box'),
326 (ID_NEW
.COMBO_BOX
, 'ComboBox', 'Create combo box'),
327 (ID_NEW
.LIST_BOX
, 'ListBox', 'Create list box'),
331 (ID_NEW
.OK_BUTTON
, 'OK Button', 'Create standard button'),
332 (ID_NEW
.YES_BUTTON
, 'YES Button', 'Create standard button'),
333 (ID_NEW
.SAVE_BUTTON
, 'SAVE Button', 'Create standard button'),
334 (ID_NEW
.APPLY_BUTTON
, 'APPLY Button', 'Create standard button'),
335 (ID_NEW
.NO_BUTTON
, 'NO Button', 'Create standard button'),
336 (ID_NEW
.CANCEL_BUTTON
, 'CANCEL Button', 'Create standard button'),
337 (ID_NEW
.HELP_BUTTON
, 'HELP Button', 'Create standard button'),
338 (ID_NEW
.CONTEXT_HELP_BUTTON
, 'CONTEXT HELP Button', 'Create standard button'),
340 self
.stdButtonIDs
= {
341 ID_NEW
.OK_BUTTON
: ('wxID_OK', '&Ok'),
342 ID_NEW
.YES_BUTTON
: ('wxID_YES', '&Yes'),
343 ID_NEW
.SAVE_BUTTON
: ('wxID_SAVE', '&Save'),
344 ID_NEW
.APPLY_BUTTON
: ('wxID_APPLY', '&Apply'),
345 ID_NEW
.NO_BUTTON
: ('wxID_NO', '&No'),
346 ID_NEW
.CANCEL_BUTTON
: ('wxID_CANCEL', '&Cancel'),
347 ID_NEW
.HELP_BUTTON
: ('wxID_HELP', '&Help'),
348 ID_NEW
.CONTEXT_HELP_BUTTON
: ('wxID_CONTEXT_HELP', '&Help'),
353 ################################################################################
355 # Set menu to list items.
356 # Each menu command is a tuple (id, label, help)
357 # submenus are lists [id, label, help, submenu]
358 # and separators are any other type. Shift is for making
359 # alternative sets of IDs. (+1000).
360 def SetMenu(m
, list, shift
=False):
362 if type(l
) == types
.TupleType
:
364 if shift
: l
= (1000 + l
[0],) + l
[1:]
366 elif type(l
) == types
.ListType
:
368 SetMenu(subMenu
, l
[2:], shift
)
369 m
.AppendMenu(wxNewId(), l
[0], subMenu
, l
[1])
373 ################################################################################
376 def __init__(self
, pos
, size
):
377 if size
.width
== -1: size
.width
= 0
378 if size
.height
== -1: size
.height
= 0
380 l1
= wxWindow(w
, -1, pos
, wxSize(size
.width
, 2))
381 l1
.SetBackgroundColour(wxRED
)
382 l2
= wxWindow(w
, -1, pos
, wxSize(2, size
.height
))
383 l2
.SetBackgroundColour(wxRED
)
384 l3
= wxWindow(w
, -1, wxPoint(pos
.x
+ size
.width
- 2, pos
.y
), wxSize(2, size
.height
))
385 l3
.SetBackgroundColour(wxRED
)
386 l4
= wxWindow(w
, -1, wxPoint(pos
.x
, pos
.y
+ size
.height
- 2), wxSize(size
.width
, 2))
387 l4
.SetBackgroundColour(wxRED
)
388 self
.lines
= [l1
, l2
, l3
, l4
]
389 # Move highlight to a new position
390 def Replace(self
, pos
, size
):
391 if size
.width
== -1: size
.width
= 0
392 if size
.height
== -1: size
.height
= 0
393 self
.lines
[0].SetDimensions(pos
.x
, pos
.y
, size
.width
, 2)
394 self
.lines
[1].SetDimensions(pos
.x
, pos
.y
, 2, size
.height
)
395 self
.lines
[2].SetDimensions(pos
.x
+ size
.width
- 2, pos
.y
, 2, size
.height
)
396 self
.lines
[3].SetDimensions(pos
.x
, pos
.y
+ size
.height
- 2, size
.width
, 2)
399 map(wxWindow
.Destroy
, self
.lines
)
400 g
.testWin
.highLight
= None
402 map(wxWindow
.Refresh
, self
.lines
)
404 ################################################################################
406 class XML_Tree(wxTreeCtrl
):
407 def __init__(self
, parent
, id):
408 wxTreeCtrl
.__init
__(self
, parent
, id, style
= wxTR_HAS_BUTTONS | wxTR_MULTIPLE
)
409 self
.SetBackgroundColour(wxColour(224, 248, 224))
411 EVT_TREE_SEL_CHANGED(self
, self
.GetId(), self
.OnSelChanged
)
412 # One works on Linux, another on Windows
413 if wxPlatform
== '__WXGTK__':
414 EVT_TREE_ITEM_ACTIVATED(self
, self
.GetId(), self
.OnItemActivated
)
416 EVT_LEFT_DCLICK(self
, self
.OnDClick
)
417 EVT_RIGHT_DOWN(self
, self
.OnRightDown
)
418 EVT_TREE_ITEM_EXPANDED(self
, self
.GetId(), self
.OnItemExpandedCollapsed
)
419 EVT_TREE_ITEM_COLLAPSED(self
, self
.GetId(), self
.OnItemExpandedCollapsed
)
421 self
.selection
= None
422 self
.selectionChanging
= False
423 self
.needUpdate
= False
424 self
.pendingHighLight
= None
425 self
.ctrl
= self
.shift
= False
428 il
= wxImageList(16, 16, True)
429 self
.rootImage
= il
.Add(images
.getTreeRootImage().Scale(16,16).ConvertToBitmap())
430 xxxObject
.image
= il
.Add(images
.getTreeDefaultImage().Scale(16,16).ConvertToBitmap())
431 xxxPanel
.image
= il
.Add(images
.getTreePanelImage().Scale(16,16).ConvertToBitmap())
432 xxxDialog
.image
= il
.Add(images
.getTreeDialogImage().Scale(16,16).ConvertToBitmap())
433 xxxFrame
.image
= il
.Add(images
.getTreeFrameImage().Scale(16,16).ConvertToBitmap())
434 xxxMenuBar
.image
= il
.Add(images
.getTreeMenuBarImage().Scale(16,16).ConvertToBitmap())
435 xxxMenu
.image
= il
.Add(images
.getTreeMenuImage().Scale(16,16).ConvertToBitmap())
436 xxxMenuItem
.image
= il
.Add(images
.getTreeMenuItemImage().Scale(16,16).ConvertToBitmap())
437 xxxToolBar
.image
= il
.Add(images
.getTreeToolBarImage().Scale(16,16).ConvertToBitmap())
438 xxxTool
.image
= il
.Add(images
.getTreeToolImage().Scale(16,16).ConvertToBitmap())
439 xxxSeparator
.image
= il
.Add(images
.getTreeSeparatorImage().Scale(16,16).ConvertToBitmap())
440 xxxSizer
.imageH
= il
.Add(images
.getTreeSizerHImage().Scale(16,16).ConvertToBitmap())
441 xxxSizer
.imageV
= il
.Add(images
.getTreeSizerVImage().Scale(16,16).ConvertToBitmap())
442 xxxStaticBoxSizer
.imageH
= il
.Add(images
.getTreeStaticBoxSizerHImage().Scale(16,16).ConvertToBitmap())
443 xxxStaticBoxSizer
.imageV
= il
.Add(images
.getTreeStaticBoxSizerVImage().Scale(16,16).ConvertToBitmap())
444 xxxGridSizer
.image
= il
.Add(images
.getTreeSizerGridImage().Scale(16,16).ConvertToBitmap())
445 xxxFlexGridSizer
.image
= il
.Add(images
.getTreeSizerFlexGridImage().Scale(16,16).ConvertToBitmap())
447 self
.SetImageList(il
)
449 def RegisterKeyEvents(self
):
450 EVT_KEY_DOWN(self
, g
.tools
.OnKeyDown
)
451 EVT_KEY_UP(self
, g
.tools
.OnKeyUp
)
452 EVT_ENTER_WINDOW(self
, g
.tools
.OnMouse
)
453 EVT_LEAVE_WINDOW(self
, g
.tools
.OnMouse
)
455 def ExpandAll(self
, item
):
456 if self
.ItemHasChildren(item
):
458 i
, cookie
= self
.GetFirstChild(item
)
462 i
, cookie
= self
.GetNextChild(item
, cookie
)
465 def CollapseAll(self
, item
):
466 if self
.ItemHasChildren(item
):
467 i
, cookie
= self
.GetFirstChild(item
)
471 i
, cookie
= self
.GetNextChild(item
, cookie
)
478 self
.selection
= None
480 self
.DeleteAllItems()
481 # Add minimal structure
482 if self
.dom
: self
.dom
.unlink()
483 self
.dom
= MyDocument()
484 self
.dummyNode
= self
.dom
.createComment('dummy node')
486 self
.mainNode
= self
.dom
.createElement('resource')
487 self
.dom
.appendChild(self
.mainNode
)
488 self
.rootObj
= xxxMainNode(self
.dom
)
489 self
.root
= self
.AddRoot('XML tree', self
.rootImage
,
490 data
=wxTreeItemData(self
.rootObj
))
491 self
.SetItemHasChildren(self
.root
)
492 self
.testElem
= self
.dom
.createElement('dummy')
493 self
.mainNode
.appendChild(self
.testElem
)
494 self
.Expand(self
.root
)
496 # Clear old data and set new
497 def SetData(self
, dom
):
498 self
.selection
= None
500 self
.DeleteAllItems()
501 # Add minimal structure
502 if self
.dom
: self
.dom
.unlink()
504 self
.dummyNode
= self
.dom
.createComment('dummy node')
505 # Find 'resource' child, add it's children
506 self
.mainNode
= dom
.documentElement
507 self
.rootObj
= xxxMainNode(self
.dom
)
508 self
.root
= self
.AddRoot('XML tree', self
.rootImage
,
509 data
=wxTreeItemData(self
.rootObj
))
510 self
.SetItemHasChildren(self
.root
)
511 nodes
= self
.mainNode
.childNodes
[:]
514 self
.AddNode(self
.root
, None, node
)
516 self
.mainNode
.removeChild(node
)
518 if self
.mainNode
.firstChild
:
519 self
.testElem
= self
.dom
.createElement('dummy')
520 self
.mainNode
.insertBefore(self
.testElem
, self
.mainNode
.firstChild
)
522 self
.testElem
= self
.dom
.createElement('dummy')
523 self
.mainNode
.appendChild(self
.testElem
)
524 self
.Expand(self
.root
)
526 # Add tree item for given parent item if node is DOM element node with
527 # object/object_ref tag. xxxParent is parent xxx object
528 def AddNode(self
, itemParent
, xxxParent
, node
):
529 # Set item data to current node
531 xxx
= MakeXXXFromDOM(xxxParent
, node
)
533 print 'ERROR: MakeXXXFromDom(%s, %s)' % (xxxParent
, node
)
535 treeObj
= xxx
.treeObject()
537 item
= self
.AppendItem(itemParent
, treeObj
.treeName(),
538 image
=treeObj
.treeImage(),
539 data
=wxTreeItemData(xxx
))
540 # Different color for references
542 self
.SetItemTextColour(item
, 'DarkGreen')
543 # Try to find children objects
544 if treeObj
.hasChildren
:
545 nodes
= treeObj
.element
.childNodes
[:]
548 self
.AddNode(item
, treeObj
, n
)
549 elif n
.nodeType
!= minidom
.Node
.ELEMENT_NODE
:
550 treeObj
.element
.removeChild(n
)
553 # Insert new item at specific position
554 def InsertNode(self
, itemParent
, parent
, elem
, nextItem
):
555 # Insert in XML tree and wxWin
556 xxx
= MakeXXXFromDOM(parent
, elem
)
557 # If nextItem is None, we append to parent, otherwise insert before it
559 node
= self
.GetPyData(nextItem
).element
560 parent
.element
.insertBefore(elem
, node
)
561 # Inserting before is difficult, se we insert after or first child
562 index
= self
.ItemIndex(nextItem
)
563 newItem
= self
.InsertItemBefore(itemParent
, index
,
564 xxx
.treeName(), image
=xxx
.treeImage())
565 self
.SetPyData(newItem
, xxx
)
567 parent
.element
.appendChild(elem
)
568 newItem
= self
.AppendItem(itemParent
, xxx
.treeName(), image
=xxx
.treeImage(),
569 data
=wxTreeItemData(xxx
))
570 # Different color for references
571 if xxx
.treeObject().ref
: self
.SetItemTextColour(newItem
, 'DarkGreen')
574 treeObj
= xxx
.treeObject()
575 for n
in treeObj
.element
.childNodes
:
577 self
.AddNode(newItem
, treeObj
, n
)
580 # Remove leaf of tree, return it's data object
581 def RemoveLeaf(self
, leaf
):
582 xxx
= self
.GetPyData(leaf
)
584 parent
= node
.parentNode
585 parent
.removeChild(node
)
587 # Reset selection object
588 self
.selection
= None
590 # Find position relative to the top-level window
591 def FindNodePos(self
, item
, obj
=None):
593 if item
== g
.testWin
.item
: return wxPoint(0, 0)
594 itemParent
= self
.GetItemParent(item
)
596 if not obj
: obj
= self
.FindNodeObject(item
)
597 if self
.GetPyData(itemParent
).treeObject().__class
__ == xxxNotebook
:
598 notebook
= self
.FindNodeObject(itemParent
)
600 for i
in range(notebook
.GetPageCount()):
601 if notebook
.GetPage(i
) == obj
:
602 if notebook
.GetSelection() != i
:
603 notebook
.SetSelection(i
)
604 # Remove highlight - otherwise highlight window won't be visible
605 if g
.testWin
.highLight
:
606 g
.testWin
.highLight
.Remove()
608 # Find first ancestor which is a wxWindow (not a sizer)
609 winParent
= itemParent
610 while self
.GetPyData(winParent
).isSizer
:
611 winParent
= self
.GetItemParent(winParent
)
612 # Notebook children are layed out in a little strange way
613 if self
.GetPyData(itemParent
).treeObject().__class
__ == xxxNotebook
:
614 parentPos
= wxPoint(0,0)
616 parentPos
= self
.FindNodePos(winParent
)
617 # Position (-1,-1) is really (0,0)
618 pos
= obj
.GetPosition()
619 if pos
== (-1,-1): pos
= (0,0)
620 return parentPos
+ pos
622 # Find window (or sizer) corresponding to a tree item.
623 def FindNodeObject(self
, item
):
625 # If top-level, return testWin (or panel its panel)
626 if item
== testWin
.item
: return testWin
.panel
627 itemParent
= self
.GetItemParent(item
)
628 xxx
= self
.GetPyData(item
).treeObject()
629 parentWin
= self
.FindNodeObject(itemParent
)
630 # Top-level sizer? return window's sizer
631 if xxx
.isSizer
and isinstance(parentWin
, wxWindow
):
632 return parentWin
.GetSizer()
633 elif isinstance(xxx
.parent
, xxxToolBar
):
634 # How to get tool from toolbar?
636 elif isinstance(xxx
.parent
, xxxStdDialogButtonSizer
):
637 # This sizer returns non-existing children
638 for ch
in parentWin
.GetChildren():
639 if ch
.GetWindow() and ch
.GetWindow().GetName() == xxx
.name
:
640 return ch
.GetWindow()
642 # Otherwise get parent's object and it's child
643 child
= parentWin
.GetChildren()[self
.ItemIndex(item
)]
644 # Return window or sizer for sizer items
645 if child
.GetClassName() == 'wxSizerItem':
646 if child
.IsWindow(): child
= child
.GetWindow()
647 elif child
.IsSizer():
648 child
= child
.GetSizer()
649 # Test for notebook sizers
650 if isinstance(child
, wxNotebookSizer
):
651 child
= child
.GetNotebook()
654 def OnSelChanged(self
, evt
):
655 if self
.selectionChanging
: return
656 self
.selectionChanging
= True
658 self
.SelectItem(evt
.GetItem())
659 self
.selectionChanging
= False
661 def ChangeSelection(self
, item
):
663 # !!! problem with wxGTK - GetOldItem is Ok if nothing selected
664 #oldItem = evt.GetOldItem()
666 oldItem
= self
.selection
668 xxx
= self
.GetPyData(oldItem
)
669 # If some data was modified, apply changes
670 if g
.panel
.IsModified():
671 self
.Apply(xxx
, oldItem
)
672 #if conf.autoRefresh:
674 if g
.testWin
.highLight
:
675 g
.testWin
.highLight
.Remove()
676 self
.needUpdate
= True
677 status
= 'Changes were applied'
678 g
.frame
.SetStatusText(status
)
680 self
.selection
= item
681 if not self
.selection
.IsOk():
682 self
.selection
= None
684 xxx
= self
.GetPyData(self
.selection
)
689 # Highlighting is done in OnIdle
690 self
.pendingHighLight
= self
.selection
692 # Check if item is in testWin subtree
693 def IsHighlatable(self
, item
):
694 if item
== g
.testWin
.item
: return False
695 while item
!= self
.root
:
696 item
= self
.GetItemParent(item
)
697 if item
== g
.testWin
.item
: return True
700 # Highlight selected item
701 def HighLight(self
, item
):
702 self
.pendingHighLight
= None
703 # Can highlight only with some top-level windows
704 if not g
.testWin
or self
.GetPyData(g
.testWin
.item
).treeObject().__class
__ \
705 not in [xxxDialog
, xxxPanel
, xxxFrame
]:
707 # If a control from another window is selected, remove highlight
708 if not self
.IsHighlatable(item
):
709 if g
.testWin
.highLight
: g
.testWin
.highLight
.Remove()
711 # Get window/sizer object
712 obj
= self
.FindNodeObject(item
)
714 pos
= self
.FindNodePos(item
, obj
)
717 # Negative positions are not working quite well
718 if g
.testWin
.highLight
:
719 g
.testWin
.highLight
.Replace(pos
, size
)
721 g
.testWin
.highLight
= HighLightBox(pos
, size
)
722 g
.testWin
.highLight
.Refresh()
723 g
.testWin
.highLight
.item
= item
725 def ShowTestWindow(self
, item
):
726 xxx
= self
.GetPyData(item
)
727 if g
.panel
.IsModified():
728 self
.Apply(xxx
, item
) # apply changes
729 treeObj
= xxx
.treeObject()
730 if treeObj
.className
not in ['wxFrame', 'wxPanel', 'wxDialog',
731 'wxMenuBar', 'wxToolBar', 'wxWizard',
732 'wxWizardPageSimple']:
733 wxLogMessage('No view for this element (yet)')
736 if g
.testWin
: # Reset old
737 self
.SetItemBold(g
.testWin
.item
, False)
738 self
.CreateTestWin(item
)
739 # Maybe an error occurred, so we need to test
740 if g
.testWin
: self
.SetItemBold(g
.testWin
.item
)
742 # Double-click on Linux
743 def OnItemActivated(self
, evt
):
744 if evt
.GetItem() != self
.root
:
745 self
.ShowTestWindow(evt
.GetItem())
747 # Double-click on Windows
748 def OnDClick(self
, evt
):
749 item
, flags
= self
.HitTest(evt
.GetPosition())
750 if flags
in [wxTREE_HITTEST_ONITEMBUTTON
, wxTREE_HITTEST_ONITEMLABEL
]:
751 if item
!= self
.root
: self
.ShowTestWindow(item
)
755 def OnItemExpandedCollapsed(self
, evt
):
756 # Update tool palette
760 # (re)create test window
761 def CreateTestWin(self
, item
):
763 # Create a window with this resource
764 xxx
= self
.GetPyData(item
).treeObject()
767 # if xxx.__class__ == xxxFrame:
768 # Frame can't have many children,
769 # but it's first child possibly can...
770 # child = self.GetFirstChild(item)[0]
771 # if child.IsOk() and self.GetPyData(child).__class__ == xxxPanel:
772 # # Clean-up before recursive call or error
773 # wxMemoryFSHandler_RemoveFile('xxx.xrc')
775 # self.CreateTestWin(child)
779 # Close old window, remember where it was
782 pos
= testWin
.GetPosition()
783 if item
== testWin
.item
:
784 # Remember highlight if same top-level window
785 if testWin
.highLight
:
786 highLight
= testWin
.highLight
.item
787 if xxx
.className
== 'wxPanel':
788 if testWin
.highLight
:
789 testWin
.pendingHighLight
= highLight
790 testWin
.highLight
.Remove()
791 testWin
.panel
.Destroy()
795 testWin
= g
.testWin
= None
798 testWin
= g
.testWin
= None
802 memFile
= MemoryFile('xxx.xrc')
803 # Create memory XML file
804 elem
= xxx
.element
.cloneNode(True)
809 elem
.setAttribute('name', STD_NAME
)
810 oldTestNode
= self
.testElem
812 self
.mainNode
.replaceChild(elem
, oldTestNode
)
814 # Replace wizard page class temporarily
815 if xxx
.__class
__ in [xxxWizardPage
, xxxWizardPageSimple
]:
816 oldCl
= elem
.getAttribute('class')
817 elem
.setAttribute('class', 'wxPanel')
818 parent
= elem
.parentNode
819 encd
= self
.rootObj
.params
['encoding'].value()
820 if not encd
: encd
= None
822 self
.dom
.writexml(memFile
, encoding
=encd
)
825 wxLogError(traceback
.format_exception(inf
[0], inf
[1], None)[-1])
826 wxLogError('Error writing temporary file')
828 memFile
.close() # write to wxMemoryFS
829 xmlFlags
= wxXRC_NO_SUBCLASSING
830 # Use translations if encoding is not specified
831 if not g
.currentEncoding
:
832 xmlFlags
!= wxXRC_USE_LOCALE
833 res
= wxXmlResource('', xmlFlags
)
834 res
.Load('memory:xxx.xrc')
836 if xxx
.__class
__ == xxxFrame
:
837 # Frame can't have many children,
838 # but it's first child possibly can...
839 # child = self.GetFirstChild(item)[0]
840 # if child.IsOk() and self.GetPyData(child).__class__ == xxxPanel:
841 # # Clean-up before recursive call or error
842 # wxMemoryFSHandler_RemoveFile('xxx.xrc')
844 # self.CreateTestWin(child)
846 # This currently works under GTK, but not under MSW
847 testWin
= g
.testWin
= wxPreFrame()
848 res
.LoadOnFrame(testWin
, g
.frame
, STD_NAME
)
850 testWin
.panel
= testWin
851 testWin
.CreateStatusBar()
852 testWin
.SetClientSize(testWin
.GetBestSize())
853 testWin
.SetPosition(pos
)
855 elif xxx
.__class
__ == xxxPanel
:
858 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'Panel: ' + name
,
859 pos
=pos
, name
=STD_NAME
)
860 testWin
.panel
= res
.LoadPanel(testWin
, STD_NAME
)
861 testWin
.SetClientSize(testWin
.GetBestSize())
863 elif xxx
.__class
__ == xxxDialog
:
864 testWin
= g
.testWin
= res
.LoadDialog(None, STD_NAME
)
865 testWin
.panel
= testWin
867 testWin
.SetPosition(pos
)
869 # Dialog's default code does not produce EVT_CLOSE
870 EVT_BUTTON(testWin
, wxID_OK
, self
.OnCloseTestWin
)
871 EVT_BUTTON(testWin
, wxID_CANCEL
, self
.OnCloseTestWin
)
872 elif xxx
.__class
__ == xxxWizard
:
874 res
.LoadOnObject(wiz
, None, STD_NAME
, 'wxWizard')
875 # Find first page (don't know better way)
877 for w
in wiz
.GetChildren():
878 if isinstance(w
, wxWizardPage
):
882 wxLogError('Wizard is empty')
884 # Wizard should be modal
885 self
.SetItemBold(item
)
887 self
.SetItemBold(item
, False)
889 elif xxx
.__class
__ in [xxxWizardPage
, xxxWizardPageSimple
]:
892 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'Wizard page: ' + name
,
893 pos
=pos
, name
=STD_NAME
)
894 testWin
.panel
= wxPrePanel()
895 res
.LoadOnObject(testWin
.panel
, testWin
, STD_NAME
, 'wxPanel')
896 testWin
.SetClientSize(testWin
.GetBestSize())
898 elif xxx
.__class
__ == xxxMenuBar
:
899 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'MenuBar: ' + name
,
900 pos
=pos
, name
=STD_NAME
)
902 # Set status bar to display help
903 testWin
.CreateStatusBar()
904 testWin
.menuBar
= res
.LoadMenuBar(STD_NAME
)
905 testWin
.SetMenuBar(testWin
.menuBar
)
907 elif xxx
.__class
__ == xxxToolBar
:
908 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'ToolBar: ' + name
,
909 pos
=pos
, name
=STD_NAME
)
911 # Set status bar to display help
912 testWin
.CreateStatusBar()
913 testWin
.toolBar
= res
.LoadToolBar(testWin
, STD_NAME
)
914 testWin
.SetToolBar(testWin
.toolBar
)
918 EVT_CLOSE(testWin
, self
.OnCloseTestWin
)
919 testWin
.highLight
= None
920 if highLight
and not self
.pendingHighLight
:
921 self
.HighLight(highLight
)
924 self
.SetItemBold(item
, False)
925 g
.testWinPos
= g
.testWin
.GetPosition()
929 wxLogError(traceback
.format_exception(inf
[0], inf
[1], None)[-1])
930 wxLogError('Error loading resource')
931 wxMemoryFSHandler_RemoveFile('xxx.xrc')
934 def CloseTestWindow(self
):
935 if not g
.testWin
: return
936 self
.SetItemBold(g
.testWin
.item
, False)
937 g
.frame
.tb
.ToggleTool(g
.frame
.ID_TOOL_LOCATE
, False)
938 g
.testWinPos
= g
.testWin
.GetPosition()
942 def OnCloseTestWin(self
, evt
):
943 self
.CloseTestWindow()
945 # Return item index in parent
946 def ItemIndex(self
, item
):
947 n
= 0 # index of sibling
948 prev
= self
.GetPrevSibling(item
)
950 prev
= self
.GetPrevSibling(prev
)
954 # Full tree index of an item - list of positions
955 def ItemFullIndex(self
, item
):
956 if not item
.IsOk(): return None
958 while item
!= self
.root
:
959 l
.insert(0, self
.ItemIndex(item
))
960 item
= self
.GetItemParent(item
)
962 # Get item position from full index
963 def ItemAtFullIndex(self
, index
):
964 if index
is None: return wxTreeItemId()
967 item
= self
.GetFirstChild(item
)[0]
968 for k
in range(i
): item
= self
.GetNextSibling(item
)
971 # True if next item should be inserted after current (vs. appended to it)
972 def NeedInsert(self
, item
):
973 xxx
= self
.GetPyData(item
)
974 if item
== self
.root
: return False # root item
975 if xxx
.hasChildren
and not self
.GetChildrenCount(item
, False):
977 return not (self
.IsExpanded(item
) and self
.GetChildrenCount(item
, False))
979 # Override to use like single-selection tree
980 def GetSelection(self
):
981 return self
.selection
982 def SelectItem(self
, item
):
984 self
.ChangeSelection(item
)
985 wxTreeCtrl
.SelectItem(self
, item
)
988 def OnRightDown(self
, evt
):
989 pullDownMenu
= g
.pullDownMenu
991 pt
= evt
.GetPosition();
992 item
, flags
= self
.HitTest(pt
)
993 if item
.Ok() and flags
& wxTREE_HITTEST_ONITEM
:
994 self
.SelectItem(item
)
999 item
= self
.selection
1001 menu
.Append(g
.pullDownMenu
.ID_EXPAND
, 'Expand', 'Expand tree')
1002 menu
.Append(g
.pullDownMenu
.ID_COLLAPSE
, 'Collapse', 'Collapse tree')
1004 # self.ctrl = evt.ControlDown() # save Ctrl state
1005 # self.shift = evt.ShiftDown() # and Shift too
1006 m
= wxMenu() # create menu
1010 needInsert
= self
.NeedInsert(item
)
1011 if item
== self
.root
or needInsert
and self
.GetItemParent(item
) == self
.root
:
1012 SetMenu(m
, pullDownMenu
.topLevel
)
1014 m
.Append(ID_NEW
.REF
, 'reference...', 'Create object_ref node')
1016 xxx
= self
.GetPyData(item
).treeObject()
1017 # Check parent for possible child nodes if inserting sibling
1018 if needInsert
: xxx
= xxx
.parent
1019 if xxx
.__class
__ == xxxMenuBar
:
1020 m
.Append(ID_NEW
.MENU
, 'Menu', 'Create menu')
1021 elif xxx
.__class
__ in [xxxToolBar
, xxxTool
] or \
1022 xxx
.__class
__ == xxxSeparator
and xxx
.parent
.__class
__ == xxxToolBar
:
1023 SetMenu(m
, pullDownMenu
.toolBarControls
)
1024 elif xxx
.__class
__ in [xxxMenu
, xxxMenuItem
]:
1025 SetMenu(m
, pullDownMenu
.menuControls
)
1026 elif xxx
.__class
__ == xxxStdDialogButtonSizer
:
1027 SetMenu(m
, pullDownMenu
.stdButtons
)
1029 SetMenu(m
, pullDownMenu
.controls
)
1030 if xxx
.__class
__ == xxxNotebook
:
1031 m
.Enable(m
.FindItem('sizer'), False)
1032 elif not (xxx
.isSizer
or xxx
.parent
and xxx
.parent
.isSizer
):
1033 m
.Enable(ID_NEW
.SPACER
, False)
1035 m
.Append(ID_NEW
.REF
, 'reference...', 'Create object_ref node')
1036 # Select correct label for create menu
1039 menu
.AppendMenu(wxNewId(), 'Insert Child', m
,
1040 'Create child object as the first child')
1042 menu
.AppendMenu(wxNewId(), 'Append Child', m
,
1043 'Create child object as the last child')
1046 menu
.AppendMenu(wxNewId(), 'Create Sibling', m
,
1047 'Create sibling before selected object')
1049 menu
.AppendMenu(wxNewId(), 'Create Sibling', m
,
1050 'Create sibling after selected object')
1051 # Build replace menu
1052 if item
!= self
.root
:
1053 xxx
= self
.GetPyData(item
).treeObject()
1054 m
= wxMenu() # create replace menu
1055 if xxx
.__class
__ == xxxMenuBar
:
1056 m
.Append(1000 + ID_NEW
.MENU
, 'Menu', 'Create menu')
1057 elif xxx
.__class
__ in [xxxMenu
, xxxMenuItem
]:
1058 SetMenu(m
, pullDownMenu
.menuControls
, shift
=True)
1059 elif xxx
.__class
__ == xxxToolBar
and \
1060 self
.GetItemParent(item
) == self
.root
:
1061 SetMenu(m
, [], shift
=True)
1062 elif xxx
.__class
__ in [xxxFrame
, xxxDialog
, xxxPanel
]:
1064 (ID_NEW
.PANEL
, 'Panel', 'Create panel'),
1065 (ID_NEW
.DIALOG
, 'Dialog', 'Create dialog'),
1066 (ID_NEW
.FRAME
, 'Frame', 'Create frame')], shift
=True)
1068 SetMenu(m
, pullDownMenu
.sizers
, shift
=True)
1070 SetMenu(m
, pullDownMenu
.controls
, shift
=True)
1072 menu
.AppendMenu(id, 'Replace With', m
)
1073 if not m
.GetMenuItemCount(): menu
.Enable(id, False)
1074 menu
.Append(pullDownMenu
.ID_SUBCLASS
, 'Subclass...',
1075 'Set "subclass" property')
1076 menu
.AppendSeparator()
1077 # Not using standart IDs because we don't want to show shortcuts
1078 menu
.Append(wxID_CUT
, 'Cut', 'Cut to the clipboard')
1079 menu
.Append(wxID_COPY
, 'Copy', 'Copy to the clipboard')
1080 if self
.ctrl
and item
!= self
.root
:
1081 menu
.Append(pullDownMenu
.ID_PASTE_SIBLING
, 'Paste Sibling',
1082 'Paste from the clipboard as a sibling')
1084 menu
.Append(wxID_PASTE
, 'Paste', 'Paste from the clipboard')
1085 menu
.Append(pullDownMenu
.ID_DELETE
,
1086 'Delete', 'Delete object')
1087 if self
.ItemHasChildren(item
):
1088 menu
.AppendSeparator()
1089 menu
.Append(pullDownMenu
.ID_EXPAND
, 'Expand', 'Expand subtree')
1090 menu
.Append(pullDownMenu
.ID_COLLAPSE
, 'Collapse', 'Collapse subtree')
1091 self
.PopupMenu(menu
, evt
.GetPosition())
1095 def Apply(self
, xxx
, item
):
1098 xxx
= xxx
.treeObject()
1099 if xxx
.hasName
and self
.GetItemText(item
) != xxx
.name
:
1100 self
.SetItemText(item
, xxx
.treeName())
1101 # Item width may have changed
1102 # !!! Tric to update tree width (wxGTK, ??)
1103 self
.SetIndent(self
.GetIndent())
1104 # Change tree icon for sizers
1105 if isinstance(xxx
, xxxBoxSizer
):
1106 self
.SetItemImage(item
, xxx
.treeImage())
1107 # Set global modified state
1108 g
.frame
.SetModified()