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{Include files
}
19 \wxheading{Window styles
}
22 \begin{twocollist
}\itemsep=
0pt
23 \twocolitem{\windowstyle{wxTR
\_HAS\_BUTTONS}}{Use this style to show + and - buttons to the
24 left of parent items.
}
25 \twocolitem{\windowstyle{wxTR
\_EDIT\_LABELS}}{Use this style if you wish the user to be
26 able to edit labels in the tree control.
}
29 See also
\helpref{window styles overview
}{windowstyles
}.
31 \wxheading{Event handling
}
33 To process input from a tree control, use these event handler macros to direct input to member
34 functions that take a
\helpref{wxTreeEvent
}{wxtreeevent
} argument.
37 \begin{twocollist
}\itemsep=
0pt
38 \twocolitem{{\bf EVT
\_TREE\_BEGIN\_DRAG(id, func)
}}{Begin dragging with the left mouse button.
}
39 \twocolitem{{\bf EVT
\_TREE\_BEGIN\_RDRAG(id, func)
}}{Begin dragging with the right mouse button.
}
40 \twocolitem{{\bf EVT
\_TREE\_BEGIN\_LABEL\_EDIT(id, func)
}}{Begin editing a label.
}
41 \twocolitem{{\bf EVT
\_TREE\_END\_LABEL\_EDIT(id, func)
}}{Finish editing a label.
}
42 \twocolitem{{\bf EVT
\_TREE\_DELETE\_ITEM(id, func)
}}{Delete an item.
}
43 \twocolitem{{\bf EVT
\_TREE\_GET\_INFO(id, func)
}}{Request information from the application.
}
44 \twocolitem{{\bf EVT
\_TREE\_SET\_INFO(id, func)
}}{Information is being supplied.
}
45 \twocolitem{{\bf EVT
\_TREE\_ITEM\_EXPANDED(id, func)
}}{Parent has been expanded.
}
46 \twocolitem{{\bf EVT
\_TREE\_ITEM\_EXPANDING(id, func)
}}{Parent is being expanded.
}
47 \twocolitem{{\bf EVT
\_TREE\_SEL\_CHANGED(id, func)
}}{Selection has changed.
}
48 \twocolitem{{\bf EVT
\_TREE\_SEL\_CHANGING(id, func)
}}{Selection is changing.
}
49 \twocolitem{{\bf EVT
\_TREE\_KEY\_DOWN(id, func)
}}{A key has been pressed.
}
54 \helpref{wxTreeItemData
}{wxtreeitemdata
},
\helpref{wxTreeCtrl overview
}{wxtreectrloverview
},
\helpref{wxListBox
}{wxlistbox
},
\helpref{wxListCtrl
}{wxlistctrl
},
\rtfsp
55 \helpref{wxImageList
}{wximagelist
},
\helpref{wxTreeEvent
}{wxtreeevent
}
57 \latexignore{\rtfignore{\wxheading{Members
}}}
59 \membersection{wxTreeCtrl::wxTreeCtrl
}\label{wxtreectrlconstr
}
61 \func{}{wxTreeCtrl
}{\void}
65 \func{}{wxTreeCtrl
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
66 \param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
67 \param{long
}{ style = wxTR
\_HAS\_BUTTONS},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``listCtrl"
}}
69 Constructor, creating and showing a tree control.
71 \wxheading{Parameters
}
73 \docparam{parent
}{Parent window. Must not be NULL.
}
75 \docparam{id
}{Window identifier. A value of -
1 indicates a default value.
}
77 \docparam{pos
}{Window position.
}
79 \docparam{size
}{Window size. If the default size (-
1, -
1) is specified then the window is sized
82 \docparam{style
}{Window style. See
\helpref{wxTreeCtrl
}{wxtreectrl
}.
}
84 \docparam{validator
}{Window validator.
}
86 \docparam{name
}{Window name.
}
90 \helpref{wxTreeCtrl::Create
}{wxtreectrlcreate
},
\helpref{wxValidator
}{wxvalidator
}
92 \membersection{wxTreeCtrl::
\destruct{wxTreeCtrl
}}
94 \func{void
}{\destruct{wxTreeCtrl
}}{\void}
96 Destructor, destroying the list control.
98 \membersection{wxTreeCtrl::AddRoot
}\label{wxtreectrladdroot
}
100 \func{wxTreeItemId
}{AddRoot
}{\param{const wxString\&
}{ text
},
101 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
103 Adds the root node to the tree, returning the new item.
105 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
106 both selected and unselected items.
108 \membersection{wxTreeCtrl::AppendItem
}\label{wxtreectrlappenditem
}
110 \func{wxTreeItemId
}{AppendItem
}{\param{const wxTreeItemId\&
}{parent
},
\param{const wxString\&
}{ text
},
111 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
113 Appends an item to the end of the branch identified by
{\it parent
}, return a new item id.
115 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
116 both selected and unselected items.
118 \membersection{wxTreeCtrl::Collapse
}\label{wxtreectrlcollapse
}
120 \func{void
}{Collapse
}{\param{const wxTreeItemId\&
}{ item
}}
122 Collapses the given item.
124 \membersection{wxTreeCtrl::CollapseAndReset
}\label{wxtreectrlcollapseandreset
}
126 \func{void
}{CollapseAndReset
}{\param{const wxTreeItemId\&
}{ item
}}
128 Collapses the given item and removes all children.
130 \membersection{wxTreeCtrl::Create
}\label{wxtreectrlcreate
}
132 \func{bool
}{wxTreeCtrl
}{\param{wxWindow*
}{ parent
},
\param{wxWindowID
}{ id
},
\rtfsp
133 \param{const wxPoint\&
}{ pos = wxDefaultPosition
},
\param{const wxSize\&
}{ size = wxDefaultSize
},
\rtfsp
134 \param{long
}{ style = wxTR
\_HAS\_BUTTONS},
\param{const wxValidator\&
}{validator = wxDefaultValidator
},
\param{const wxString\&
}{name = ``listCtrl"
}}
136 Creates the tree control. See
\helpref{wxTreeCtrl::wxTreeCtrl
}{wxtreectrlconstr
} for further details.
138 \membersection{wxTreeCtrl::Delete
}\label{wxtreectrldelete
}
140 \func{void
}{Delete
}{\param{const wxTreeItemId\&
}{ item
}}
142 Deletes the specified item.
144 \membersection{wxTreeCtrl::DeleteAllItems
}\label{wxtreectrldeleteallitems
}
146 \func{void
}{DeleteAllItems
}{\void}
148 Deletes all the items in the control.
150 \membersection{wxTreeCtrl::EditLabel
}\label{wxtreectrleditlabel
}
152 \func{wxTextCtrl*
}{EditLabel
}{\param{const wxTreeItemId\&
}{ item
}}
154 Starts editing the label of the given item, returning the text control that
155 the tree control uses for editing. This function generates a
156 EVT
\_BEGIN\_LABEL\_EDIT event and if the event handler returns FALSE, label
157 editing will not start and NULL will be returned - be ready to handle this
160 The text control returned should not be deleted by the application and is not
161 valid any longer after the EVT
\_END\_LABEL\_EDIT event is received.
165 \helpref{wxTreeCtrl::EndEditLabel
}{wxtreectrlendeditlabel
},
166 \helpref{wxTreeEvent
}{wxtreeevent
}
168 \membersection{wxTreeCtrl::EndEditLabel
}\label{wxtreectrlendeditlabel
}
170 \func{void
}{EndEditLabel
}{\param{bool
}{cancelEdit
}}
172 Ends label editing. If
{\it cancelEdit
} is TRUE, the edit will be cancelled.
174 This function is currently supported under Windows only.
178 \helpref{wxTreeCtrl::EditLabel
}{wxtreectrleditlabel
}
180 \membersection{wxTreeCtrl::EnsureVisible
}\label{wxtreectrlensurevisible
}
182 \func{void
}{EnsureVisible
}{\param{const wxTreeItemId\&
}{ item
}}
184 Scrolls and/or expands items to ensure that the given item is visible.
186 \membersection{wxTreeCtrl::Expand
}\label{wxtreectrlexpand
}
188 \func{void
}{Expand
}{\param{const wxTreeItemId\&
}{ item
}}
190 Expands the given item.
192 \membersection{wxTreeCtrl::GetBoundingRect
}\label{wxtreectrlgetitemrect
}
194 \constfunc{bool
}{GetBoundingRect
}{\param{const wxTreeItemId\&
}{ item
},
\param{wxRect\&
}{rect
},
\param{bool
}{textOnly = FALSE
}}
196 Retrieves the rectangle bounding the
{\it item
}. If
{\it textOnly
} is TRUE,
197 only the rectangle around the items label will be returned, otherwise the
198 items image is also taken into account.
200 The return value is TRUE if the rectangle was successfully retrieved or FALSE
201 if it was not (in this case
{\it rect
} is not changed) - for example, if the
202 item is currently invisible.
204 \membersection{wxTreeCtrl::GetChildrenCount
}\label{wxtreectrlgetchildrencount
}
206 \constfunc{size
\_t}{GetChildrenCount
}{\param{const wxTreeItemId\&
}{ item
},
\param{bool
}{ recursively = TRUE
}}
208 Returns the number of items in the branch. If
{\it recursively
} is TRUE, returns the total number
209 of descendants, otherwise only one level of children is counted.
211 \membersection{wxTreeCtrl::GetCount
}\label{wxtreectrlgetcount
}
213 \constfunc{int
}{GetCount
}{\void}
215 Returns the number of items in the control.
217 \membersection{wxTreeCtrl::GetEditControl
}\label{wxtreectrlgeteditcontrol
}
219 \constfunc{wxTextCtrl\&
}{GetEditControl
}{\void}
221 Returns the edit control used to edit a label.
223 \membersection{wxTreeCtrl::GetFirstChild
}\label{wxtreectrlgetfirstchild
}
225 \constfunc{wxTreeItemId
}{GetFirstChild
}{\param{const wxTreeItemId\&
}{ item
},
\param{long\&
}{cookie
}}
227 Returns the first child; call
\helpref{wxTreeCtrl::GetNextChild
}{wxtreectrlgetnextchild
} for the next child.
229 For this enumeration function you must pass in a `cookie' parameter
230 which is opaque for the application but is necessary for the library
231 to make these functions reentrant (i.e. allow more than one
232 enumeration on one and the same object simultaneously). The cookie passed to
233 GetFirstChild and GetNextChild should be the same.
235 Returns an invalid tree item if there are no further children.
239 \helpref{wxTreeCtrl::GetNextChild
}{wxtreectrlgetnextchild
}
241 \pythonnote{In wxPython the returned wxTreeItemId and the new cookie
242 value are both returned as a tuple containing the two values.
}
244 \membersection{wxTreeCtrl::GetFirstVisibleItem
}\label{wxtreectrlgetfirstvisibleitem
}
246 \constfunc{wxTreeItemId
}{GetFirstVisibleItem
}{\void}
248 Returns the first visible item.
250 \membersection{wxTreeCtrl::GetImageList
}\label{wxtreectrlgetimagelist
}
252 \constfunc{wxImageList*
}{GetImageList
}{\param{int
}{which = wxIMAGE
\_LIST\_NORMAL}}
254 Returns the specified image list.
{\it which
} may be one of:
257 \begin{twocollist
}\itemsep=
0pt
258 \twocolitem{\windowstyle{wxIMAGE
\_LIST\_NORMAL}}{The normal (large icon) image list.
}
259 \twocolitem{\windowstyle{wxIMAGE
\_LIST\_SMALL}}{The small icon image list.
}
260 \twocolitem{\windowstyle{wxIMAGE
\_LIST\_STATE}}{The user-defined state image list (unimplemented).
}
263 \membersection{wxTreeCtrl::GetIndent
}\label{wxtreectrlgetindent
}
265 \constfunc{int
}{GetIndent
}{\void}
267 Returns the current tree control indentation.
269 \membersection{wxTreeCtrl::GetItemData
}\label{wxtreectrlgetitemdata
}
271 \constfunc{wxTreeItemData*
}{GetItemData
}{\param{const wxTreeItemId\&
}{ item
}}
273 Returns the tree item data associated with the item.
277 \helpref{wxTreeItemData
}{wxtreeitemdata
}
279 \pythonnote{wxPython provides the following shortcut method:
\par
280 \indented{2cm
}{\begin{twocollist
}
281 \twocolitem{\bf{GetPyData(item)
}}{Returns the Python Object
282 associated with the wxTreeItemData for the given item Id.
}
286 \membersection{wxTreeCtrl::GetItemImage
}\label{wxtreectrlgetitemimage
}
288 \constfunc{int
}{GetItemImage
}{\param{const wxTreeItemId\&
}{item
}}
290 Gets the normal item image.
292 \membersection{wxTreeCtrl::GetItemText
}\label{wxtreectrlgetitemtext
}
294 \constfunc{wxString
}{GetItemText
}{\param{const wxTreeItemId\&
}{ item
}}
296 Returns the item label.
298 \membersection{wxTreeCtrl::GetLastChild
}\label{wxtreectrlgetlastchild
}
300 \constfunc{wxTreeItemId
}{GetLastChild
}{\param{const wxTreeItemId\&
}{ item
}}
302 Returns the last child of the item (or an invalid tree item if this item has no children).
306 \helpref{GetFirstChild
}{wxtreectrlgetfirstchild
},
307 \helpref{GetLastChild
}{wxtreectrlgetlastchild
}
309 \membersection{wxTreeCtrl::GetNextChild
}\label{wxtreectrlgetnextchild
}
311 \constfunc{wxTreeItemId
}{GetNextChild
}{\param{const wxTreeItemId\&
}{ item
},
\param{long\&
}{cookie
}}
313 Returns the next child; call
\helpref{wxTreeCtrl::GetFirstChild
}{wxtreectrlgetfirstchild
} for the first child.
315 For this enumeration function you must pass in a `cookie' parameter
316 which is opaque for the application but is necessary for the library
317 to make these functions reentrant (i.e. allow more than one
318 enumeration on one and the same object simultaneously). The cookie passed to
319 GetFirstChild and GetNextChild should be the same.
321 Returns an invalid tree item if there are no further children.
325 \helpref{wxTreeCtrl::GetFirstChild
}{wxtreectrlgetfirstchild
}
327 \pythonnote{In wxPython the returned wxTreeItemId and the new cookie
328 value are both returned as a tuple containing the two values.
}
330 \membersection{wxTreeCtrl::GetNextSibling
}\label{wxtreectrlgetnextsibling
}
332 \constfunc{wxTreeItemId
}{GetNextSibling
}{\param{const wxTreeItemId\&
}{ item
}}
334 Returns the next sibling of the specified item; call
\helpref{wxTreeCtrl::GetPrevSibling
}{wxtreectrlgetprevsibling
} for the previous sibling.
336 Returns an invalid tree item if there are no further siblings.
340 \helpref{wxTreeCtrl::GetPrevSibling
}{wxtreectrlgetprevsibling
}
342 \membersection{wxTreeCtrl::GetNextVisible
}\label{wxtreectrlgetnextvisible
}
344 \constfunc{wxTreeItemId
}{GetNextVisible
}{\param{const wxTreeItemId\&
}{ item
}}
346 Returns the next visible item.
348 \membersection{wxTreeCtrl::GetParent
}\label{wxtreectrlgetparent
}
350 \constfunc{wxTreeItemId
}{GetParent
}{\param{const wxTreeItemId\&
}{ item
}}
352 Returns the item's parent.
354 \membersection{wxTreeCtrl::GetPrevSibling
}\label{wxtreectrlgetprevsibling
}
356 \constfunc{wxTreeItemId
}{GetPrevSibling
}{\param{const wxTreeItemId\&
}{ item
}}
358 Returns the previous sibling of the specified item; call
\helpref{wxTreeCtrl::GetNextSibling
}{wxtreectrlgetnextsibling
} for the next sibling.
360 Returns an invalid tree item if there are no further children.
364 \helpref{wxTreeCtrl::GetNextSibling
}{wxtreectrlgetnextsibling
}
366 \membersection{wxTreeCtrl::GetPrevVisible
}\label{wxtreectrlgetprevvisible
}
368 \constfunc{wxTreeItemId
}{GetPrevVisible
}{\param{const wxTreeItemId\&
}{ item
}}
370 Returns the previous visible item.
372 \membersection{wxTreeCtrl::GetRootItem
}\label{wxtreectrlgetrootitem
}
374 \constfunc{wxTreeItemId
}{GetRootItem
}{\void}
376 Returns the root item for the tree control.
378 \membersection{wxTreeCtrl::GetItemSelectedImage
}\label{wxtreectrlgetitemselectedimage
}
380 \constfunc{int
}{GetItemSelectedImage
}{\param{const wxTreeItemId\&
}{item
}}
382 Gets the selected item image.
384 \membersection{wxTreeCtrl::GetSelection
}\label{wxtreectrlgetselection
}
386 \constfunc{wxTreeItemId
}{GetSelection
}{\void}
388 Returns the selection, or an invalid item if there is no selection.
390 \membersection{wxTreeCtrl::HitTest
}\label{wxtreectrlhittest
}
392 \func{long
}{HitTest
}{\param{const wxPoint\&
}{point
},
\param{int\&
}{flags
}}
394 Calculates which (if any) item is under the given point, returning extra information
395 in
{\it flags
}.
{\it flags
} is a bitlist of the following:
398 \begin{twocollist
}\itemsep=
0pt
399 \twocolitem{wxTREE
\_HITTEST\_ABOVE}{Above the client area.
}
400 \twocolitem{wxTREE
\_HITTEST\_BELOW}{Below the client area.
}
401 \twocolitem{wxTREE
\_HITTEST\_NOWHERE}{In the client area but below the last item.
}
402 \twocolitem{wxTREE
\_HITTEST\_ONITEMBUTTON}{On the button associated with an item.
}
403 \twocolitem{wxTREE
\_HITTEST\_ONITEMICON}{On the bitmap associated with an item.
}
404 \twocolitem{wxTREE
\_HITTEST\_ONITEMINDENT}{In the indentation associated with an item.
}
405 \twocolitem{wxTREE
\_HITTEST\_ONITEMLABEL}{On the label (string) associated with an item.
}
406 \twocolitem{wxTREE
\_HITTEST\_ONITEMRIGHT}{In the area to the right of an item.
}
407 \twocolitem{wxTREE
\_HITTEST\_ONITEMSTATEICON}{On the state icon for a tree view item that is in a user-defined state.
}
408 \twocolitem{wxTREE
\_HITTEST\_TOLEFT}{To the right of the client area.
}
409 \twocolitem{wxTREE
\_HITTEST\_TORIGHT}{To the left of the client area.
}
412 \membersection{wxTreeCtrl::InsertItem
}\label{wxtreectrlinsertitem
}
414 \func{wxTreeItemId
}{InsertItem
}{\param{const wxTreeItemId\&
}{parent
},
\param{const wxTreeItemId\&
}{previous
},
\param{const wxString\&
}{ text
},
415 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
417 Inserts an item after a given one.
419 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
420 both selected and unselected items.
422 \membersection{wxTreeCtrl::IsBold
}\label{wxtreectrlisbold
}
424 \constfunc{bool
}{IsBold
}{\param{const wxTreeItemId\&
}{item
}}
426 Returns TRUE if the given item is in bold state.
428 See also:
\helpref{SetItemBold
}{wxtreectrlsetitembold
}
430 \membersection{wxTreeCtrl::IsExpanded
}\label{wxtreectrlisexpanded
}
432 \constfunc{bool
}{IsExpanded
}{\param{const wxTreeItemId\&
}{ item
}}
434 Returns TRUE if the item is expanded (only makes sense if it has children).
436 \membersection{wxTreeCtrl::IsSelected
}\label{wxtreectrlisselected
}
438 \constfunc{bool
}{IsSelected
}{\param{const wxTreeItemId\&
}{ item
}}
440 Returns TRUE if the item is selected.
442 \membersection{wxTreeCtrl::IsVisible
}\label{wxtreectrlisvisible
}
444 \constfunc{bool
}{IsVisible
}{\param{const wxTreeItemId\&
}{ item
}}
446 Returns TRUE if the item is visible (it might be outside the view, or not expanded).
448 \membersection{wxTreeCtrl::ItemHasChildren
}\label{wxtreectrlitemhaschildren
}
450 \constfunc{bool
}{ItemHasChildren
}{\param{const wxTreeItemId\&
}{ item
}}
452 Returns TRUE if the item has children.
454 \membersection{wxTreeCtrl::OnCompareItems
}\label{wxtreectrloncompareitems
}
456 \func{int
}{OnCompareItems
}{\param{const wxTreeItemId\&
}{item1
},
\param{const wxTreeItemId\&
}{item2
}}
458 Override this function in the derived class to change the sort order of the
459 items in the tree control. The function should return a negative, zero or
460 positive value if the first item is less than, equal to or greater than the
463 The base class version compares items alphabetically.
465 See also:
\helpref{SortChildren
}{wxtreectrlsortchildren
}
467 \membersection{wxTreeCtrl::PrependItem
}\label{wxtreectrlprependitem
}
469 \func{wxTreeItemId
}{PrependItem
}{\param{const wxTreeItemId\&
}{parent
},
\param{const wxString\&
}{ text
},
470 \param{int
}{ image = -
1},
\param{int
}{ selImage = -
1},
\param{wxTreeItemData*
}{ data = NULL
}}
472 Appends an item as the first child of
{\it parent
}, return a new item id.
474 If
{\it image
} > -
1 and
{\it selImage
} is -
1, the same image is used for
475 both selected and unselected items.
477 \membersection{wxTreeCtrl::ScrollTo
}\label{wxtreectrlscrollto
}
479 \func{void
}{ScrollTo
}{\param{const wxTreeItemId\&
}{ item
}}
481 Scrolls the specified item into view.
483 \membersection{wxTreeCtrl::SelectItem
}\label{wxtreectrlselectitem
}
485 \func{bool
}{SelectItem
}{\param{const wxTreeItemId\&
}{ item
}}
487 Selects the given item.
489 \membersection{wxTreeCtrl::SetIndent
}\label{wxtreectrlsetindent
}
491 \func{void
}{SetIndent
}{\param{int
}{indent
}}
493 Sets the indentation for the tree control.
495 \membersection{wxTreeCtrl::SetImageList
}\label{wxtreectrlsetimagelist
}
497 \func{void
}{SetImageList
}{\param{wxImageList*
}{ imageList
},
\param{int
}{which = wxIMAGE
\_LIST\_NORMAL}}
499 Sets the image list.
{\it which
} should be one of wxIMAGE
\_LIST\_NORMAL, wxIMAGE
\_LIST\_SMALL and
500 wxIMAGE
\_LIST\_STATE.
502 \membersection{wxTreeCtrl::SetItemBold
}\label{wxtreectrlsetitembold
}
504 \func{void
}{SetItemBold
}{\param{const wxTreeItemId\&
}{item
},
\param{bool
}{ bold = TRUE
}}
506 Makes item appear in bold font if
{\it bold
} parameter is TRUE or resets it to
509 See also:
\helpref{IsBold
}{wxtreectrlisbold
}
511 \membersection{wxTreeCtrl::SetItemData
}\label{wxtreectrlsetitemdata
}
513 \func{void
}{SetItemData
}{\param{const wxTreeItemId\&
}{ item
},
\param{wxTreeItemData*
}{data
}}
515 Sets the item client data.
517 \pythonnote{wxPython provides the following shortcut method:
\par
518 \indented{2cm
}{\begin{twocollist
}
519 \twocolitem{\bf{SetPyData(item, obj)
}}{Associate the given Python
520 Object with the wxTreeItemData for the given item Id.
}
524 \membersection{wxTreeCtrl::SetItemHasChildren
}\label{wxtreectrlsetitemhaschildren
}
526 \func{void
}{SetItemHasChildren
}{\param{const wxTreeItemId\&
}{ item
},
\param{bool
}{hasChildren = TRUE
}}
528 Force appearance of the button next to the item. This is useful to
529 allow the user to expand the items which don't have any children now,
530 but instead adding them only when needed, thus minimizing memory
531 usage and loading time.
533 \membersection{wxTreeCtrl::SetItemImage
}\label{wxtreectrlsetitemimage
}
535 \func{void
}{SetItemImage
}{\param{const wxTreeItemId\&
}{ item
},
\param{int
}{image
}}
537 Sets the normal item image. This is an index into the assciated image list.
539 \membersection{wxTreeCtrl::SetItemSelectedImage
}\label{wxtreectrlsetitemselectedimage
}
541 \func{void
}{SetItemSelectedImage
}{\param{const wxTreeItemId\&
}{ item
},
\param{int
}{selImage
}}
543 Sets the item selected image. This is an index into the assciated image list.
545 \membersection{wxTreeCtrl::SetItemText
}\label{wxtreectrlsetitemtext
}
547 \func{void
}{SetItemText
}{\param{const wxTreeItemId\&
}{ item
},
\param{const wxString\&
}{text
}}
551 \membersection{wxTreeCtrl::SortChildren
}\label{wxtreectrlsortchildren
}
553 \func{void
}{SortChildren
}{\param{const wxTreeItemId\&
}{ item
}}
555 Sorts the children of the given item using
556 \helpref{OnCompareItems
}{wxtreectrloncompareitems
} method of wxTreeCtrl. You
557 should override that method to change the sort order (default is ascending
562 \helpref{wxTreeItemData
}{wxtreeitemdata
},
\helpref{OnCompareItems
}{wxtreectrloncompareitems
}
564 \membersection{wxTreeCtrl::Toggle
}\label{wxtreectrltoggle
}
566 \func{void
}{Toggle
}{\param{const wxTreeItemId\&
}{ item
}}
568 Toggles the given item between collapsed and expanded states.
570 \membersection{wxTreeCtrl::Unselect
}\label{wxtreectrlunselect
}
572 \func{void
}{Unselect
}{\void}
574 Removes the selection from the currently selected item (if any).
576 \section{\class{wxTreeItemData
}}\label{wxtreeitemdata
}
578 wxTreeItemData is some (arbitrary) user class associated with some item. The
579 main advantage of having this class (compared to the old untyped interface) is
580 that wxTreeItemData's are destroyed automatically by the tree and, as this
581 class has virtual dtor, it means that the memory will be automatically
582 freed. We don't just use wxObject instead of wxTreeItemData because
583 the size of this class is critical: in any real application, each tree leaf
584 will have wxTreeItemData associated with it and number of leaves may be
587 Because the objects of this class are deleted by the tree, they should
588 always be allocated on the heap.
590 \wxheading{Derived from
}
594 \wxheading{Include files
}
600 \helpref{wxTreeCtrl
}{wxtreectrl
}
602 \latexignore{\rtfignore{\wxheading{Members
}}}
604 \membersection{wxTreeItemData::wxTreeItemData
}\label{wxtreeitemdataconstr
}
606 \func{}{wxTreeItemData
}{\void}
610 \pythonnote{The wxPython version of this constructor optionally
611 accepts any Python object as a parameter. This object is then
612 associated with the tree item using the wxTreeItemData as a
615 In addition, the following methods are added in wxPython for accessing
617 \indented{2cm
}{\begin{twocollist
}
618 \twocolitem{\bf{GetData()
}}{Returns a reference to the Python Object
}
619 \twocolitem{\bf{SetData(obj)
}}{Associates a new Python Object with the
625 \membersection{wxTreeItemData::
\destruct{wxTreeItemData
}}
627 \func{void
}{\destruct{wxTreeItemData
}}{\void}
631 \membersection{wxTreeItemData::GetId
}\label{wxtreeitemdatagetid
}
633 \func{const wxTreeItem\&
}{GetId
}{\void}
635 Returns the item associated with this node.
637 \membersection{wxTreeItemData::SetId
}\label{wxtreeitemdatasetid
}
639 \func{void
}{SetId
}{\param{const wxTreeItemId\&
}{ id
}}
641 Sets the item associated with this node.