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