1 \section{\class{wxTreeCtrl
}}\label{wxtreectrl
}
3 A tree control presents information as a hierarchy, with items that may be expanded
4 to show further items. Items in a tree control are referenced by wxTreeItemId handles.
6 To intercept events from a tree control, use the event table macros described in
\helpref{wxTreeEvent
}{wxtreeevent
}.
8 \wxheading{Derived from
}
10 \helpref{wxControl
}{wxcontrol
}\\
11 \helpref{wxWindow
}{wxwindow
}\\
12 \helpref{wxEvtHandler
}{wxevthandler
}\\
13 \helpref{wxObject
}{wxobject
}
15 \wxheading{Window styles
}
18 \begin{twocollist
}\itemsep=
0pt
19 \twocolitem{\windowstyle{wxTR
\_HAS\_BUTTONS}}{Use this style to show + and - buttons to the
20 left of parent items.
}
21 \twocolitem{\windowstyle{wxTR
\_EDIT\_LABELS}}{Use this style if you wish the user to be
22 able to edit labels in the tree control.
}
25 See also
\helpref{window styles overview
}{windowstyles
}.
27 \wxheading{Event handling
}
29 To process input from a tree control, use these event handler macros to direct input to member
30 functions that take a
\helpref{wxTreeEvent
}{wxtreeevent
} argument.
33 \begin{twocollist
}\itemsep=
0pt
34 \twocolitem{{\bf EVT
\_TREE\_BEGIN\_DRAG(id, func)
}}{Begin dragging with the left mouse button.
}
35 \twocolitem{{\bf EVT
\_TREE\_BEGIN\_RDRAG(id, func)
}}{Begin dragging with the right mouse button.
}
36 \twocolitem{{\bf EVT
\_TREE\_BEGIN\_LABEL\_EDIT(id, func)
}}{Begin editing a label.
}
37 \twocolitem{{\bf EVT
\_TREE\_END\_LABEL\_EDIT(id, func)
}}{Finish editing a label.
}
38 \twocolitem{{\bf EVT
\_TREE\_DELETE\_ITEM(id, func)
}}{Delete an item.
}
39 \twocolitem{{\bf EVT
\_TREE\_GET\_INFO(id, func)
}}{Request information from the application.
}
40 \twocolitem{{\bf EVT
\_TREE\_SET\_INFO(id, func)
}}{Information is being supplied.
}
41 \twocolitem{{\bf EVT
\_TREE\_ITEM\_EXPANDED(id, func)
}}{Parent has been expanded.
}
42 \twocolitem{{\bf EVT
\_TREE\_ITEM\_EXPANDING(id, func)
}}{Parent is being expanded.
}
43 \twocolitem{{\bf EVT
\_TREE\_SEL\_CHANGED(id, func)
}}{Selection has changed.
}
44 \twocolitem{{\bf EVT
\_TREE\_SEL\_CHANGING(id, func)
}}{Selection is changing.
}
45 \twocolitem{{\bf EVT
\_TREE\_KEY\_DOWN(id, func)
}}{A key has been pressed.
}
50 \helpref{wxTreeItemData
}{wxtreeitemdata
},
\helpref{wxTreeCtrl overview
}{wxtreectrloverview
},
\helpref{wxListBox
}{wxlistbox
},
\helpref{wxListCtrl
}{wxlistctrl
},
\rtfsp
51 \helpref{wxImageList
}{wximagelist
},
\helpref{wxTreeEvent
}{wxtreeevent
}
53 \latexignore{\rtfignore{\wxheading{Members
}}}
55 \membersection{wxTreeCtrl::wxTreeCtrl
}\label{wxtreectrlconstr
}
57 \func{}{wxTreeCtrl
}{\void}
61 \func{}{wxTreeCtrl
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
62 \param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
63 \param{long
}{ style = wxTR
\_HAS\_BUTTONS},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``listCtrl"
}}
65 Constructor, creating and showing a tree control.
67 \wxheading{Parameters
}
69 \docparam{parent
}{Parent window. Must not be NULL.
}
71 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
73 \docparam{pos
}{Window position.
}
75 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then the window is sized
78 \docparam{style
}{Window style. See
\helpref{wxTreeCtrl
}{wxtreectrl
}.
}
80 \docparam{validator
}{Window validator.
}
82 \docparam{name
}{Window name.
}
86 \helpref{wxTreeCtrl::Create
}{wxtreectrlcreate
},
\helpref{wxValidator
}{wxvalidator
}
88 \membersection{wxTreeCtrl::
\destruct{wxTreeCtrl
}}
90 \func{void
}{\destruct{wxTreeCtrl
}}{\void}
92 Destructor, destroying the list control.
94 \membersection{wxTreeCtrl::AddRoot
}\label{wxtreectrladdroot
}
96 \func{wxTreeItemId
}{AddRoot
}{\param{const wxString\&
}{ text
},
97 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
99 Adds the root node to the tree, returning the new item.
101 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
102 both selected and unselected items.
104 \membersection{wxTreeCtrl::AppendItem
}\label{wxtreectrlappenditem
}
106 \func{wxTreeItemId
}{AppendItem
}{\param{const wxTreeItemId\&
}{parent
},
\param{const wxString\&
}{ text
},
107 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
109 Appends an item to the end of the branch identified by
{\it parent
}, return a new item id.
111 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
112 both selected and unselected items.
114 \membersection{wxTreeCtrl::Collapse
}\label{wxtreectrlcollapse
}
116 \func{void
}{Collapse
}{\param{const wxTreeItemId\&
}{ item
}}
118 Collapses the given item.
120 \membersection{wxTreeCtrl::CollapseAndReset
}\label{wxtreectrlcollapseandreset
}
122 \func{void
}{CollapseAndReset
}{\param{const wxTreeItemId\&
}{ item
}}
124 Collapses the given item and removes all children.
126 \membersection{wxTreeCtrl::Create
}\label{wxtreectrlcreate
}
128 \func{bool
}{wxTreeCtrl
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
129 \param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
130 \param{long
}{ style = wxTR
\_HAS\_BUTTONS},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``listCtrl"
}}
132 Creates the tree control. See
\helpref{wxTreeCtrl::wxTreeCtrl
}{wxtreectrlconstr
} for further details.
134 \membersection{wxTreeCtrl::Delete
}\label{wxtreectrldelete
}
136 \func{void
}{Delete
}{\param{const wxTreeItemId\&
}{ item
}}
138 Deletes the specified item.
140 \membersection{wxTreeCtrl::DeleteAllItems
}\label{wxtreectrldeleteallitems
}
142 \func{void
}{DeleteAllItems
}{\void}
144 Deletes all the items in the control.
146 \membersection{wxTreeCtrl::EditLabel
}\label{wxtreectrleditlabel
}
148 \func{wxTextCtrl*
}{EditLabel
}{\param{const wxTreeItemId\&
}{ item
},
\param{wxClassInfo*
}{ textControlClass = CLASSINFO(wxTextCtrl)
}}
150 Starts editing the label of the given item, returning the text control that the tree control uses for editing.
152 Pass another
{\it textControlClass
} if a derived class is required. It usually will be, in order for
153 the application to detect when editing has finished and to call
\helpref{wxTreeCtrl::EndEditLabel
}{wxtreectrlendeditlabel
}.
155 Do not delete the text control yourself.
157 This function is currently supported under Windows only.
161 \helpref{wxTreeCtrl::EndEditLabel
}{wxtreectrlendeditlabel
}
163 \membersection{wxTreeCtrl::EndEditLabel
}\label{wxtreectrlendeditlabel
}
165 \func{void
}{EndEditLabel
}{\param{bool
}{cancelEdit
}}
167 Ends label editing. If
{\it cancelEdit
} is TRUE, the edit will be cancelled.
169 This function is currently supported under Windows only.
173 \helpref{wxTreeCtrl::EditLabel
}{wxtreectrleditlabel
}
175 \membersection{wxTreeCtrl::EnsureVisible
}\label{wxtreectrlensurevisible
}
177 \func{void
}{EnsureVisible
}{\param{const wxTreeItemId\&
}{ item
}}
179 Scrolls and/or expands items to ensure that the given item is visible.
181 \membersection{wxTreeCtrl::Expand
}\label{wxtreectrlexpand
}
183 \func{void
}{Expand
}{\param{const wxTreeItemId\&
}{ item
}}
185 Expands the given item.
187 \membersection{wxTreeCtrl::GetBoundingRect
}\label{wxtreectrlgetitemrect
}
189 \constfunc{void
}{GetBoundingRect
}{\param{const wxTreeItemId\&
}{ item
},
\param{wxRect\&
}{rect
},
\param{bool
}{textOnly = FALSE
}}
191 Returns the position and size of the rectangle bounding the item.
193 \membersection{wxTreeCtrl::GetChildrenCount
}\label{wxtreectrlgetchildrencount
}
195 \constfunc{size
\_t}{GetChildrenCount
}{\param{const wxTreeItemId\&
}{ item
},
\param{bool
}{ recursively = TRUE
}}
197 Returns the number of items in the branch. If
{\it recursively
} is TRUE, returns the total number
198 of descendants, otherwise only one level of children is counted.
200 \membersection{wxTreeCtrl::GetCount
}\label{wxtreectrlgetcount
}
202 \constfunc{int
}{GetCount
}{\void}
204 Returns the number of items in the control.
206 \membersection{wxTreeCtrl::GetEditControl
}\label{wxtreectrlgeteditcontrol
}
208 \constfunc{wxTextCtrl\&
}{GetEditControl
}{\void}
210 Returns the edit control used to edit a label.
212 \membersection{wxTreeCtrl::GetFirstChild
}\label{wxtreectrlgetfirstchild
}
214 \constfunc{wxTreeItemId
}{GetFirstChild
}{\param{const wxTreeItemId\&
}{ item
},
\param{long\&
}{cookie
}}
216 Returns the first child; call
\helpref{wxTreeCtrl::GetNextChild
}{wxtreectrlgetnextchild
} for the next child.
218 For this enumeration function you must pass in a `cookie' parameter
219 which is opaque for the application but is necessary for the library
220 to make these functions reentrant (i.e. allow more than one
221 enumeration on one and the same object simultaneously). The cookie passed to
222 GetFirstChild and GetNextChild should be the same.
224 Returns
0 if there are no further children.
228 \helpref{wxTreeCtrl::GetNextChild
}{wxtreectrlgetnextchild
}
230 \membersection{wxTreeCtrl::GetFirstVisibleItem
}\label{wxtreectrlgetfirstvisibleitem
}
232 \constfunc{wxTreeItemId
}{GetFirstVisibleItem
}{\void}
234 Returns the first visible item.
236 \membersection{wxTreeCtrl::GetImageList
}\label{wxtreectrlgetimagelist
}
238 \constfunc{wxImageList*
}{GetImageList
}{\param{int
}{which = wxIMAGE
\_LIST\_NORMAL}}
240 Returns the specified image list.
{\it which
} may be one of:
243 \begin{twocollist
}\itemsep=
0pt
244 \twocolitem{\windowstyle{wxIMAGE
\_LIST\_NORMAL}}{The normal (large icon) image list.
}
245 \twocolitem{\windowstyle{wxIMAGE
\_LIST\_SMALL}}{The small icon image list.
}
246 \twocolitem{\windowstyle{wxIMAGE
\_LIST\_STATE}}{The user-defined state image list (unimplemented).
}
249 \membersection{wxTreeCtrl::GetIndent
}\label{wxtreectrlgetindent
}
251 \constfunc{int
}{GetIndent
}{\void}
253 Returns the current tree control indentation.
255 \membersection{wxTreeCtrl::GetItemData
}\label{wxtreectrlgetitemdata
}
257 \constfunc{wxTreeItemData*
}{GetItemData
}{\param{const wxTreeItemId\&
}{ item
}}
259 Returns the tree item data associated with the item.
263 \helpref{wxTreeItemData
}{wxtreeitemdata
}
265 \membersection{wxTreeCtrl::GetItemImage
}\label{wxtreectrlgetitemimage
}
267 \constfunc{int
}{GetItemImage
}{\param{const wxTreeItemId\&
}{item
}}
269 Gets the normal item image.
271 \membersection{wxTreeCtrl::GetItemText
}\label{wxtreectrlgetitemtext
}
273 \constfunc{wxString
}{GetItemText
}{\param{const wxTreeItemId\&
}{ item
}}
275 Returns the item label.
277 \membersection{wxTreeCtrl::GetNextChild
}\label{wxtreectrlgetnextchild
}
279 \constfunc{wxTreeItemId
}{GetNextChild
}{\param{const wxTreeItemId\&
}{ item
},
\param{long\&
}{cookie
}}
281 Returns the next child; call
\helpref{wxTreeCtrl::GetFirstChild
}{wxtreectrlgetfirstchild
} for the first child.
283 For this enumeration function you must pass in a `cookie' parameter
284 which is opaque for the application but is necessary for the library
285 to make these functions reentrant (i.e. allow more than one
286 enumeration on one and the same object simultaneously). The cookie passed to
287 GetFirstChild and GetNextChild should be the same.
289 Returns
0 if there are no further children.
293 \helpref{wxTreeCtrl::GetFirstChild
}{wxtreectrlgetfirstchild
}
295 \membersection{wxTreeCtrl::GetNextSibling
}\label{wxtreectrlgetnextsibling
}
297 \constfunc{wxTreeItemId
}{GetNextSibling
}{\param{const wxTreeItemId\&
}{ item
}}
299 Returns the next sibling of the specified item; call
\helpref{wxTreeCtrl::GetPrevSibling
}{wxtreectrlgetprevsibling
} for the previous sibling.
301 Returns
0 if there are no further siblings.
305 \helpref{wxTreeCtrl::GetPrevSibling
}{wxtreectrlgetprevsibling
}
307 \membersection{wxTreeCtrl::GetNextVisible
}\label{wxtreectrlgetnextvisible
}
309 \constfunc{wxTreeItemId
}{GetNextVisible
}{\param{const wxTreeItemId\&
}{ item
}}
311 Returns the next visible item.
313 \membersection{wxTreeCtrl::GetParent
}\label{wxtreectrlgetparent
}
315 \constfunc{wxTreeItemId
}{GetParent
}{\param{const wxTreeItemId\&
}{ item
}}
317 Returns the item's parent.
319 \membersection{wxTreeCtrl::GetPrevSibling
}\label{wxtreectrlgetprevsibling
}
321 \constfunc{wxTreeItemId
}{GetPrevSibling
}{\param{const wxTreeItemId\&
}{ item
}}
323 Returns the previous sibling of the specified item; call
\helpref{wxTreeCtrl::GetNextSibling
}{wxtreectrlgetnextsibling
} for the next sibling.
325 Returns
0 if there are no further children.
329 \helpref{wxTreeCtrl::GetNextSibling
}{wxtreectrlgetnextsibling
}
331 \membersection{wxTreeCtrl::GetPrevVisible
}\label{wxtreectrlgetprevvisible
}
333 \constfunc{wxTreeItemId
}{GetPrevVisible
}{\param{const wxTreeItemId\&
}{ item
}}
335 Returns the previous visible item.
337 \membersection{wxTreeCtrl::GetRootItem
}\label{wxtreectrlgetrootitem
}
339 \constfunc{wxTreeItemId
}{GetRootItem
}{\void}
341 Returns the root item for the tree control.
343 \membersection{wxTreeCtrl::GetSelectedItemImage
}\label{wxtreectrlgetselecteditemimage
}
345 \constfunc{int
}{GetSelectedItemImage
}{\param{const wxTreeItemId\&
}{item
}}
347 Gets the selected item image.
349 \membersection{wxTreeCtrl::GetSelection
}\label{wxtreectrlgetselection
}
351 \constfunc{wxTreeItemId
}{GetSelection
}{\void}
353 Returns the selection, or
0 if there is no selection.
355 \membersection{wxTreeCtrl::HitTest
}\label{wxtreectrlhittest
}
357 \func{long
}{HitTest
}{\param{const wxPoint\&
}{point
},
\param{int\&
}{flags
}}
359 Calculates which (if any) item is under the given point, returning extra information
360 in
{\it flags
}.
{\it flags
} is a bitlist of the following:
363 \begin{twocollist
}\itemsep=
0pt
364 \twocolitem{wxTREE
\_HITTEST\_ABOVE}{Above the client area.
}
365 \twocolitem{wxTREE
\_HITTEST\_BELOW}{Below the client area.
}
366 \twocolitem{wxTREE
\_HITTEST\_NOWHERE}{In the client area but below the last item.
}
367 \twocolitem{wxTREE
\_HITTEST\_ONITEMBUTTON}{On the button associated with an item.
}
368 \twocolitem{wxTREE
\_HITTEST\_ONITEMICON}{On the bitmap associated with an item.
}
369 \twocolitem{wxTREE
\_HITTEST\_ONITEMINDENT}{In the indentation associated with an item.
}
370 \twocolitem{wxTREE
\_HITTEST\_ONITEMLABEL}{On the label (string) associated with an item.
}
371 \twocolitem{wxTREE
\_HITTEST\_ONITEMRIGHT}{In the area to the right of an item.
}
372 \twocolitem{wxTREE
\_HITTEST\_ONITEMSTATEICON}{On the state icon for a tree view item that is in a user-defined state.
}
373 \twocolitem{wxTREE
\_HITTEST\_TOLEFT}{To the right of the client area.
}
374 \twocolitem{wxTREE
\_HITTEST\_TORIGHT}{To the left of the client area.
}
377 \membersection{wxTreeCtrl::InsertItem
}\label{wxtreectrlinsertitem
}
379 \func{wxTreeItemId
}{InsertItem
}{\param{const wxTreeItemId\&
}{parent
},
\param{const wxTreeItemId\&
}{previous
},
\param{const wxString\&
}{ text
},
380 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
382 Inserts an item after a given one.
384 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
385 both selected and unselected items.
387 \membersection{wxTreeCtrl::IsExpanded
}\label{wxtreectrlisexpanded
}
389 \constfunc{bool
}{IsExpanded
}{\param{const wxTreeItemId\&
}{ item
}}
391 Returns TRUE if the item is expanded (only makes sense if it has children).
393 \membersection{wxTreeCtrl::IsSelected
}\label{wxtreectrlisselected
}
395 \constfunc{bool
}{IsSelected
}{\param{const wxTreeItemId\&
}{ item
}}
397 Returns TRUE if the item is selected.
399 \membersection{wxTreeCtrl::IsVisible
}\label{wxtreectrlisvisible
}
401 \constfunc{bool
}{IsVisible
}{\param{const wxTreeItemId\&
}{ item
}}
403 Returns TRUE if the item is visible (it might be outside the view, or not expanded).
405 \membersection{wxTreeCtrl::ItemHasChildren
}\label{wxtreectrlitemhaschildren
}
407 \constfunc{bool
}{ItemHasChildren
}{\param{const wxTreeItemId\&
}{ item
}}
409 Returns TRUE if the item has children.
411 \membersection{wxTreeCtrl::PrependItem
}\label{wxtreectrlprependitem
}
413 \func{wxTreeItemId
}{PrependItem
}{\param{const wxTreeItemId\&
}{parent
},
\param{const wxString\&
}{ text
},
414 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
416 Appends an item as the first child of
{\it parent
}, return a new item id.
418 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
419 both selected and unselected items.
421 \membersection{wxTreeCtrl::ScrollTo
}\label{wxtreectrlscrollto
}
423 \func{void
}{ScrollTo
}{\param{const wxTreeItemId\&
}{ item
}}
425 Scrolls the specified item into view.
427 \membersection{wxTreeCtrl::SelectItem
}\label{wxtreectrlselectitem
}
429 \func{bool
}{SelectItem
}{\param{const wxTreeItemId\&
}{ item
}}
431 Selects the given item.
433 \membersection{wxTreeCtrl::SetIndent
}\label{wxtreectrlsetindent
}
435 \func{void
}{SetIndent
}{\param{int
}{indent
}}
437 Sets the indentation for the tree control.
439 \membersection{wxTreeCtrl::SetImageList
}\label{wxtreectrlsetimagelist
}
441 \func{void
}{SetImageList
}{\param{wxImageList*
}{ imageList
},
\param{int
}{which = wxIMAGE
\_LIST\_NORMAL}}
443 Sets the image list.
{\it which
} should be one of wxIMAGE
\_LIST\_NORMAL, wxIMAGE
\_LIST\_SMALL and
444 wxIMAGE
\_LIST\_STATE.
446 \membersection{wxTreeCtrl::SetItemData
}\label{wxtreectrlsetitemdata
}
448 \func{void
}{SetItemData
}{\param{const wxTreeItemId\&
}{ item
},
\param{wxTreeItemData*
}{data
}}
450 Sets the item client data.
452 \membersection{wxTreeCtrl::SetItemHasChildren
}\label{wxtreectrlsetitemhaschildren
}
454 \func{void
}{SetItemHasChildren
}{\param{const wxTreeItemId\&
}{ item
},
\param{bool
}{hasChildren = TRUE
}}
456 Force appearance of the button next to the item. This is useful to
457 allow the user to expand the items which don't have any children now,
458 but instead adding them only when needed, thus minimizing memory
459 usage and loading time.
461 \membersection{wxTreeCtrl::SetItemImage
}\label{wxtreectrlsetitemimage
}
463 \func{void
}{SetItemImage
}{\param{const wxTreeItemId\&
}{ item
},
\param{int
}{image
}}
465 Sets the normal item image. This is an index into the assciated image list.
467 \membersection{wxTreeCtrl::SetItemSelectedImage
}\label{wxtreectrlsetitemselectedimage
}
469 \func{void
}{SetItemSelectedImage
}{\param{const wxTreeItemId\&
}{ item
},
\param{int
}{selImage
}}
471 Sets the item selected image. This is an index into the assciated image list.
473 \membersection{wxTreeCtrl::SetItemText
}\label{wxtreectrlsetitemtext
}
475 \func{void
}{SetItemText
}{\param{const wxTreeItemId\&
}{ item
},
\param{const wxString\&
}{text
}}
479 \membersection{wxTreeCtrl::SortChildren
}\label{wxtreectrlsortchildren
}
481 \func{void
}{SortChildren
}{\param{const wxTreeItemId\&
}{ item
},
\param{wxTreeItemCmpFunc*
}{ cmpFunction = NULL
}}
483 Sorts the children of the given item. If
{\it cmpFunction
} is NULL, sorts in ascending alphabetical order;
484 otherwise the custom sort function is used, as follows:
488 // a callback function used for sorting tree items, it should return -
1 if the
489 // first item precedes the second, +
1 if the second precedes the first or
0 if
490 // they're equivalent
491 class wxTreeItemData;
492 typedef int
(*wxTreeItemCmpFunc)(wxTreeItemData *item1, wxTreeItemData *item2);
498 \helpref{wxTreeItemData}{wxtreeitemdata}
500 \membersection{wxTreeCtrl::Toggle}\label{wxtreectrltoggle}
502 \func{void}{Toggle}{\param{const wxTreeItemId\&}{ item}}
504 Toggles the given item between collapsed and expanded states.
506 \membersection{wxTreeCtrl::Unselect}\label{wxtreectrlunselect}
508 \func{void}{Unselect}{\void}
510 Removes the selection from the currently selected item (if any).
512 \section{\class{wxTreeItemData}}\label{wxtreeitemdata}
514 wxTreeItemData is some (arbitrary) user class associated with some item. The
515 main advantage of having this class (compared to the old untyped interface) is
516 that wxTreeItemData's are destroyed automatically by the tree and, as this
517 class has virtual dtor, it means that the memory will be automatically
518 freed. We don't just use wxObject instead of wxTreeItemData because
519 the size of this class is critical: in any real application, each tree leaf
520 will have wxTreeItemData associated with it and number of leaves may be
523 Because the objects of this class are deleted by the tree, they should
524 always be allocated on the heap.
526 \wxheading{Derived from}
532 \helpref{wxTreeCtrl}{wxtreectrl}
534 \latexignore{\rtfignore{\wxheading{Members}}}
536 \membersection{wxTreeItemData::wxTreeItemData}\label{wxtreeitemdataconstr}
538 \func{}{wxTreeItemData}{\void}
542 \membersection{wxTreeItemData::\destruct{wxTreeItemData}}
544 \func{void}{\destruct{wxTreeItemData}}{\void}
548 \membersection{wxTreeItemData::GetId}\label{wxtreeitemdatagetid}
550 \func{const wxTreeItem\&}{GetId}{\void}
552 Returns the item associated with this node.
554 \membersection{wxTreeItemData::SetId}\label{wxtreeitemdatasetid}
556 \func{void}{SetId}{\param{const wxTreeItemId\&}{ id}}
558 Sets the item associated with this node.