]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/treectlg.h
Better fix for modal/modeless wizards.
[wxWidgets.git] / include / wx / generic / treectlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/treectlg.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 licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _GENERIC_TREECTRL_H_
13 #define _GENERIC_TREECTRL_H_
14
15 #if wxUSE_TREECTRL
16
17 #include "wx/scrolwin.h"
18 #include "wx/pen.h"
19 #include "wx/imaglist.h"
20
21 // -----------------------------------------------------------------------------
22 // forward declaration
23 // -----------------------------------------------------------------------------
24
25 class WXDLLEXPORT wxGenericTreeItem;
26
27 class WXDLLEXPORT wxTreeItemData;
28
29 class WXDLLEXPORT wxTreeRenameTimer;
30 class WXDLLEXPORT wxTreeFindTimer;
31 class WXDLLEXPORT wxTreeTextCtrl;
32 class WXDLLEXPORT wxTextCtrl;
33
34 // -----------------------------------------------------------------------------
35 // wxGenericTreeCtrl - the tree control
36 // -----------------------------------------------------------------------------
37
38 class WXDLLEXPORT wxGenericTreeCtrl : public wxScrolledWindow
39 {
40 public:
41 // creation
42 // --------
43 wxGenericTreeCtrl() { Init(); }
44
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)
51 {
52 Init();
53 Create(parent, id, pos, size, style, validator, name);
54 }
55
56 virtual ~wxGenericTreeCtrl();
57
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);
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
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);
80
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.
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.
93 virtual wxImageList *GetImageList() const;
94 virtual wxImageList *GetStateImageList() const;
95 virtual wxImageList *GetButtonsImageList() const;
96
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);
103
104 virtual void SetDropEffectAboveItem( bool above = false ) { m_dropEffectAboveItem = above; }
105 virtual bool GetDropEffectAboveItem() const { return m_dropEffectAboveItem; }
106
107 // Functions to work with tree ctrl items.
108
109 // accessors
110 // ---------
111
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;
119
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
129 // modifiers
130 // ---------
131
132 // set item's label
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);
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.
144 void SetItemHasChildren(const wxTreeItemId& item, bool has = true);
145
146 // the item will be shown in bold
147 void SetItemBold(const wxTreeItemId& item, bool bold = true);
148
149 // the item will be shown with a drop highlight
150 void SetItemDropHighlight(const wxTreeItemId& item, bool highlight = true);
151
152 // set the item's text colour
153 void SetItemTextColour(const wxTreeItemId& item, const wxColour& col);
154
155 // set the item's background colour
156 void SetItemBackgroundColour(const wxTreeItemId& item, const wxColour& col);
157
158 // set the item's font (should be of the same height for all items)
159 void SetItemFont(const wxTreeItemId& item, const wxFont& font);
160
161 // set the window font
162 virtual bool SetFont( const wxFont &font );
163
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
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?
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?
184
185 // number of children
186 // ------------------
187
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;
192
193 // navigation
194 // ----------
195
196 // wxTreeItemId.IsOk() will return false if there is no such item
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
204 // get the items currently selected, return the number of such item
205 size_t GetSelections(wxArrayTreeItemIds&) const;
206
207 // get the parent of this item (may return NULL if root)
208 wxTreeItemId GetItemParent(const wxTreeItemId& item) const;
209
210 #if WXWIN_COMPATIBILITY_2_2
211 // deprecated: Use GetItemParent instead.
212 wxDEPRECATED( wxTreeItemId GetParent(const wxTreeItemId& item) const);
213
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
217
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
223 // the same!
224
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;
233
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;
238
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;
246
247 // Only for internal use right now, but should probably be public
248 wxTreeItemId GetNext(const wxTreeItemId& item) const;
249
250 // operations
251 // ----------
252
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);
257
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);
263
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);
270
271 // insert a new item before the one with the given index
272 virtual wxTreeItemId InsertItem(const wxTreeItemId& parent,
273 size_t index,
274 const wxString& text,
275 int image = -1, int selectedImage = -1,
276 wxTreeItemData *data = NULL);
277
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);
283
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();
292
293 // expand this item
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);
303
304 // remove the selection from currently selected item (if any)
305 void Unselect();
306 // or from the given one (multiselect mode only)
307 void UnselectItem(const wxTreeItemId& item) { SelectItem(item, false); }
308 // or from all
309 void UnselectAll();
310 // select this item
311 void SelectItem(const wxTreeItemId& item, bool select = true);
312 // toggle the item selection
313 void ToggleItemSelection(const wxTreeItemId& item)
314 {
315 SelectItem(item, !IsSelected(item));
316 }
317
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();
324
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);
330
331 // get the bounding rectangle of the item (or of its label only)
332 bool GetBoundingRect(const wxTreeItemId& item,
333 wxRect& rect,
334 bool textOnly = false) const;
335
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
338 // been before.
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;
345
346 // sorting
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
354 //
355 // NB: this function is not reentrant and not MT-safe (FIXME)!
356 void SortChildren(const wxTreeItemId& item);
357
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) );
362
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,
370 long& cookie) const;
371 #endif // WXWIN_COMPATIBILITY_2_4
372
373 virtual bool ShouldInheritColours() const { return false; }
374
375 // implementation only from now on
376
377 // overridden base class virtuals
378 virtual bool SetBackgroundColour(const wxColour& colour);
379 virtual bool SetForegroundColour(const wxColour& colour);
380
381 virtual void Freeze();
382 virtual void Thaw();
383
384 // callbacks
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( );
392
393 virtual wxSize DoGetBestSize() const;
394
395 virtual wxVisualAttributes GetDefaultAttributes() const
396 {
397 return GetClassDefaultAttributes(GetWindowVariant());
398 }
399
400 static wxVisualAttributes
401 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
402
403 // implementation helpers
404 protected:
405 friend class wxGenericTreeItem;
406 friend class wxTreeRenameTimer;
407 friend class wxTreeFindTimer;
408 friend class wxTreeTextCtrl;
409
410 wxFont m_normalFont;
411 wxFont m_boldFont;
412
413 wxGenericTreeItem *m_anchor;
414 wxGenericTreeItem *m_current,
415 *m_key_current,
416 // A hint to select a parent item after deleting a child
417 *m_select_me;
418 unsigned short m_indent;
419 unsigned short m_spacing;
420 int m_lineHeight;
421 wxPen m_dottedPen;
422 wxBrush *m_hilightBrush,
423 *m_hilightUnfocusedBrush;
424 bool m_hasFocus;
425 bool m_dirty;
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,
432 *m_imageListState,
433 *m_imageListButtons;
434
435 int m_freezeCount;
436 int m_dragCount;
437 wxPoint m_dragStart;
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;
443
444 wxTimer *m_renameTimer;
445
446 // incremental search data
447 wxString m_findPrefix;
448 wxTimer *m_findTimer;
449
450 bool m_dropEffectAboveItem;
451
452 // the common part of all ctors
453 void Init();
454
455 // misc helpers
456 void SendDeleteEvent(wxGenericTreeItem *itemBeingDeleted);
457
458 void DrawBorder(const wxTreeItemId& item);
459 void DrawLine(const wxTreeItemId& item, bool below);
460 void DrawDropEffect(wxGenericTreeItem *item);
461
462 void DoSelectItem(const wxTreeItemId& id,
463 bool unselect_others = true,
464 bool extended_select = false);
465
466 wxTreeItemId DoInsertItem(const wxTreeItemId& parent,
467 size_t previous,
468 const wxString& text,
469 int image, int selectedImage,
470 wxTreeItemData *data);
471
472 // called by wxTextTreeCtrl when it marks itself for deletion
473 void ResetTextControl();
474
475 // find the first item starting with the given prefix after the given item
476 wxTreeItemId FindItem(const wxTreeItemId& id, const wxString& prefix) const;
477
478 bool HasButtons() const { return HasFlag(wxTR_HAS_BUTTONS); }
479
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);
484
485 void CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y );
486 void CalculatePositions();
487 void CalculateSize( wxGenericTreeItem *item, wxDC &dc );
488
489 void RefreshSubtree( wxGenericTreeItem *item );
490 void RefreshLine( wxGenericTreeItem *item );
491
492 // redraw all selected items
493 void RefreshSelected();
494
495 // RefreshSelected() recursive helper
496 void RefreshSelectedUnder(wxGenericTreeItem *item);
497
498 void OnRenameTimer();
499 bool OnRenameAccept(wxGenericTreeItem *item, const wxString& value);
500 void OnRenameCancelled(wxGenericTreeItem *item);
501
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);
508
509 private:
510 DECLARE_EVENT_TABLE()
511 DECLARE_DYNAMIC_CLASS(wxGenericTreeCtrl)
512 DECLARE_NO_COPY_CLASS(wxGenericTreeCtrl)
513 };
514
515 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
516 /*
517 * wxTreeCtrl has to be a real class or we have problems with
518 * the run-time information.
519 */
520
521 class WXDLLEXPORT wxTreeCtrl: public wxGenericTreeCtrl
522 {
523 DECLARE_DYNAMIC_CLASS(wxTreeCtrl)
524
525 public:
526 wxTreeCtrl() {}
527
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)
535 {
536 }
537 };
538 #endif // !__WXMSW__ || __WXUNIVERSAL__
539
540 #endif // wxUSE_TREECTRL
541
542 #endif // _GENERIC_TREECTRL_H_
543