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