]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treectrl.h | |
e54c96f1 | 3 | // Purpose: interface of wxTreeItemData |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
e54c96f1 | 9 | |
23324ae1 FM |
10 | /** |
11 | @class wxTreeCtrl | |
7c913512 | 12 | |
23324ae1 | 13 | A tree control presents information as a hierarchy, with items that may be |
7977b62a BP |
14 | expanded to show further items. Items in a tree control are referenced by |
15 | wxTreeItemId handles, which may be tested for validity by calling | |
16 | wxTreeItemId::IsOk(). | |
03966fcb | 17 | |
d13b34d3 | 18 | A similar control with a fully native implementation for GTK+ and OS X |
f0871806 | 19 | as well is wxDataViewTreeCtrl. |
7c913512 | 20 | |
7977b62a BP |
21 | To intercept events from a tree control, use the event table macros |
22 | described in wxTreeEvent. | |
7c913512 | 23 | |
23324ae1 | 24 | @beginStyleTable |
8c6791e4 | 25 | @style{wxTR_EDIT_LABELS} |
7977b62a BP |
26 | Use this style if you wish the user to be able to edit labels in the |
27 | tree control. | |
8c6791e4 | 28 | @style{wxTR_NO_BUTTONS} |
7977b62a | 29 | For convenience to document that no buttons are to be drawn. |
8c6791e4 | 30 | @style{wxTR_HAS_BUTTONS} |
7977b62a | 31 | Use this style to show + and - buttons to the left of parent items. |
e615d356 VZ |
32 | @style{wxTR_TWIST_BUTTONS} |
33 | Selects alternative style of @c +/@c - buttons and shows rotating | |
34 | ("twisting") arrows instead. Currently this style is only implemented | |
35 | under Microsoft Windows Vista and later Windows versions and is ignored | |
36 | under the other platforms. Notice that under Vista this style results | |
37 | in the same appearance as used by the tree control in Explorer and | |
38 | other built-in programs and so using it may be preferable to the | |
39 | default style. | |
8c6791e4 | 40 | @style{wxTR_NO_LINES} |
7977b62a | 41 | Use this style to hide vertical level connectors. |
8c6791e4 | 42 | @style{wxTR_FULL_ROW_HIGHLIGHT} |
7977b62a BP |
43 | Use this style to have the background colour and the selection highlight |
44 | extend over the entire horizontal row of the tree control window. (This | |
45 | flag is ignored under Windows unless you specify @c wxTR_NO_LINES as | |
46 | well.) | |
8c6791e4 | 47 | @style{wxTR_LINES_AT_ROOT} |
7977b62a BP |
48 | Use this style to show lines between root nodes. Only applicable if @c |
49 | wxTR_HIDE_ROOT is set and @c wxTR_NO_LINES is not set. | |
8c6791e4 | 50 | @style{wxTR_HIDE_ROOT} |
7977b62a BP |
51 | Use this style to suppress the display of the root node, effectively |
52 | causing the first-level nodes to appear as a series of root nodes. | |
8c6791e4 | 53 | @style{wxTR_ROW_LINES} |
7977b62a | 54 | Use this style to draw a contrasting border between displayed rows. |
8c6791e4 | 55 | @style{wxTR_HAS_VARIABLE_ROW_HEIGHT} |
7977b62a BP |
56 | Use this style to cause row heights to be just big enough to fit the |
57 | content. If not set, all rows use the largest row height. The default is | |
58 | that this flag is unset. Generic only. | |
8c6791e4 | 59 | @style{wxTR_SINGLE} |
7977b62a BP |
60 | For convenience to document that only one item may be selected at a |
61 | time. Selecting another item causes the current selection, if any, to be | |
62 | deselected. This is the default. | |
8c6791e4 | 63 | @style{wxTR_MULTIPLE} |
7977b62a BP |
64 | Use this style to allow a range of items to be selected. If a second |
65 | range is selected, the current range, if any, is deselected. | |
8c6791e4 | 66 | @style{wxTR_DEFAULT_STYLE} |
7977b62a BP |
67 | The set of flags that are closest to the defaults for the native control |
68 | for a particular toolkit. | |
23324ae1 | 69 | @endStyleTable |
7c913512 | 70 | |
3051a44a | 71 | @beginEventEmissionTable{wxTreeEvent} |
98d45c55 RR |
72 | @event{EVT_TREE_BEGIN_DRAG(id, func)} |
73 | Begin dragging with the left mouse button. | |
6d62b2e2 | 74 | If you want to enable left-dragging you need to intercept this event |
4c51a665 | 75 | and explicitly call wxTreeEvent::Allow(), as it's vetoed by default. |
232fdc63 | 76 | Processes a @c wxEVT_COMMAND_TREE_BEGIN_DRAG event type. |
98d45c55 RR |
77 | @event{EVT_TREE_BEGIN_RDRAG(id, func)} |
78 | Begin dragging with the right mouse button. | |
6d62b2e2 | 79 | If you want to enable right-dragging you need to intercept this event |
4c51a665 | 80 | and explicitly call wxTreeEvent::Allow(), as it's vetoed by default. |
232fdc63 | 81 | Processes a @c wxEVT_COMMAND_TREE_BEGIN_RDRAG event type. |
98d45c55 RR |
82 | @event{EVT_TREE_END_DRAG(id, func)} |
83 | End dragging with the left or right mouse button. | |
232fdc63 | 84 | Processes a @c wxEVT_COMMAND_TREE_END_DRAG event type. |
98d45c55 RR |
85 | @event{EVT_TREE_BEGIN_LABEL_EDIT(id, func)} |
86 | Begin editing a label. This can be prevented by calling Veto(). | |
232fdc63 | 87 | Processes a @c wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT event type. |
98d45c55 RR |
88 | @event{EVT_TREE_END_LABEL_EDIT(id, func)} |
89 | Finish editing a label. This can be prevented by calling Veto(). | |
232fdc63 | 90 | Processes a @c wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT event type. |
98d45c55 RR |
91 | @event{EVT_TREE_DELETE_ITEM(id, func)} |
92 | An item was deleted. | |
232fdc63 | 93 | Processes a @c wxEVT_COMMAND_TREE_DELETE_ITEM event type. |
98d45c55 RR |
94 | @event{EVT_TREE_GET_INFO(id, func)} |
95 | Request information from the application. | |
232fdc63 | 96 | Processes a @c wxEVT_COMMAND_TREE_GET_INFO event type. |
98d45c55 RR |
97 | @event{EVT_TREE_SET_INFO(id, func)} |
98 | Information is being supplied. | |
232fdc63 | 99 | Processes a @c wxEVT_COMMAND_TREE_SET_INFO event type. |
98d45c55 | 100 | @event{EVT_TREE_ITEM_ACTIVATED(id, func)} |
6873eb5b FM |
101 | The item has been activated, i.e. chosen by double clicking it with |
102 | mouse or from keyboard. | |
232fdc63 | 103 | Processes a @c wxEVT_COMMAND_TREE_ITEM_ACTIVATED event type. |
98d45c55 RR |
104 | @event{EVT_TREE_ITEM_COLLAPSED(id, func)} |
105 | The item has been collapsed. | |
232fdc63 | 106 | Processes a @c wxEVT_COMMAND_TREE_ITEM_COLLAPSED event type. |
98d45c55 RR |
107 | @event{EVT_TREE_ITEM_COLLAPSING(id, func)} |
108 | The item is being collapsed. This can be prevented by calling Veto(). | |
232fdc63 | 109 | Processes a @c wxEVT_COMMAND_TREE_ITEM_COLLAPSING event type. |
98d45c55 RR |
110 | @event{EVT_TREE_ITEM_EXPANDED(id, func)} |
111 | The item has been expanded. | |
232fdc63 | 112 | Processes a @c wxEVT_COMMAND_TREE_ITEM_EXPANDED event type. |
98d45c55 RR |
113 | @event{EVT_TREE_ITEM_EXPANDING(id, func)} |
114 | The item is being expanded. This can be prevented by calling Veto(). | |
232fdc63 | 115 | Processes a @c wxEVT_COMMAND_TREE_ITEM_EXPANDING event type. |
98d45c55 RR |
116 | @event{EVT_TREE_ITEM_RIGHT_CLICK(id, func)} |
117 | The user has clicked the item with the right mouse button. | |
232fdc63 | 118 | Processes a @c wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK event type. |
98d45c55 | 119 | @event{EVT_TREE_ITEM_MIDDLE_CLICK(id, func)} |
232fdc63 VZ |
120 | The user has clicked the item with the middle mouse button. This is |
121 | only supported by the generic control. | |
122 | Processes a @c wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK event type. | |
98d45c55 RR |
123 | @event{EVT_TREE_SEL_CHANGED(id, func)} |
124 | Selection has changed. | |
232fdc63 | 125 | Processes a @c wxEVT_COMMAND_TREE_SEL_CHANGED event type. |
98d45c55 RR |
126 | @event{EVT_TREE_SEL_CHANGING(id, func)} |
127 | Selection is changing. This can be prevented by calling Veto(). | |
232fdc63 | 128 | Processes a @c wxEVT_COMMAND_TREE_SEL_CHANGING event type. |
98d45c55 RR |
129 | @event{EVT_TREE_KEY_DOWN(id, func)} |
130 | A key has been pressed. | |
232fdc63 | 131 | Processes a @c wxEVT_COMMAND_TREE_KEY_DOWN event type. |
98d45c55 | 132 | @event{EVT_TREE_ITEM_GETTOOLTIP(id, func)} |
6873eb5b FM |
133 | The opportunity to set the item tooltip is being given to the application |
134 | (call wxTreeEvent::SetToolTip). Windows only. | |
232fdc63 | 135 | Processes a @c wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP event type. |
98d45c55 | 136 | @event{EVT_TREE_ITEM_MENU(id, func)} |
6873eb5b FM |
137 | The context menu for the selected item has been requested, either by a |
138 | right click or by using the menu key. | |
232fdc63 | 139 | Processes a @c wxEVT_COMMAND_TREE_ITEM_MENU event type. |
98d45c55 RR |
140 | @event{EVT_TREE_STATE_IMAGE_CLICK(id, func)} |
141 | The state image has been clicked. Windows only. | |
232fdc63 | 142 | Processes a @c wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK event type. |
98d45c55 RR |
143 | @endEventTable |
144 | ||
145 | ||
7977b62a | 146 | See also @ref overview_windowstyles. |
03966fcb | 147 | |
7977b62a BP |
148 | @b Win32 @b notes: |
149 | ||
150 | wxTreeCtrl class uses the standard common treeview control under Win32 | |
151 | implemented in the system library comctl32.dll. Some versions of this | |
152 | library are known to have bugs with handling the tree control colours: the | |
153 | usual symptom is that the expanded items leave black (or otherwise | |
154 | incorrectly coloured) background behind them, especially for the controls | |
155 | using non-default background colour. The recommended solution is to upgrade | |
156 | the comctl32.dll to a newer version: see | |
157 | http://www.microsoft.com/downloads/details.aspx?familyid=cb2cf3a2-8025-4e8f-8511-9b476a8d35d2 | |
158 | ||
23324ae1 FM |
159 | @library{wxcore} |
160 | @category{ctrl} | |
7e59b885 | 161 | @appearance{treectrl.png} |
7c913512 | 162 | |
6873eb5b FM |
163 | @see wxDataViewTreeCtrl, wxTreeEvent, wxTreeItemData, @ref overview_treectrl, |
164 | wxListBox, wxListCtrl, wxImageList | |
23324ae1 FM |
165 | */ |
166 | class wxTreeCtrl : public wxControl | |
167 | { | |
168 | public: | |
7977b62a BP |
169 | /** |
170 | Default Constructor. | |
171 | */ | |
172 | wxTreeCtrl(); | |
173 | ||
23324ae1 FM |
174 | /** |
175 | Constructor, creating and showing a tree control. | |
3c4f71cc | 176 | |
7c913512 | 177 | @param parent |
4cc4bfaf | 178 | Parent window. Must not be @NULL. |
7c913512 | 179 | @param id |
7977b62a | 180 | Window identifier. The value @c wxID_ANY indicates a default value. |
7c913512 | 181 | @param pos |
4cc4bfaf | 182 | Window position. |
dc1b07fd | 183 | If ::wxDefaultPosition is specified then a default position is chosen. |
7c913512 | 184 | @param size |
dc1b07fd FM |
185 | Window size. |
186 | If ::wxDefaultSize is specified then the window is sized appropriately. | |
7c913512 | 187 | @param style |
4cc4bfaf | 188 | Window style. See wxTreeCtrl. |
7c913512 | 189 | @param validator |
4cc4bfaf | 190 | Window validator. |
7c913512 | 191 | @param name |
4cc4bfaf | 192 | Window name. |
3c4f71cc | 193 | |
4cc4bfaf | 194 | @see Create(), wxValidator |
23324ae1 | 195 | */ |
cfbe5614 | 196 | wxTreeCtrl(wxWindow* parent, wxWindowID id = wxID_ANY, |
7c913512 FM |
197 | const wxPoint& pos = wxDefaultPosition, |
198 | const wxSize& size = wxDefaultSize, | |
cfbe5614 | 199 | long style = wxTR_DEFAULT_STYLE, |
7c913512 | 200 | const wxValidator& validator = wxDefaultValidator, |
cfbe5614 | 201 | const wxString& name = wxTreeCtrlNameStr); |
03966fcb | 202 | |
23324ae1 FM |
203 | |
204 | /** | |
205 | Destructor, destroying the tree control. | |
206 | */ | |
adaaa686 | 207 | virtual ~wxTreeCtrl(); |
23324ae1 FM |
208 | |
209 | /** | |
210 | Adds the root node to the tree, returning the new item. | |
7977b62a BP |
211 | |
212 | The @a image and @a selImage parameters are an index within the normal | |
213 | image list specifying the image to use for unselected and selected | |
214 | items, respectively. If @a image -1 and @a selImage is -1, the same | |
215 | image is used for both selected and unselected items. | |
23324ae1 | 216 | */ |
adaaa686 FM |
217 | virtual wxTreeItemId AddRoot(const wxString& text, int image = -1, |
218 | int selImage = -1, | |
219 | wxTreeItemData* data = NULL); | |
23324ae1 FM |
220 | |
221 | /** | |
7977b62a BP |
222 | Appends an item to the end of the branch identified by @a parent, return |
223 | a new item id. | |
03966fcb | 224 | |
7977b62a BP |
225 | The @a image and @a selImage parameters are an index within the normal |
226 | image list specifying the image to use for unselected and selected | |
227 | items, respectively. If @a image -1 and @a selImage is -1, the same | |
228 | image is used for both selected and unselected items. | |
23324ae1 FM |
229 | */ |
230 | wxTreeItemId AppendItem(const wxTreeItemId& parent, | |
231 | const wxString& text, | |
232 | int image = -1, | |
233 | int selImage = -1, | |
4cc4bfaf | 234 | wxTreeItemData* data = NULL); |
23324ae1 FM |
235 | |
236 | /** | |
7977b62a BP |
237 | Sets the buttons image list. The button images assigned with this method |
238 | will be automatically deleted by wxTreeCtrl as appropriate (i.e. it | |
239 | takes ownership of the list). | |
240 | ||
241 | Setting or assigning the button image list enables the display of image | |
242 | buttons. Once enabled, the only way to disable the display of button | |
243 | images is to set the button image list to @NULL. | |
244 | ||
23324ae1 | 245 | This function is only available in the generic version. |
7977b62a BP |
246 | |
247 | @see SetButtonsImageList(). | |
23324ae1 FM |
248 | */ |
249 | void AssignButtonsImageList(wxImageList* imageList); | |
250 | ||
251 | /** | |
7977b62a BP |
252 | Sets the normal image list. The image list assigned with this method |
253 | will be automatically deleted by wxTreeCtrl as appropriate (i.e. it | |
254 | takes ownership of the list). | |
255 | ||
256 | @see SetImageList(). | |
23324ae1 FM |
257 | */ |
258 | void AssignImageList(wxImageList* imageList); | |
259 | ||
260 | /** | |
7977b62a BP |
261 | Sets the state image list. Image list assigned with this method will be |
262 | automatically deleted by wxTreeCtrl as appropriate (i.e. it takes | |
263 | ownership of the list). | |
264 | ||
265 | @see SetStateImageList(). | |
23324ae1 FM |
266 | */ |
267 | void AssignStateImageList(wxImageList* imageList); | |
268 | ||
269 | /** | |
270 | Collapses the given item. | |
271 | */ | |
adaaa686 | 272 | virtual void Collapse(const wxTreeItemId& item); |
23324ae1 FM |
273 | |
274 | /** | |
275 | Collapses the root item. | |
3c4f71cc | 276 | |
4cc4bfaf | 277 | @see ExpandAll() |
23324ae1 FM |
278 | */ |
279 | void CollapseAll(); | |
280 | ||
281 | /** | |
282 | Collapses this item and all of its children, recursively. | |
3c4f71cc | 283 | |
4cc4bfaf | 284 | @see ExpandAllChildren() |
23324ae1 FM |
285 | */ |
286 | void CollapseAllChildren(const wxTreeItemId& item); | |
287 | ||
288 | /** | |
289 | Collapses the given item and removes all children. | |
290 | */ | |
adaaa686 | 291 | virtual void CollapseAndReset(const wxTreeItemId& item); |
23324ae1 FM |
292 | |
293 | /** | |
cfbe5614 FM |
294 | Creates the tree control. |
295 | See wxTreeCtrl::wxTreeCtrl() for further details. | |
23324ae1 | 296 | */ |
cfbe5614 | 297 | bool Create(wxWindow* parent, wxWindowID id = wxID_ANY, |
7977b62a BP |
298 | const wxPoint& pos = wxDefaultPosition, |
299 | const wxSize& size = wxDefaultSize, | |
cfbe5614 | 300 | long style = wxTR_DEFAULT_STYLE, |
7977b62a | 301 | const wxValidator& validator = wxDefaultValidator, |
cfbe5614 | 302 | const wxString& name = wxTreeCtrlNameStr); |
23324ae1 FM |
303 | |
304 | /** | |
6873eb5b | 305 | Deletes the specified item. A @c EVT_TREE_DELETE_ITEM event will be |
23324ae1 | 306 | generated. |
7977b62a BP |
307 | |
308 | This function may cause a subsequent call to GetNextChild() to fail. | |
23324ae1 | 309 | */ |
adaaa686 | 310 | virtual void Delete(const wxTreeItemId& item); |
23324ae1 FM |
311 | |
312 | /** | |
313 | Deletes all items in the control. Note that this may not generate | |
6873eb5b | 314 | @c EVT_TREE_DELETE_ITEM events under some Windows versions although |
23324ae1 FM |
315 | normally such event is generated for each removed item. |
316 | */ | |
adaaa686 | 317 | virtual void DeleteAllItems(); |
23324ae1 FM |
318 | |
319 | /** | |
7977b62a BP |
320 | Deletes all children of the given item (but not the item itself). Note |
321 | that this will @b not generate any events unlike Delete() method. | |
322 | ||
323 | If you have called SetItemHasChildren(), you may need to call it again | |
324 | since DeleteChildren() does not automatically clear the setting. | |
23324ae1 | 325 | */ |
adaaa686 | 326 | virtual void DeleteChildren(const wxTreeItemId& item); |
23324ae1 FM |
327 | |
328 | /** | |
7977b62a | 329 | Starts editing the label of the given @a item. This function generates a |
6873eb5b | 330 | @c EVT_TREE_BEGIN_LABEL_EDIT event which can be vetoed so that no text |
7977b62a BP |
331 | control will appear for in-place editing. |
332 | ||
333 | If the user changed the label (i.e. s/he does not press ESC or leave the | |
6873eb5b | 334 | text control without changes, a @c EVT_TREE_END_LABEL_EDIT event will be |
7977b62a | 335 | sent which can be vetoed as well. |
3c4f71cc | 336 | |
4cc4bfaf | 337 | @see EndEditLabel(), wxTreeEvent |
23324ae1 | 338 | */ |
cfbe5614 | 339 | virtual wxTextCtrl *EditLabel(const wxTreeItemId& item, |
b19b28c8 | 340 | wxClassInfo* textCtrlClass = wxCLASSINFO(wxTextCtrl)); |
23324ae1 FM |
341 | |
342 | /** | |
7977b62a BP |
343 | Ends label editing. If @a cancelEdit is @true, the edit will be |
344 | cancelled. | |
345 | ||
346 | @note | |
347 | This function is currently supported under Windows only. | |
3c4f71cc | 348 | |
4cc4bfaf | 349 | @see EditLabel() |
23324ae1 | 350 | */ |
cfbe5614 | 351 | virtual void EndEditLabel(const wxTreeItemId& item, bool discardChanges = false); |
23324ae1 FM |
352 | |
353 | /** | |
354 | Scrolls and/or expands items to ensure that the given item is visible. | |
355 | */ | |
adaaa686 | 356 | virtual void EnsureVisible(const wxTreeItemId& item); |
23324ae1 FM |
357 | |
358 | /** | |
359 | Expands the given item. | |
360 | */ | |
adaaa686 | 361 | virtual void Expand(const wxTreeItemId& item); |
23324ae1 FM |
362 | |
363 | /** | |
364 | Expands all items in the tree. | |
365 | */ | |
366 | void ExpandAll(); | |
367 | ||
368 | /** | |
369 | Expands the given item and all its children recursively. | |
370 | */ | |
371 | void ExpandAllChildren(const wxTreeItemId& item); | |
372 | ||
373 | /** | |
7977b62a BP |
374 | Retrieves the rectangle bounding the @a item. If @a textOnly is @true, |
375 | only the rectangle around the item's label will be returned, otherwise | |
376 | the item's image is also taken into account. | |
377 | ||
378 | The return value is @true if the rectangle was successfully retrieved or | |
379 | @c @false if it was not (in this case @a rect is not changed) -- for | |
380 | example, if the item is currently invisible. | |
381 | ||
382 | Notice that the rectangle coordinates are logical, not physical ones. | |
383 | So, for example, the x coordinate may be negative if the tree has a | |
384 | horizontal scrollbar and its position is not 0. | |
385 | ||
386 | @beginWxPythonOnly | |
387 | The wxPython version of this method requires only the @a item and @a | |
388 | textOnly parameters. The return value is either a wxRect object or @c | |
389 | None. | |
390 | @endWxPythonOnly | |
1058f652 MB |
391 | |
392 | @beginWxPerlOnly | |
393 | In wxPerl this method only takes the @a item and | |
394 | @a textOnly parameters and returns a @c Wx::Rect (or @c undef). | |
395 | @endWxPerlOnly | |
23324ae1 | 396 | */ |
fadc2df6 FM |
397 | virtual bool GetBoundingRect(const wxTreeItemId& item, wxRect& rect, |
398 | bool textOnly = false) const; | |
23324ae1 FM |
399 | |
400 | /** | |
7977b62a BP |
401 | Returns the buttons image list (from which application-defined button |
402 | images are taken). | |
403 | ||
23324ae1 FM |
404 | This function is only available in the generic version. |
405 | */ | |
328f5751 | 406 | wxImageList* GetButtonsImageList() const; |
23324ae1 FM |
407 | |
408 | /** | |
4cc4bfaf | 409 | Returns the number of items in the branch. If @a recursively is @true, |
7977b62a BP |
410 | returns the total number of descendants, otherwise only one level of |
411 | children is counted. | |
23324ae1 | 412 | */ |
cfbe5614 FM |
413 | virtual size_t GetChildrenCount(const wxTreeItemId& item, |
414 | bool recursively = true) const; | |
23324ae1 FM |
415 | |
416 | /** | |
417 | Returns the number of items in the control. | |
418 | */ | |
adaaa686 | 419 | virtual unsigned int GetCount() const; |
23324ae1 FM |
420 | |
421 | /** | |
7977b62a BP |
422 | Returns the edit control being currently used to edit a label. Returns |
423 | @NULL if no label is being edited. | |
424 | ||
425 | @note This is currently only implemented for wxMSW. | |
23324ae1 | 426 | */ |
adaaa686 | 427 | virtual wxTextCtrl* GetEditControl() const; |
23324ae1 FM |
428 | |
429 | /** | |
430 | Returns the first child; call GetNextChild() for the next child. | |
7977b62a | 431 | |
23324ae1 | 432 | For this enumeration function you must pass in a 'cookie' parameter |
7977b62a BP |
433 | which is opaque for the application but is necessary for the library to |
434 | make these functions reentrant (i.e. allow more than one enumeration on | |
435 | one and the same object simultaneously). The cookie passed to | |
436 | GetFirstChild() and GetNextChild() should be the same variable. | |
437 | ||
438 | Returns an invalid tree item (i.e. wxTreeItemId::IsOk() returns @false) | |
439 | if there are no further children. | |
440 | ||
441 | @beginWxPythonOnly | |
442 | In wxPython the returned wxTreeItemId and the new cookie value are both | |
443 | returned as a tuple containing the two values. | |
444 | @endWxPythonOnly | |
3c4f71cc | 445 | |
1058f652 MB |
446 | @beginWxPerlOnly |
447 | In wxPerl this method only takes the @a item parameter, and | |
448 | returns a 2-element list (item, cookie). | |
449 | @endWxPerlOnly | |
450 | ||
4cc4bfaf | 451 | @see GetNextChild(), GetNextSibling() |
23324ae1 | 452 | */ |
fadc2df6 FM |
453 | virtual wxTreeItemId GetFirstChild(const wxTreeItemId& item, |
454 | wxTreeItemIdValue& cookie) const; | |
23324ae1 FM |
455 | |
456 | /** | |
457 | Returns the first visible item. | |
458 | */ | |
adaaa686 | 459 | virtual wxTreeItemId GetFirstVisibleItem() const; |
23324ae1 | 460 | |
febebac1 VZ |
461 | /** |
462 | Returns the item last clicked or otherwise selected. | |
463 | Unlike GetSelection(), it can be used whether or not | |
464 | the control has the @c wxTR_MULTIPLE style. | |
465 | ||
466 | @since 2.9.1 | |
467 | */ | |
468 | virtual wxTreeItemId GetFocusedItem() const; | |
469 | ||
5708ae18 VZ |
470 | |
471 | /** | |
472 | Clears the currently focused item | |
473 | ||
474 | @since 2.9.1 | |
475 | */ | |
476 | virtual void ClearFocusedItem(); | |
477 | ||
478 | /** | |
479 | Sets the currently focused item. | |
480 | ||
481 | @param item | |
482 | The item to make the current one. It must be valid. | |
483 | @since 2.9.1 | |
484 | */ | |
485 | virtual void SetFocusedItem(const wxTreeItemId& item); | |
486 | ||
487 | ||
23324ae1 FM |
488 | /** |
489 | Returns the normal image list. | |
490 | */ | |
328f5751 | 491 | wxImageList* GetImageList() const; |
23324ae1 FM |
492 | |
493 | /** | |
494 | Returns the current tree control indentation. | |
495 | */ | |
cfbe5614 | 496 | virtual unsigned int GetIndent() const; |
23324ae1 FM |
497 | |
498 | /** | |
499 | Returns the background colour of the item. | |
500 | */ | |
adaaa686 | 501 | virtual wxColour GetItemBackgroundColour(const wxTreeItemId& item) const; |
23324ae1 | 502 | |
23324ae1 | 503 | /** |
7977b62a | 504 | Returns the tree item data associated with the item. |
23324ae1 | 505 | |
483724a1 | 506 | @see wxTreeItemData |
23324ae1 | 507 | |
483724a1 FM |
508 | @beginWxPythonOnly |
509 | wxPython provides the following shortcut method: | |
510 | @li GetPyData(item): Returns the Python Object associated with the | |
511 | wxTreeItemData for the given item Id. | |
512 | @endWxPythonOnly | |
1058f652 MB |
513 | |
514 | @beginWxPerlOnly | |
515 | wxPerl provides the following shortcut method: | |
516 | - GetPlData(item): returns the Perl data | |
517 | associated with the Wx::TreeItemData. It is just the same as | |
518 | tree->GetItemData(item)->GetData(). | |
519 | @endWxPerlOnly | |
483724a1 | 520 | */ |
adaaa686 | 521 | virtual wxTreeItemData* GetItemData(const wxTreeItemId& item) const; |
7977b62a BP |
522 | |
523 | /** | |
524 | Returns the font of the item label. | |
525 | */ | |
adaaa686 | 526 | virtual wxFont GetItemFont(const wxTreeItemId& item) const; |
23324ae1 FM |
527 | |
528 | /** | |
4cc4bfaf | 529 | Gets the specified item image. The value of @a which may be: |
7977b62a BP |
530 | - ::wxTreeItemIcon_Normal: to get the normal item image. |
531 | - ::wxTreeItemIcon_Selected: to get the selected item image (i.e. the | |
532 | image which is shown when the item is currently selected). | |
533 | - ::wxTreeItemIcon_Expanded: to get the expanded image (this only makes | |
534 | sense for items which have children - then this image is shown when | |
535 | the item is expanded and the normal image is shown when it is | |
536 | collapsed). | |
537 | - ::wxTreeItemIcon_SelectedExpanded: to get the selected expanded image | |
538 | (which is shown when an expanded item is currently selected). | |
23324ae1 | 539 | */ |
fadc2df6 FM |
540 | virtual int GetItemImage(const wxTreeItemId& item, |
541 | wxTreeItemIcon which = wxTreeItemIcon_Normal) const; | |
23324ae1 FM |
542 | |
543 | /** | |
544 | Returns the item's parent. | |
545 | */ | |
adaaa686 | 546 | virtual wxTreeItemId GetItemParent(const wxTreeItemId& item) const; |
23324ae1 | 547 | |
03966fcb RR |
548 | /** |
549 | Gets the specified item state. | |
550 | */ | |
551 | int GetItemState(const wxTreeItemId& item) const; | |
552 | ||
23324ae1 FM |
553 | /** |
554 | Returns the item label. | |
555 | */ | |
adaaa686 | 556 | virtual wxString GetItemText(const wxTreeItemId& item) const; |
23324ae1 FM |
557 | |
558 | /** | |
559 | Returns the colour of the item label. | |
560 | */ | |
adaaa686 | 561 | virtual wxColour GetItemTextColour(const wxTreeItemId& item) const; |
23324ae1 FM |
562 | |
563 | /** | |
7977b62a BP |
564 | Returns the last child of the item (or an invalid tree item if this item |
565 | has no children). | |
3c4f71cc | 566 | |
7977b62a | 567 | @see GetFirstChild(), GetNextSibling(), GetLastChild() |
23324ae1 | 568 | */ |
adaaa686 | 569 | virtual wxTreeItemId GetLastChild(const wxTreeItemId& item) const; |
23324ae1 FM |
570 | |
571 | /** | |
7977b62a BP |
572 | Returns the next child; call GetFirstChild() for the first child. For |
573 | this enumeration function you must pass in a 'cookie' parameter which is | |
574 | opaque for the application but is necessary for the library to make | |
575 | these functions reentrant (i.e. allow more than one enumeration on one | |
576 | and the same object simultaneously). The cookie passed to | |
577 | GetFirstChild() and GetNextChild() should be the same. | |
578 | ||
23324ae1 | 579 | Returns an invalid tree item if there are no further children. |
3c4f71cc | 580 | |
7977b62a BP |
581 | @beginWxPythonOnly |
582 | In wxPython the returned wxTreeItemId and the new cookie value are both | |
583 | returned as a tuple containing the two values. | |
584 | @endWxPythonOnly | |
585 | ||
1058f652 MB |
586 | @beginWxPerlOnly |
587 | In wxPerl this method returns a 2-element list | |
588 | (item, cookie) instead of modifying its parameters. | |
589 | @endWxPerlOnly | |
590 | ||
4cc4bfaf | 591 | @see GetFirstChild() |
23324ae1 | 592 | */ |
fadc2df6 FM |
593 | virtual wxTreeItemId GetNextChild(const wxTreeItemId& item, |
594 | wxTreeItemIdValue& cookie) const; | |
23324ae1 FM |
595 | |
596 | /** | |
7977b62a BP |
597 | Returns the next sibling of the specified item; call GetPrevSibling() |
598 | for the previous sibling. | |
599 | ||
23324ae1 | 600 | Returns an invalid tree item if there are no further siblings. |
3c4f71cc | 601 | |
4cc4bfaf | 602 | @see GetPrevSibling() |
23324ae1 | 603 | */ |
adaaa686 | 604 | virtual wxTreeItemId GetNextSibling(const wxTreeItemId& item) const; |
23324ae1 FM |
605 | |
606 | /** | |
7977b62a BP |
607 | Returns the next visible item or an invalid item if this item is the |
608 | last visible one. | |
609 | ||
610 | @note The @a item itself must be visible. | |
23324ae1 | 611 | */ |
adaaa686 | 612 | virtual wxTreeItemId GetNextVisible(const wxTreeItemId& item) const; |
23324ae1 FM |
613 | |
614 | /** | |
7977b62a BP |
615 | Returns the previous sibling of the specified item; call |
616 | GetNextSibling() for the next sibling. | |
617 | ||
23324ae1 | 618 | Returns an invalid tree item if there are no further children. |
3c4f71cc | 619 | |
4cc4bfaf | 620 | @see GetNextSibling() |
23324ae1 | 621 | */ |
adaaa686 | 622 | virtual wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const; |
23324ae1 FM |
623 | |
624 | /** | |
7977b62a BP |
625 | Returns the previous visible item or an invalid item if this item is the |
626 | first visible one. | |
627 | ||
628 | @note The @a item itself must be visible. | |
23324ae1 | 629 | */ |
adaaa686 | 630 | virtual wxTreeItemId GetPrevVisible(const wxTreeItemId& item) const; |
23324ae1 FM |
631 | |
632 | /** | |
7977b62a BP |
633 | Returns @true if the control will use a quick calculation for the best |
634 | size, looking only at the first and last items. The default is @false. | |
3c4f71cc | 635 | |
4cc4bfaf | 636 | @see SetQuickBestSize() |
23324ae1 | 637 | */ |
328f5751 | 638 | bool GetQuickBestSize() const; |
23324ae1 FM |
639 | |
640 | /** | |
641 | Returns the root item for the tree control. | |
642 | */ | |
adaaa686 | 643 | virtual wxTreeItemId GetRootItem() const; |
23324ae1 FM |
644 | |
645 | /** | |
7977b62a BP |
646 | Returns the selection, or an invalid item if there is no selection. This |
647 | function only works with the controls without @c wxTR_MULTIPLE style, | |
febebac1 VZ |
648 | use GetSelections() for the controls which do have this style |
649 | or, if a single item is wanted, use GetFocusedItem(). | |
23324ae1 | 650 | */ |
adaaa686 | 651 | virtual wxTreeItemId GetSelection() const; |
23324ae1 FM |
652 | |
653 | /** | |
7977b62a BP |
654 | Fills the array of tree items passed in with the currently selected |
655 | items. This function can be called only if the control has the @c | |
656 | wxTR_MULTIPLE style. | |
657 | ||
23324ae1 | 658 | Returns the number of selected items. |
03966fcb | 659 | |
7977b62a BP |
660 | @beginWxPythonOnly |
661 | The wxPython version of this method accepts no parameters and returns a | |
662 | Python list of @ref wxTreeItemId "wxTreeItemId"s. | |
663 | @endWxPythonOnly | |
1058f652 MB |
664 | |
665 | @beginWxPerlOnly | |
666 | In wxPerl this method takes no parameters and returns a list of | |
667 | @c Wx::TreeItemId. | |
668 | @endWxPerlOnly | |
23324ae1 | 669 | */ |
cfbe5614 | 670 | virtual size_t GetSelections(wxArrayTreeItemIds& selection) const; |
23324ae1 FM |
671 | |
672 | /** | |
7977b62a BP |
673 | Returns the state image list (from which application-defined state |
674 | images are taken). | |
23324ae1 | 675 | */ |
328f5751 | 676 | wxImageList* GetStateImageList() const; |
23324ae1 FM |
677 | |
678 | /** | |
7977b62a BP |
679 | Calculates which (if any) item is under the given @a point, returning |
680 | the tree item id at this point plus extra information @a flags. @a flags | |
681 | is a bitlist of the following: | |
682 | ||
683 | - @c wxTREE_HITTEST_ABOVE: Above the client area. | |
684 | - @c wxTREE_HITTEST_BELOW: Below the client area. | |
685 | - @c wxTREE_HITTEST_NOWHERE: In the client area but below the last item. | |
686 | - @c wxTREE_HITTEST_ONITEMBUTTON: On the button associated with an item. | |
687 | - @c wxTREE_HITTEST_ONITEMICON: On the bitmap associated with an item. | |
6873eb5b FM |
688 | - @c wxTREE_HITTEST_ONITEMINDENT: In the indentation associated with an item. |
689 | - @c wxTREE_HITTEST_ONITEMLABEL: On the label (string) associated with an item. | |
7977b62a BP |
690 | - @c wxTREE_HITTEST_ONITEMRIGHT: In the area to the right of an item. |
691 | - @c wxTREE_HITTEST_ONITEMSTATEICON: On the state icon for a tree view | |
6873eb5b | 692 | item that is in a user-defined state. |
7977b62a BP |
693 | - @c wxTREE_HITTEST_TOLEFT: To the right of the client area. |
694 | - @c wxTREE_HITTEST_TORIGHT: To the left of the client area. | |
03966fcb | 695 | |
7977b62a BP |
696 | @beginWxPythonOnly |
697 | In wxPython both the wxTreeItemId and the flags are returned as a tuple. | |
698 | @endWxPythonOnly | |
1058f652 MB |
699 | |
700 | @beginWxPerlOnly | |
701 | In wxPerl this method only takes the @a point parameter | |
702 | and returns a 2-element list (item, flags). | |
703 | @endWxPerlOnly | |
23324ae1 | 704 | */ |
328f5751 | 705 | wxTreeItemId HitTest(const wxPoint& point, int& flags) const; |
23324ae1 | 706 | |
7977b62a | 707 | |
23324ae1 | 708 | /** |
7977b62a BP |
709 | Inserts an item after a given one (@a previous). |
710 | ||
711 | The @a image and @a selImage parameters are an index within the normal | |
712 | image list specifying the image to use for unselected and selected | |
713 | items, respectively. If @a image -1 and @a selImage is -1, the same | |
714 | image is used for both selected and unselected items. | |
23324ae1 FM |
715 | */ |
716 | wxTreeItemId InsertItem(const wxTreeItemId& parent, | |
717 | const wxTreeItemId& previous, | |
718 | const wxString& text, | |
719 | int image = -1, | |
720 | int selImage = -1, | |
4cc4bfaf | 721 | wxTreeItemData* data = NULL); |
7977b62a BP |
722 | |
723 | /** | |
724 | Inserts an item before one identified | |
725 | by its position (@a before). @a before must be less than the number of | |
726 | children. | |
727 | ||
728 | The @a image and @a selImage parameters are an index within the normal | |
729 | image list specifying the image to use for unselected and selected | |
730 | items, respectively. If @a image -1 and @a selImage is -1, the same | |
731 | image is used for both selected and unselected items. | |
732 | ||
733 | @beginWxPythonOnly | |
734 | In wxPython, this form of this method is called @c InsertItemBefore(). | |
735 | @endWxPythonOnly | |
736 | */ | |
7c913512 FM |
737 | wxTreeItemId InsertItem(const wxTreeItemId& parent, |
738 | size_t before, | |
739 | const wxString& text, | |
740 | int image = -1, | |
741 | int selImage = -1, | |
4cc4bfaf | 742 | wxTreeItemData* data = NULL); |
23324ae1 FM |
743 | |
744 | /** | |
745 | Returns @true if the given item is in bold state. | |
7977b62a BP |
746 | |
747 | @see SetItemBold() | |
23324ae1 | 748 | */ |
adaaa686 | 749 | virtual bool IsBold(const wxTreeItemId& item) const; |
23324ae1 FM |
750 | |
751 | /** | |
7977b62a BP |
752 | Returns @true if the control is empty (i.e. has no items, even no root |
753 | one). | |
23324ae1 | 754 | */ |
328f5751 | 755 | bool IsEmpty() const; |
23324ae1 FM |
756 | |
757 | /** | |
7977b62a BP |
758 | Returns @true if the item is expanded (only makes sense if it has |
759 | children). | |
23324ae1 | 760 | */ |
adaaa686 | 761 | virtual bool IsExpanded(const wxTreeItemId& item) const; |
23324ae1 FM |
762 | |
763 | /** | |
764 | Returns @true if the item is selected. | |
765 | */ | |
adaaa686 | 766 | virtual bool IsSelected(const wxTreeItemId& item) const; |
23324ae1 FM |
767 | |
768 | /** | |
769 | Returns @true if the item is visible on the screen. | |
770 | */ | |
adaaa686 | 771 | virtual bool IsVisible(const wxTreeItemId& item) const; |
23324ae1 FM |
772 | |
773 | /** | |
774 | Returns @true if the item has children. | |
775 | */ | |
adaaa686 | 776 | virtual bool ItemHasChildren(const wxTreeItemId& item) const; |
23324ae1 FM |
777 | |
778 | /** | |
7977b62a BP |
779 | Override this function in the derived class to change the sort order of |
780 | the items in the tree control. The function should return a negative, | |
781 | zero or positive value if the first item is less than, equal to or | |
782 | greater than the second one. | |
783 | ||
b19b28c8 FM |
784 | Please note that you @b must use wxRTTI macros wxDECLARE_DYNAMIC_CLASS() |
785 | and wxIMPLEMENT_DYNAMIC_CLASS() if you override this function because | |
7977b62a BP |
786 | otherwise the base class considers that it is not overridden and uses |
787 | the default comparison, i.e. sorts the items alphabetically, which | |
23324ae1 | 788 | allows it optimize away the calls to the virtual function completely. |
7977b62a BP |
789 | |
790 | @see SortChildren() | |
23324ae1 | 791 | */ |
fadc2df6 FM |
792 | virtual int OnCompareItems(const wxTreeItemId& item1, |
793 | const wxTreeItemId& item2); | |
23324ae1 FM |
794 | |
795 | /** | |
7977b62a BP |
796 | Appends an item as the first child of @a parent, return a new item id. |
797 | ||
798 | The @a image and @a selImage parameters are an index within the normal | |
799 | image list specifying the image to use for unselected and selected | |
800 | items, respectively. If @a image -1 and @a selImage is -1, the same | |
801 | image is used for both selected and unselected items. | |
23324ae1 FM |
802 | */ |
803 | wxTreeItemId PrependItem(const wxTreeItemId& parent, | |
804 | const wxString& text, | |
805 | int image = -1, | |
806 | int selImage = -1, | |
4cc4bfaf | 807 | wxTreeItemData* data = NULL); |
23324ae1 FM |
808 | |
809 | /** | |
810 | Scrolls the specified item into view. | |
811 | */ | |
adaaa686 | 812 | virtual void ScrollTo(const wxTreeItemId& item); |
23324ae1 FM |
813 | |
814 | /** | |
7977b62a BP |
815 | Selects the given item. In multiple selection controls, can be also used |
816 | to deselect a currently selected item if the value of @a select is | |
817 | @false. | |
23324ae1 | 818 | */ |
adaaa686 | 819 | virtual void SelectItem(const wxTreeItemId& item, bool select = true); |
23324ae1 FM |
820 | |
821 | /** | |
7977b62a BP |
822 | Sets the buttons image list (from which application-defined button |
823 | images are taken). | |
824 | ||
825 | The button images assigned with this method will @b not be deleted by | |
826 | @ref wxTreeCtrl "wxTreeCtrl"'s destructor, you must delete it yourself. | |
827 | Setting or assigning the button image list enables the display of image | |
828 | buttons. Once enabled, the only way to disable the display of button | |
829 | images is to set the button image list to @NULL. | |
830 | ||
831 | @note This function is only available in the generic version. | |
832 | ||
833 | @see AssignButtonsImageList(). | |
23324ae1 FM |
834 | */ |
835 | void SetButtonsImageList(wxImageList* imageList); | |
836 | ||
837 | /** | |
7977b62a BP |
838 | Sets the normal image list. The image list assigned with this method |
839 | will @b not be deleted by @ref wxTreeCtrl "wxTreeCtrl"'s destructor, you | |
840 | must delete it yourself. | |
841 | ||
842 | @see AssignImageList(). | |
23324ae1 | 843 | */ |
adaaa686 | 844 | virtual void SetImageList(wxImageList* imageList); |
23324ae1 FM |
845 | |
846 | /** | |
847 | Sets the indentation for the tree control. | |
848 | */ | |
cfbe5614 | 849 | virtual void SetIndent(unsigned int indent); |
23324ae1 FM |
850 | |
851 | /** | |
852 | Sets the colour of the item's background. | |
853 | */ | |
fadc2df6 FM |
854 | virtual void SetItemBackgroundColour(const wxTreeItemId& item, |
855 | const wxColour& col); | |
23324ae1 FM |
856 | |
857 | /** | |
7977b62a BP |
858 | Makes item appear in bold font if @a bold parameter is @true or resets |
859 | it to the normal state. | |
860 | ||
861 | @see IsBold() | |
23324ae1 | 862 | */ |
adaaa686 | 863 | virtual void SetItemBold(const wxTreeItemId& item, bool bold = true); |
23324ae1 | 864 | |
7977b62a BP |
865 | /** |
866 | Sets the item client data. | |
867 | ||
727539d8 VZ |
868 | Notice that the client data previously associated with the @a item (if |
869 | any) is @em not freed by this function and so calling this function | |
870 | multiple times for the same item will result in memory leaks unless you | |
871 | delete the old item data pointer yourself. | |
872 | ||
7977b62a BP |
873 | @beginWxPythonOnly |
874 | - @b SetPyData( @a item, @c obj): Associate the given Python Object with | |
875 | the wxTreeItemData for the given item Id. | |
876 | @endWxPythonOnly | |
877 | ||
1058f652 MB |
878 | @beginWxPerlOnly |
879 | wxPerl provides the following shortcut method: | |
880 | - SetPlData(item, data): sets the Perl data | |
881 | associated with the @c Wx::TreeItemData. It is just the same as | |
882 | tree->GetItemData(item)->SetData(data). | |
883 | @endWxPerlOnly | |
7977b62a | 884 | */ |
adaaa686 | 885 | virtual void SetItemData(const wxTreeItemId& item, wxTreeItemData* data); |
7977b62a BP |
886 | |
887 | ||
23324ae1 FM |
888 | /** |
889 | Gives the item the visual feedback for Drag'n'Drop actions, which is | |
890 | useful if something is dragged from the outside onto the tree control | |
891 | (as opposed to a DnD operation within the tree control, which already | |
892 | is implemented internally). | |
893 | */ | |
fadc2df6 FM |
894 | virtual void SetItemDropHighlight(const wxTreeItemId& item, |
895 | bool highlight = true); | |
23324ae1 FM |
896 | |
897 | /** | |
7977b62a BP |
898 | Sets the item's font. All items in the tree should have the same height |
899 | to avoid text clipping, so the fonts height should be the same for all | |
900 | of them, although font attributes may vary. | |
3c4f71cc | 901 | |
4cc4bfaf | 902 | @see SetItemBold() |
23324ae1 | 903 | */ |
adaaa686 | 904 | virtual void SetItemFont(const wxTreeItemId& item, const wxFont& font); |
23324ae1 FM |
905 | |
906 | /** | |
907 | Force appearance of the button next to the item. This is useful to | |
908 | allow the user to expand the items which don't have any children now, | |
909 | but instead adding them only when needed, thus minimizing memory | |
910 | usage and loading time. | |
911 | */ | |
fadc2df6 FM |
912 | virtual void SetItemHasChildren(const wxTreeItemId& item, |
913 | bool hasChildren = true); | |
23324ae1 FM |
914 | |
915 | /** | |
7977b62a BP |
916 | Sets the specified item's image. See GetItemImage() for the description |
917 | of the @a which parameter. | |
23324ae1 | 918 | */ |
fadc2df6 FM |
919 | virtual void SetItemImage(const wxTreeItemId& item, int image, |
920 | wxTreeItemIcon which = wxTreeItemIcon_Normal); | |
23324ae1 | 921 | |
03966fcb RR |
922 | /** |
923 | Sets the specified item state. The value of @a state may be: | |
809ca837 RR |
924 | - @c wxTREE_ITEMSTATE_NONE: to disable the item state (the state image will |
925 | be not displayed). | |
926 | - @c wxTREE_ITEMSTATE_NEXT: to set the next item state. | |
927 | - @c wxTREE_ITEMSTATE_PREV: to set the previous item state. | |
03966fcb RR |
928 | */ |
929 | void SetItemState(const wxTreeItemId& item, int state); | |
930 | ||
23324ae1 FM |
931 | /** |
932 | Sets the item label. | |
933 | */ | |
adaaa686 | 934 | virtual void SetItemText(const wxTreeItemId& item, const wxString& text); |
23324ae1 FM |
935 | |
936 | /** | |
937 | Sets the colour of the item's text. | |
938 | */ | |
fadc2df6 FM |
939 | virtual void SetItemTextColour(const wxTreeItemId& item, |
940 | const wxColour& col); | |
23324ae1 FM |
941 | |
942 | /** | |
7977b62a BP |
943 | If @true is passed, specifies that the control will use a quick |
944 | calculation for the best size, looking only at the first and last items. | |
945 | Otherwise, it will look at all items. The default is @false. | |
3c4f71cc | 946 | |
4cc4bfaf | 947 | @see GetQuickBestSize() |
23324ae1 FM |
948 | */ |
949 | void SetQuickBestSize(bool quickBestSize); | |
950 | ||
951 | /** | |
7977b62a BP |
952 | Sets the state image list (from which application-defined state images |
953 | are taken). Image list assigned with this method will @b not be deleted | |
954 | by @ref wxTreeCtrl "wxTreeCtrl"'s destructor, you must delete it | |
955 | yourself. | |
956 | ||
957 | @see AssignStateImageList(). | |
23324ae1 | 958 | */ |
adaaa686 | 959 | virtual void SetStateImageList(wxImageList* imageList); |
23324ae1 FM |
960 | |
961 | /** | |
7977b62a BP |
962 | Sets the mode flags associated with the display of the tree control. The |
963 | new mode takes effect immediately. | |
964 | ||
965 | @note Generic only; MSW ignores changes. | |
23324ae1 FM |
966 | */ |
967 | void SetWindowStyle(long styles); | |
968 | ||
969 | /** | |
7977b62a BP |
970 | Sorts the children of the given item using OnCompareItems(). |
971 | You should override that method to change the sort order (the default is | |
972 | ascending case-sensitive alphabetical order). | |
3c4f71cc | 973 | |
4cc4bfaf | 974 | @see wxTreeItemData, OnCompareItems() |
23324ae1 | 975 | */ |
adaaa686 | 976 | virtual void SortChildren(const wxTreeItemId& item); |
23324ae1 FM |
977 | |
978 | /** | |
979 | Toggles the given item between collapsed and expanded states. | |
980 | */ | |
adaaa686 | 981 | virtual void Toggle(const wxTreeItemId& item); |
23324ae1 FM |
982 | |
983 | /** | |
984 | Toggles the given item between selected and unselected states. For | |
985 | multiselection controls only. | |
986 | */ | |
987 | void ToggleItemSelection(const wxTreeItemId& item); | |
988 | ||
989 | /** | |
990 | Removes the selection from the currently selected item (if any). | |
991 | */ | |
adaaa686 | 992 | virtual void Unselect(); |
23324ae1 FM |
993 | |
994 | /** | |
7977b62a BP |
995 | This function either behaves the same as Unselect() if the control |
996 | doesn't have @c wxTR_MULTIPLE style, or removes the selection from all | |
997 | items if it does have this style. | |
23324ae1 | 998 | */ |
adaaa686 | 999 | virtual void UnselectAll(); |
23324ae1 FM |
1000 | |
1001 | /** | |
1002 | Unselects the given item. This works in multiselection controls only. | |
1003 | */ | |
1004 | void UnselectItem(const wxTreeItemId& item); | |
5cb3a695 VZ |
1005 | |
1006 | /** | |
1007 | Select all the immediate children of the given parent. | |
1008 | ||
1009 | This function can be used with multiselection controls only. | |
1010 | ||
1011 | @since 2.9.1 | |
1012 | */ | |
1013 | virtual void SelectChildren(const wxTreeItemId& parent); | |
23324ae1 FM |
1014 | }; |
1015 | ||
1016 | ||
e54c96f1 | 1017 | |
23324ae1 FM |
1018 | /** |
1019 | @class wxTreeEvent | |
7c913512 | 1020 | |
7977b62a BP |
1021 | A tree event holds information about events associated with wxTreeCtrl |
1022 | objects. | |
1023 | ||
1024 | To process input from a tree control, use these event handler macros to | |
1025 | direct input to member functions that take a wxTreeEvent argument. | |
1026 | ||
1027 | @beginEventTable{wxTreeEvent} | |
1028 | @event{EVT_TREE_BEGIN_DRAG(id, func)} | |
a1e92028 | 1029 | Begin dragging with the left mouse button. If you want to enable |
4c51a665 | 1030 | left-dragging you need to intercept this event and explicitly call |
a1e92028 VZ |
1031 | wxTreeEvent::Allow(), as it's vetoed by default. Also notice that the |
1032 | control must have an associated image list (see SetImageList()) to | |
1033 | drag its items under MSW. | |
7977b62a | 1034 | @event{EVT_TREE_BEGIN_RDRAG(id, func)} |
a1e92028 | 1035 | Begin dragging with the right mouse button. If you want to enable |
4c51a665 | 1036 | right-dragging you need to intercept this event and explicitly call |
a1e92028 | 1037 | wxTreeEvent::Allow(), as it's vetoed by default. |
7977b62a BP |
1038 | @event{EVT_TREE_END_DRAG(id, func)} |
1039 | End dragging with the left or right mouse button. | |
1040 | @event{EVT_TREE_BEGIN_LABEL_EDIT(id, func)} | |
1041 | Begin editing a label. This can be prevented by calling Veto(). | |
1042 | @event{EVT_TREE_END_LABEL_EDIT(id, func)} | |
1043 | Finish editing a label. This can be prevented by calling Veto(). | |
1044 | @event{EVT_TREE_DELETE_ITEM(id, func)} | |
1045 | Delete an item. | |
1046 | @event{EVT_TREE_GET_INFO(id, func)} | |
1047 | Request information from the application. | |
1048 | @event{EVT_TREE_SET_INFO(id, func)} | |
1049 | Information is being supplied. | |
1050 | @event{EVT_TREE_ITEM_ACTIVATED(id, func)} | |
1051 | The item has been activated, i.e. chosen by double clicking it with | |
1052 | mouse or from keyboard. | |
1053 | @event{EVT_TREE_ITEM_COLLAPSED(id, func)} | |
1054 | The item has been collapsed. | |
1055 | @event{EVT_TREE_ITEM_COLLAPSING(id, func)} | |
1056 | The item is being collapsed. This can be prevented by calling Veto(). | |
1057 | @event{EVT_TREE_ITEM_EXPANDED(id, func)} | |
1058 | The item has been expanded. | |
1059 | @event{EVT_TREE_ITEM_EXPANDING(id, func)} | |
1060 | The item is being expanded. This can be prevented by calling Veto(). | |
1061 | @event{EVT_TREE_ITEM_RIGHT_CLICK(id, func)} | |
1062 | The user has clicked the item with the right mouse button. | |
1063 | @event{EVT_TREE_ITEM_MIDDLE_CLICK(id, func)} | |
1064 | The user has clicked the item with the middle mouse button. | |
1065 | @event{EVT_TREE_SEL_CHANGED(id, func)} | |
1066 | Selection has changed. | |
1067 | @event{EVT_TREE_SEL_CHANGING(id, func)} | |
1068 | Selection is changing. This can be prevented by calling Veto(). | |
1069 | @event{EVT_TREE_KEY_DOWN(id, func)} | |
1070 | A key has been pressed. | |
1071 | @event{EVT_TREE_ITEM_GETTOOLTIP(id, func)} | |
1072 | The opportunity to set the item tooltip is being given to the | |
1073 | application (call SetToolTip()). Windows only. | |
1074 | @event{EVT_TREE_ITEM_MENU(id, func)} | |
1075 | The context menu for the selected item has been requested, either by a | |
1076 | right click or by using the menu key. | |
1077 | @event{EVT_TREE_STATE_IMAGE_CLICK(id, func)} | |
809ca837 | 1078 | The state image has been clicked. |
7977b62a | 1079 | @endEventTable |
7c913512 | 1080 | |
23324ae1 FM |
1081 | @library{wxbase} |
1082 | @category{events} | |
7c913512 | 1083 | |
e54c96f1 | 1084 | @see wxTreeCtrl |
23324ae1 FM |
1085 | */ |
1086 | class wxTreeEvent : public wxNotifyEvent | |
1087 | { | |
1088 | public: | |
1089 | /** | |
23324ae1 FM |
1090 | Constructor, used by wxWidgets itself only. |
1091 | */ | |
cfbe5614 FM |
1092 | wxTreeEvent(wxEventType commandType, wxTreeCtrl* tree, |
1093 | const wxTreeItemId& item = wxTreeItemId()); | |
23324ae1 FM |
1094 | |
1095 | /** | |
1096 | Returns the item (valid for all events). | |
1097 | */ | |
328f5751 | 1098 | wxTreeItemId GetItem() const; |
23324ae1 FM |
1099 | |
1100 | /** | |
7977b62a BP |
1101 | Returns the key code if the event is a key event. Use GetKeyEvent() to |
1102 | get the values of the modifier keys for this event (i.e. Shift or Ctrl). | |
23324ae1 | 1103 | */ |
328f5751 | 1104 | int GetKeyCode() const; |
23324ae1 FM |
1105 | |
1106 | /** | |
6873eb5b | 1107 | Returns the key event for @c EVT_TREE_KEY_DOWN events. |
23324ae1 | 1108 | */ |
cfbe5614 | 1109 | const wxKeyEvent& GetKeyEvent() const; |
23324ae1 FM |
1110 | |
1111 | /** | |
1112 | Returns the label if the event is a begin or end edit label event. | |
1113 | */ | |
cfbe5614 | 1114 | const wxString& GetLabel() const; |
23324ae1 FM |
1115 | |
1116 | /** | |
6873eb5b FM |
1117 | Returns the old item index (valid for @c EVT_TREE_ITEM_CHANGING and |
1118 | @c EVT_TREE_ITEM_CHANGED events). | |
23324ae1 | 1119 | */ |
328f5751 | 1120 | wxTreeItemId GetOldItem() const; |
23324ae1 FM |
1121 | |
1122 | /** | |
1123 | Returns the position of the mouse pointer if the event is a drag or | |
1124 | menu-context event. | |
7977b62a BP |
1125 | |
1126 | In both cases the position is in client coordinates - i.e. relative to | |
1127 | the wxTreeCtrl window (so that you can pass it directly to e.g. | |
1128 | wxWindow::PopupMenu()). | |
23324ae1 | 1129 | */ |
328f5751 | 1130 | wxPoint GetPoint() const; |
23324ae1 FM |
1131 | |
1132 | /** | |
7977b62a | 1133 | Returns @true if the label edit was cancelled. This should be called |
6873eb5b | 1134 | from within an @c EVT_TREE_END_LABEL_EDIT handler. |
23324ae1 | 1135 | */ |
328f5751 | 1136 | bool IsEditCancelled() const; |
23324ae1 FM |
1137 | |
1138 | /** | |
6873eb5b | 1139 | Set the tooltip for the item (valid for @c EVT_TREE_ITEM_GETTOOLTIP |
7977b62a | 1140 | events). Windows only. |
23324ae1 FM |
1141 | */ |
1142 | void SetToolTip(const wxString& tooltip); | |
1143 | }; |