]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/treectlg.h
streamlining code for extra controls
[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"
91b8de8d 19
f135ff73
VZ
20// -----------------------------------------------------------------------------
21// forward declaration
22// -----------------------------------------------------------------------------
c801d85f 23
b5dbe15d 24class WXDLLIMPEXP_FWD_CORE wxGenericTreeItem;
c801d85f 25
b5dbe15d 26class WXDLLIMPEXP_FWD_CORE wxTreeItemData;
e179bd65 27
b5dbe15d
VS
28class WXDLLIMPEXP_FWD_CORE wxTreeRenameTimer;
29class WXDLLIMPEXP_FWD_CORE wxTreeFindTimer;
30class WXDLLIMPEXP_FWD_CORE wxTreeTextCtrl;
31class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
74bedbeb 32
f135ff73 33// -----------------------------------------------------------------------------
484523cf 34// wxGenericTreeCtrl - the tree control
f135ff73 35// -----------------------------------------------------------------------------
c801d85f 36
53a2db12 37class WXDLLIMPEXP_CORE wxGenericTreeCtrl : public wxTreeCtrlBase,
8cee4a30 38 public wxScrollHelper
c801d85f 39{
a32dd690 40public:
f135ff73
VZ
41 // creation
42 // --------
8cee4a30
VZ
43
44 wxGenericTreeCtrl() : wxTreeCtrlBase(), wxScrollHelper(this) { Init(); }
f135ff73 45
ca65c044 46 wxGenericTreeCtrl(wxWindow *parent, wxWindowID id = wxID_ANY,
f135ff73
VZ
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize,
618a5e38 49 long style = wxTR_DEFAULT_STYLE,
bfc6fde4 50 const wxValidator &validator = wxDefaultValidator,
62448488 51 const wxString& name = wxTreeCtrlNameStr)
8cee4a30
VZ
52 : wxTreeCtrlBase(),
53 wxScrollHelper(this)
f135ff73 54 {
57591e0e 55 Init();
4f22cf8d 56 Create(parent, id, pos, size, style, validator, name);
f135ff73
VZ
57 }
58
484523cf 59 virtual ~wxGenericTreeCtrl();
f135ff73 60
ca65c044 61 bool Create(wxWindow *parent, wxWindowID id = wxID_ANY,
f135ff73
VZ
62 const wxPoint& pos = wxDefaultPosition,
63 const wxSize& size = wxDefaultSize,
618a5e38 64 long style = wxTR_DEFAULT_STYLE,
bfc6fde4 65 const wxValidator &validator = wxDefaultValidator,
62448488 66 const wxString& name = wxTreeCtrlNameStr);
f135ff73 67
f135ff73 68
8cee4a30
VZ
69 // implement base class pure virtuals
70 // ----------------------------------
f135ff73 71
027d45e8 72 virtual unsigned int GetCount() const;
e3d64157 73
8cee4a30
VZ
74 virtual unsigned int GetIndent() const { return m_indent; }
75 virtual void SetIndent(unsigned int indent);
f135ff73 76
f135ff73 77
8cee4a30
VZ
78 virtual void SetImageList(wxImageList *imageList);
79 virtual void SetStateImageList(wxImageList *imageList);
80
81 virtual wxString GetItemText(const wxTreeItemId& item) const;
a78955e3 82 virtual int GetItemImage(const wxTreeItemId& item,
74b31181 83 wxTreeItemIcon which = wxTreeItemIcon_Normal) const;
8cee4a30
VZ
84 virtual wxTreeItemData *GetItemData(const wxTreeItemId& item) const;
85 virtual wxColour GetItemTextColour(const wxTreeItemId& item) const;
86 virtual wxColour GetItemBackgroundColour(const wxTreeItemId& item) const;
87 virtual wxFont GetItemFont(const wxTreeItemId& item) const;
88
89 virtual void SetItemText(const wxTreeItemId& item, const wxString& text);
90 virtual void SetItemImage(const wxTreeItemId& item,
91 int image,
92 wxTreeItemIcon which = wxTreeItemIcon_Normal);
93 virtual void SetItemData(const wxTreeItemId& item, wxTreeItemData *data);
94
95 virtual void SetItemHasChildren(const wxTreeItemId& item, bool has = true);
96 virtual void SetItemBold(const wxTreeItemId& item, bool bold = true);
97 virtual void SetItemDropHighlight(const wxTreeItemId& item, bool highlight = true);
98 virtual void SetItemTextColour(const wxTreeItemId& item, const wxColour& col);
99 virtual void SetItemBackgroundColour(const wxTreeItemId& item, const wxColour& col);
100 virtual void SetItemFont(const wxTreeItemId& item, const wxFont& font);
101
102 virtual bool IsVisible(const wxTreeItemId& item) const;
103 virtual bool ItemHasChildren(const wxTreeItemId& item) const;
104 virtual bool IsExpanded(const wxTreeItemId& item) const;
105 virtual bool IsSelected(const wxTreeItemId& item) const;
106 virtual bool IsBold(const wxTreeItemId& item) const;
107
108 virtual size_t GetChildrenCount(const wxTreeItemId& item,
109 bool recursively = true) const;
2b5f62a0 110
8cee4a30
VZ
111 // navigation
112 // ----------
2b5f62a0 113
8cee4a30 114 virtual wxTreeItemId GetRootItem() const { return m_anchor; }
d1f7240a
VZ
115 virtual wxTreeItemId GetSelection() const
116 {
117 wxASSERT_MSG( !HasFlag(wxTR_MULTIPLE),
118 wxT("must use GetSelections() with this control") );
119
120 return m_current;
121 }
8cee4a30 122 virtual size_t GetSelections(wxArrayTreeItemIds&) const;
febebac1 123 virtual wxTreeItemId GetFocusedItem() const { return m_current; }
2b5f62a0 124
8cee4a30
VZ
125 virtual wxTreeItemId GetItemParent(const wxTreeItemId& item) const;
126 virtual wxTreeItemId GetFirstChild(const wxTreeItemId& item,
127 wxTreeItemIdValue& cookie) const;
128 virtual wxTreeItemId GetNextChild(const wxTreeItemId& item,
129 wxTreeItemIdValue& cookie) const;
130 virtual wxTreeItemId GetLastChild(const wxTreeItemId& item) const;
131 virtual wxTreeItemId GetNextSibling(const wxTreeItemId& item) const;
132 virtual wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const;
f135ff73 133
8cee4a30
VZ
134 virtual wxTreeItemId GetFirstVisibleItem() const;
135 virtual wxTreeItemId GetNextVisible(const wxTreeItemId& item) const;
136 virtual wxTreeItemId GetPrevVisible(const wxTreeItemId& item) const;
f135ff73 137
f135ff73 138
8cee4a30
VZ
139 // operations
140 // ----------
ef44a621 141
8cee4a30
VZ
142 virtual wxTreeItemId AddRoot(const wxString& text,
143 int image = -1, int selectedImage = -1,
144 wxTreeItemData *data = NULL);
9fce43b7 145
8cee4a30
VZ
146 virtual void Delete(const wxTreeItemId& item);
147 virtual void DeleteChildren(const wxTreeItemId& item);
148 virtual void DeleteAllItems();
9ec64fa7 149
8cee4a30
VZ
150 virtual void Expand(const wxTreeItemId& item);
151 virtual void Collapse(const wxTreeItemId& item);
152 virtual void CollapseAndReset(const wxTreeItemId& item);
153 virtual void Toggle(const wxTreeItemId& item);
9ec64fa7 154
8cee4a30
VZ
155 virtual void Unselect();
156 virtual void UnselectAll();
157 virtual void SelectItem(const wxTreeItemId& item, bool select = true);
5cb3a695 158 virtual void SelectChildren(const wxTreeItemId& parent);
9ec64fa7 159
8cee4a30
VZ
160 virtual void EnsureVisible(const wxTreeItemId& item);
161 virtual void ScrollTo(const wxTreeItemId& item);
3da2715f 162
8cee4a30
VZ
163 virtual wxTextCtrl *EditLabel(const wxTreeItemId& item,
164 wxClassInfo* textCtrlClass = CLASSINFO(wxTextCtrl));
165 virtual wxTextCtrl *GetEditControl() const;
166 virtual void EndEditLabel(const wxTreeItemId& item,
167 bool discardChanges = false);
4832f7c0 168
8cee4a30 169 virtual void SortChildren(const wxTreeItemId& item);
f135ff73 170
8cee4a30
VZ
171 // items geometry
172 // --------------
f135ff73 173
8cee4a30
VZ
174 virtual bool GetBoundingRect(const wxTreeItemId& item,
175 wxRect& rect,
176 bool textOnly = false) const;
f135ff73 177
f135ff73 178
8cee4a30
VZ
179 // this version specific methods
180 // -----------------------------
88ac883a 181
8cee4a30
VZ
182 wxImageList *GetButtonsImageList() const { return m_imageListButtons; }
183 void SetButtonsImageList(wxImageList *imageList);
184 void AssignButtonsImageList(wxImageList *imageList);
99006e44 185
8cee4a30
VZ
186 void SetDropEffectAboveItem( bool above = false ) { m_dropEffectAboveItem = above; }
187 bool GetDropEffectAboveItem() const { return m_dropEffectAboveItem; }
f135ff73 188
1ed01484 189 wxTreeItemId GetNext(const wxTreeItemId& item) const;
1ed01484 190
8cee4a30
VZ
191#if WXWIN_COMPATIBILITY_2_6
192 // use EditLabel() instead
193 void Edit( const wxTreeItemId& item ) { EditLabel(item); }
194#endif // WXWIN_COMPATIBILITY_2_6
f135ff73 195
3dbeaa52 196 // implementation only from now on
74b31181 197
7009f411
VZ
198 // overridden base class virtuals
199 virtual bool SetBackgroundColour(const wxColour& colour);
200 virtual bool SetForegroundColour(const wxColour& colour);
201
3e6e5147 202 virtual void Refresh(bool eraseBackground = true, const wxRect *rect = NULL);
ca65c044 203
8cee4a30
VZ
204 virtual bool SetFont( const wxFont &font );
205 virtual void SetWindowStyle(const long styles);
206
a43a4f9d 207 // callbacks
3db7be80
RR
208 void OnPaint( wxPaintEvent &event );
209 void OnSetFocus( wxFocusEvent &event );
210 void OnKillFocus( wxFocusEvent &event );
f135ff73 211 void OnChar( wxKeyEvent &event );
3db7be80 212 void OnMouse( wxMouseEvent &event );
73bb6776 213 void OnGetToolTip( wxTreeEvent &event );
ccdbdc89 214 void OnSize( wxSizeEvent &event );
5180055b 215 void OnInternalIdle( );
f135ff73 216
35d4c967
RD
217 virtual wxVisualAttributes GetDefaultAttributes() const
218 {
219 return GetClassDefaultAttributes(GetWindowVariant());
220 }
221
222 static wxVisualAttributes
223 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
ca65c044 224
3dbeaa52 225 // implementation helpers
8cee4a30
VZ
226 void AdjustMyScrollbars();
227
228 WX_FORWARD_TO_SCROLL_HELPER()
229
f135ff73 230protected:
91b8de8d 231 friend class wxGenericTreeItem;
e179bd65 232 friend class wxTreeRenameTimer;
cb59313c 233 friend class wxTreeFindTimer;
e179bd65 234 friend class wxTreeTextCtrl;
91b8de8d 235
eff869aa
RR
236 wxFont m_normalFont;
237 wxFont m_boldFont;
238
f135ff73 239 wxGenericTreeItem *m_anchor;
cb59313c 240 wxGenericTreeItem *m_current,
3e3a7b97
JS
241 *m_key_current,
242 // A hint to select a parent item after deleting a child
243 *m_select_me;
618a5e38 244 unsigned short m_indent;
f135ff73
VZ
245 int m_lineHeight;
246 wxPen m_dottedPen;
b771aa29
VZ
247 wxBrush *m_hilightBrush,
248 *m_hilightUnfocusedBrush;
618a5e38
RR
249 bool m_hasFocus;
250 bool m_dirty;
8cee4a30 251 bool m_ownsImageListButtons;
618a5e38 252 bool m_isDragging; // true between BEGIN/END drag events
618a5e38 253 bool m_lastOnSame; // last click on the same item as prev
8cee4a30 254 wxImageList *m_imageListButtons;
3dbeaa52 255
bbe0af5b 256 int m_dragCount;
fd9811b1 257 wxPoint m_dragStart;
3dbeaa52 258 wxGenericTreeItem *m_dropTarget;
943d28e4
VZ
259 wxCursor m_oldCursor; // cursor is changed while dragging
260 wxGenericTreeItem *m_oldSelection;
f8b043e7 261 wxGenericTreeItem *m_underMouse; // for visual effects
03647350 262
c0d2308b 263 enum { NoEffect, BorderEffect, AboveEffect, BelowEffect } m_dndEffect;
03647350
VZ
264 wxGenericTreeItem *m_dndEffectItem;
265
fbb12260 266 wxTreeTextCtrl *m_textCtrl;
03647350 267
3dbeaa52 268
e179bd65 269 wxTimer *m_renameTimer;
cb59313c 270
cb59313c
VZ
271 // incremental search data
272 wxString m_findPrefix;
273 wxTimer *m_findTimer;
a6fb8636 274
e3d64157 275 bool m_dropEffectAboveItem;
f135ff73
VZ
276
277 // the common part of all ctors
278 void Init();
279
03647350 280 // overridden wxWindow methods
17808a75
VZ
281 virtual void DoThaw();
282
f135ff73 283 // misc helpers
cb59313c
VZ
284 void SendDeleteEvent(wxGenericTreeItem *itemBeingDeleted);
285
286 void DrawBorder(const wxTreeItemId& item);
287 void DrawLine(const wxTreeItemId& item, bool below);
288 void DrawDropEffect(wxGenericTreeItem *item);
289
78f12104 290 void DoSelectItem(const wxTreeItemId& id,
ca65c044
WS
291 bool unselect_others = true,
292 bool extended_select = false);
78f12104 293
03966fcb
RR
294 virtual int DoGetItemState(const wxTreeItemId& item) const;
295 virtual void DoSetItemState(const wxTreeItemId& item, int state);
296
8cee4a30
VZ
297 virtual wxTreeItemId DoInsertItem(const wxTreeItemId& parent,
298 size_t previous,
299 const wxString& text,
300 int image,
301 int selectedImage,
302 wxTreeItemData *data);
303 virtual wxTreeItemId DoInsertAfter(const wxTreeItemId& parent,
304 const wxTreeItemId& idPrevious,
305 const wxString& text,
306 int image = -1, int selImage = -1,
307 wxTreeItemData *data = NULL);
be0e5d69 308 virtual wxTreeItemId DoTreeHitTest(const wxPoint& point, int& flags) const;
cb59313c 309
fbb12260
JS
310 // called by wxTextTreeCtrl when it marks itself for deletion
311 void ResetTextControl();
312
cb59313c
VZ
313 // find the first item starting with the given prefix after the given item
314 wxTreeItemId FindItem(const wxTreeItemId& id, const wxString& prefix) const;
315
8fcf6e32 316 bool HasButtons() const { return HasFlag(wxTR_HAS_BUTTONS); }
f135ff73 317
618a5e38 318 void CalculateLineHeight();
91b8de8d 319 int GetLineHeight(wxGenericTreeItem *item) const;
ef44a621
VZ
320 void PaintLevel( wxGenericTreeItem *item, wxDC& dc, int level, int &y );
321 void PaintItem( wxGenericTreeItem *item, wxDC& dc);
f135ff73
VZ
322
323 void CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y );
324 void CalculatePositions();
325
326 void RefreshSubtree( wxGenericTreeItem *item );
327 void RefreshLine( wxGenericTreeItem *item );
9dfbf520 328
b771aa29
VZ
329 // redraw all selected items
330 void RefreshSelected();
331
332 // RefreshSelected() recursive helper
333 void RefreshSelectedUnder(wxGenericTreeItem *item);
334
e179bd65 335 void OnRenameTimer();
edb8f298 336 bool OnRenameAccept(wxGenericTreeItem *item, const wxString& value);
dd23c25c 337 void OnRenameCancelled(wxGenericTreeItem *item);
43fa96a8 338
91b8de8d 339 void FillArray(wxGenericTreeItem*, wxArrayTreeItemIds&) const;
88ac883a
VZ
340 void SelectItemRange( wxGenericTreeItem *item1, wxGenericTreeItem *item2 );
341 bool TagAllChildrenUntilLast(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select);
342 bool TagNextChildren(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select);
343 void UnselectAllChildren( wxGenericTreeItem *item );
0cf3b542 344 void ChildrenClosing(wxGenericTreeItem* item);
88ac883a 345
27f8357f
VZ
346 void DoDirtyProcessing();
347
54a4121a
VZ
348 virtual wxSize DoGetBestSize() const;
349
a32dd690 350private:
f135ff73 351 DECLARE_EVENT_TABLE()
484523cf 352 DECLARE_DYNAMIC_CLASS(wxGenericTreeCtrl)
c0c133e1 353 wxDECLARE_NO_COPY_CLASS(wxGenericTreeCtrl);
c801d85f
KB
354};
355
3a5bcc4d 356#if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
233058c7
JS
357/*
358 * wxTreeCtrl has to be a real class or we have problems with
359 * the run-time information.
360 */
361
53a2db12 362class WXDLLIMPEXP_CORE wxTreeCtrl: public wxGenericTreeCtrl
233058c7 363{
233058c7
JS
364 DECLARE_DYNAMIC_CLASS(wxTreeCtrl)
365
618a5e38 366public:
233058c7
JS
367 wxTreeCtrl() {}
368
ca65c044 369 wxTreeCtrl(wxWindow *parent, wxWindowID id = wxID_ANY,
233058c7
JS
370 const wxPoint& pos = wxDefaultPosition,
371 const wxSize& size = wxDefaultSize,
618a5e38 372 long style = wxTR_DEFAULT_STYLE,
233058c7
JS
373 const wxValidator &validator = wxDefaultValidator,
374 const wxString& name = wxTreeCtrlNameStr)
618a5e38 375 : wxGenericTreeCtrl(parent, id, pos, size, style, validator, name)
233058c7 376 {
233058c7 377 }
233058c7 378};
3a5bcc4d 379#endif // !__WXMSW__ || __WXUNIVERSAL__
233058c7 380
1e6feb95
VZ
381#endif // wxUSE_TREECTRL
382
f135ff73 383#endif // _GENERIC_TREECTRL_H_