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