]>
Commit | Line | Data |
---|---|---|
f135ff73 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treectrl.h | |
3 | // Purpose: wxTreeCtrl class | |
4 | // Author: Robert Roebling | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1997,1998 Robert Roebling | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _GENERIC_TREECTRL_H_ | |
13 | #define _GENERIC_TREECTRL_H_ | |
c801d85f KB |
14 | |
15 | #ifdef __GNUG__ | |
f135ff73 | 16 | #pragma interface "treectrl.h" |
c801d85f KB |
17 | #endif |
18 | ||
19 | #include "wx/defs.h" | |
20 | #include "wx/string.h" | |
f135ff73 | 21 | #include "wx/object.h" |
c801d85f | 22 | #include "wx/event.h" |
c801d85f | 23 | #include "wx/scrolwin.h" |
f135ff73 | 24 | #include "wx/textctrl.h" |
ac57418f | 25 | #include "wx/pen.h" |
91b8de8d | 26 | #include "wx/dynarray.h" |
e179bd65 | 27 | #include "wx/timer.h" |
91b8de8d | 28 | |
f135ff73 VZ |
29 | // ----------------------------------------------------------------------------- |
30 | // forward declaration | |
31 | // ----------------------------------------------------------------------------- | |
c801d85f | 32 | |
e179bd65 RR |
33 | class WXDLLEXPORT wxImageList; |
34 | class WXDLLEXPORT wxGenericTreeItem; | |
c801d85f | 35 | |
e179bd65 RR |
36 | class WXDLLEXPORT wxTreeItemData; |
37 | ||
38 | class WXDLLEXPORT wxTreeRenameTimer; | |
39 | class WXDLLEXPORT wxTreeTextCtrl; | |
74bedbeb | 40 | |
f135ff73 VZ |
41 | // ----------------------------------------------------------------------------- |
42 | // wxTreeItemId - unique identifier of a tree element | |
43 | // ----------------------------------------------------------------------------- | |
c801d85f | 44 | |
f135ff73 VZ |
45 | class WXDLLEXPORT wxTreeItemId |
46 | { | |
47 | friend class wxTreeCtrl; | |
48 | friend class wxTreeEvent; | |
49 | public: | |
50 | // ctors | |
51 | // 0 is invalid value for HTREEITEM | |
52 | wxTreeItemId() { m_pItem = 0; } | |
53 | ||
54 | // default copy ctor/assignment operator are ok for us | |
55 | ||
56 | // accessors | |
57 | // is this a valid tree item? | |
58 | bool IsOk() const { return m_pItem != 0; } | |
c801d85f | 59 | |
f135ff73 VZ |
60 | // deprecated: only for compatibility |
61 | wxTreeItemId(long itemId) { m_pItem = (wxGenericTreeItem *)itemId; } | |
62 | operator long() const { return (long)m_pItem; } | |
63 | ||
6daa0637 | 64 | //protected: // not for gcc |
f135ff73 VZ |
65 | // for wxTreeCtrl usage only |
66 | wxTreeItemId(wxGenericTreeItem *pItem) { m_pItem = pItem; } | |
ef44a621 | 67 | |
f135ff73 | 68 | wxGenericTreeItem *m_pItem; |
c801d85f KB |
69 | }; |
70 | ||
91b8de8d RR |
71 | WX_DECLARE_OBJARRAY(wxTreeItemId, wxArrayTreeItemIds); |
72 | ||
f135ff73 VZ |
73 | // ---------------------------------------------------------------------------- |
74 | // wxTreeItemData is some (arbitrary) user class associated with some item. | |
75 | // | |
76 | // Because the objects of this class are deleted by the tree, they should | |
77 | // always be allocated on the heap! | |
78 | // ---------------------------------------------------------------------------- | |
e179bd65 | 79 | |
fd0eed64 | 80 | class WXDLLEXPORT wxTreeItemData: public wxClientData |
c801d85f | 81 | { |
f135ff73 | 82 | friend class wxTreeCtrl; |
a32dd690 | 83 | public: |
f135ff73 VZ |
84 | // creation/destruction |
85 | // -------------------- | |
86 | // default ctor | |
87 | wxTreeItemData() { } | |
88 | ||
89 | // default copy ctor/assignment operator are ok | |
90 | ||
f135ff73 VZ |
91 | // accessor: get the item associated with us |
92 | const wxTreeItemId& GetId() const { return m_pItem; } | |
93 | void SetId(const wxTreeItemId& id) { m_pItem = id; } | |
c801d85f | 94 | |
f135ff73 VZ |
95 | protected: |
96 | wxTreeItemId m_pItem; | |
97 | }; | |
98 | ||
e179bd65 RR |
99 | //----------------------------------------------------------------------------- |
100 | // wxTreeRenameTimer (internal) | |
101 | //----------------------------------------------------------------------------- | |
102 | ||
103 | class WXDLLEXPORT wxTreeRenameTimer: public wxTimer | |
104 | { | |
105 | private: | |
106 | wxTreeCtrl *m_owner; | |
107 | ||
108 | public: | |
109 | wxTreeRenameTimer( wxTreeCtrl *owner ); | |
110 | void Notify(); | |
111 | }; | |
112 | ||
113 | //----------------------------------------------------------------------------- | |
114 | // wxTreeTextCtrl (internal) | |
115 | //----------------------------------------------------------------------------- | |
116 | ||
117 | class WXDLLEXPORT wxTreeTextCtrl: public wxTextCtrl | |
118 | { | |
119 | DECLARE_DYNAMIC_CLASS(wxTreeTextCtrl); | |
120 | ||
121 | private: | |
122 | bool *m_accept; | |
123 | wxString *m_res; | |
5f1ea0ee RR |
124 | wxTreeCtrl *m_owner; |
125 | wxString m_startValue; | |
e179bd65 RR |
126 | |
127 | public: | |
128 | wxTreeTextCtrl(void) {}; | |
9dfbf520 | 129 | wxTreeTextCtrl( wxWindow *parent, const wxWindowID id, |
e179bd65 | 130 | bool *accept, wxString *res, wxTreeCtrl *owner, |
1044a386 | 131 | const wxString &value = wxEmptyString, |
e179bd65 | 132 | const wxPoint &pos = wxDefaultPosition, const wxSize &size = wxDefaultSize, |
9ec64fa7 | 133 | int style = 0, |
9ec64fa7 | 134 | const wxValidator& validator = wxDefaultValidator, |
1044a386 | 135 | const wxString &name = wxTextCtrlNameStr ); |
e179bd65 RR |
136 | void OnChar( wxKeyEvent &event ); |
137 | void OnKillFocus( wxFocusEvent &event ); | |
9dfbf520 | 138 | |
e179bd65 RR |
139 | DECLARE_EVENT_TABLE() |
140 | }; | |
141 | ||
f135ff73 VZ |
142 | // ----------------------------------------------------------------------------- |
143 | // wxTreeCtrl - the tree control | |
144 | // ----------------------------------------------------------------------------- | |
c801d85f | 145 | |
f135ff73 | 146 | class WXDLLEXPORT wxTreeCtrl : public wxScrolledWindow |
c801d85f | 147 | { |
a32dd690 | 148 | public: |
f135ff73 VZ |
149 | // creation |
150 | // -------- | |
151 | wxTreeCtrl() { Init(); } | |
152 | ||
153 | wxTreeCtrl(wxWindow *parent, wxWindowID id = -1, | |
154 | const wxPoint& pos = wxDefaultPosition, | |
155 | const wxSize& size = wxDefaultSize, | |
156 | long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT, | |
bfc6fde4 | 157 | const wxValidator &validator = wxDefaultValidator, |
62448488 | 158 | const wxString& name = wxTreeCtrlNameStr) |
f135ff73 | 159 | { |
4f22cf8d | 160 | Create(parent, id, pos, size, style, validator, name); |
f135ff73 VZ |
161 | } |
162 | ||
163 | virtual ~wxTreeCtrl(); | |
164 | ||
165 | bool Create(wxWindow *parent, wxWindowID id = -1, | |
166 | const wxPoint& pos = wxDefaultPosition, | |
167 | const wxSize& size = wxDefaultSize, | |
168 | long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT, | |
bfc6fde4 | 169 | const wxValidator &validator = wxDefaultValidator, |
62448488 | 170 | const wxString& name = wxTreeCtrlNameStr); |
f135ff73 VZ |
171 | |
172 | // accessors | |
173 | // --------- | |
174 | ||
175 | // get the total number of items in the control | |
176 | size_t GetCount() const; | |
177 | ||
178 | // indent is the number of pixels the children are indented relative to | |
179 | // the parents position. SetIndent() also redraws the control | |
180 | // immediately. | |
181 | unsigned int GetIndent() const { return m_indent; } | |
182 | void SetIndent(unsigned int indent); | |
183 | ||
9dfbf520 | 184 | // spacing is the number of pixels between the start and the Text |
cf724bce RR |
185 | unsigned int GetSpacing() const { return m_spacing; } |
186 | void SetSpacing(unsigned int spacing); | |
9dfbf520 | 187 | |
f135ff73 VZ |
188 | // image list: these functions allow to associate an image list with |
189 | // the control and retrieve it. Note that the control does _not_ delete | |
190 | // the associated image list when it's deleted in order to allow image | |
191 | // lists to be shared between different controls. | |
192 | // | |
193 | // The normal image list is for the icons which correspond to the | |
194 | // normal tree item state (whether it is selected or not). | |
195 | // Additionally, the application might choose to show a state icon | |
196 | // which corresponds to an app-defined item state (for example, | |
197 | // checked/unchecked) which are taken from the state image list. | |
198 | wxImageList *GetImageList() const; | |
199 | wxImageList *GetStateImageList() const; | |
200 | ||
201 | void SetImageList(wxImageList *imageList); | |
202 | void SetStateImageList(wxImageList *imageList); | |
203 | ||
204 | // Functions to work with tree ctrl items. | |
205 | ||
206 | // accessors | |
207 | // --------- | |
208 | ||
209 | // retrieve items label | |
210 | wxString GetItemText(const wxTreeItemId& item) const; | |
74b31181 VZ |
211 | // get one of the images associated with the item (normal by default) |
212 | int GetItemImage(const wxTreeItemId& item, | |
213 | wxTreeItemIcon which = wxTreeItemIcon_Normal) const; | |
f135ff73 VZ |
214 | // get the data associated with the item |
215 | wxTreeItemData *GetItemData(const wxTreeItemId& item) const; | |
216 | ||
217 | // modifiers | |
218 | // --------- | |
219 | ||
220 | // set items label | |
221 | void SetItemText(const wxTreeItemId& item, const wxString& text); | |
74b31181 VZ |
222 | // get one of the images associated with the item (normal by default) |
223 | void SetItemImage(const wxTreeItemId& item, int image, | |
8dc99046 | 224 | wxTreeItemIcon which = wxTreeItemIcon_Normal); |
f135ff73 VZ |
225 | // associate some data with the item |
226 | void SetItemData(const wxTreeItemId& item, wxTreeItemData *data); | |
227 | ||
228 | // force appearance of [+] button near the item. This is useful to | |
229 | // allow the user to expand the items which don't have any children now | |
230 | // - but instead add them only when needed, thus minimizing memory | |
231 | // usage and loading time. | |
232 | void SetItemHasChildren(const wxTreeItemId& item, bool has = TRUE); | |
233 | ||
ef44a621 VZ |
234 | // the item will be shown in bold |
235 | void SetItemBold(const wxTreeItemId& item, bool bold = TRUE); | |
236 | ||
9ec64fa7 VZ |
237 | // set the items text colour |
238 | void SetItemTextColour(const wxTreeItemId& item, const wxColour& col); | |
239 | ||
240 | // set the items background colour | |
241 | void SetItemBackgroundColour(const wxTreeItemId& item, const wxColour& col); | |
242 | ||
243 | // set the items font (should be of the same height for all items) | |
244 | void SetItemFont(const wxTreeItemId& item, const wxFont& font); | |
245 | ||
f135ff73 VZ |
246 | // item status inquiries |
247 | // --------------------- | |
248 | ||
249 | // is the item visible (it might be outside the view or not expanded)? | |
250 | bool IsVisible(const wxTreeItemId& item) const; | |
251 | // does the item has any children? | |
6daa0637 RR |
252 | bool HasChildren(const wxTreeItemId& item) const |
253 | { return ItemHasChildren(item); } | |
f135ff73 VZ |
254 | bool ItemHasChildren(const wxTreeItemId& item) const; |
255 | // is the item expanded (only makes sense if HasChildren())? | |
256 | bool IsExpanded(const wxTreeItemId& item) const; | |
257 | // is this item currently selected (the same as has focus)? | |
258 | bool IsSelected(const wxTreeItemId& item) const; | |
ef44a621 VZ |
259 | // is item text in bold font? |
260 | bool IsBold(const wxTreeItemId& item) const; | |
f135ff73 | 261 | |
4832f7c0 VZ |
262 | // number of children |
263 | // ------------------ | |
264 | ||
265 | // if 'recursively' is FALSE, only immediate children count, otherwise | |
266 | // the returned number is the number of all items in this branch | |
267 | size_t GetChildrenCount(const wxTreeItemId& item, bool recursively = TRUE); | |
268 | ||
f135ff73 VZ |
269 | // navigation |
270 | // ---------- | |
271 | ||
272 | // wxTreeItemId.IsOk() will return FALSE if there is no such item | |
273 | ||
274 | // get the root tree item | |
275 | wxTreeItemId GetRootItem() const { return m_anchor; } | |
276 | ||
277 | // get the item currently selected (may return NULL if no selection) | |
278 | wxTreeItemId GetSelection() const { return m_current; } | |
279 | ||
88ac883a | 280 | // get the items currently selected, return the number of such item |
91b8de8d | 281 | size_t GetSelections(wxArrayTreeItemIds&) const; |
88ac883a | 282 | |
f135ff73 VZ |
283 | // get the parent of this item (may return NULL if root) |
284 | wxTreeItemId GetParent(const wxTreeItemId& item) const; | |
285 | ||
286 | // for this enumeration function you must pass in a "cookie" parameter | |
287 | // which is opaque for the application but is necessary for the library | |
288 | // to make these functions reentrant (i.e. allow more than one | |
289 | // enumeration on one and the same object simultaneously). Of course, | |
290 | // the "cookie" passed to GetFirstChild() and GetNextChild() should be | |
291 | // the same! | |
292 | ||
293 | // get the first child of this item | |
294 | wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& cookie) const; | |
295 | // get the next child | |
296 | wxTreeItemId GetNextChild(const wxTreeItemId& item, long& cookie) const; | |
978f38c2 VZ |
297 | // get the last child of this item - this method doesn't use cookies |
298 | wxTreeItemId GetLastChild(const wxTreeItemId& item) const; | |
f135ff73 VZ |
299 | |
300 | // get the next sibling of this item | |
301 | wxTreeItemId GetNextSibling(const wxTreeItemId& item) const; | |
302 | // get the previous sibling | |
303 | wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const; | |
304 | ||
305 | // get first visible item | |
306 | wxTreeItemId GetFirstVisibleItem() const; | |
307 | // get the next visible item: item must be visible itself! | |
308 | // see IsVisible() and wxTreeCtrl::GetFirstVisibleItem() | |
309 | wxTreeItemId GetNextVisible(const wxTreeItemId& item) const; | |
310 | // get the previous visible item: item must be visible itself! | |
311 | wxTreeItemId GetPrevVisible(const wxTreeItemId& item) const; | |
312 | ||
313 | // operations | |
314 | // ---------- | |
315 | ||
316 | // add the root node to the tree | |
317 | wxTreeItemId AddRoot(const wxString& text, | |
318 | int image = -1, int selectedImage = -1, | |
319 | wxTreeItemData *data = NULL); | |
320 | ||
321 | // insert a new item in as the first child of the parent | |
322 | wxTreeItemId PrependItem(const wxTreeItemId& parent, | |
323 | const wxString& text, | |
324 | int image = -1, int selectedImage = -1, | |
325 | wxTreeItemData *data = NULL); | |
326 | ||
327 | // insert a new item after a given one | |
328 | wxTreeItemId InsertItem(const wxTreeItemId& parent, | |
329 | const wxTreeItemId& idPrevious, | |
330 | const wxString& text, | |
f2593d0d RR |
331 | int image = -1, int selectedImage = -1, |
332 | wxTreeItemData *data = NULL); | |
333 | ||
2ef31e80 | 334 | // insert a new item before the one with the given index |
f2593d0d | 335 | wxTreeItemId InsertItem(const wxTreeItemId& parent, |
2ef31e80 | 336 | size_t index, |
f2593d0d | 337 | const wxString& text, |
f135ff73 VZ |
338 | int image = -1, int selectedImage = -1, |
339 | wxTreeItemData *data = NULL); | |
340 | ||
341 | // insert a new item in as the last child of the parent | |
342 | wxTreeItemId AppendItem(const wxTreeItemId& parent, | |
343 | const wxString& text, | |
344 | int image = -1, int selectedImage = -1, | |
345 | wxTreeItemData *data = NULL); | |
346 | ||
347 | // delete this item and associated data if any | |
348 | void Delete(const wxTreeItemId& item); | |
372edb9d VZ |
349 | // delete all children (but don't delete the item itself) |
350 | // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events | |
351 | void DeleteChildren(const wxTreeItemId& item); | |
f135ff73 | 352 | // delete all items from the tree |
372edb9d | 353 | // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events |
f135ff73 VZ |
354 | void DeleteAllItems(); |
355 | ||
356 | // expand this item | |
357 | void Expand(const wxTreeItemId& item); | |
358 | // collapse the item without removing its children | |
359 | void Collapse(const wxTreeItemId& item); | |
360 | // collapse the item and remove all children | |
361 | void CollapseAndReset(const wxTreeItemId& item); | |
362 | // toggles the current state | |
363 | void Toggle(const wxTreeItemId& item); | |
364 | ||
365 | // remove the selection from currently selected item (if any) | |
366 | void Unselect(); | |
88ac883a | 367 | void UnselectAll(); |
f135ff73 | 368 | // select this item |
c0de7af4 | 369 | void SelectItem(const wxTreeItemId& item, bool unselect_others=TRUE, bool extended_select=FALSE); |
f135ff73 VZ |
370 | // make sure this item is visible (expanding the parent item and/or |
371 | // scrolling to this item if necessary) | |
372 | void EnsureVisible(const wxTreeItemId& item); | |
373 | // scroll to this item (but don't expand its parent) | |
374 | void ScrollTo(const wxTreeItemId& item); | |
375 | ||
4f22cf8d RR |
376 | // The first function is more portable (because easier to implement |
377 | // on other platforms), but the second one returns some extra info. | |
378 | wxTreeItemId HitTest(const wxPoint& point) | |
379 | { int dummy; return HitTest(point, dummy); } | |
380 | wxTreeItemId HitTest(const wxPoint& point, int& flags); | |
bfc6fde4 | 381 | |
e179bd65 | 382 | // Start editing the item label: this (temporarily) replaces the item |
f135ff73 | 383 | // with a one line edit control. The item will be selected if it hadn't |
e179bd65 RR |
384 | // been before. |
385 | void EditLabel( const wxTreeItemId& item ) { Edit( item ); } | |
386 | void Edit( const wxTreeItemId& item ); | |
9dfbf520 | 387 | |
e1ee62bd VZ |
388 | // sorting |
389 | // this function is called to compare 2 items and should return -1, 0 | |
390 | // or +1 if the first item is less than, equal to or greater than the | |
391 | // second one. The base class version performs alphabetic comparaison | |
392 | // of item labels (GetText) | |
393 | virtual int OnCompareItems(const wxTreeItemId& item1, | |
394 | const wxTreeItemId& item2); | |
395 | // sort the children of this item using OnCompareItems | |
f135ff73 | 396 | // |
e1ee62bd VZ |
397 | // NB: this function is not reentrant and not MT-safe (FIXME)! |
398 | void SortChildren(const wxTreeItemId& item); | |
f135ff73 | 399 | |
74b31181 VZ |
400 | // deprecated functions: use Set/GetItemImage directly |
401 | // get the selected item image | |
402 | int GetItemSelectedImage(const wxTreeItemId& item) const | |
403 | { return GetItemImage(item, wxTreeItemIcon_Selected); } | |
404 | // set the selected item image | |
405 | void SetItemSelectedImage(const wxTreeItemId& item, int image) | |
406 | { SetItemImage(item, image, wxTreeItemIcon_Selected); } | |
407 | ||
408 | // implementation | |
409 | ||
a43a4f9d | 410 | // callbacks |
3db7be80 RR |
411 | void OnPaint( wxPaintEvent &event ); |
412 | void OnSetFocus( wxFocusEvent &event ); | |
413 | void OnKillFocus( wxFocusEvent &event ); | |
f135ff73 | 414 | void OnChar( wxKeyEvent &event ); |
3db7be80 RR |
415 | void OnMouse( wxMouseEvent &event ); |
416 | void OnIdle( wxIdleEvent &event ); | |
f135ff73 | 417 | |
a43a4f9d VZ |
418 | // implementation |
419 | void SendDeleteEvent(wxGenericTreeItem *itemBeingDeleted); | |
420 | ||
91b8de8d RR |
421 | // Draw Special Information |
422 | void DrawBorder(wxTreeItemId& item); | |
423 | void DrawLine(wxTreeItemId& item, bool below); | |
9dfbf520 | 424 | |
f135ff73 | 425 | protected: |
91b8de8d | 426 | friend class wxGenericTreeItem; |
e179bd65 RR |
427 | friend class wxTreeRenameTimer; |
428 | friend class wxTreeTextCtrl; | |
91b8de8d | 429 | |
eff869aa RR |
430 | wxFont m_normalFont; |
431 | wxFont m_boldFont; | |
432 | ||
f135ff73 | 433 | wxGenericTreeItem *m_anchor; |
e179bd65 | 434 | wxGenericTreeItem *m_current, *m_key_current, *m_currentEdit; |
f135ff73 | 435 | bool m_hasFocus; |
3db7be80 | 436 | bool m_dirty; |
f135ff73 VZ |
437 | int m_xScroll,m_yScroll; |
438 | unsigned int m_indent; | |
cf724bce | 439 | unsigned int m_spacing; |
f135ff73 VZ |
440 | int m_lineHeight; |
441 | wxPen m_dottedPen; | |
442 | wxBrush *m_hilightBrush; | |
443 | wxImageList *m_imageListNormal, | |
444 | *m_imageListState; | |
bbe0af5b | 445 | int m_dragCount; |
fd9811b1 | 446 | wxPoint m_dragStart; |
e179bd65 RR |
447 | wxTimer *m_renameTimer; |
448 | bool m_renameAccept; | |
449 | wxString m_renameRes; | |
f135ff73 VZ |
450 | |
451 | // the common part of all ctors | |
452 | void Init(); | |
453 | ||
454 | // misc helpers | |
455 | wxTreeItemId DoInsertItem(const wxTreeItemId& parent, | |
456 | size_t previous, | |
457 | const wxString& text, | |
458 | int image, int selectedImage, | |
459 | wxTreeItemData *data); | |
460 | ||
461 | void AdjustMyScrollbars(); | |
91b8de8d | 462 | int GetLineHeight(wxGenericTreeItem *item) const; |
ef44a621 VZ |
463 | void PaintLevel( wxGenericTreeItem *item, wxDC& dc, int level, int &y ); |
464 | void PaintItem( wxGenericTreeItem *item, wxDC& dc); | |
f135ff73 VZ |
465 | |
466 | void CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y ); | |
467 | void CalculatePositions(); | |
91b8de8d | 468 | void CalculateSize( wxGenericTreeItem *item, wxDC &dc ); |
f135ff73 VZ |
469 | |
470 | void RefreshSubtree( wxGenericTreeItem *item ); | |
471 | void RefreshLine( wxGenericTreeItem *item ); | |
9dfbf520 | 472 | |
e179bd65 RR |
473 | void OnRenameTimer(); |
474 | void OnRenameAccept(); | |
43fa96a8 | 475 | |
91b8de8d | 476 | void FillArray(wxGenericTreeItem*, wxArrayTreeItemIds&) const; |
88ac883a VZ |
477 | void SelectItemRange( wxGenericTreeItem *item1, wxGenericTreeItem *item2 ); |
478 | bool TagAllChildrenUntilLast(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select); | |
479 | bool TagNextChildren(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select); | |
480 | void UnselectAllChildren( wxGenericTreeItem *item ); | |
481 | ||
a32dd690 | 482 | private: |
f135ff73 VZ |
483 | DECLARE_EVENT_TABLE() |
484 | DECLARE_DYNAMIC_CLASS(wxTreeCtrl) | |
c801d85f KB |
485 | }; |
486 | ||
f135ff73 VZ |
487 | #endif // _GENERIC_TREECTRL_H_ |
488 |