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_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "treectlg.h"
21 #include "wx/scrolwin.h"
23 #include "wx/imaglist.h"
25 // -----------------------------------------------------------------------------
26 // forward declaration
27 // -----------------------------------------------------------------------------
29 class WXDLLEXPORT wxGenericTreeItem
;
31 class WXDLLEXPORT wxTreeItemData
;
33 class WXDLLEXPORT wxTreeRenameTimer
;
34 class WXDLLEXPORT wxTreeFindTimer
;
35 class WXDLLEXPORT wxTreeTextCtrl
;
36 class WXDLLEXPORT wxTextCtrl
;
38 // -----------------------------------------------------------------------------
39 // wxGenericTreeCtrl - the tree control
40 // -----------------------------------------------------------------------------
42 class WXDLLEXPORT wxGenericTreeCtrl
: public wxScrolledWindow
47 wxGenericTreeCtrl() { Init(); }
49 wxGenericTreeCtrl(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
50 const wxPoint
& pos
= wxDefaultPosition
,
51 const wxSize
& size
= wxDefaultSize
,
52 long style
= wxTR_DEFAULT_STYLE
,
53 const wxValidator
&validator
= wxDefaultValidator
,
54 const wxString
& name
= wxTreeCtrlNameStr
)
57 Create(parent
, id
, pos
, size
, style
, validator
, name
);
60 virtual ~wxGenericTreeCtrl();
62 bool Create(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
63 const wxPoint
& pos
= wxDefaultPosition
,
64 const wxSize
& size
= wxDefaultSize
,
65 long style
= wxTR_DEFAULT_STYLE
,
66 const wxValidator
&validator
= wxDefaultValidator
,
67 const wxString
& name
= wxTreeCtrlNameStr
);
72 // get the total number of items in the control
73 size_t GetCount() const;
75 // indent is the number of pixels the children are indented relative to
76 // the parents position. SetIndent() also redraws the control
78 unsigned int GetIndent() const { return m_indent
; }
79 void SetIndent(unsigned int indent
);
81 // spacing is the number of pixels between the start and the Text
82 unsigned int GetSpacing() const { return m_spacing
; }
83 void SetSpacing(unsigned int spacing
);
85 // image list: these functions allow to associate an image list with
86 // the control and retrieve it. Note that when assigned with
87 // SetImageList, the control does _not_ delete
88 // the associated image list when it's deleted in order to allow image
89 // lists to be shared between different controls. If you use
90 // AssignImageList, the control _does_ delete the image list.
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 virtual wxImageList
*GetImageList() const;
98 virtual wxImageList
*GetStateImageList() const;
99 virtual wxImageList
*GetButtonsImageList() const;
101 virtual void SetImageList(wxImageList
*imageList
);
102 virtual void SetStateImageList(wxImageList
*imageList
);
103 virtual void SetButtonsImageList(wxImageList
*imageList
);
104 virtual void AssignImageList(wxImageList
*imageList
);
105 virtual void AssignStateImageList(wxImageList
*imageList
);
106 virtual void AssignButtonsImageList(wxImageList
*imageList
);
108 virtual void SetDropEffectAboveItem( bool above
= false ) { m_dropEffectAboveItem
= above
; }
109 virtual bool GetDropEffectAboveItem() const { return m_dropEffectAboveItem
; }
111 // Functions to work with tree ctrl items.
116 // retrieve item's label
117 wxString
GetItemText(const wxTreeItemId
& item
) const;
118 // get one of the images associated with the item (normal by default)
119 virtual int GetItemImage(const wxTreeItemId
& item
,
120 wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const;
121 // get the data associated with the item
122 wxTreeItemData
*GetItemData(const wxTreeItemId
& item
) const;
124 // get the item's text colour
125 wxColour
GetItemTextColour(const wxTreeItemId
& item
) const;
127 // get the item's background colour
128 wxColour
GetItemBackgroundColour(const wxTreeItemId
& item
) const;
130 // get the item's font
131 wxFont
GetItemFont(const wxTreeItemId
& item
) const;
137 void SetItemText(const wxTreeItemId
& item
, const wxString
& text
);
138 // get one of the images associated with the item (normal by default)
139 virtual void SetItemImage(const wxTreeItemId
& item
, int image
,
140 wxTreeItemIcon which
= wxTreeItemIcon_Normal
);
141 // associate some data with the item
142 void SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
);
144 // force appearance of [+] button near the item. This is useful to
145 // allow the user to expand the items which don't have any children now
146 // - but instead add them only when needed, thus minimizing memory
147 // usage and loading time.
148 void SetItemHasChildren(const wxTreeItemId
& item
, bool has
= true);
150 // the item will be shown in bold
151 void SetItemBold(const wxTreeItemId
& item
, bool bold
= true);
153 // the item will be shown with a drop highlight
154 void SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
= true);
156 // set the item's text colour
157 void SetItemTextColour(const wxTreeItemId
& item
, const wxColour
& col
);
159 // set the item's background colour
160 void SetItemBackgroundColour(const wxTreeItemId
& item
, const wxColour
& col
);
162 // set the item's font (should be of the same height for all items)
163 void SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
);
165 // set the window font
166 virtual bool SetFont( const wxFont
&font
);
168 // set the styles. No need to specify a GetWindowStyle here since
169 // the base wxWindow member function will do it for us
170 void SetWindowStyle(const long styles
);
172 // item status inquiries
173 // ---------------------
175 // is the item visible (it might be outside the view or not expanded)?
176 bool IsVisible(const wxTreeItemId
& item
) const;
177 // does the item has any children?
178 bool HasChildren(const wxTreeItemId
& item
) const
179 { return ItemHasChildren(item
); }
180 bool ItemHasChildren(const wxTreeItemId
& item
) const;
181 // is the item expanded (only makes sense if HasChildren())?
182 bool IsExpanded(const wxTreeItemId
& item
) const;
183 // is this item currently selected (the same as has focus)?
184 bool IsSelected(const wxTreeItemId
& item
) const;
185 // is item text in bold font?
186 bool IsBold(const wxTreeItemId
& item
) const;
187 // does the layout include space for a button?
189 // number of children
190 // ------------------
192 // if 'recursively' is false, only immediate children count, otherwise
193 // the returned number is the number of all items in this branch
194 size_t GetChildrenCount(const wxTreeItemId
& item
,
195 bool recursively
= true) const;
200 // wxTreeItemId.IsOk() will return false if there is no such item
202 // get the root tree item
203 wxTreeItemId
GetRootItem() const { return m_anchor
; }
205 // get the item currently selected (may return NULL if no selection)
206 wxTreeItemId
GetSelection() const { return m_current
; }
208 // get the items currently selected, return the number of such item
209 size_t GetSelections(wxArrayTreeItemIds
&) const;
211 // get the parent of this item (may return NULL if root)
212 wxTreeItemId
GetItemParent(const wxTreeItemId
& item
) const;
214 #if WXWIN_COMPATIBILITY_2_2
215 // deprecated: Use GetItemParent instead.
216 wxDEPRECATED( wxTreeItemId
GetParent(const wxTreeItemId
& item
) const);
218 // Expose the base class method hidden by the one above. Not deprecatable.
219 wxWindow
*GetParent() const { return wxScrolledWindow::GetParent(); }
220 #endif // WXWIN_COMPATIBILITY_2_2
222 // for this enumeration function you must pass in a "cookie" parameter
223 // which is opaque for the application but is necessary for the library
224 // to make these functions reentrant (i.e. allow more than one
225 // enumeration on one and the same object simultaneously). Of course,
226 // the "cookie" passed to GetFirstChild() and GetNextChild() should be
229 // get the first child of this item
230 wxTreeItemId
GetFirstChild(const wxTreeItemId
& item
,
231 wxTreeItemIdValue
& cookie
) const;
232 // get the next child
233 wxTreeItemId
GetNextChild(const wxTreeItemId
& item
,
234 wxTreeItemIdValue
& cookie
) const;
235 // get the last child of this item - this method doesn't use cookies
236 wxTreeItemId
GetLastChild(const wxTreeItemId
& item
) const;
238 // get the next sibling of this item
239 wxTreeItemId
GetNextSibling(const wxTreeItemId
& item
) const;
240 // get the previous sibling
241 wxTreeItemId
GetPrevSibling(const wxTreeItemId
& item
) const;
243 // get first visible item
244 wxTreeItemId
GetFirstVisibleItem() const;
245 // get the next visible item: item must be visible itself!
246 // see IsVisible() and wxTreeCtrl::GetFirstVisibleItem()
247 wxTreeItemId
GetNextVisible(const wxTreeItemId
& item
) const;
248 // get the previous visible item: item must be visible itself!
249 wxTreeItemId
GetPrevVisible(const wxTreeItemId
& item
) const;
251 // Only for internal use right now, but should probably be public
252 wxTreeItemId
GetNext(const wxTreeItemId
& item
) const;
257 // add the root node to the tree
258 virtual wxTreeItemId
AddRoot(const wxString
& text
,
259 int image
= -1, int selectedImage
= -1,
260 wxTreeItemData
*data
= NULL
);
262 // insert a new item in as the first child of the parent
263 virtual wxTreeItemId
PrependItem(const wxTreeItemId
& parent
,
264 const wxString
& text
,
265 int image
= -1, int selectedImage
= -1,
266 wxTreeItemData
*data
= NULL
);
268 // insert a new item after a given one
269 virtual wxTreeItemId
InsertItem(const wxTreeItemId
& parent
,
270 const wxTreeItemId
& idPrevious
,
271 const wxString
& text
,
272 int image
= -1, int selectedImage
= -1,
273 wxTreeItemData
*data
= NULL
);
275 // insert a new item before the one with the given index
276 virtual wxTreeItemId
InsertItem(const wxTreeItemId
& parent
,
278 const wxString
& text
,
279 int image
= -1, int selectedImage
= -1,
280 wxTreeItemData
*data
= NULL
);
282 // insert a new item in as the last child of the parent
283 virtual wxTreeItemId
AppendItem(const wxTreeItemId
& parent
,
284 const wxString
& text
,
285 int image
= -1, int selectedImage
= -1,
286 wxTreeItemData
*data
= NULL
);
288 // delete this item and associated data if any
289 void Delete(const wxTreeItemId
& item
);
290 // delete all children (but don't delete the item itself)
291 // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
292 void DeleteChildren(const wxTreeItemId
& item
);
293 // delete all items from the tree
294 // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
295 void DeleteAllItems();
298 void Expand(const wxTreeItemId
& item
);
299 // expand this item and all subitems recursively
300 void ExpandAll(const wxTreeItemId
& item
);
301 // collapse the item without removing its children
302 void Collapse(const wxTreeItemId
& item
);
303 // collapse the item and remove all children
304 void CollapseAndReset(const wxTreeItemId
& item
);
305 // toggles the current state
306 void Toggle(const wxTreeItemId
& item
);
308 // remove the selection from currently selected item (if any)
310 // or from the given one (multiselect mode only)
311 void UnselectItem(const wxTreeItemId
& item
) { SelectItem(item
, false); }
315 void SelectItem(const wxTreeItemId
& item
, bool select
= true);
316 // toggle the item selection
317 void ToggleItemSelection(const wxTreeItemId
& item
)
319 SelectItem(item
, !IsSelected(item
));
322 // make sure this item is visible (expanding the parent item and/or
323 // scrolling to this item if necessary)
324 void EnsureVisible(const wxTreeItemId
& item
);
325 // scroll to this item (but don't expand its parent)
326 void ScrollTo(const wxTreeItemId
& item
);
327 void AdjustMyScrollbars();
329 // The first function is more portable (because easier to implement
330 // on other platforms), but the second one returns some extra info.
331 wxTreeItemId
HitTest(const wxPoint
& point
)
332 { int dummy
; return HitTest(point
, dummy
); }
333 wxTreeItemId
HitTest(const wxPoint
& point
, int& flags
);
335 // get the bounding rectangle of the item (or of its label only)
336 bool GetBoundingRect(const wxTreeItemId
& item
,
338 bool textOnly
= false) const;
340 // Start editing the item label: this (temporarily) replaces the item
341 // with a one line edit control. The item will be selected if it hadn't
343 void EditLabel( const wxTreeItemId
& item
) { Edit( item
); }
344 void Edit( const wxTreeItemId
& item
);
345 // returns a pointer to the text edit control if the item is being
346 // edited, NULL otherwise (it's assumed that no more than one item may
347 // be edited simultaneously)
348 wxTextCtrl
* GetEditControl() const;
351 // this function is called to compare 2 items and should return -1, 0
352 // or +1 if the first item is less than, equal to or greater than the
353 // second one. The base class version performs alphabetic comparaison
354 // of item labels (GetText)
355 virtual int OnCompareItems(const wxTreeItemId
& item1
,
356 const wxTreeItemId
& item2
);
357 // sort the children of this item using OnCompareItems
359 // NB: this function is not reentrant and not MT-safe (FIXME)!
360 void SortChildren(const wxTreeItemId
& item
);
362 #if WXWIN_COMPATIBILITY_2_4
363 // deprecated functions: use Set/GetItemImage directly
364 wxDEPRECATED( int GetItemSelectedImage(const wxTreeItemId
& item
) const );
365 wxDEPRECATED( void SetItemSelectedImage(const wxTreeItemId
& item
, int image
) );
367 // use the versions taking wxTreeItemIdValue cookies (note that
368 // GetNextChild() is not inside wxDEPRECATED on purpose, as otherwise we
369 // get twice as many warnings without any added benefit: it is always used
370 // with GetFirstChild() anyhow)
371 wxDEPRECATED( wxTreeItemId
GetFirstChild(const wxTreeItemId
& item
,
372 long& cookie
) const );
373 wxTreeItemId
GetNextChild(const wxTreeItemId
& item
,
375 #endif // WXWIN_COMPATIBILITY_2_4
377 virtual bool ShouldInheritColours() const { return false; }
379 // implementation only from now on
381 // overridden base class virtuals
382 virtual bool SetBackgroundColour(const wxColour
& colour
);
383 virtual bool SetForegroundColour(const wxColour
& colour
);
385 virtual void Freeze();
389 void OnPaint( wxPaintEvent
&event
);
390 void OnSetFocus( wxFocusEvent
&event
);
391 void OnKillFocus( wxFocusEvent
&event
);
392 void OnChar( wxKeyEvent
&event
);
393 void OnMouse( wxMouseEvent
&event
);
394 void OnGetToolTip( wxTreeEvent
&event
);
395 void OnInternalIdle( );
397 virtual wxSize
DoGetBestSize() const;
399 virtual wxVisualAttributes
GetDefaultAttributes() const
401 return GetClassDefaultAttributes(GetWindowVariant());
404 static wxVisualAttributes
405 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
407 // implementation helpers
409 friend class wxGenericTreeItem
;
410 friend class wxTreeRenameTimer
;
411 friend class wxTreeFindTimer
;
412 friend class wxTreeTextCtrl
;
417 wxGenericTreeItem
*m_anchor
;
418 wxGenericTreeItem
*m_current
,
420 // A hint to select a parent item after deleting a child
422 unsigned short m_indent
;
423 unsigned short m_spacing
;
426 wxBrush
*m_hilightBrush
,
427 *m_hilightUnfocusedBrush
;
430 bool m_ownsImageListNormal
,
431 m_ownsImageListState
,
432 m_ownsImageListButtons
;
433 bool m_isDragging
; // true between BEGIN/END drag events
434 bool m_lastOnSame
; // last click on the same item as prev
435 wxImageList
*m_imageListNormal
,
442 wxGenericTreeItem
*m_dropTarget
;
443 wxCursor m_oldCursor
; // cursor is changed while dragging
444 wxGenericTreeItem
*m_oldSelection
;
445 wxGenericTreeItem
*m_underMouse
; // for visual effects
446 wxTreeTextCtrl
*m_textCtrl
;
448 wxTimer
*m_renameTimer
;
450 // incremental search data
451 wxString m_findPrefix
;
452 wxTimer
*m_findTimer
;
454 bool m_dropEffectAboveItem
;
456 // the common part of all ctors
460 void SendDeleteEvent(wxGenericTreeItem
*itemBeingDeleted
);
462 void DrawBorder(const wxTreeItemId
& item
);
463 void DrawLine(const wxTreeItemId
& item
, bool below
);
464 void DrawDropEffect(wxGenericTreeItem
*item
);
466 void DoSelectItem(const wxTreeItemId
& id
,
467 bool unselect_others
= true,
468 bool extended_select
= false);
470 wxTreeItemId
DoInsertItem(const wxTreeItemId
& parent
,
472 const wxString
& text
,
473 int image
, int selectedImage
,
474 wxTreeItemData
*data
);
476 // called by wxTextTreeCtrl when it marks itself for deletion
477 void ResetTextControl();
479 // find the first item starting with the given prefix after the given item
480 wxTreeItemId
FindItem(const wxTreeItemId
& id
, const wxString
& prefix
) const;
482 bool HasButtons() const { return HasFlag(wxTR_HAS_BUTTONS
); }
484 void CalculateLineHeight();
485 int GetLineHeight(wxGenericTreeItem
*item
) const;
486 void PaintLevel( wxGenericTreeItem
*item
, wxDC
& dc
, int level
, int &y
);
487 void PaintItem( wxGenericTreeItem
*item
, wxDC
& dc
);
489 void CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
);
490 void CalculatePositions();
491 void CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
);
493 void RefreshSubtree( wxGenericTreeItem
*item
);
494 void RefreshLine( wxGenericTreeItem
*item
);
496 // redraw all selected items
497 void RefreshSelected();
499 // RefreshSelected() recursive helper
500 void RefreshSelectedUnder(wxGenericTreeItem
*item
);
502 void OnRenameTimer();
503 bool OnRenameAccept(wxGenericTreeItem
*item
, const wxString
& value
);
504 void OnRenameCancelled(wxGenericTreeItem
*item
);
506 void FillArray(wxGenericTreeItem
*, wxArrayTreeItemIds
&) const;
507 void SelectItemRange( wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
);
508 bool TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
);
509 bool TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
);
510 void UnselectAllChildren( wxGenericTreeItem
*item
);
511 void ChildrenClosing(wxGenericTreeItem
* item
);
514 DECLARE_EVENT_TABLE()
515 DECLARE_DYNAMIC_CLASS(wxGenericTreeCtrl
)
516 DECLARE_NO_COPY_CLASS(wxGenericTreeCtrl
)
519 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
521 * wxTreeCtrl has to be a real class or we have problems with
522 * the run-time information.
525 class WXDLLEXPORT wxTreeCtrl
: public wxGenericTreeCtrl
527 DECLARE_DYNAMIC_CLASS(wxTreeCtrl
)
532 wxTreeCtrl(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
533 const wxPoint
& pos
= wxDefaultPosition
,
534 const wxSize
& size
= wxDefaultSize
,
535 long style
= wxTR_DEFAULT_STYLE
,
536 const wxValidator
&validator
= wxDefaultValidator
,
537 const wxString
& name
= wxTreeCtrlNameStr
)
538 : wxGenericTreeCtrl(parent
, id
, pos
, size
, style
, validator
, name
)
542 #endif // !__WXMSW__ || __WXUNIVERSAL__
544 #endif // wxUSE_TREECTRL
546 #endif // _GENERIC_TREECTRL_H_