]> git.saurik.com Git - wxWidgets.git/blob - src/msw/treectrl.cpp
no changes
[wxWidgets.git] / src / msw / treectrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/treectrl.cpp
3 // Purpose: wxTreeCtrl
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin to be less MSW-specific on 10.10.98
6 // Created: 1997
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "treectrl.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #if wxUSE_TREECTRL
32
33 #include "wx/msw/private.h"
34
35 // Set this to 1 to be _absolutely_ sure that repainting will work for all
36 // comctl32.dll versions
37 #define wxUSE_COMCTL32_SAFELY 0
38
39 #include "wx/app.h"
40 #include "wx/log.h"
41 #include "wx/dynarray.h"
42 #include "wx/imaglist.h"
43 #include "wx/settings.h"
44 #include "wx/msw/treectrl.h"
45 #include "wx/msw/dragimag.h"
46
47 // include <commctrl.h> "properly"
48 #include "wx/msw/wrapcctl.h"
49
50 // macros to hide the cast ugliness
51 // --------------------------------
52
53 // ptr is the real item id, i.e. wxTreeItemId::m_pItem
54 #define HITEM_PTR(ptr) (HTREEITEM)(ptr)
55
56 // item here is a wxTreeItemId
57 #define HITEM(item) HITEM_PTR((item).m_pItem)
58
59 // the native control doesn't support multiple selections under MSW and we
60 // have 2 ways to emulate them: either using TVS_CHECKBOXES style and let
61 // checkboxes be the selection status (checked == selected) or by really
62 // emulating everything, i.e. intercepting mouse and key events &c. The first
63 // approach is much easier but doesn't work with comctl32.dll < 4.71 and also
64 // looks quite ugly.
65 #define wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE 0
66
67 // ----------------------------------------------------------------------------
68 // private functions
69 // ----------------------------------------------------------------------------
70
71 // wrapper for TreeView_HitTest
72 static HTREEITEM GetItemFromPoint(HWND hwndTV, int x, int y)
73 {
74 TV_HITTESTINFO tvht;
75 tvht.pt.x = x;
76 tvht.pt.y = y;
77
78 return (HTREEITEM)TreeView_HitTest(hwndTV, &tvht);
79 }
80
81 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
82
83 // wrappers for TreeView_GetItem/TreeView_SetItem
84 static bool IsItemSelected(HWND hwndTV, HTREEITEM hItem)
85 {
86
87 TV_ITEM tvi;
88 tvi.mask = TVIF_STATE | TVIF_HANDLE;
89 tvi.stateMask = TVIS_SELECTED;
90 tvi.hItem = hItem;
91
92 if ( !TreeView_GetItem(hwndTV, &tvi) )
93 {
94 wxLogLastError(wxT("TreeView_GetItem"));
95 }
96
97 return (tvi.state & TVIS_SELECTED) != 0;
98 }
99
100 static void SelectItem(HWND hwndTV, HTREEITEM hItem, bool select = true)
101 {
102 TV_ITEM tvi;
103 tvi.mask = TVIF_STATE | TVIF_HANDLE;
104 tvi.stateMask = TVIS_SELECTED;
105 tvi.state = select ? TVIS_SELECTED : 0;
106 tvi.hItem = hItem;
107
108 if ( TreeView_SetItem(hwndTV, &tvi) == -1 )
109 {
110 wxLogLastError(wxT("TreeView_SetItem"));
111 }
112 }
113
114 static inline void UnselectItem(HWND hwndTV, HTREEITEM htItem)
115 {
116 SelectItem(hwndTV, htItem, false);
117 }
118
119 static inline void ToggleItemSelection(HWND hwndTV, HTREEITEM htItem)
120 {
121 SelectItem(hwndTV, htItem, !IsItemSelected(hwndTV, htItem));
122 }
123
124 // helper function which selects all items in a range and, optionally,
125 // unselects all others
126 static void SelectRange(HWND hwndTV,
127 HTREEITEM htFirst,
128 HTREEITEM htLast,
129 bool unselectOthers = true)
130 {
131 // find the first (or last) item and select it
132 bool cont = true;
133 HTREEITEM htItem = (HTREEITEM)TreeView_GetRoot(hwndTV);
134 while ( htItem && cont )
135 {
136 if ( (htItem == htFirst) || (htItem == htLast) )
137 {
138 if ( !IsItemSelected(hwndTV, htItem) )
139 {
140 SelectItem(hwndTV, htItem);
141 }
142
143 cont = false;
144 }
145 else
146 {
147 if ( unselectOthers && IsItemSelected(hwndTV, htItem) )
148 {
149 UnselectItem(hwndTV, htItem);
150 }
151 }
152
153 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
154 }
155
156 // select the items in range
157 cont = htFirst != htLast;
158 while ( htItem && cont )
159 {
160 if ( !IsItemSelected(hwndTV, htItem) )
161 {
162 SelectItem(hwndTV, htItem);
163 }
164
165 cont = (htItem != htFirst) && (htItem != htLast);
166
167 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
168 }
169
170 // unselect the rest
171 if ( unselectOthers )
172 {
173 while ( htItem )
174 {
175 if ( IsItemSelected(hwndTV, htItem) )
176 {
177 UnselectItem(hwndTV, htItem);
178 }
179
180 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
181 }
182 }
183
184 // seems to be necessary - otherwise the just selected items don't always
185 // appear as selected
186 UpdateWindow(hwndTV);
187 }
188
189 // helper function which tricks the standard control into changing the focused
190 // item without changing anything else (if someone knows why Microsoft doesn't
191 // allow to do it by just setting TVIS_FOCUSED flag, please tell me!)
192 static void SetFocus(HWND hwndTV, HTREEITEM htItem)
193 {
194 // the current focus
195 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(hwndTV);
196
197 if ( htItem )
198 {
199 // set the focus
200 if ( htItem != htFocus )
201 {
202 // remember the selection state of the item
203 bool wasSelected = IsItemSelected(hwndTV, htItem);
204
205 if ( htFocus && IsItemSelected(hwndTV, htFocus) )
206 {
207 // prevent the tree from unselecting the old focus which it
208 // would do by default (TreeView_SelectItem unselects the
209 // focused item)
210 TreeView_SelectItem(hwndTV, 0);
211 SelectItem(hwndTV, htFocus);
212 }
213
214 TreeView_SelectItem(hwndTV, htItem);
215
216 if ( !wasSelected )
217 {
218 // need to clear the selection which TreeView_SelectItem() gave
219 // us
220 UnselectItem(hwndTV, htItem);
221 }
222 //else: was selected, still selected - ok
223 }
224 //else: nothing to do, focus already there
225 }
226 else
227 {
228 if ( htFocus )
229 {
230 bool wasFocusSelected = IsItemSelected(hwndTV, htFocus);
231
232 // just clear the focus
233 TreeView_SelectItem(hwndTV, 0);
234
235 if ( wasFocusSelected )
236 {
237 // restore the selection state
238 SelectItem(hwndTV, htFocus);
239 }
240 }
241 //else: nothing to do, no focus already
242 }
243 }
244
245 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
246
247 // ----------------------------------------------------------------------------
248 // private classes
249 // ----------------------------------------------------------------------------
250
251 // a convenient wrapper around TV_ITEM struct which adds a ctor
252 #ifdef __VISUALC__
253 #pragma warning( disable : 4097 ) // inheriting from typedef
254 #endif
255
256 struct wxTreeViewItem : public TV_ITEM
257 {
258 wxTreeViewItem(const wxTreeItemId& item, // the item handle
259 UINT mask_, // fields which are valid
260 UINT stateMask_ = 0) // for TVIF_STATE only
261 {
262 wxZeroMemory(*this);
263
264 // hItem member is always valid
265 mask = mask_ | TVIF_HANDLE;
266 stateMask = stateMask_;
267 hItem = HITEM(item);
268 }
269 };
270
271 // wxVirutalNode is used in place of a single root when 'hidden' root is
272 // specified.
273 class wxVirtualNode : public wxTreeViewItem
274 {
275 public:
276 wxVirtualNode(wxTreeItemData *data)
277 : wxTreeViewItem(TVI_ROOT, 0)
278 {
279 m_data = data;
280 }
281
282 ~wxVirtualNode()
283 {
284 delete m_data;
285 }
286
287 wxTreeItemData *GetData() const { return m_data; }
288 void SetData(wxTreeItemData *data) { delete m_data; m_data = data; }
289
290 private:
291 wxTreeItemData *m_data;
292
293 DECLARE_NO_COPY_CLASS(wxVirtualNode)
294 };
295
296 #ifdef __VISUALC__
297 #pragma warning( default : 4097 )
298 #endif
299
300 // a macro to get the virtual root, returns NULL if none
301 #define GET_VIRTUAL_ROOT() ((wxVirtualNode *)m_pVirtualRoot)
302
303 // returns true if the item is the virtual root
304 #define IS_VIRTUAL_ROOT(item) (HITEM(item) == TVI_ROOT)
305
306 // a class which encapsulates the tree traversal logic: it vists all (unless
307 // OnVisit() returns false) items under the given one
308 class wxTreeTraversal
309 {
310 public:
311 wxTreeTraversal(const wxTreeCtrl *tree)
312 {
313 m_tree = tree;
314 }
315
316 // do traverse the tree: visit all items (recursively by default) under the
317 // given one; return true if all items were traversed or false if the
318 // traversal was aborted because OnVisit returned false
319 bool DoTraverse(const wxTreeItemId& root, bool recursively = true);
320
321 // override this function to do whatever is needed for each item, return
322 // false to stop traversing
323 virtual bool OnVisit(const wxTreeItemId& item) = 0;
324
325 protected:
326 const wxTreeCtrl *GetTree() const { return m_tree; }
327
328 private:
329 bool Traverse(const wxTreeItemId& root, bool recursively);
330
331 const wxTreeCtrl *m_tree;
332
333 DECLARE_NO_COPY_CLASS(wxTreeTraversal)
334 };
335
336 // internal class for getting the selected items
337 class TraverseSelections : public wxTreeTraversal
338 {
339 public:
340 TraverseSelections(const wxTreeCtrl *tree,
341 wxArrayTreeItemIds& selections)
342 : wxTreeTraversal(tree), m_selections(selections)
343 {
344 m_selections.Empty();
345
346 DoTraverse(tree->GetRootItem());
347 }
348
349 virtual bool OnVisit(const wxTreeItemId& item)
350 {
351 // can't visit a virtual node.
352 if ( (GetTree()->GetRootItem() == item) && (GetTree()->GetWindowStyle() & wxTR_HIDE_ROOT))
353 {
354 return true;
355 }
356
357 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
358 if ( GetTree()->IsItemChecked(item) )
359 #else
360 if ( ::IsItemSelected(GetHwndOf(GetTree()), HITEM(item)) )
361 #endif
362 {
363 m_selections.Add(item);
364 }
365
366 return true;
367 }
368
369 size_t GetCount() const { return m_selections.GetCount(); }
370
371 private:
372 wxArrayTreeItemIds& m_selections;
373
374 DECLARE_NO_COPY_CLASS(TraverseSelections)
375 };
376
377 // internal class for counting tree items
378 class TraverseCounter : public wxTreeTraversal
379 {
380 public:
381 TraverseCounter(const wxTreeCtrl *tree,
382 const wxTreeItemId& root,
383 bool recursively)
384 : wxTreeTraversal(tree)
385 {
386 m_count = 0;
387
388 DoTraverse(root, recursively);
389 }
390
391 virtual bool OnVisit(const wxTreeItemId& WXUNUSED(item))
392 {
393 m_count++;
394
395 return true;
396 }
397
398 size_t GetCount() const { return m_count; }
399
400 private:
401 size_t m_count;
402
403 DECLARE_NO_COPY_CLASS(TraverseCounter)
404 };
405
406 // ----------------------------------------------------------------------------
407 // This class is needed for support of different images: the Win32 common
408 // control natively supports only 2 images (the normal one and another for the
409 // selected state). We wish to provide support for 2 more of them for folder
410 // items (i.e. those which have children): for expanded state and for expanded
411 // selected state. For this we use this structure to store the additional items
412 // images.
413 //
414 // There is only one problem with this: when we retrieve the item's data, we
415 // don't know whether we get a pointer to wxTreeItemData or
416 // wxTreeItemIndirectData. So we always set the item id to an invalid value
417 // in this class and the code using the client data checks for it and retrieves
418 // the real client data in this case.
419 // ----------------------------------------------------------------------------
420
421 class wxTreeItemIndirectData : public wxTreeItemData
422 {
423 public:
424 // ctor associates this data with the item and the real item data becomes
425 // available through our GetData() method
426 wxTreeItemIndirectData(wxTreeCtrl *tree, const wxTreeItemId& item)
427 {
428 for ( size_t n = 0; n < WXSIZEOF(m_images); n++ )
429 {
430 m_images[n] = -1;
431 }
432
433 // save the old data
434 m_data = tree->GetItemData(item);
435
436 // and set ourselves as the new one
437 tree->SetIndirectItemData(item, this);
438
439 // we must have the invalid value for the item
440 m_pItem = 0l;
441 }
442
443 // dtor deletes the associated data as well
444 virtual ~wxTreeItemIndirectData() { delete m_data; }
445
446 // accessors
447 // get the real data associated with the item
448 wxTreeItemData *GetData() const { return m_data; }
449 // change it
450 void SetData(wxTreeItemData *data) { m_data = data; }
451
452 // do we have such image?
453 bool HasImage(wxTreeItemIcon which) const { return m_images[which] != -1; }
454 // get image
455 int GetImage(wxTreeItemIcon which) const { return m_images[which]; }
456 // change it
457 void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; }
458
459 private:
460 // all the images associated with the item
461 int m_images[wxTreeItemIcon_Max];
462
463 // the real client data
464 wxTreeItemData *m_data;
465
466 DECLARE_NO_COPY_CLASS(wxTreeItemIndirectData)
467 };
468
469 // ----------------------------------------------------------------------------
470 // wxWin macros
471 // ----------------------------------------------------------------------------
472
473 #if wxUSE_EXTENDED_RTTI
474 WX_DEFINE_FLAGS( wxTreeCtrlStyle )
475
476 wxBEGIN_FLAGS( wxTreeCtrlStyle )
477 // new style border flags, we put them first to
478 // use them for streaming out
479 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
480 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
481 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
482 wxFLAGS_MEMBER(wxBORDER_RAISED)
483 wxFLAGS_MEMBER(wxBORDER_STATIC)
484 wxFLAGS_MEMBER(wxBORDER_NONE)
485
486 // old style border flags
487 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
488 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
489 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
490 wxFLAGS_MEMBER(wxRAISED_BORDER)
491 wxFLAGS_MEMBER(wxSTATIC_BORDER)
492 wxFLAGS_MEMBER(wxBORDER)
493
494 // standard window styles
495 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
496 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
497 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
498 wxFLAGS_MEMBER(wxWANTS_CHARS)
499 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
500 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
501 wxFLAGS_MEMBER(wxVSCROLL)
502 wxFLAGS_MEMBER(wxHSCROLL)
503
504 wxFLAGS_MEMBER(wxTR_EDIT_LABELS)
505 wxFLAGS_MEMBER(wxTR_NO_BUTTONS)
506 wxFLAGS_MEMBER(wxTR_HAS_BUTTONS)
507 wxFLAGS_MEMBER(wxTR_TWIST_BUTTONS)
508 wxFLAGS_MEMBER(wxTR_NO_LINES)
509 wxFLAGS_MEMBER(wxTR_FULL_ROW_HIGHLIGHT)
510 wxFLAGS_MEMBER(wxTR_LINES_AT_ROOT)
511 wxFLAGS_MEMBER(wxTR_HIDE_ROOT)
512 wxFLAGS_MEMBER(wxTR_ROW_LINES)
513 wxFLAGS_MEMBER(wxTR_HAS_VARIABLE_ROW_HEIGHT)
514 wxFLAGS_MEMBER(wxTR_SINGLE)
515 wxFLAGS_MEMBER(wxTR_MULTIPLE)
516 wxFLAGS_MEMBER(wxTR_EXTENDED)
517 wxFLAGS_MEMBER(wxTR_DEFAULT_STYLE)
518
519 wxEND_FLAGS( wxTreeCtrlStyle )
520
521 IMPLEMENT_DYNAMIC_CLASS_XTI(wxTreeCtrl, wxControl,"wx/treectrl.h")
522
523 wxBEGIN_PROPERTIES_TABLE(wxTreeCtrl)
524 wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent )
525 wxEVENT_RANGE_PROPERTY( TreeEvent , wxEVT_COMMAND_TREE_BEGIN_DRAG , wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK , wxTreeEvent )
526 wxPROPERTY_FLAGS( WindowStyle , wxTreeCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
527 wxEND_PROPERTIES_TABLE()
528
529 wxBEGIN_HANDLERS_TABLE(wxTreeCtrl)
530 wxEND_HANDLERS_TABLE()
531
532 wxCONSTRUCTOR_5( wxTreeCtrl , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
533 #else
534 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxControl)
535 #endif
536
537 // ----------------------------------------------------------------------------
538 // constants
539 // ----------------------------------------------------------------------------
540
541 // indices in gs_expandEvents table below
542 enum
543 {
544 IDX_COLLAPSE,
545 IDX_EXPAND,
546 IDX_WHAT_MAX
547 };
548
549 enum
550 {
551 IDX_DONE,
552 IDX_DOING,
553 IDX_HOW_MAX
554 };
555
556 // handy table for sending events - it has to be initialized during run-time
557 // now so can't be const any more
558 static /* const */ wxEventType gs_expandEvents[IDX_WHAT_MAX][IDX_HOW_MAX];
559
560 /*
561 but logically it's a const table with the following entries:
562 =
563 {
564 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING },
565 { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING }
566 };
567 */
568
569 // ============================================================================
570 // implementation
571 // ============================================================================
572
573 // ----------------------------------------------------------------------------
574 // tree traversal
575 // ----------------------------------------------------------------------------
576
577 bool wxTreeTraversal::DoTraverse(const wxTreeItemId& root, bool recursively)
578 {
579 if ( !OnVisit(root) )
580 return false;
581
582 return Traverse(root, recursively);
583 }
584
585 bool wxTreeTraversal::Traverse(const wxTreeItemId& root, bool recursively)
586 {
587 wxTreeItemIdValue cookie;
588 wxTreeItemId child = m_tree->GetFirstChild(root, cookie);
589 while ( child.IsOk() )
590 {
591 // depth first traversal
592 if ( recursively && !Traverse(child, true) )
593 return false;
594
595 if ( !OnVisit(child) )
596 return false;
597
598 child = m_tree->GetNextChild(root, cookie);
599 }
600
601 return true;
602 }
603
604 // ----------------------------------------------------------------------------
605 // construction and destruction
606 // ----------------------------------------------------------------------------
607
608 void wxTreeCtrl::Init()
609 {
610 m_imageListNormal = NULL;
611 m_imageListState = NULL;
612 m_ownsImageListNormal = m_ownsImageListState = false;
613 m_textCtrl = NULL;
614 m_hasAnyAttr = false;
615 m_dragImage = NULL;
616 m_pVirtualRoot = NULL;
617
618 // initialize the global array of events now as it can't be done statically
619 // with the wxEVT_XXX values being allocated during run-time only
620 gs_expandEvents[IDX_COLLAPSE][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_COLLAPSED;
621 gs_expandEvents[IDX_COLLAPSE][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_COLLAPSING;
622 gs_expandEvents[IDX_EXPAND][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_EXPANDED;
623 gs_expandEvents[IDX_EXPAND][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_EXPANDING;
624 }
625
626 bool wxTreeCtrl::Create(wxWindow *parent,
627 wxWindowID id,
628 const wxPoint& pos,
629 const wxSize& size,
630 long style,
631 const wxValidator& validator,
632 const wxString& name)
633 {
634 Init();
635
636 if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
637 style |= wxBORDER_SUNKEN;
638
639 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
640 return false;
641
642 DWORD exStyle = 0;
643 DWORD wstyle = MSWGetStyle(m_windowStyle, & exStyle);
644 wstyle |= WS_TABSTOP | TVS_SHOWSELALWAYS;
645
646 if ((m_windowStyle & wxTR_NO_LINES) == 0)
647 wstyle |= TVS_HASLINES;
648 if ( m_windowStyle & wxTR_HAS_BUTTONS )
649 wstyle |= TVS_HASBUTTONS;
650
651 if ( m_windowStyle & wxTR_EDIT_LABELS )
652 wstyle |= TVS_EDITLABELS;
653
654 if ( m_windowStyle & wxTR_LINES_AT_ROOT )
655 wstyle |= TVS_LINESATROOT;
656
657 if ( m_windowStyle & wxTR_FULL_ROW_HIGHLIGHT )
658 {
659 if ( wxTheApp->GetComCtl32Version() >= 471 )
660 wstyle |= TVS_FULLROWSELECT;
661 }
662
663 // using TVS_CHECKBOXES for emulation of a multiselection tree control
664 // doesn't work without the new enough headers
665 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE && \
666 !defined( __GNUWIN32_OLD__ ) && \
667 !defined( __BORLANDC__ ) && \
668 !defined( __WATCOMC__ ) && \
669 (!defined(__VISUALC__) || (__VISUALC__ > 1010))
670
671 // we emulate the multiple selection tree controls by using checkboxes: set
672 // up the image list we need for this if we do have multiple selections
673 if ( m_windowStyle & wxTR_MULTIPLE )
674 wstyle |= TVS_CHECKBOXES;
675 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
676
677 // Create the tree control.
678 if ( !MSWCreateControl(WC_TREEVIEW, wstyle) )
679 return false;
680
681 #if wxUSE_COMCTL32_SAFELY
682 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
683 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
684 #elif 1
685 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
686 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
687 #else
688 // This works around a bug in the Windows tree control whereby for some versions
689 // of comctrl32, setting any colour actually draws the background in black.
690 // This will initialise the background to the system colour.
691 // THIS FIX NOW REVERTED since it caused problems on _other_ systems.
692 // Assume the user has an updated comctl32.dll.
693 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0,-1);
694 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
695 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
696 #endif
697
698
699 // VZ: this is some experimental code which may be used to get the
700 // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71.
701 // AFAIK, the standard DLL does about the same thing anyhow.
702 #if 0
703 if ( m_windowStyle & wxTR_MULTIPLE )
704 {
705 wxBitmap bmp;
706
707 // create the DC compatible with the current screen
708 HDC hdcMem = CreateCompatibleDC(NULL);
709
710 // create a mono bitmap of the standard size
711 int x = GetSystemMetrics(SM_CXMENUCHECK);
712 int y = GetSystemMetrics(SM_CYMENUCHECK);
713 wxImageList imagelistCheckboxes(x, y, false, 2);
714 HBITMAP hbmpCheck = CreateBitmap(x, y, // bitmap size
715 1, // # of color planes
716 1, // # bits needed for one pixel
717 0); // array containing colour data
718 SelectObject(hdcMem, hbmpCheck);
719
720 // then draw a check mark into it
721 RECT rect = { 0, 0, x, y };
722 if ( !::DrawFrameControl(hdcMem, &rect,
723 DFC_BUTTON,
724 DFCS_BUTTONCHECK | DFCS_CHECKED) )
725 {
726 wxLogLastError(wxT("DrawFrameControl(check)"));
727 }
728
729 bmp.SetHBITMAP((WXHBITMAP)hbmpCheck);
730 imagelistCheckboxes.Add(bmp);
731
732 if ( !::DrawFrameControl(hdcMem, &rect,
733 DFC_BUTTON,
734 DFCS_BUTTONCHECK) )
735 {
736 wxLogLastError(wxT("DrawFrameControl(uncheck)"));
737 }
738
739 bmp.SetHBITMAP((WXHBITMAP)hbmpCheck);
740 imagelistCheckboxes.Add(bmp);
741
742 // clean up
743 ::DeleteDC(hdcMem);
744
745 // set the imagelist
746 SetStateImageList(&imagelistCheckboxes);
747 }
748 #endif // 0
749
750 SetSize(pos.x, pos.y, size.x, size.y);
751
752 return true;
753 }
754
755 wxTreeCtrl::~wxTreeCtrl()
756 {
757 // delete any attributes
758 if ( m_hasAnyAttr )
759 {
760 WX_CLEAR_HASH_MAP(wxMapTreeAttr, m_attrs);
761
762 // prevent TVN_DELETEITEM handler from deleting the attributes again!
763 m_hasAnyAttr = false;
764 }
765
766 DeleteTextCtrl();
767
768 // delete user data to prevent memory leaks
769 // also deletes hidden root node storage.
770 DeleteAllItems();
771
772 if (m_ownsImageListNormal) delete m_imageListNormal;
773 if (m_ownsImageListState) delete m_imageListState;
774 }
775
776 // ----------------------------------------------------------------------------
777 // accessors
778 // ----------------------------------------------------------------------------
779
780 // simple wrappers which add error checking in debug mode
781
782 bool wxTreeCtrl::DoGetItem(wxTreeViewItem* tvItem) const
783 {
784 wxCHECK_MSG( tvItem->hItem != TVI_ROOT, false,
785 _T("can't retrieve virtual root item") );
786
787 if ( !TreeView_GetItem(GetHwnd(), tvItem) )
788 {
789 wxLogLastError(wxT("TreeView_GetItem"));
790
791 return false;
792 }
793
794 return true;
795 }
796
797 void wxTreeCtrl::DoSetItem(wxTreeViewItem* tvItem)
798 {
799 if ( TreeView_SetItem(GetHwnd(), tvItem) == -1 )
800 {
801 wxLogLastError(wxT("TreeView_SetItem"));
802 }
803 }
804
805 size_t wxTreeCtrl::GetCount() const
806 {
807 return (size_t)TreeView_GetCount(GetHwnd());
808 }
809
810 unsigned int wxTreeCtrl::GetIndent() const
811 {
812 return TreeView_GetIndent(GetHwnd());
813 }
814
815 void wxTreeCtrl::SetIndent(unsigned int indent)
816 {
817 TreeView_SetIndent(GetHwnd(), indent);
818 }
819
820 wxImageList *wxTreeCtrl::GetImageList() const
821 {
822 return m_imageListNormal;
823 }
824
825 wxImageList *wxTreeCtrl::GetStateImageList() const
826 {
827 return m_imageListState;
828 }
829
830 void wxTreeCtrl::SetAnyImageList(wxImageList *imageList, int which)
831 {
832 // no error return
833 TreeView_SetImageList(GetHwnd(),
834 imageList ? imageList->GetHIMAGELIST() : 0,
835 which);
836 }
837
838 void wxTreeCtrl::SetImageList(wxImageList *imageList)
839 {
840 if (m_ownsImageListNormal)
841 delete m_imageListNormal;
842
843 SetAnyImageList(m_imageListNormal = imageList, TVSIL_NORMAL);
844 m_ownsImageListNormal = false;
845 }
846
847 void wxTreeCtrl::SetStateImageList(wxImageList *imageList)
848 {
849 if (m_ownsImageListState) delete m_imageListState;
850 SetAnyImageList(m_imageListState = imageList, TVSIL_STATE);
851 m_ownsImageListState = false;
852 }
853
854 void wxTreeCtrl::AssignImageList(wxImageList *imageList)
855 {
856 SetImageList(imageList);
857 m_ownsImageListNormal = true;
858 }
859
860 void wxTreeCtrl::AssignStateImageList(wxImageList *imageList)
861 {
862 SetStateImageList(imageList);
863 m_ownsImageListState = true;
864 }
865
866 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item,
867 bool recursively) const
868 {
869 TraverseCounter counter(this, item, recursively);
870
871 return counter.GetCount() - 1;
872 }
873
874 // ----------------------------------------------------------------------------
875 // control colours
876 // ----------------------------------------------------------------------------
877
878 bool wxTreeCtrl::SetBackgroundColour(const wxColour &colour)
879 {
880 #if !wxUSE_COMCTL32_SAFELY
881 if ( !wxWindowBase::SetBackgroundColour(colour) )
882 return false;
883
884 SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0, colour.GetPixel());
885 #endif
886
887 return true;
888 }
889
890 bool wxTreeCtrl::SetForegroundColour(const wxColour &colour)
891 {
892 #if !wxUSE_COMCTL32_SAFELY
893 if ( !wxWindowBase::SetForegroundColour(colour) )
894 return false;
895
896 SendMessage(GetHwnd(), TVM_SETTEXTCOLOR, 0, colour.GetPixel());
897 #endif
898
899 return true;
900 }
901
902 // ----------------------------------------------------------------------------
903 // Item access
904 // ----------------------------------------------------------------------------
905
906 wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const
907 {
908 wxChar buf[512]; // the size is arbitrary...
909
910 wxTreeViewItem tvItem(item, TVIF_TEXT);
911 tvItem.pszText = buf;
912 tvItem.cchTextMax = WXSIZEOF(buf);
913 if ( !DoGetItem(&tvItem) )
914 {
915 // don't return some garbage which was on stack, but an empty string
916 buf[0] = wxT('\0');
917 }
918
919 return wxString(buf);
920 }
921
922 void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
923 {
924 if ( IS_VIRTUAL_ROOT(item) )
925 return;
926
927 wxTreeViewItem tvItem(item, TVIF_TEXT);
928 tvItem.pszText = (wxChar *)text.c_str(); // conversion is ok
929 DoSetItem(&tvItem);
930
931 // when setting the text of the item being edited, the text control should
932 // be updated to reflect the new text as well, otherwise calling
933 // SetItemText() in the OnBeginLabelEdit() handler doesn't have any effect
934 //
935 // don't use GetEditControl() here because m_textCtrl is not set yet
936 HWND hwndEdit = TreeView_GetEditControl(GetHwnd());
937 if ( hwndEdit )
938 {
939 if ( item == GetSelection() )
940 {
941 ::SetWindowText(hwndEdit, text);
942 }
943 }
944 }
945
946 int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId& item,
947 wxTreeItemIcon which) const
948 {
949 wxTreeViewItem tvItem(item, TVIF_PARAM);
950 if ( !DoGetItem(&tvItem) )
951 {
952 return -1;
953 }
954
955 return ((wxTreeItemIndirectData *)tvItem.lParam)->GetImage(which);
956 }
957
958 void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId& item,
959 int image,
960 wxTreeItemIcon which) const
961 {
962 wxTreeViewItem tvItem(item, TVIF_PARAM);
963 if ( !DoGetItem(&tvItem) )
964 {
965 return;
966 }
967
968 wxTreeItemIndirectData *data = ((wxTreeItemIndirectData *)tvItem.lParam);
969
970 data->SetImage(image, which);
971
972 // make sure that we have selected images as well
973 if ( which == wxTreeItemIcon_Normal &&
974 !data->HasImage(wxTreeItemIcon_Selected) )
975 {
976 data->SetImage(image, wxTreeItemIcon_Selected);
977 }
978
979 if ( which == wxTreeItemIcon_Expanded &&
980 !data->HasImage(wxTreeItemIcon_SelectedExpanded) )
981 {
982 data->SetImage(image, wxTreeItemIcon_SelectedExpanded);
983 }
984 }
985
986 void wxTreeCtrl::DoSetItemImages(const wxTreeItemId& item,
987 int image,
988 int imageSel)
989 {
990 wxTreeViewItem tvItem(item, TVIF_IMAGE | TVIF_SELECTEDIMAGE);
991 tvItem.iSelectedImage = imageSel;
992 tvItem.iImage = image;
993 DoSetItem(&tvItem);
994 }
995
996 int wxTreeCtrl::GetItemImage(const wxTreeItemId& item,
997 wxTreeItemIcon which) const
998 {
999 if ( (HITEM(item) == TVI_ROOT) && (m_windowStyle & wxTR_HIDE_ROOT) )
1000 {
1001 // TODO: Maybe a hidden root can still provide images?
1002 return -1;
1003 }
1004
1005 if ( HasIndirectData(item) )
1006 {
1007 return DoGetItemImageFromData(item, which);
1008 }
1009
1010 UINT mask;
1011 switch ( which )
1012 {
1013 default:
1014 wxFAIL_MSG( wxT("unknown tree item image type") );
1015
1016 case wxTreeItemIcon_Normal:
1017 mask = TVIF_IMAGE;
1018 break;
1019
1020 case wxTreeItemIcon_Selected:
1021 mask = TVIF_SELECTEDIMAGE;
1022 break;
1023
1024 case wxTreeItemIcon_Expanded:
1025 case wxTreeItemIcon_SelectedExpanded:
1026 return -1;
1027 }
1028
1029 wxTreeViewItem tvItem(item, mask);
1030 DoGetItem(&tvItem);
1031
1032 return mask == TVIF_IMAGE ? tvItem.iImage : tvItem.iSelectedImage;
1033 }
1034
1035 void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image,
1036 wxTreeItemIcon which)
1037 {
1038 if ( IS_VIRTUAL_ROOT(item) )
1039 {
1040 // TODO: Maybe a hidden root can still store images?
1041 return;
1042 }
1043
1044 int imageNormal,
1045 imageSel;
1046
1047 switch ( which )
1048 {
1049 default:
1050 wxFAIL_MSG( wxT("unknown tree item image type") );
1051 // fall through
1052
1053 case wxTreeItemIcon_Normal:
1054 {
1055 const int imageNormalOld = GetItemImage(item);
1056 const int imageSelOld =
1057 GetItemImage(item, wxTreeItemIcon_Selected);
1058
1059 // always set the normal image
1060 imageNormal = image;
1061
1062 // if the selected and normal images were the same, they should
1063 // be the same after the update, otherwise leave the selected
1064 // image as it was
1065 imageSel = imageNormalOld == imageSelOld ? image : imageSelOld;
1066 }
1067 break;
1068
1069 case wxTreeItemIcon_Selected:
1070 imageNormal = GetItemImage(item);
1071 imageSel = image;
1072 break;
1073
1074 case wxTreeItemIcon_Expanded:
1075 case wxTreeItemIcon_SelectedExpanded:
1076 if ( !HasIndirectData(item) )
1077 {
1078 // we need to get the old images first, because after we create
1079 // the wxTreeItemIndirectData GetItemXXXImage() will use it to
1080 // get the images
1081 imageNormal = GetItemImage(item);
1082 imageSel = GetItemImage(item, wxTreeItemIcon_Selected);
1083
1084 // if it doesn't have it yet, add it
1085 wxTreeItemIndirectData *data = new
1086 wxTreeItemIndirectData(this, item);
1087
1088 // copy the data to the new location
1089 data->SetImage(imageNormal, wxTreeItemIcon_Normal);
1090 data->SetImage(imageSel, wxTreeItemIcon_Selected);
1091 }
1092
1093 DoSetItemImageFromData(item, image, which);
1094
1095 // reset the normal/selected images because we won't use them any
1096 // more - now they're stored inside the indirect data
1097 imageNormal =
1098 imageSel = I_IMAGECALLBACK;
1099 break;
1100 }
1101
1102 // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always
1103 // change both normal and selected image - otherwise the change simply
1104 // doesn't take place!
1105 DoSetItemImages(item, imageNormal, imageSel);
1106 }
1107
1108 wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const
1109 {
1110 wxTreeViewItem tvItem(item, TVIF_PARAM);
1111
1112 // Hidden root may have data.
1113 if ( IS_VIRTUAL_ROOT(item) )
1114 {
1115 return GET_VIRTUAL_ROOT()->GetData();
1116 }
1117
1118 // Visible node.
1119 if ( !DoGetItem(&tvItem) )
1120 {
1121 return NULL;
1122 }
1123
1124 wxTreeItemData *data = (wxTreeItemData *)tvItem.lParam;
1125 if ( IsDataIndirect(data) )
1126 {
1127 data = ((wxTreeItemIndirectData *)data)->GetData();
1128 }
1129
1130 return data;
1131 }
1132
1133 void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data)
1134 {
1135 if ( IS_VIRTUAL_ROOT(item) )
1136 {
1137 GET_VIRTUAL_ROOT()->SetData(data);
1138 }
1139
1140 // first, associate this piece of data with this item
1141 if ( data )
1142 {
1143 data->SetId(item);
1144 }
1145
1146 wxTreeViewItem tvItem(item, TVIF_PARAM);
1147
1148 if ( HasIndirectData(item) )
1149 {
1150 if ( DoGetItem(&tvItem) )
1151 {
1152 ((wxTreeItemIndirectData *)tvItem.lParam)->SetData(data);
1153 }
1154 else
1155 {
1156 wxFAIL_MSG( wxT("failed to change tree items data") );
1157 }
1158 }
1159 else
1160 {
1161 tvItem.lParam = (LPARAM)data;
1162 DoSetItem(&tvItem);
1163 }
1164 }
1165
1166 void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId& item,
1167 wxTreeItemIndirectData *data)
1168 {
1169 // this should never happen because it's unnecessary and will probably lead
1170 // to crash too because the code elsewhere supposes that the pointer the
1171 // wxTreeItemIndirectData has is a real wxItemData and not
1172 // wxTreeItemIndirectData as well
1173 wxASSERT_MSG( !HasIndirectData(item), wxT("setting indirect data twice?") );
1174
1175 SetItemData(item, data);
1176 }
1177
1178 bool wxTreeCtrl::HasIndirectData(const wxTreeItemId& item) const
1179 {
1180 // query the item itself
1181 wxTreeViewItem tvItem(item, TVIF_PARAM);
1182 if ( !DoGetItem(&tvItem) )
1183 {
1184 return false;
1185 }
1186
1187 wxTreeItemData *data = (wxTreeItemData *)tvItem.lParam;
1188
1189 return data && IsDataIndirect(data);
1190 }
1191
1192 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has)
1193 {
1194 if ( IS_VIRTUAL_ROOT(item) )
1195 return;
1196
1197 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1198 tvItem.cChildren = (int)has;
1199 DoSetItem(&tvItem);
1200 }
1201
1202 void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold)
1203 {
1204 if ( IS_VIRTUAL_ROOT(item) )
1205 return;
1206
1207 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1208 tvItem.state = bold ? TVIS_BOLD : 0;
1209 DoSetItem(&tvItem);
1210 }
1211
1212 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, bool highlight)
1213 {
1214 if ( IS_VIRTUAL_ROOT(item) )
1215 return;
1216
1217 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_DROPHILITED);
1218 tvItem.state = highlight ? TVIS_DROPHILITED : 0;
1219 DoSetItem(&tvItem);
1220 }
1221
1222 void wxTreeCtrl::RefreshItem(const wxTreeItemId& item)
1223 {
1224 if ( IS_VIRTUAL_ROOT(item) )
1225 return;
1226
1227 wxRect rect;
1228 if ( GetBoundingRect(item, rect) )
1229 {
1230 RefreshRect(rect);
1231 }
1232 }
1233
1234 wxColour wxTreeCtrl::GetItemTextColour(const wxTreeItemId& item) const
1235 {
1236 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1237
1238 return it == m_attrs.end() ? wxNullColour : it->second->GetTextColour();
1239 }
1240
1241 wxColour wxTreeCtrl::GetItemBackgroundColour(const wxTreeItemId& item) const
1242 {
1243 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1244
1245 return it == m_attrs.end() ? wxNullColour : it->second->GetBackgroundColour();
1246 }
1247
1248 wxFont wxTreeCtrl::GetItemFont(const wxTreeItemId& item) const
1249 {
1250 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1251
1252 return it == m_attrs.end() ? wxNullFont : it->second->GetFont();
1253 }
1254
1255 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId& item,
1256 const wxColour& col)
1257 {
1258 wxTreeItemAttr *attr;
1259 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1260 if ( it == m_attrs.end() )
1261 {
1262 m_hasAnyAttr = true;
1263
1264 m_attrs[item.m_pItem] =
1265 attr = new wxTreeItemAttr;
1266 }
1267 else
1268 {
1269 attr = it->second;
1270 }
1271
1272 attr->SetTextColour(col);
1273
1274 RefreshItem(item);
1275 }
1276
1277 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item,
1278 const wxColour& col)
1279 {
1280 wxTreeItemAttr *attr;
1281 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1282 if ( it == m_attrs.end() )
1283 {
1284 m_hasAnyAttr = true;
1285
1286 m_attrs[item.m_pItem] =
1287 attr = new wxTreeItemAttr;
1288 }
1289 else // already in the hash
1290 {
1291 attr = it->second;
1292 }
1293
1294 attr->SetBackgroundColour(col);
1295
1296 RefreshItem(item);
1297 }
1298
1299 void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font)
1300 {
1301 wxTreeItemAttr *attr;
1302 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1303 if ( it == m_attrs.end() )
1304 {
1305 m_hasAnyAttr = true;
1306
1307 m_attrs[item.m_pItem] =
1308 attr = new wxTreeItemAttr;
1309 }
1310 else // already in the hash
1311 {
1312 attr = it->second;
1313 }
1314
1315 attr->SetFont(font);
1316
1317 RefreshItem(item);
1318 }
1319
1320 // ----------------------------------------------------------------------------
1321 // Item status
1322 // ----------------------------------------------------------------------------
1323
1324 bool wxTreeCtrl::IsVisible(const wxTreeItemId& item) const
1325 {
1326 if ( item == wxTreeItemId(TVI_ROOT) )
1327 {
1328 // virtual (hidden) root is never visible
1329 return false;
1330 }
1331
1332 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
1333 RECT rect;
1334
1335 // this ugliness comes directly from MSDN - it *is* the correct way to pass
1336 // the HTREEITEM with TVM_GETITEMRECT
1337 *(HTREEITEM *)&rect = HITEM(item);
1338
1339 // true means to get rect for just the text, not the whole line
1340 if ( !::SendMessage(GetHwnd(), TVM_GETITEMRECT, true, (LPARAM)&rect) )
1341 {
1342 // if TVM_GETITEMRECT returned false, then the item is definitely not
1343 // visible (because its parent is not expanded)
1344 return false;
1345 }
1346
1347 // however if it returned true, the item might still be outside the
1348 // currently visible part of the tree, test for it (notice that partly
1349 // visible means visible here)
1350 return rect.bottom > 0 && rect.top < GetClientSize().y;
1351 }
1352
1353 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const
1354 {
1355 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1356 DoGetItem(&tvItem);
1357
1358 return tvItem.cChildren != 0;
1359 }
1360
1361 bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const
1362 {
1363 // probably not a good idea to put it here
1364 //wxASSERT( ItemHasChildren(item) );
1365
1366 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDED);
1367 DoGetItem(&tvItem);
1368
1369 return (tvItem.state & TVIS_EXPANDED) != 0;
1370 }
1371
1372 bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const
1373 {
1374 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_SELECTED);
1375 DoGetItem(&tvItem);
1376
1377 return (tvItem.state & TVIS_SELECTED) != 0;
1378 }
1379
1380 bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const
1381 {
1382 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1383 DoGetItem(&tvItem);
1384
1385 return (tvItem.state & TVIS_BOLD) != 0;
1386 }
1387
1388 // ----------------------------------------------------------------------------
1389 // navigation
1390 // ----------------------------------------------------------------------------
1391
1392 wxTreeItemId wxTreeCtrl::GetRootItem() const
1393 {
1394 // Root may be real (visible) or virtual (hidden).
1395 if ( GET_VIRTUAL_ROOT() )
1396 return TVI_ROOT;
1397
1398 return wxTreeItemId(TreeView_GetRoot(GetHwnd()));
1399 }
1400
1401 wxTreeItemId wxTreeCtrl::GetSelection() const
1402 {
1403 wxCHECK_MSG( !(m_windowStyle & wxTR_MULTIPLE), wxTreeItemId(),
1404 wxT("this only works with single selection controls") );
1405
1406 return wxTreeItemId(TreeView_GetSelection(GetHwnd()));
1407 }
1408
1409 wxTreeItemId wxTreeCtrl::GetItemParent(const wxTreeItemId& item) const
1410 {
1411 HTREEITEM hItem;
1412
1413 if ( IS_VIRTUAL_ROOT(item) )
1414 {
1415 // no parent for the virtual root
1416 hItem = 0;
1417 }
1418 else // normal item
1419 {
1420 hItem = TreeView_GetParent(GetHwnd(), HITEM(item));
1421 if ( !hItem && HasFlag(wxTR_HIDE_ROOT) )
1422 {
1423 // the top level items should have the virtual root as their parent
1424 hItem = TVI_ROOT;
1425 }
1426 }
1427
1428 return wxTreeItemId(hItem);
1429 }
1430
1431 wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item,
1432 wxTreeItemIdValue& cookie) const
1433 {
1434 // remember the last child returned in 'cookie'
1435 cookie = TreeView_GetChild(GetHwnd(), HITEM(item));
1436
1437 return wxTreeItemId(cookie);
1438 }
1439
1440 wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item),
1441 wxTreeItemIdValue& cookie) const
1442 {
1443 wxTreeItemId item(TreeView_GetNextSibling(GetHwnd(),
1444 HITEM(wxTreeItemId(cookie))));
1445 cookie = item.m_pItem;
1446
1447 return item;
1448 }
1449
1450 #if WXWIN_COMPATIBILITY_2_4
1451
1452 wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item,
1453 long& cookie) const
1454 {
1455 cookie = (long)TreeView_GetChild(GetHwnd(), HITEM(item));
1456
1457 return wxTreeItemId((void *)cookie);
1458 }
1459
1460 wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item),
1461 long& cookie) const
1462 {
1463 wxTreeItemId item(TreeView_GetNextSibling
1464 (
1465 GetHwnd(),
1466 HITEM(wxTreeItemId((void *)cookie)
1467 )));
1468 cookie = (long)item.m_pItem;
1469
1470 return item;
1471 }
1472
1473 #endif // WXWIN_COMPATIBILITY_2_4
1474
1475 wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const
1476 {
1477 // can this be done more efficiently?
1478 wxTreeItemIdValue cookie;
1479
1480 wxTreeItemId childLast,
1481 child = GetFirstChild(item, cookie);
1482 while ( child.IsOk() )
1483 {
1484 childLast = child;
1485 child = GetNextChild(item, cookie);
1486 }
1487
1488 return childLast;
1489 }
1490
1491 wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const
1492 {
1493 return wxTreeItemId(TreeView_GetNextSibling(GetHwnd(), HITEM(item)));
1494 }
1495
1496 wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const
1497 {
1498 return wxTreeItemId(TreeView_GetPrevSibling(GetHwnd(), HITEM(item)));
1499 }
1500
1501 wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const
1502 {
1503 return wxTreeItemId(TreeView_GetFirstVisible(GetHwnd()));
1504 }
1505
1506 wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const
1507 {
1508 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetNextVisible() for must be visible itself!"));
1509
1510 return wxTreeItemId(TreeView_GetNextVisible(GetHwnd(), HITEM(item)));
1511 }
1512
1513 wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const
1514 {
1515 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetPrevVisible() for must be visible itself!"));
1516
1517 return wxTreeItemId(TreeView_GetPrevVisible(GetHwnd(), HITEM(item)));
1518 }
1519
1520 // ----------------------------------------------------------------------------
1521 // multiple selections emulation
1522 // ----------------------------------------------------------------------------
1523
1524 bool wxTreeCtrl::IsItemChecked(const wxTreeItemId& item) const
1525 {
1526 // receive the desired information.
1527 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
1528 DoGetItem(&tvItem);
1529
1530 // state image indices are 1 based
1531 return ((tvItem.state >> 12) - 1) == 1;
1532 }
1533
1534 void wxTreeCtrl::SetItemCheck(const wxTreeItemId& item, bool check)
1535 {
1536 // receive the desired information.
1537 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
1538
1539 DoGetItem(&tvItem);
1540
1541 // state images are one-based
1542 tvItem.state = (check ? 2 : 1) << 12;
1543
1544 DoSetItem(&tvItem);
1545 }
1546
1547 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds& selections) const
1548 {
1549 TraverseSelections selector(this, selections);
1550
1551 return selector.GetCount();
1552 }
1553
1554 // ----------------------------------------------------------------------------
1555 // Usual operations
1556 // ----------------------------------------------------------------------------
1557
1558 wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parent,
1559 wxTreeItemId hInsertAfter,
1560 const wxString& text,
1561 int image, int selectedImage,
1562 wxTreeItemData *data)
1563 {
1564 wxCHECK_MSG( parent.IsOk() || !TreeView_GetRoot(GetHwnd()),
1565 wxTreeItemId(),
1566 _T("can't have more than one root in the tree") );
1567
1568 TV_INSERTSTRUCT tvIns;
1569 tvIns.hParent = HITEM(parent);
1570 tvIns.hInsertAfter = HITEM(hInsertAfter);
1571
1572 // this is how we insert the item as the first child: supply a NULL
1573 // hInsertAfter
1574 if ( !tvIns.hInsertAfter )
1575 {
1576 tvIns.hInsertAfter = TVI_FIRST;
1577 }
1578
1579 UINT mask = 0;
1580 if ( !text.IsEmpty() )
1581 {
1582 mask |= TVIF_TEXT;
1583 tvIns.item.pszText = (wxChar *)text.c_str(); // cast is ok
1584 }
1585 else
1586 {
1587 tvIns.item.pszText = NULL;
1588 tvIns.item.cchTextMax = 0;
1589 }
1590
1591 if ( image != -1 )
1592 {
1593 mask |= TVIF_IMAGE;
1594 tvIns.item.iImage = image;
1595
1596 if ( selectedImage == -1 )
1597 {
1598 // take the same image for selected icon if not specified
1599 selectedImage = image;
1600 }
1601 }
1602
1603 if ( selectedImage != -1 )
1604 {
1605 mask |= TVIF_SELECTEDIMAGE;
1606 tvIns.item.iSelectedImage = selectedImage;
1607 }
1608
1609 if ( data != NULL )
1610 {
1611 mask |= TVIF_PARAM;
1612 tvIns.item.lParam = (LPARAM)data;
1613 }
1614
1615 tvIns.item.mask = mask;
1616
1617 HTREEITEM id = (HTREEITEM) TreeView_InsertItem(GetHwnd(), &tvIns);
1618 if ( id == 0 )
1619 {
1620 wxLogLastError(wxT("TreeView_InsertItem"));
1621 }
1622
1623 if ( data != NULL )
1624 {
1625 // associate the application tree item with Win32 tree item handle
1626 data->SetId(id);
1627 }
1628
1629 return wxTreeItemId(id);
1630 }
1631
1632 // for compatibility only
1633 #if WXWIN_COMPATIBILITY_2_4
1634
1635 wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent,
1636 const wxString& text,
1637 int image, int selImage,
1638 long insertAfter)
1639 {
1640 return DoInsertItem(parent, wxTreeItemId((void *)insertAfter), text,
1641 image, selImage, NULL);
1642 }
1643
1644 #endif // WXWIN_COMPATIBILITY_2_4
1645
1646 wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text,
1647 int image, int selectedImage,
1648 wxTreeItemData *data)
1649 {
1650
1651 if ( m_windowStyle & wxTR_HIDE_ROOT )
1652 {
1653 // create a virtual root item, the parent for all the others
1654 m_pVirtualRoot = new wxVirtualNode(data);
1655
1656 return TVI_ROOT;
1657 }
1658
1659 return DoInsertItem(wxTreeItemId(), wxTreeItemId(),
1660 text, image, selectedImage, data);
1661 }
1662
1663 wxTreeItemId wxTreeCtrl::PrependItem(const wxTreeItemId& parent,
1664 const wxString& text,
1665 int image, int selectedImage,
1666 wxTreeItemData *data)
1667 {
1668 return DoInsertItem(parent, TVI_FIRST,
1669 text, image, selectedImage, data);
1670 }
1671
1672 wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent,
1673 const wxTreeItemId& idPrevious,
1674 const wxString& text,
1675 int image, int selectedImage,
1676 wxTreeItemData *data)
1677 {
1678 return DoInsertItem(parent, idPrevious, text, image, selectedImage, data);
1679 }
1680
1681 wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent,
1682 size_t index,
1683 const wxString& text,
1684 int image, int selectedImage,
1685 wxTreeItemData *data)
1686 {
1687 // find the item from index
1688 wxTreeItemIdValue cookie;
1689 wxTreeItemId idPrev, idCur = GetFirstChild(parent, cookie);
1690 while ( index != 0 && idCur.IsOk() )
1691 {
1692 index--;
1693
1694 idPrev = idCur;
1695 idCur = GetNextChild(parent, cookie);
1696 }
1697
1698 // assert, not check: if the index is invalid, we will append the item
1699 // to the end
1700 wxASSERT_MSG( index == 0, _T("bad index in wxTreeCtrl::InsertItem") );
1701
1702 return DoInsertItem(parent, idPrev, text, image, selectedImage, data);
1703 }
1704
1705 wxTreeItemId wxTreeCtrl::AppendItem(const wxTreeItemId& parent,
1706 const wxString& text,
1707 int image, int selectedImage,
1708 wxTreeItemData *data)
1709 {
1710 return DoInsertItem(parent, TVI_LAST,
1711 text, image, selectedImage, data);
1712 }
1713
1714 void wxTreeCtrl::Delete(const wxTreeItemId& item)
1715 {
1716 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item)) )
1717 {
1718 wxLogLastError(wxT("TreeView_DeleteItem"));
1719 }
1720 }
1721
1722 // delete all children (but don't delete the item itself)
1723 void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item)
1724 {
1725 wxTreeItemIdValue cookie;
1726
1727 wxArrayTreeItemIds children;
1728 wxTreeItemId child = GetFirstChild(item, cookie);
1729 while ( child.IsOk() )
1730 {
1731 children.Add(child);
1732
1733 child = GetNextChild(item, cookie);
1734 }
1735
1736 size_t nCount = children.Count();
1737 for ( size_t n = 0; n < nCount; n++ )
1738 {
1739 if ( !TreeView_DeleteItem(GetHwnd(), HITEM_PTR(children[n])) )
1740 {
1741 wxLogLastError(wxT("TreeView_DeleteItem"));
1742 }
1743 }
1744 }
1745
1746 void wxTreeCtrl::DeleteAllItems()
1747 {
1748 // delete the "virtual" root item.
1749 if ( GET_VIRTUAL_ROOT() )
1750 {
1751 delete GET_VIRTUAL_ROOT();
1752 m_pVirtualRoot = NULL;
1753 }
1754
1755 // and all the real items
1756
1757 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1758 {
1759 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1760 }
1761 }
1762
1763 void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag)
1764 {
1765 wxASSERT_MSG( flag == TVE_COLLAPSE ||
1766 flag == (TVE_COLLAPSE | TVE_COLLAPSERESET) ||
1767 flag == TVE_EXPAND ||
1768 flag == TVE_TOGGLE,
1769 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1770
1771 // A hidden root can be neither expanded nor collapsed.
1772 wxCHECK_RET( !(m_windowStyle & wxTR_HIDE_ROOT) || (HITEM(item) != TVI_ROOT),
1773 wxT("Can't expand/collapse hidden root node!") )
1774
1775 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1776 // emulate them. This behaviour has changed slightly with comctl32.dll
1777 // v 4.70 - now it does send them but only the first time. To maintain
1778 // compatible behaviour and also in order to not have surprises with the
1779 // future versions, don't rely on this and still do everything ourselves.
1780 // To avoid that the messages be sent twice when the item is expanded for
1781 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1782
1783 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDEDONCE);
1784 tvItem.state = 0;
1785 DoSetItem(&tvItem);
1786
1787 if ( TreeView_Expand(GetHwnd(), HITEM(item), flag) != 0 )
1788 {
1789 wxTreeEvent event(wxEVT_NULL, m_windowId);
1790 event.m_item = item;
1791 event.SetEventObject(this);
1792
1793 // note that the {EXPAND|COLLAPS}ING event is sent by TreeView_Expand()
1794 // itself
1795 event.SetEventType(gs_expandEvents[IsExpanded(item) ? IDX_EXPAND
1796 : IDX_COLLAPSE]
1797 [IDX_DONE]);
1798
1799 (void)GetEventHandler()->ProcessEvent(event);
1800 }
1801 //else: change didn't took place, so do nothing at all
1802 }
1803
1804 void wxTreeCtrl::Expand(const wxTreeItemId& item)
1805 {
1806 DoExpand(item, TVE_EXPAND);
1807 }
1808
1809 void wxTreeCtrl::Collapse(const wxTreeItemId& item)
1810 {
1811 DoExpand(item, TVE_COLLAPSE);
1812 }
1813
1814 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item)
1815 {
1816 DoExpand(item, TVE_COLLAPSE | TVE_COLLAPSERESET);
1817 }
1818
1819 void wxTreeCtrl::Toggle(const wxTreeItemId& item)
1820 {
1821 DoExpand(item, TVE_TOGGLE);
1822 }
1823
1824 #if WXWIN_COMPATIBILITY_2_4
1825 void wxTreeCtrl::ExpandItem(const wxTreeItemId& item, int action)
1826 {
1827 DoExpand(item, action);
1828 }
1829 #endif
1830
1831 void wxTreeCtrl::Unselect()
1832 {
1833 wxASSERT_MSG( !(m_windowStyle & wxTR_MULTIPLE),
1834 wxT("doesn't make sense, may be you want UnselectAll()?") );
1835
1836 // just remove the selection
1837 SelectItem(wxTreeItemId());
1838 }
1839
1840 void wxTreeCtrl::UnselectAll()
1841 {
1842 if ( m_windowStyle & wxTR_MULTIPLE )
1843 {
1844 wxArrayTreeItemIds selections;
1845 size_t count = GetSelections(selections);
1846 for ( size_t n = 0; n < count; n++ )
1847 {
1848 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1849 SetItemCheck(HITEM_PTR(selections[n]), false);
1850 #else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1851 ::UnselectItem(GetHwnd(), HITEM_PTR(selections[n]));
1852 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1853 }
1854 }
1855 else
1856 {
1857 // just remove the selection
1858 Unselect();
1859 }
1860 }
1861
1862 void wxTreeCtrl::SelectItem(const wxTreeItemId& item)
1863 {
1864 if ( m_windowStyle & wxTR_MULTIPLE )
1865 {
1866 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1867 // selecting the item means checking it
1868 SetItemCheck(item);
1869 #else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1870 ::SelectItem(GetHwnd(), HITEM(item));
1871 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1872 }
1873 else
1874 {
1875 // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive
1876 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1877 // send them ourselves
1878
1879 wxTreeEvent event(wxEVT_NULL, m_windowId);
1880 event.m_item = item;
1881 event.SetEventObject(this);
1882
1883 event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING);
1884 if ( !GetEventHandler()->ProcessEvent(event) || event.IsAllowed() )
1885 {
1886 if ( !TreeView_SelectItem(GetHwnd(), HITEM(item)) )
1887 {
1888 wxLogLastError(wxT("TreeView_SelectItem"));
1889 }
1890 else
1891 {
1892 event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED);
1893 (void)GetEventHandler()->ProcessEvent(event);
1894 }
1895 }
1896 //else: program vetoed the change
1897 }
1898 }
1899
1900 void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item)
1901 {
1902 // no error return
1903 TreeView_EnsureVisible(GetHwnd(), HITEM(item));
1904 }
1905
1906 void wxTreeCtrl::ScrollTo(const wxTreeItemId& item)
1907 {
1908 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item)) )
1909 {
1910 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1911 }
1912 }
1913
1914 wxTextCtrl *wxTreeCtrl::GetEditControl() const
1915 {
1916 return m_textCtrl;
1917 }
1918
1919 void wxTreeCtrl::DeleteTextCtrl()
1920 {
1921 if ( m_textCtrl )
1922 {
1923 // the HWND corresponding to this control is deleted by the tree
1924 // control itself and we don't know when exactly this happens, so check
1925 // if the window still exists before calling UnsubclassWin()
1926 if ( !::IsWindow(GetHwndOf(m_textCtrl)) )
1927 {
1928 m_textCtrl->SetHWND(0);
1929 }
1930
1931 m_textCtrl->UnsubclassWin();
1932 m_textCtrl->SetHWND(0);
1933 delete m_textCtrl;
1934 m_textCtrl = NULL;
1935 }
1936 }
1937
1938 wxTextCtrl* wxTreeCtrl::EditLabel(const wxTreeItemId& item,
1939 wxClassInfo* textControlClass)
1940 {
1941 wxASSERT( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)) );
1942
1943 DeleteTextCtrl();
1944
1945 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
1946 HWND hWnd = (HWND) TreeView_EditLabel(GetHwnd(), HITEM(item));
1947
1948 // this is not an error - the TVN_BEGINLABELEDIT handler might have
1949 // returned false
1950 if ( !hWnd )
1951 {
1952 delete m_textCtrl;
1953 m_textCtrl = NULL;
1954 return NULL;
1955 }
1956
1957 // textctrl is subclassed in MSWOnNotify
1958 return m_textCtrl;
1959 }
1960
1961 // End label editing, optionally cancelling the edit
1962 void wxTreeCtrl::EndEditLabel(const wxTreeItemId& WXUNUSED(item), bool discardChanges)
1963 {
1964 TreeView_EndEditLabelNow(GetHwnd(), discardChanges);
1965
1966 DeleteTextCtrl();
1967 }
1968
1969 wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& flags)
1970 {
1971 TV_HITTESTINFO hitTestInfo;
1972 hitTestInfo.pt.x = (int)point.x;
1973 hitTestInfo.pt.y = (int)point.y;
1974
1975 TreeView_HitTest(GetHwnd(), &hitTestInfo);
1976
1977 flags = 0;
1978
1979 // avoid repetition
1980 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
1981 flags |= wxTREE_HITTEST_##flag
1982
1983 TRANSLATE_FLAG(ABOVE);
1984 TRANSLATE_FLAG(BELOW);
1985 TRANSLATE_FLAG(NOWHERE);
1986 TRANSLATE_FLAG(ONITEMBUTTON);
1987 TRANSLATE_FLAG(ONITEMICON);
1988 TRANSLATE_FLAG(ONITEMINDENT);
1989 TRANSLATE_FLAG(ONITEMLABEL);
1990 TRANSLATE_FLAG(ONITEMRIGHT);
1991 TRANSLATE_FLAG(ONITEMSTATEICON);
1992 TRANSLATE_FLAG(TOLEFT);
1993 TRANSLATE_FLAG(TORIGHT);
1994
1995 #undef TRANSLATE_FLAG
1996
1997 return wxTreeItemId(hitTestInfo.hItem);
1998 }
1999
2000 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
2001 wxRect& rect,
2002 bool textOnly) const
2003 {
2004 RECT rc;
2005
2006 // Virtual root items have no bounding rectangle
2007 if ( IS_VIRTUAL_ROOT(item) )
2008 {
2009 return false;
2010 }
2011
2012 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item),
2013 &rc, textOnly) )
2014 {
2015 rect = wxRect(wxPoint(rc.left, rc.top), wxPoint(rc.right, rc.bottom));
2016
2017 return true;
2018 }
2019 else
2020 {
2021 // couldn't retrieve rect: for example, item isn't visible
2022 return false;
2023 }
2024 }
2025
2026 // ----------------------------------------------------------------------------
2027 // sorting stuff
2028 // ----------------------------------------------------------------------------
2029
2030 // this is just a tiny namespace which is friend to wxTreeCtrl and so can use
2031 // functions such as IsDataIndirect()
2032 class wxTreeSortHelper
2033 {
2034 public:
2035 static int CALLBACK Compare(LPARAM data1, LPARAM data2, LPARAM tree);
2036
2037 private:
2038 static wxTreeItemId GetIdFromData(wxTreeCtrl *tree, LPARAM item)
2039 {
2040 wxTreeItemData *data = (wxTreeItemData *)item;
2041 if ( tree->IsDataIndirect(data) )
2042 {
2043 data = ((wxTreeItemIndirectData *)data)->GetData();
2044 }
2045
2046 return data->GetId();
2047 }
2048 };
2049
2050 int CALLBACK wxTreeSortHelper::Compare(LPARAM pItem1,
2051 LPARAM pItem2,
2052 LPARAM htree)
2053 {
2054 wxCHECK_MSG( pItem1 && pItem2, 0,
2055 wxT("sorting tree without data doesn't make sense") );
2056
2057 wxTreeCtrl *tree = (wxTreeCtrl *)htree;
2058
2059 return tree->OnCompareItems(GetIdFromData(tree, pItem1),
2060 GetIdFromData(tree, pItem2));
2061 }
2062
2063 int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1,
2064 const wxTreeItemId& item2)
2065 {
2066 return wxStrcmp(GetItemText(item1), GetItemText(item2));
2067 }
2068
2069 void wxTreeCtrl::SortChildren(const wxTreeItemId& item)
2070 {
2071 // rely on the fact that TreeView_SortChildren does the same thing as our
2072 // default behaviour, i.e. sorts items alphabetically and so call it
2073 // directly if we're not in derived class (much more efficient!)
2074 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl) )
2075 {
2076 TreeView_SortChildren(GetHwnd(), HITEM(item), 0);
2077 }
2078 else
2079 {
2080 TV_SORTCB tvSort;
2081 tvSort.hParent = HITEM(item);
2082 tvSort.lpfnCompare = wxTreeSortHelper::Compare;
2083 tvSort.lParam = (LPARAM)this;
2084 TreeView_SortChildrenCB(GetHwnd(), &tvSort, 0 /* reserved */);
2085 }
2086 }
2087
2088 // ----------------------------------------------------------------------------
2089 // implementation
2090 // ----------------------------------------------------------------------------
2091
2092 bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id)
2093 {
2094 if ( cmd == EN_UPDATE )
2095 {
2096 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
2097 event.SetEventObject( this );
2098 ProcessCommand(event);
2099 }
2100 else if ( cmd == EN_KILLFOCUS )
2101 {
2102 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
2103 event.SetEventObject( this );
2104 ProcessCommand(event);
2105 }
2106 else
2107 {
2108 // nothing done
2109 return false;
2110 }
2111
2112 // command processed
2113 return true;
2114 }
2115
2116 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
2117 // only do it during dragging, minimize wxWin overhead (this is important for
2118 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
2119 // instead of passing by wxWin events
2120 long wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
2121 {
2122 bool processed = false;
2123 long rc = 0;
2124 bool isMultiple = (GetWindowStyle() & wxTR_MULTIPLE) != 0;
2125
2126 if ( (nMsg >= WM_MOUSEFIRST) && (nMsg <= WM_MOUSELAST) )
2127 {
2128 // we only process mouse messages here and these parameters have the
2129 // same meaning for all of them
2130 int x = GET_X_LPARAM(lParam),
2131 y = GET_Y_LPARAM(lParam);
2132 HTREEITEM htItem = GetItemFromPoint(GetHwnd(), x, y);
2133
2134 switch ( nMsg )
2135 {
2136 case WM_RBUTTONDOWN:
2137 // if the item we are about to right click on is not already
2138 // selected or if we click outside of any item, remove the
2139 // entire previous selection
2140 if ( !htItem || !::IsItemSelected(GetHwnd(), htItem) )
2141 {
2142 UnselectAll();
2143 }
2144
2145 // select item and set the focus to the
2146 // newly selected item
2147 ::SelectItem(GetHwnd(), htItem);
2148 ::SetFocus(GetHwnd(), htItem);
2149 break;
2150
2151 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2152 case WM_LBUTTONDOWN:
2153 if ( htItem && isMultiple )
2154 {
2155 if ( wParam & MK_CONTROL )
2156 {
2157 SetFocus();
2158
2159 // toggle selected state
2160 ToggleItemSelection(GetHwnd(), htItem);
2161
2162 ::SetFocus(GetHwnd(), htItem);
2163
2164 // reset on any click without Shift
2165 m_htSelStart.Unset();
2166
2167 processed = true;
2168 }
2169 else if ( wParam & MK_SHIFT )
2170 {
2171 // this selects all items between the starting one and
2172 // the current
2173
2174 if ( !m_htSelStart )
2175 {
2176 // take the focused item
2177 m_htSelStart = TreeView_GetSelection(GetHwnd());
2178 }
2179
2180 SelectRange(GetHwnd(), HITEM(m_htSelStart), htItem,
2181 !(wParam & MK_CONTROL));
2182
2183 ::SetFocus(GetHwnd(), htItem);
2184
2185 processed = true;
2186 }
2187 else // normal click
2188 {
2189 // avoid doing anything if we click on the only
2190 // currently selected item
2191
2192 wxArrayTreeItemIds selections;
2193 size_t count = GetSelections(selections);
2194 if ( count == 0 ||
2195 count > 1 ||
2196 HITEM_PTR(selections[0]) != htItem )
2197 {
2198 // clear the previously selected items, if the
2199 // user clicked outside of the present selection.
2200 // otherwise, perform the deselection on mouse-up.
2201 // this allows multiple drag and drop to work.
2202
2203 if (IsItemSelected(GetHwnd(), htItem))
2204 {
2205 ::SetFocus(GetHwnd(), htItem);
2206 }
2207 else
2208 {
2209 UnselectAll();
2210
2211 // prevent the click from starting in-place editing
2212 // which should only happen if we click on the
2213 // already selected item (and nothing else is
2214 // selected)
2215
2216 TreeView_SelectItem(GetHwnd(), 0);
2217 ::SelectItem(GetHwnd(), htItem);
2218 }
2219 }
2220
2221 // reset on any click without Shift
2222 m_htSelStart.Unset();
2223 }
2224 }
2225 break;
2226 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2227
2228 case WM_MOUSEMOVE:
2229 if ( m_dragImage )
2230 {
2231 m_dragImage->Move(wxPoint(x, y));
2232 if ( htItem )
2233 {
2234 // highlight the item as target (hiding drag image is
2235 // necessary - otherwise the display will be corrupted)
2236 m_dragImage->Hide();
2237 TreeView_SelectDropTarget(GetHwnd(), htItem);
2238 m_dragImage->Show();
2239 }
2240 }
2241 break;
2242
2243 case WM_LBUTTONUP:
2244
2245 // facilitates multiple drag-and-drop
2246 if (htItem && isMultiple)
2247 {
2248 wxArrayTreeItemIds selections;
2249 size_t count = GetSelections(selections);
2250
2251 if (count > 1 &&
2252 !(wParam & MK_CONTROL) &&
2253 !(wParam & MK_SHIFT))
2254 {
2255 UnselectAll();
2256 TreeView_SelectItem(GetHwnd(), htItem);
2257 }
2258 }
2259
2260 // fall through
2261
2262 case WM_RBUTTONUP:
2263 if ( m_dragImage )
2264 {
2265 m_dragImage->EndDrag();
2266 delete m_dragImage;
2267 m_dragImage = NULL;
2268
2269 // generate the drag end event
2270 wxTreeEvent event(wxEVT_COMMAND_TREE_END_DRAG, m_windowId);
2271
2272 event.m_item = htItem;
2273 event.m_pointDrag = wxPoint(x, y);
2274 event.SetEventObject(this);
2275
2276 (void)GetEventHandler()->ProcessEvent(event);
2277
2278 // if we don't do it, the tree seems to think that 2 items
2279 // are selected simultaneously which is quite weird
2280 TreeView_SelectDropTarget(GetHwnd(), 0);
2281 }
2282 break;
2283 }
2284 }
2285 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2286 else if ( (nMsg == WM_SETFOCUS || nMsg == WM_KILLFOCUS) && isMultiple )
2287 {
2288 // the tree control greys out the selected item when it loses focus and
2289 // paints it as selected again when it regains it, but it won't do it
2290 // for the other items itself - help it
2291 wxArrayTreeItemIds selections;
2292 size_t count = GetSelections(selections);
2293 RECT rect;
2294 for ( size_t n = 0; n < count; n++ )
2295 {
2296 // TreeView_GetItemRect() will return false if item is not visible,
2297 // which may happen perfectly well
2298 if ( TreeView_GetItemRect(GetHwnd(), HITEM_PTR(selections[n]),
2299 &rect, true) )
2300 {
2301 ::InvalidateRect(GetHwnd(), &rect, false);
2302 }
2303 }
2304 }
2305 else if ( nMsg == WM_KEYDOWN && isMultiple )
2306 {
2307 bool bCtrl = wxIsCtrlDown(),
2308 bShift = wxIsShiftDown();
2309
2310 // we handle.arrows and space, but not page up/down and home/end: the
2311 // latter should be easy, but not the former
2312
2313 HTREEITEM htSel = (HTREEITEM)TreeView_GetSelection(GetHwnd());
2314 if ( !m_htSelStart )
2315 {
2316 m_htSelStart = htSel;
2317 }
2318
2319 if ( wParam == VK_SPACE )
2320 {
2321 if ( bCtrl )
2322 {
2323 ToggleItemSelection(GetHwnd(), htSel);
2324 }
2325 else
2326 {
2327 UnselectAll();
2328
2329 ::SelectItem(GetHwnd(), htSel);
2330 }
2331
2332 processed = true;
2333 }
2334 else if ( wParam == VK_UP || wParam == VK_DOWN )
2335 {
2336 if ( !bCtrl && !bShift )
2337 {
2338 // no modifiers, just clear selection and then let the default
2339 // processing to take place
2340 UnselectAll();
2341 }
2342 else if ( htSel )
2343 {
2344 (void)wxControl::MSWWindowProc(nMsg, wParam, lParam);
2345
2346 HTREEITEM htNext = (HTREEITEM)(wParam == VK_UP
2347 ? TreeView_GetPrevVisible(GetHwnd(), htSel)
2348 : TreeView_GetNextVisible(GetHwnd(), htSel));
2349
2350 if ( !htNext )
2351 {
2352 // at the top/bottom
2353 htNext = htSel;
2354 }
2355
2356 if ( bShift )
2357 {
2358 SelectRange(GetHwnd(), HITEM(m_htSelStart), htNext);
2359 }
2360 else // bCtrl
2361 {
2362 // without changing selection
2363 ::SetFocus(GetHwnd(), htNext);
2364 }
2365
2366 processed = true;
2367 }
2368 }
2369 }
2370 #endif // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2371 else if ( nMsg == WM_CHAR )
2372 {
2373 // don't let the control process Space and Return keys because it
2374 // doesn't do anything useful with them anyhow but always beeps
2375 // annoyingly when it receives them and there is no way to turn it off
2376 // simply if you just process TREEITEM_ACTIVATED event to which Space
2377 // and Enter presses are mapped in your code
2378 if ( wParam == VK_SPACE || wParam == VK_RETURN )
2379 {
2380 processed = true;
2381 }
2382 }
2383
2384 if ( !processed )
2385 rc = wxControl::MSWWindowProc(nMsg, wParam, lParam);
2386
2387 return rc;
2388 }
2389
2390 // process WM_NOTIFY Windows message
2391 bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
2392 {
2393 wxTreeEvent event(wxEVT_NULL, m_windowId);
2394 wxEventType eventType = wxEVT_NULL;
2395 NMHDR *hdr = (NMHDR *)lParam;
2396
2397 switch ( hdr->code )
2398 {
2399 case TVN_BEGINDRAG:
2400 eventType = wxEVT_COMMAND_TREE_BEGIN_DRAG;
2401 // fall through
2402
2403 case TVN_BEGINRDRAG:
2404 {
2405 if ( eventType == wxEVT_NULL )
2406 eventType = wxEVT_COMMAND_TREE_BEGIN_RDRAG;
2407 //else: left drag, already set above
2408
2409 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
2410
2411 event.m_item = tv->itemNew.hItem;
2412 event.m_pointDrag = wxPoint(tv->ptDrag.x, tv->ptDrag.y);
2413
2414 // don't allow dragging by default: the user code must
2415 // explicitly say that it wants to allow it to avoid breaking
2416 // the old apps
2417 event.Veto();
2418 }
2419 break;
2420
2421 case TVN_BEGINLABELEDIT:
2422 {
2423 eventType = wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT;
2424 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2425
2426 event.m_item = info->item.hItem;
2427 event.m_label = info->item.pszText;
2428 event.m_editCancelled = false;
2429 }
2430 break;
2431
2432 case TVN_DELETEITEM:
2433 {
2434 eventType = wxEVT_COMMAND_TREE_DELETE_ITEM;
2435 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
2436
2437 event.m_item = tv->itemOld.hItem;
2438
2439 if ( m_hasAnyAttr )
2440 {
2441 wxMapTreeAttr::iterator it = m_attrs.find(tv->itemOld.hItem);
2442 if ( it != m_attrs.end() )
2443 {
2444 delete it->second;
2445 m_attrs.erase(it);
2446 }
2447 }
2448 }
2449 break;
2450
2451 case TVN_ENDLABELEDIT:
2452 {
2453 eventType = wxEVT_COMMAND_TREE_END_LABEL_EDIT;
2454 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2455
2456 event.m_item = info->item.hItem;
2457 event.m_label = info->item.pszText;
2458 event.m_editCancelled = info->item.pszText == NULL;
2459 break;
2460 }
2461
2462 case TVN_GETDISPINFO:
2463 eventType = wxEVT_COMMAND_TREE_GET_INFO;
2464 // fall through
2465
2466 case TVN_SETDISPINFO:
2467 {
2468 if ( eventType == wxEVT_NULL )
2469 eventType = wxEVT_COMMAND_TREE_SET_INFO;
2470 //else: get, already set above
2471
2472 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2473
2474 event.m_item = info->item.hItem;
2475 break;
2476 }
2477
2478 case TVN_ITEMEXPANDING:
2479 case TVN_ITEMEXPANDED:
2480 {
2481 NM_TREEVIEW* tv = (NM_TREEVIEW*)lParam;
2482
2483 int what;
2484 switch ( tv->action )
2485 {
2486 default:
2487 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv->action);
2488 // fall through
2489
2490 case TVE_EXPAND:
2491 what = IDX_EXPAND;
2492 break;
2493
2494 case TVE_COLLAPSE:
2495 what = IDX_COLLAPSE;
2496 break;
2497 }
2498
2499 int how = hdr->code == TVN_ITEMEXPANDING ? IDX_DOING
2500 : IDX_DONE;
2501
2502 eventType = gs_expandEvents[what][how];
2503
2504 event.m_item = tv->itemNew.hItem;
2505 }
2506 break;
2507
2508 case TVN_KEYDOWN:
2509 {
2510 eventType = wxEVT_COMMAND_TREE_KEY_DOWN;
2511 TV_KEYDOWN *info = (TV_KEYDOWN *)lParam;
2512
2513 // fabricate the lParam and wParam parameters sufficiently
2514 // similar to the ones from a "real" WM_KEYDOWN so that
2515 // CreateKeyEvent() works correctly
2516 WXLPARAM lParam =
2517 (::GetKeyState(VK_MENU) < 0 ? KF_ALTDOWN : 0) << 16;
2518
2519 WXWPARAM wParam = info->wVKey;
2520
2521 int keyCode = wxCharCodeMSWToWX(info->wVKey);
2522 if ( !keyCode )
2523 {
2524 // wxCharCodeMSWToWX() returns 0 to indicate that this is a
2525 // simple ASCII key
2526 keyCode = wParam;
2527 }
2528
2529 event.m_evtKey = CreateKeyEvent(wxEVT_KEY_DOWN,
2530 keyCode,
2531 lParam,
2532 wParam);
2533
2534 // a separate event for Space/Return
2535 if ( !wxIsCtrlDown() && !wxIsShiftDown() &&
2536 ((info->wVKey == VK_SPACE) || (info->wVKey == VK_RETURN)) )
2537 {
2538 wxTreeEvent event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED,
2539 m_windowId);
2540 event2.SetEventObject(this);
2541 if ( !(GetWindowStyle() & wxTR_MULTIPLE) )
2542 {
2543 event2.m_item = GetSelection();
2544 }
2545 //else: don't know how to get it
2546
2547 (void)GetEventHandler()->ProcessEvent(event2);
2548 }
2549 }
2550 break;
2551
2552 // NB: MSLU is broken and sends TVN_SELCHANGEDA instead of
2553 // TVN_SELCHANGEDW in Unicode mode under Win98. Therefore
2554 // we have to handle both messages:
2555 case TVN_SELCHANGEDA:
2556 case TVN_SELCHANGEDW:
2557 eventType = wxEVT_COMMAND_TREE_SEL_CHANGED;
2558 // fall through
2559
2560 case TVN_SELCHANGINGA:
2561 case TVN_SELCHANGINGW:
2562 {
2563 if ( eventType == wxEVT_NULL )
2564 eventType = wxEVT_COMMAND_TREE_SEL_CHANGING;
2565 //else: already set above
2566
2567 if (hdr->code == TVN_SELCHANGINGW ||
2568 hdr->code == TVN_SELCHANGEDW)
2569 {
2570 NM_TREEVIEWW* tv = (NM_TREEVIEWW *)lParam;
2571 event.m_item = tv->itemNew.hItem;
2572 event.m_itemOld = tv->itemOld.hItem;
2573 }
2574 else
2575 {
2576 NM_TREEVIEWA* tv = (NM_TREEVIEWA *)lParam;
2577 event.m_item = tv->itemNew.hItem;
2578 event.m_itemOld = tv->itemOld.hItem;
2579 }
2580 }
2581 break;
2582
2583 // instead of explicitly checking for _WIN32_IE, check if the
2584 // required symbols are available in the headers
2585 #if defined(CDDS_PREPAINT) && !wxUSE_COMCTL32_SAFELY
2586 case NM_CUSTOMDRAW:
2587 {
2588 LPNMTVCUSTOMDRAW lptvcd = (LPNMTVCUSTOMDRAW)lParam;
2589 NMCUSTOMDRAW& nmcd = lptvcd->nmcd;
2590 switch ( nmcd.dwDrawStage )
2591 {
2592 case CDDS_PREPAINT:
2593 // if we've got any items with non standard attributes,
2594 // notify us before painting each item
2595 *result = m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
2596 : CDRF_DODEFAULT;
2597 break;
2598
2599 case CDDS_ITEMPREPAINT:
2600 {
2601 wxMapTreeAttr::iterator
2602 it = m_attrs.find((void *)nmcd.dwItemSpec);
2603
2604 if ( it == m_attrs.end() )
2605 {
2606 // nothing to do for this item
2607 *result = CDRF_DODEFAULT;
2608 break;
2609 }
2610
2611 wxTreeItemAttr * const attr = it->second;
2612
2613 HFONT hFont;
2614 if ( attr->HasFont() )
2615 {
2616 hFont = GetHfontOf(attr->GetFont());
2617 }
2618 else
2619 {
2620 hFont = 0;
2621 }
2622
2623 wxColour colText;
2624 if ( attr->HasTextColour() )
2625 {
2626 colText = attr->GetTextColour();
2627 }
2628 else
2629 {
2630 colText = GetForegroundColour();
2631 }
2632
2633 // selection colours should override ours
2634 if ( nmcd.uItemState & CDIS_SELECTED )
2635 {
2636 lptvcd->clrTextBk =
2637 ::GetSysColor(COLOR_HIGHLIGHT);
2638 lptvcd->clrText =
2639 ::GetSysColor(COLOR_HIGHLIGHTTEXT);
2640 }
2641 else // !selected
2642 {
2643 wxColour colBack;
2644 if ( attr->HasBackgroundColour() )
2645 {
2646 colBack = attr->GetBackgroundColour();
2647 }
2648 else
2649 {
2650 colBack = GetBackgroundColour();
2651 }
2652
2653 lptvcd->clrText = wxColourToRGB(colText);
2654 lptvcd->clrTextBk = wxColourToRGB(colBack);
2655 }
2656
2657 // note that if we wanted to set colours for
2658 // individual columns (subitems), we would have
2659 // returned CDRF_NOTIFYSUBITEMREDRAW from here
2660 if ( hFont )
2661 {
2662 ::SelectObject(nmcd.hdc, hFont);
2663
2664 *result = CDRF_NEWFONT;
2665 }
2666 else
2667 {
2668 *result = CDRF_DODEFAULT;
2669 }
2670 }
2671 break;
2672
2673 default:
2674 *result = CDRF_DODEFAULT;
2675 }
2676 }
2677
2678 // we always process it
2679 return true;
2680 #endif // have owner drawn support in headers
2681
2682 case NM_CLICK:
2683 {
2684 DWORD pos = GetMessagePos();
2685 POINT point;
2686 point.x = LOWORD(pos);
2687 point.y = HIWORD(pos);
2688 ::MapWindowPoints(HWND_DESKTOP, GetHwnd(), &point, 1);
2689 int flags = 0;
2690 wxTreeItemId item = HitTest(wxPoint(point.x, point.y), flags);
2691 if (flags & wxTREE_HITTEST_ONITEMSTATEICON)
2692 {
2693 event.m_item = item;
2694 eventType = wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK;
2695 }
2696 break;
2697 }
2698
2699 case NM_DBLCLK:
2700 case NM_RCLICK:
2701 {
2702 TV_HITTESTINFO tvhti;
2703 ::GetCursorPos(&tvhti.pt);
2704 ::ScreenToClient(GetHwnd(), &tvhti.pt);
2705 if ( TreeView_HitTest(GetHwnd(), &tvhti) )
2706 {
2707 if ( tvhti.flags & TVHT_ONITEM )
2708 {
2709 event.m_item = tvhti.hItem;
2710 eventType = (int)hdr->code == NM_DBLCLK
2711 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2712 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK;
2713
2714 event.m_pointDrag.x = tvhti.pt.x;
2715 event.m_pointDrag.y = tvhti.pt.y;
2716 }
2717
2718 break;
2719 }
2720 }
2721 // fall through
2722
2723 default:
2724 return wxControl::MSWOnNotify(idCtrl, lParam, result);
2725 }
2726
2727 event.SetEventObject(this);
2728 event.SetEventType(eventType);
2729
2730 bool processed = GetEventHandler()->ProcessEvent(event);
2731
2732 // post processing
2733 switch ( hdr->code )
2734 {
2735 case NM_DBLCLK:
2736 // we translate NM_DBLCLK into ACTIVATED event, so don't interpret
2737 // the return code of this event handler as the return value for
2738 // NM_DBLCLK - otherwise, double clicking the item to toggle its
2739 // expanded status would never work
2740 *result = false;
2741 break;
2742
2743 case TVN_BEGINDRAG:
2744 case TVN_BEGINRDRAG:
2745 if ( event.IsAllowed() )
2746 {
2747 // normally this is impossible because the m_dragImage is
2748 // deleted once the drag operation is over
2749 wxASSERT_MSG( !m_dragImage, _T("starting to drag once again?") );
2750
2751 m_dragImage = new wxDragImage(*this, event.m_item);
2752 m_dragImage->BeginDrag(wxPoint(0, 0), this);
2753 m_dragImage->Show();
2754 }
2755 break;
2756
2757 case TVN_DELETEITEM:
2758 {
2759 // NB: we might process this message using wxWindows event
2760 // tables, but due to overhead of wxWin event system we
2761 // prefer to do it here ourself (otherwise deleting a tree
2762 // with many items is just too slow)
2763 NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam;
2764
2765 wxTreeItemId item = event.m_item;
2766 if ( HasIndirectData(item) )
2767 {
2768 wxTreeItemIndirectData *data = (wxTreeItemIndirectData *)
2769 tv->itemOld.lParam;
2770 delete data; // can't be NULL here
2771 }
2772 else
2773 {
2774 wxTreeItemData *data = (wxTreeItemData *)tv->itemOld.lParam;
2775 delete data; // may be NULL, ok
2776 }
2777
2778 processed = true; // Make sure we don't get called twice
2779 }
2780 break;
2781
2782 case TVN_BEGINLABELEDIT:
2783 // return true to cancel label editing
2784 *result = !event.IsAllowed();
2785 // set ES_WANTRETURN ( like we do in BeginLabelEdit )
2786 if(event.IsAllowed())
2787 {
2788 HWND hText = TreeView_GetEditControl(GetHwnd());
2789 if(hText != NULL)
2790 {
2791 // MBN: if m_textCtrl already has an HWND, it is a stale
2792 // pointer from a previous edit (because the user
2793 // didn't modify the label before dismissing the control,
2794 // and TVN_ENDLABELEDIT was not sent), so delete it
2795 if(m_textCtrl && m_textCtrl->GetHWND() != 0)
2796 DeleteTextCtrl();
2797 if(!m_textCtrl)
2798 m_textCtrl = new wxTextCtrl();
2799 m_textCtrl->SetParent(this);
2800 m_textCtrl->SetHWND((WXHWND)hText);
2801 m_textCtrl->SubclassWin((WXHWND)hText);
2802
2803 // set wxTE_PROCESS_ENTER style for the text control to
2804 // force it to process the Enter presses itself, otherwise
2805 // they could be stolen from it by the dialog
2806 // navigation code
2807 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle()
2808 | wxTE_PROCESS_ENTER);
2809 }
2810 }
2811 break;
2812
2813 case TVN_ENDLABELEDIT:
2814 // return true to set the label to the new string: note that we
2815 // also must pretend that we did process the message or it is going
2816 // to be passed to DefWindowProc() which will happily return false
2817 // cancelling the label change
2818 *result = event.IsAllowed();
2819 processed = true;
2820
2821 // ensure that we don't have the text ctrl which is going to be
2822 // deleted any more
2823 DeleteTextCtrl();
2824 break;
2825
2826 case TVN_SELCHANGING:
2827 case TVN_ITEMEXPANDING:
2828 // return true to prevent the action from happening
2829 *result = !event.IsAllowed();
2830 break;
2831
2832 case TVN_ITEMEXPANDED:
2833 // the item is not refreshed properly after expansion when it has
2834 // an image depending on the expanded/collapsed state - bug in
2835 // comctl32.dll or our code?
2836 {
2837 NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam;
2838 wxTreeItemId id(tv->itemNew.hItem);
2839
2840 int image = GetItemImage(id, wxTreeItemIcon_Expanded);
2841 if ( image != -1 )
2842 {
2843 RefreshItem(id);
2844 }
2845 }
2846 break;
2847
2848 case TVN_GETDISPINFO:
2849 // NB: so far the user can't set the image himself anyhow, so do it
2850 // anyway - but this may change later
2851 //if ( /* !processed && */ 1 )
2852 {
2853 wxTreeItemId item = event.m_item;
2854 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2855 if ( info->item.mask & TVIF_IMAGE )
2856 {
2857 info->item.iImage =
2858 DoGetItemImageFromData
2859 (
2860 item,
2861 IsExpanded(item) ? wxTreeItemIcon_Expanded
2862 : wxTreeItemIcon_Normal
2863 );
2864 }
2865 if ( info->item.mask & TVIF_SELECTEDIMAGE )
2866 {
2867 info->item.iSelectedImage =
2868 DoGetItemImageFromData
2869 (
2870 item,
2871 IsExpanded(item) ? wxTreeItemIcon_SelectedExpanded
2872 : wxTreeItemIcon_Selected
2873 );
2874 }
2875 }
2876 break;
2877
2878 //default:
2879 // for the other messages the return value is ignored and there is
2880 // nothing special to do
2881 }
2882 return processed;
2883 }
2884
2885 // ----------------------------------------------------------------------------
2886 // State control.
2887 // ----------------------------------------------------------------------------
2888
2889 // why do they define INDEXTOSTATEIMAGEMASK but not the inverse?
2890 #define STATEIMAGEMASKTOINDEX(state) (((state) & TVIS_STATEIMAGEMASK) >> 12)
2891
2892 void wxTreeCtrl::SetState(const wxTreeItemId& node, int state)
2893 {
2894 TV_ITEM tvi;
2895 tvi.hItem = (HTREEITEM)node.m_pItem;
2896 tvi.mask = TVIF_STATE;
2897 tvi.stateMask = TVIS_STATEIMAGEMASK;
2898
2899 // Select the specified state, or -1 == cycle to the next one.
2900 if ( state == -1 )
2901 {
2902 TreeView_GetItem(GetHwnd(), &tvi);
2903
2904 state = STATEIMAGEMASKTOINDEX(tvi.state) + 1;
2905 if ( state == m_imageListState->GetImageCount() )
2906 state = 1;
2907 }
2908
2909 wxCHECK_RET( state < m_imageListState->GetImageCount(),
2910 _T("wxTreeCtrl::SetState(): item index out of bounds") );
2911
2912 tvi.state = INDEXTOSTATEIMAGEMASK(state);
2913
2914 TreeView_SetItem(GetHwnd(), &tvi);
2915 }
2916
2917 int wxTreeCtrl::GetState(const wxTreeItemId& node)
2918 {
2919 TV_ITEM tvi;
2920 tvi.hItem = (HTREEITEM)node.m_pItem;
2921 tvi.mask = TVIF_STATE;
2922 tvi.stateMask = TVIS_STATEIMAGEMASK;
2923 TreeView_GetItem(GetHwnd(), &tvi);
2924
2925 return STATEIMAGEMASKTOINDEX(tvi.state);
2926 }
2927
2928 #endif // wxUSE_TREECTRL
2929