1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/treectlg.h
3 // Purpose: wxTreeCtrl class
4 // Author: Robert Roebling
8 // Copyright: (c) 1997,1998 Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _GENERIC_TREECTRL_H_
13 #define _GENERIC_TREECTRL_H_
17 #include "wx/scrolwin.h"
19 #include "wx/imaglist.h"
21 // -----------------------------------------------------------------------------
22 // forward declaration
23 // -----------------------------------------------------------------------------
25 class WXDLLEXPORT wxGenericTreeItem
;
27 class WXDLLEXPORT wxTreeItemData
;
29 class WXDLLEXPORT wxTreeRenameTimer
;
30 class WXDLLEXPORT wxTreeFindTimer
;
31 class WXDLLEXPORT wxTreeTextCtrl
;
32 class WXDLLEXPORT wxTextCtrl
;
34 // -----------------------------------------------------------------------------
35 // wxGenericTreeCtrl - the tree control
36 // -----------------------------------------------------------------------------
38 class WXDLLEXPORT wxGenericTreeCtrl
: public wxScrolledWindow
43 wxGenericTreeCtrl() { Init(); }
45 wxGenericTreeCtrl(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
46 const wxPoint
& pos
= wxDefaultPosition
,
47 const wxSize
& size
= wxDefaultSize
,
48 long style
= wxTR_DEFAULT_STYLE
,
49 const wxValidator
&validator
= wxDefaultValidator
,
50 const wxString
& name
= wxTreeCtrlNameStr
)
53 Create(parent
, id
, pos
, size
, style
, validator
, name
);
56 virtual ~wxGenericTreeCtrl();
58 bool Create(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
59 const wxPoint
& pos
= wxDefaultPosition
,
60 const wxSize
& size
= wxDefaultSize
,
61 long style
= wxTR_DEFAULT_STYLE
,
62 const wxValidator
&validator
= wxDefaultValidator
,
63 const wxString
& name
= wxTreeCtrlNameStr
);
68 // get the total number of items in the control
69 size_t GetCount() const;
71 // indent is the number of pixels the children are indented relative to
72 // the parents position. SetIndent() also redraws the control
74 unsigned int GetIndent() const { return m_indent
; }
75 void SetIndent(unsigned int indent
);
77 // spacing is the number of pixels between the start and the Text
78 unsigned int GetSpacing() const { return m_spacing
; }
79 void SetSpacing(unsigned int spacing
);
81 // image list: these functions allow to associate an image list with
82 // the control and retrieve it. Note that when assigned with
83 // SetImageList, the control does _not_ delete
84 // the associated image list when it's deleted in order to allow image
85 // lists to be shared between different controls. If you use
86 // AssignImageList, the control _does_ delete the image list.
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.
93 virtual wxImageList
*GetImageList() const;
94 virtual wxImageList
*GetStateImageList() const;
95 virtual wxImageList
*GetButtonsImageList() const;
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
);
104 virtual void SetDropEffectAboveItem( bool above
= false ) { m_dropEffectAboveItem
= above
; }
105 virtual bool GetDropEffectAboveItem() const { return m_dropEffectAboveItem
; }
107 // Functions to work with tree ctrl items.
112 // retrieve item's label
113 wxString
GetItemText(const wxTreeItemId
& item
) const;
114 // get one of the images associated with the item (normal by default)
115 virtual int GetItemImage(const wxTreeItemId
& item
,
116 wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const;
117 // get the data associated with the item
118 wxTreeItemData
*GetItemData(const wxTreeItemId
& item
) const;
120 // get the item's text colour
121 wxColour
GetItemTextColour(const wxTreeItemId
& item
) const;
123 // get the item's background colour
124 wxColour
GetItemBackgroundColour(const wxTreeItemId
& item
) const;
126 // get the item's font
127 wxFont
GetItemFont(const wxTreeItemId
& item
) const;
133 void SetItemText(const wxTreeItemId
& item
, const wxString
& text
);
134 // get one of the images associated with the item (normal by default)
135 virtual void SetItemImage(const wxTreeItemId
& item
, int image
,
136 wxTreeItemIcon which
= wxTreeItemIcon_Normal
);
137 // associate some data with the item
138 void SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
);
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.
144 void SetItemHasChildren(const wxTreeItemId
& item
, bool has
= true);
146 // the item will be shown in bold
147 void SetItemBold(const wxTreeItemId
& item
, bool bold
= true);
149 // the item will be shown with a drop highlight
150 void SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
= true);
152 // set the item's text colour
153 void SetItemTextColour(const wxTreeItemId
& item
, const wxColour
& col
);
155 // set the item's background colour
156 void SetItemBackgroundColour(const wxTreeItemId
& item
, const wxColour
& col
);
158 // set the item's font (should be of the same height for all items)
159 void SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
);
161 // set the window font
162 virtual bool SetFont( const wxFont
&font
);
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
);
168 // item status inquiries
169 // ---------------------
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?
174 bool HasChildren(const wxTreeItemId
& item
) const
175 { return ItemHasChildren(item
); }
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;
181 // is item text in bold font?
182 bool IsBold(const wxTreeItemId
& item
) const;
183 // does the layout include space for a button?
185 // number of children
186 // ------------------
188 // if 'recursively' is false, only immediate children count, otherwise
189 // the returned number is the number of all items in this branch
190 size_t GetChildrenCount(const wxTreeItemId
& item
,
191 bool recursively
= true) const;
196 // wxTreeItemId.IsOk() will return false if there is no such item
198 // get the root tree item
199 wxTreeItemId
GetRootItem() const { return m_anchor
; }
201 // get the item currently selected (may return NULL if no selection)
202 wxTreeItemId
GetSelection() const { return m_current
; }
204 // get the items currently selected, return the number of such item
205 size_t GetSelections(wxArrayTreeItemIds
&) const;
207 // get the parent of this item (may return NULL if root)
208 wxTreeItemId
GetItemParent(const wxTreeItemId
& item
) const;
210 #if WXWIN_COMPATIBILITY_2_2
211 // deprecated: Use GetItemParent instead.
212 wxDEPRECATED( wxTreeItemId
GetParent(const wxTreeItemId
& item
) const);
214 // Expose the base class method hidden by the one above. Not deprecatable.
215 wxWindow
*GetParent() const { return wxScrolledWindow::GetParent(); }
216 #endif // WXWIN_COMPATIBILITY_2_2
218 // for this enumeration function you must pass in a "cookie" parameter
219 // which is opaque for the application but is necessary for the library
220 // to make these functions reentrant (i.e. allow more than one
221 // enumeration on one and the same object simultaneously). Of course,
222 // the "cookie" passed to GetFirstChild() and GetNextChild() should be
225 // get the first child of this item
226 wxTreeItemId
GetFirstChild(const wxTreeItemId
& item
,
227 wxTreeItemIdValue
& cookie
) const;
228 // get the next child
229 wxTreeItemId
GetNextChild(const wxTreeItemId
& item
,
230 wxTreeItemIdValue
& cookie
) const;
231 // get the last child of this item - this method doesn't use cookies
232 wxTreeItemId
GetLastChild(const wxTreeItemId
& item
) const;
234 // get the next sibling of this item
235 wxTreeItemId
GetNextSibling(const wxTreeItemId
& item
) const;
236 // get the previous sibling
237 wxTreeItemId
GetPrevSibling(const wxTreeItemId
& item
) const;
239 // get first visible item
240 wxTreeItemId
GetFirstVisibleItem() const;
241 // get the next visible item: item must be visible itself!
242 // see IsVisible() and wxTreeCtrl::GetFirstVisibleItem()
243 wxTreeItemId
GetNextVisible(const wxTreeItemId
& item
) const;
244 // get the previous visible item: item must be visible itself!
245 wxTreeItemId
GetPrevVisible(const wxTreeItemId
& item
) const;
247 // Only for internal use right now, but should probably be public
248 wxTreeItemId
GetNext(const wxTreeItemId
& item
) const;
253 // add the root node to the tree
254 virtual wxTreeItemId
AddRoot(const wxString
& text
,
255 int image
= -1, int selectedImage
= -1,
256 wxTreeItemData
*data
= NULL
);
258 // insert a new item in as the first child of the parent
259 virtual wxTreeItemId
PrependItem(const wxTreeItemId
& parent
,
260 const wxString
& text
,
261 int image
= -1, int selectedImage
= -1,
262 wxTreeItemData
*data
= NULL
);
264 // insert a new item after a given one
265 virtual wxTreeItemId
InsertItem(const wxTreeItemId
& parent
,
266 const wxTreeItemId
& idPrevious
,
267 const wxString
& text
,
268 int image
= -1, int selectedImage
= -1,
269 wxTreeItemData
*data
= NULL
);
271 // insert a new item before the one with the given index
272 virtual wxTreeItemId
InsertItem(const wxTreeItemId
& parent
,
274 const wxString
& text
,
275 int image
= -1, int selectedImage
= -1,
276 wxTreeItemData
*data
= NULL
);
278 // insert a new item in as the last child of the parent
279 virtual wxTreeItemId
AppendItem(const wxTreeItemId
& parent
,
280 const wxString
& text
,
281 int image
= -1, int selectedImage
= -1,
282 wxTreeItemData
*data
= NULL
);
284 // delete this item and associated data if any
285 void Delete(const wxTreeItemId
& item
);
286 // delete all children (but don't delete the item itself)
287 // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
288 void DeleteChildren(const wxTreeItemId
& item
);
289 // delete all items from the tree
290 // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
291 void DeleteAllItems();
294 void Expand(const wxTreeItemId
& item
);
295 // expand this item and all subitems recursively
296 void ExpandAll(const wxTreeItemId
& item
);
297 // collapse the item without removing its children
298 void Collapse(const wxTreeItemId
& item
);
299 // collapse the item and remove all children
300 void CollapseAndReset(const wxTreeItemId
& item
);
301 // toggles the current state
302 void Toggle(const wxTreeItemId
& item
);
304 // remove the selection from currently selected item (if any)
306 // or from the given one (multiselect mode only)
307 void UnselectItem(const wxTreeItemId
& item
) { SelectItem(item
, false); }
311 void SelectItem(const wxTreeItemId
& item
, bool select
= true);
312 // toggle the item selection
313 void ToggleItemSelection(const wxTreeItemId
& item
)
315 SelectItem(item
, !IsSelected(item
));
318 // make sure this item is visible (expanding the parent item and/or
319 // scrolling to this item if necessary)
320 void EnsureVisible(const wxTreeItemId
& item
);
321 // scroll to this item (but don't expand its parent)
322 void ScrollTo(const wxTreeItemId
& item
);
323 void AdjustMyScrollbars();
325 // The first function is more portable (because easier to implement
326 // on other platforms), but the second one returns some extra info.
327 wxTreeItemId
HitTest(const wxPoint
& point
)
328 { int dummy
; return HitTest(point
, dummy
); }
329 wxTreeItemId
HitTest(const wxPoint
& point
, int& flags
);
331 // get the bounding rectangle of the item (or of its label only)
332 bool GetBoundingRect(const wxTreeItemId
& item
,
334 bool textOnly
= false) const;
336 // Start editing the item label: this (temporarily) replaces the item
337 // with a one line edit control. The item will be selected if it hadn't
339 void EditLabel( const wxTreeItemId
& item
) { Edit( item
); }
340 void Edit( const wxTreeItemId
& item
);
341 // returns a pointer to the text edit control if the item is being
342 // edited, NULL otherwise (it's assumed that no more than one item may
343 // be edited simultaneously)
344 wxTextCtrl
* GetEditControl() const;
347 // this function is called to compare 2 items and should return -1, 0
348 // or +1 if the first item is less than, equal to or greater than the
349 // second one. The base class version performs alphabetic comparaison
350 // of item labels (GetText)
351 virtual int OnCompareItems(const wxTreeItemId
& item1
,
352 const wxTreeItemId
& item2
);
353 // sort the children of this item using OnCompareItems
355 // NB: this function is not reentrant and not MT-safe (FIXME)!
356 void SortChildren(const wxTreeItemId
& item
);
358 #if WXWIN_COMPATIBILITY_2_4
359 // deprecated functions: use Set/GetItemImage directly
360 wxDEPRECATED( int GetItemSelectedImage(const wxTreeItemId
& item
) const );
361 wxDEPRECATED( void SetItemSelectedImage(const wxTreeItemId
& item
, int image
) );
363 // use the versions taking wxTreeItemIdValue cookies (note that
364 // GetNextChild() is not inside wxDEPRECATED on purpose, as otherwise we
365 // get twice as many warnings without any added benefit: it is always used
366 // with GetFirstChild() anyhow)
367 wxDEPRECATED( wxTreeItemId
GetFirstChild(const wxTreeItemId
& item
,
368 long& cookie
) const );
369 wxTreeItemId
GetNextChild(const wxTreeItemId
& item
,
371 #endif // WXWIN_COMPATIBILITY_2_4
373 virtual bool ShouldInheritColours() const { return false; }
375 // implementation only from now on
377 // overridden base class virtuals
378 virtual bool SetBackgroundColour(const wxColour
& colour
);
379 virtual bool SetForegroundColour(const wxColour
& colour
);
381 virtual void Freeze();
385 void OnPaint( wxPaintEvent
&event
);
386 void OnSetFocus( wxFocusEvent
&event
);
387 void OnKillFocus( wxFocusEvent
&event
);
388 void OnChar( wxKeyEvent
&event
);
389 void OnMouse( wxMouseEvent
&event
);
390 void OnGetToolTip( wxTreeEvent
&event
);
391 void OnInternalIdle( );
393 virtual wxSize
DoGetBestSize() const;
395 virtual wxVisualAttributes
GetDefaultAttributes() const
397 return GetClassDefaultAttributes(GetWindowVariant());
400 static wxVisualAttributes
401 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
403 // implementation helpers
405 friend class wxGenericTreeItem
;
406 friend class wxTreeRenameTimer
;
407 friend class wxTreeFindTimer
;
408 friend class wxTreeTextCtrl
;
413 wxGenericTreeItem
*m_anchor
;
414 wxGenericTreeItem
*m_current
,
416 // A hint to select a parent item after deleting a child
418 unsigned short m_indent
;
419 unsigned short m_spacing
;
422 wxBrush
*m_hilightBrush
,
423 *m_hilightUnfocusedBrush
;
426 bool m_ownsImageListNormal
,
427 m_ownsImageListState
,
428 m_ownsImageListButtons
;
429 bool m_isDragging
; // true between BEGIN/END drag events
430 bool m_lastOnSame
; // last click on the same item as prev
431 wxImageList
*m_imageListNormal
,
438 wxGenericTreeItem
*m_dropTarget
;
439 wxCursor m_oldCursor
; // cursor is changed while dragging
440 wxGenericTreeItem
*m_oldSelection
;
441 wxGenericTreeItem
*m_underMouse
; // for visual effects
442 wxTreeTextCtrl
*m_textCtrl
;
444 wxTimer
*m_renameTimer
;
446 // incremental search data
447 wxString m_findPrefix
;
448 wxTimer
*m_findTimer
;
450 bool m_dropEffectAboveItem
;
452 // the common part of all ctors
456 void SendDeleteEvent(wxGenericTreeItem
*itemBeingDeleted
);
458 void DrawBorder(const wxTreeItemId
& item
);
459 void DrawLine(const wxTreeItemId
& item
, bool below
);
460 void DrawDropEffect(wxGenericTreeItem
*item
);
462 void DoSelectItem(const wxTreeItemId
& id
,
463 bool unselect_others
= true,
464 bool extended_select
= false);
466 wxTreeItemId
DoInsertItem(const wxTreeItemId
& parent
,
468 const wxString
& text
,
469 int image
, int selectedImage
,
470 wxTreeItemData
*data
);
472 // called by wxTextTreeCtrl when it marks itself for deletion
473 void ResetTextControl();
475 // find the first item starting with the given prefix after the given item
476 wxTreeItemId
FindItem(const wxTreeItemId
& id
, const wxString
& prefix
) const;
478 bool HasButtons() const { return HasFlag(wxTR_HAS_BUTTONS
); }
480 void CalculateLineHeight();
481 int GetLineHeight(wxGenericTreeItem
*item
) const;
482 void PaintLevel( wxGenericTreeItem
*item
, wxDC
& dc
, int level
, int &y
);
483 void PaintItem( wxGenericTreeItem
*item
, wxDC
& dc
);
485 void CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
);
486 void CalculatePositions();
487 void CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
);
489 void RefreshSubtree( wxGenericTreeItem
*item
);
490 void RefreshLine( wxGenericTreeItem
*item
);
492 // redraw all selected items
493 void RefreshSelected();
495 // RefreshSelected() recursive helper
496 void RefreshSelectedUnder(wxGenericTreeItem
*item
);
498 void OnRenameTimer();
499 bool OnRenameAccept(wxGenericTreeItem
*item
, const wxString
& value
);
500 void OnRenameCancelled(wxGenericTreeItem
*item
);
502 void FillArray(wxGenericTreeItem
*, wxArrayTreeItemIds
&) const;
503 void SelectItemRange( wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
);
504 bool TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
);
505 bool TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
);
506 void UnselectAllChildren( wxGenericTreeItem
*item
);
507 void ChildrenClosing(wxGenericTreeItem
* item
);
510 DECLARE_EVENT_TABLE()
511 DECLARE_DYNAMIC_CLASS(wxGenericTreeCtrl
)
512 DECLARE_NO_COPY_CLASS(wxGenericTreeCtrl
)
515 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
517 * wxTreeCtrl has to be a real class or we have problems with
518 * the run-time information.
521 class WXDLLEXPORT wxTreeCtrl
: public wxGenericTreeCtrl
523 DECLARE_DYNAMIC_CLASS(wxTreeCtrl
)
528 wxTreeCtrl(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
529 const wxPoint
& pos
= wxDefaultPosition
,
530 const wxSize
& size
= wxDefaultSize
,
531 long style
= wxTR_DEFAULT_STYLE
,
532 const wxValidator
&validator
= wxDefaultValidator
,
533 const wxString
& name
= wxTreeCtrlNameStr
)
534 : wxGenericTreeCtrl(parent
, id
, pos
, size
, style
, validator
, name
)
538 #endif // !__WXMSW__ || __WXUNIVERSAL__
540 #endif // wxUSE_TREECTRL
542 #endif // _GENERIC_TREECTRL_H_