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
, xxxToolBar
):
634 # If it's the main toolbar, we can't really select it
635 if xxx
.parent
.__class
__ == xxxFrame
: return None
636 elif isinstance(xxx
.parent
, xxxToolBar
):
637 # Select complete toolbar
639 elif isinstance(xxx
.parent
, xxxStdDialogButtonSizer
):
640 # This sizer returns non-existing children
641 for ch
in parentWin
.GetChildren():
642 if ch
.GetWindow() and ch
.GetWindow().GetName() == xxx
.name
:
643 return ch
.GetWindow()
645 # Otherwise get parent's object and it's child
646 child
= parentWin
.GetChildren()[self
.ItemIndex(item
)]
647 # Return window or sizer for sizer items
648 if child
.GetClassName() == 'wxSizerItem':
649 if child
.IsWindow(): child
= child
.GetWindow()
650 elif child
.IsSizer():
651 child
= child
.GetSizer()
652 # Test for notebook sizers
653 if isinstance(child
, wxNotebookSizer
):
654 child
= child
.GetNotebook()
657 def OnSelChanged(self
, evt
):
658 if self
.selectionChanging
: return
659 self
.selectionChanging
= True
661 self
.SelectItem(evt
.GetItem())
662 self
.selectionChanging
= False
664 def ChangeSelection(self
, item
):
666 # !!! problem with wxGTK - GetOldItem is Ok if nothing selected
667 #oldItem = evt.GetOldItem()
669 oldItem
= self
.selection
671 xxx
= self
.GetPyData(oldItem
)
672 # If some data was modified, apply changes
673 if g
.panel
.IsModified():
674 self
.Apply(xxx
, oldItem
)
675 #if conf.autoRefresh:
677 if g
.testWin
.highLight
:
678 g
.testWin
.highLight
.Remove()
679 self
.needUpdate
= True
680 status
= 'Changes were applied'
681 g
.frame
.SetStatusText(status
)
683 self
.selection
= item
684 if not self
.selection
.IsOk():
685 self
.selection
= None
687 xxx
= self
.GetPyData(self
.selection
)
692 # Highlighting is done in OnIdle
693 self
.pendingHighLight
= self
.selection
695 # Check if item is in testWin subtree
696 def IsHighlatable(self
, item
):
697 if item
== g
.testWin
.item
: return False
698 while item
!= self
.root
:
699 item
= self
.GetItemParent(item
)
700 if item
== g
.testWin
.item
: return True
703 # Highlight selected item
704 def HighLight(self
, item
):
705 self
.pendingHighLight
= None
706 # Can highlight only with some top-level windows
707 if not g
.testWin
or self
.GetPyData(g
.testWin
.item
).treeObject().__class
__ \
708 not in [xxxDialog
, xxxPanel
, xxxFrame
]:
710 # If a control from another window is selected, remove highlight
711 if not self
.IsHighlatable(item
):
712 if g
.testWin
.highLight
: g
.testWin
.highLight
.Remove()
714 # Get window/sizer object
715 obj
= self
.FindNodeObject(item
)
717 pos
= self
.FindNodePos(item
, obj
)
720 # Negative positions are not working quite well
721 if g
.testWin
.highLight
:
722 g
.testWin
.highLight
.Replace(pos
, size
)
724 g
.testWin
.highLight
= HighLightBox(pos
, size
)
725 g
.testWin
.highLight
.Refresh()
726 g
.testWin
.highLight
.item
= item
728 def ShowTestWindow(self
, item
):
729 xxx
= self
.GetPyData(item
)
730 if g
.panel
.IsModified():
731 self
.Apply(xxx
, item
) # apply changes
732 treeObj
= xxx
.treeObject()
733 if treeObj
.className
not in ['wxFrame', 'wxPanel', 'wxDialog',
734 'wxMenuBar', 'wxToolBar', 'wxWizard',
735 'wxWizardPageSimple']:
736 wxLogMessage('No view for this element (yet)')
739 if g
.testWin
: # Reset old
740 self
.SetItemBold(g
.testWin
.item
, False)
741 self
.CreateTestWin(item
)
742 # Maybe an error occurred, so we need to test
743 if g
.testWin
: self
.SetItemBold(g
.testWin
.item
)
745 # Double-click on Linux
746 def OnItemActivated(self
, evt
):
747 if evt
.GetItem() != self
.root
:
748 self
.ShowTestWindow(evt
.GetItem())
750 # Double-click on Windows
751 def OnDClick(self
, evt
):
752 item
, flags
= self
.HitTest(evt
.GetPosition())
753 if flags
in [wxTREE_HITTEST_ONITEMBUTTON
, wxTREE_HITTEST_ONITEMLABEL
]:
754 if item
!= self
.root
: self
.ShowTestWindow(item
)
758 def OnItemExpandedCollapsed(self
, evt
):
759 # Update tool palette
763 # (re)create test window
764 def CreateTestWin(self
, item
):
766 # Create a window with this resource
767 xxx
= self
.GetPyData(item
).treeObject()
770 # if xxx.__class__ == xxxFrame:
771 # Frame can't have many children,
772 # but it's first child possibly can...
773 # child = self.GetFirstChild(item)[0]
774 # if child.IsOk() and self.GetPyData(child).__class__ == xxxPanel:
775 # # Clean-up before recursive call or error
776 # wxMemoryFSHandler_RemoveFile('xxx.xrc')
778 # self.CreateTestWin(child)
782 # Close old window, remember where it was
785 pos
= testWin
.GetPosition()
786 if item
== testWin
.item
:
787 # Remember highlight if same top-level window
788 if testWin
.highLight
:
789 highLight
= testWin
.highLight
.item
790 if xxx
.className
== 'wxPanel':
791 if testWin
.highLight
:
792 testWin
.pendingHighLight
= highLight
793 testWin
.highLight
.Remove()
794 testWin
.panel
.Destroy()
798 testWin
= g
.testWin
= None
801 testWin
= g
.testWin
= None
805 memFile
= MemoryFile('xxx.xrc')
806 # Create memory XML file
807 elem
= xxx
.element
.cloneNode(True)
812 elem
.setAttribute('name', STD_NAME
)
813 oldTestNode
= self
.testElem
815 self
.mainNode
.replaceChild(elem
, oldTestNode
)
817 # Replace wizard page class temporarily
818 if xxx
.__class
__ in [xxxWizardPage
, xxxWizardPageSimple
]:
819 oldCl
= elem
.getAttribute('class')
820 elem
.setAttribute('class', 'wxPanel')
821 parent
= elem
.parentNode
822 encd
= self
.rootObj
.params
['encoding'].value()
823 if not encd
: encd
= None
825 self
.dom
.writexml(memFile
, encoding
=encd
)
828 wxLogError(traceback
.format_exception(inf
[0], inf
[1], None)[-1])
829 wxLogError('Error writing temporary file')
831 memFile
.close() # write to wxMemoryFS
832 xmlFlags
= wxXRC_NO_SUBCLASSING
833 # Use translations if encoding is not specified
834 if not g
.currentEncoding
:
835 xmlFlags
!= wxXRC_USE_LOCALE
836 res
= wxXmlResource('', xmlFlags
)
837 res
.Load('memory:xxx.xrc')
839 if xxx
.__class
__ == xxxFrame
:
840 # Frame can't have many children,
841 # but it's first child possibly can...
842 # child = self.GetFirstChild(item)[0]
843 # if child.IsOk() and self.GetPyData(child).__class__ == xxxPanel:
844 # # Clean-up before recursive call or error
845 # wxMemoryFSHandler_RemoveFile('xxx.xrc')
847 # self.CreateTestWin(child)
849 # This currently works under GTK, but not under MSW
850 testWin
= g
.testWin
= wxPreFrame()
851 res
.LoadOnFrame(testWin
, g
.frame
, STD_NAME
)
853 testWin
.panel
= testWin
854 testWin
.CreateStatusBar()
855 testWin
.SetClientSize(testWin
.GetBestSize())
856 testWin
.SetPosition(pos
)
858 elif xxx
.__class
__ == xxxPanel
:
861 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'Panel: ' + name
,
862 pos
=pos
, name
=STD_NAME
)
863 testWin
.panel
= res
.LoadPanel(testWin
, STD_NAME
)
864 testWin
.SetClientSize(testWin
.GetBestSize())
866 elif xxx
.__class
__ == xxxDialog
:
867 testWin
= g
.testWin
= res
.LoadDialog(None, STD_NAME
)
868 testWin
.panel
= testWin
870 testWin
.SetPosition(pos
)
872 # Dialog's default code does not produce EVT_CLOSE
873 EVT_BUTTON(testWin
, wxID_OK
, self
.OnCloseTestWin
)
874 EVT_BUTTON(testWin
, wxID_CANCEL
, self
.OnCloseTestWin
)
875 elif xxx
.__class
__ == xxxWizard
:
877 res
.LoadOnObject(wiz
, None, STD_NAME
, 'wxWizard')
878 # Find first page (don't know better way)
880 for w
in wiz
.GetChildren():
881 if isinstance(w
, wxWizardPage
):
885 wxLogError('Wizard is empty')
887 # Wizard should be modal
888 self
.SetItemBold(item
)
890 self
.SetItemBold(item
, False)
892 elif xxx
.__class
__ in [xxxWizardPage
, xxxWizardPageSimple
]:
895 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'Wizard page: ' + name
,
896 pos
=pos
, name
=STD_NAME
)
897 testWin
.panel
= wxPrePanel()
898 res
.LoadOnObject(testWin
.panel
, testWin
, STD_NAME
, 'wxPanel')
899 testWin
.SetClientSize(testWin
.GetBestSize())
901 elif xxx
.__class
__ == xxxMenuBar
:
902 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'MenuBar: ' + name
,
903 pos
=pos
, name
=STD_NAME
)
905 # Set status bar to display help
906 testWin
.CreateStatusBar()
907 testWin
.menuBar
= res
.LoadMenuBar(STD_NAME
)
908 testWin
.SetMenuBar(testWin
.menuBar
)
910 elif xxx
.__class
__ == xxxToolBar
:
911 testWin
= g
.testWin
= wxFrame(g
.frame
, -1, 'ToolBar: ' + name
,
912 pos
=pos
, name
=STD_NAME
)
914 # Set status bar to display help
915 testWin
.CreateStatusBar()
916 testWin
.toolBar
= res
.LoadToolBar(testWin
, STD_NAME
)
917 testWin
.SetToolBar(testWin
.toolBar
)
921 EVT_CLOSE(testWin
, self
.OnCloseTestWin
)
922 testWin
.highLight
= None
923 if highLight
and not self
.pendingHighLight
:
924 self
.HighLight(highLight
)
927 self
.SetItemBold(item
, False)
928 g
.testWinPos
= g
.testWin
.GetPosition()
932 wxLogError(traceback
.format_exception(inf
[0], inf
[1], None)[-1])
933 wxLogError('Error loading resource')
934 wxMemoryFSHandler_RemoveFile('xxx.xrc')
937 def CloseTestWindow(self
):
938 if not g
.testWin
: return
939 self
.SetItemBold(g
.testWin
.item
, False)
940 g
.frame
.tb
.ToggleTool(g
.frame
.ID_TOOL_LOCATE
, False)
941 g
.testWinPos
= g
.testWin
.GetPosition()
945 def OnCloseTestWin(self
, evt
):
946 self
.CloseTestWindow()
948 # Return item index in parent
949 def ItemIndex(self
, item
):
950 n
= 0 # index of sibling
951 prev
= self
.GetPrevSibling(item
)
953 prev
= self
.GetPrevSibling(prev
)
957 # Full tree index of an item - list of positions
958 def ItemFullIndex(self
, item
):
959 if not item
.IsOk(): return None
961 while item
!= self
.root
:
962 l
.insert(0, self
.ItemIndex(item
))
963 item
= self
.GetItemParent(item
)
965 # Get item position from full index
966 def ItemAtFullIndex(self
, index
):
967 if index
is None: return wxTreeItemId()
970 item
= self
.GetFirstChild(item
)[0]
971 for k
in range(i
): item
= self
.GetNextSibling(item
)
974 # True if next item should be inserted after current (vs. appended to it)
975 def NeedInsert(self
, item
):
976 xxx
= self
.GetPyData(item
)
977 if item
== self
.root
: return False # root item
978 if xxx
.hasChildren
and not self
.GetChildrenCount(item
, False):
980 return not (self
.IsExpanded(item
) and self
.GetChildrenCount(item
, False))
982 # Override to use like single-selection tree
983 def GetSelection(self
):
984 return self
.selection
985 def SelectItem(self
, item
):
987 self
.ChangeSelection(item
)
988 wxTreeCtrl
.SelectItem(self
, item
)
991 def OnRightDown(self
, evt
):
992 pullDownMenu
= g
.pullDownMenu
994 pt
= evt
.GetPosition();
995 item
, flags
= self
.HitTest(pt
)
996 if item
.Ok() and flags
& wxTREE_HITTEST_ONITEM
:
997 self
.SelectItem(item
)
1002 item
= self
.selection
1004 menu
.Append(g
.pullDownMenu
.ID_EXPAND
, 'Expand', 'Expand tree')
1005 menu
.Append(g
.pullDownMenu
.ID_COLLAPSE
, 'Collapse', 'Collapse tree')
1007 # self.ctrl = evt.ControlDown() # save Ctrl state
1008 # self.shift = evt.ShiftDown() # and Shift too
1009 m
= wxMenu() # create menu
1013 needInsert
= self
.NeedInsert(item
)
1014 if item
== self
.root
or needInsert
and self
.GetItemParent(item
) == self
.root
:
1015 SetMenu(m
, pullDownMenu
.topLevel
)
1017 m
.Append(ID_NEW
.REF
, 'reference...', 'Create object_ref node')
1019 xxx
= self
.GetPyData(item
).treeObject()
1020 # Check parent for possible child nodes if inserting sibling
1021 if needInsert
: xxx
= xxx
.parent
1022 if xxx
.__class
__ == xxxMenuBar
:
1023 m
.Append(ID_NEW
.MENU
, 'Menu', 'Create menu')
1024 elif xxx
.__class
__ in [xxxToolBar
, xxxTool
] or \
1025 xxx
.__class
__ == xxxSeparator
and xxx
.parent
.__class
__ == xxxToolBar
:
1026 SetMenu(m
, pullDownMenu
.toolBarControls
)
1027 elif xxx
.__class
__ in [xxxMenu
, xxxMenuItem
]:
1028 SetMenu(m
, pullDownMenu
.menuControls
)
1029 elif xxx
.__class
__ == xxxStdDialogButtonSizer
:
1030 SetMenu(m
, pullDownMenu
.stdButtons
)
1032 SetMenu(m
, pullDownMenu
.controls
)
1033 if xxx
.__class
__ == xxxNotebook
:
1034 m
.Enable(m
.FindItem('sizer'), False)
1035 elif not (xxx
.isSizer
or xxx
.parent
and xxx
.parent
.isSizer
):
1036 m
.Enable(ID_NEW
.SPACER
, False)
1038 m
.Append(ID_NEW
.REF
, 'reference...', 'Create object_ref node')
1039 # Select correct label for create menu
1042 menu
.AppendMenu(wxNewId(), 'Insert Child', m
,
1043 'Create child object as the first child')
1045 menu
.AppendMenu(wxNewId(), 'Append Child', m
,
1046 'Create child object as the last child')
1049 menu
.AppendMenu(wxNewId(), 'Create Sibling', m
,
1050 'Create sibling before selected object')
1052 menu
.AppendMenu(wxNewId(), 'Create Sibling', m
,
1053 'Create sibling after selected object')
1054 # Build replace menu
1055 if item
!= self
.root
:
1056 xxx
= self
.GetPyData(item
).treeObject()
1057 m
= wxMenu() # create replace menu
1058 if xxx
.__class
__ == xxxMenuBar
:
1059 m
.Append(1000 + ID_NEW
.MENU
, 'Menu', 'Create menu')
1060 elif xxx
.__class
__ in [xxxMenu
, xxxMenuItem
]:
1061 SetMenu(m
, pullDownMenu
.menuControls
, shift
=True)
1062 elif xxx
.__class
__ == xxxToolBar
and \
1063 self
.GetItemParent(item
) == self
.root
:
1064 SetMenu(m
, [], shift
=True)
1065 elif xxx
.__class
__ in [xxxFrame
, xxxDialog
, xxxPanel
]:
1067 (ID_NEW
.PANEL
, 'Panel', 'Create panel'),
1068 (ID_NEW
.DIALOG
, 'Dialog', 'Create dialog'),
1069 (ID_NEW
.FRAME
, 'Frame', 'Create frame')], shift
=True)
1071 SetMenu(m
, pullDownMenu
.sizers
, shift
=True)
1073 SetMenu(m
, pullDownMenu
.controls
, shift
=True)
1075 menu
.AppendMenu(id, 'Replace With', m
)
1076 if not m
.GetMenuItemCount(): menu
.Enable(id, False)
1077 menu
.Append(pullDownMenu
.ID_SUBCLASS
, 'Subclass...',
1078 'Set "subclass" property')
1079 menu
.AppendSeparator()
1080 # Not using standart IDs because we don't want to show shortcuts
1081 menu
.Append(wxID_CUT
, 'Cut', 'Cut to the clipboard')
1082 menu
.Append(wxID_COPY
, 'Copy', 'Copy to the clipboard')
1083 if self
.ctrl
and item
!= self
.root
:
1084 menu
.Append(pullDownMenu
.ID_PASTE_SIBLING
, 'Paste Sibling',
1085 'Paste from the clipboard as a sibling')
1087 menu
.Append(wxID_PASTE
, 'Paste', 'Paste from the clipboard')
1088 menu
.Append(pullDownMenu
.ID_DELETE
,
1089 'Delete', 'Delete object')
1090 if self
.ItemHasChildren(item
):
1091 menu
.AppendSeparator()
1092 menu
.Append(pullDownMenu
.ID_EXPAND
, 'Expand', 'Expand subtree')
1093 menu
.Append(pullDownMenu
.ID_COLLAPSE
, 'Collapse', 'Collapse subtree')
1094 self
.PopupMenu(menu
, evt
.GetPosition())
1098 def Apply(self
, xxx
, item
):
1101 xxx
= xxx
.treeObject()
1102 if xxx
.hasName
and self
.GetItemText(item
) != xxx
.name
:
1103 self
.SetItemText(item
, xxx
.treeName())
1104 # Item width may have changed
1105 # !!! Tric to update tree width (wxGTK, ??)
1106 self
.SetIndent(self
.GetIndent())
1107 # Change tree icon for sizers
1108 if isinstance(xxx
, xxxBoxSizer
):
1109 self
.SetItemImage(item
, xxx
.treeImage())
1110 # Set global modified state
1111 g
.frame
.SetModified()