Make wxMSW tree item unlocking reentrant.
[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 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #if wxUSE_TREECTRL
28
29 #include "wx/treectrl.h"
30
31 #ifndef WX_PRECOMP
32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
33 #include "wx/msw/missing.h"
34 #include "wx/dynarray.h"
35 #include "wx/log.h"
36 #include "wx/app.h"
37 #include "wx/settings.h"
38 #endif
39
40 #include "wx/dynlib.h"
41 #include "wx/msw/private.h"
42
43 #include "wx/imaglist.h"
44 #include "wx/msw/dragimag.h"
45 #include "wx/msw/uxtheme.h"
46
47 // macros to hide the cast ugliness
48 // --------------------------------
49
50 // get HTREEITEM from wxTreeItemId
51 #define HITEM(item) ((HTREEITEM)(((item).m_pItem)))
52
53
54 // older SDKs are missing these
55 #ifndef TVN_ITEMCHANGINGA
56
57 #define TVN_ITEMCHANGINGA (TVN_FIRST-16)
58 #define TVN_ITEMCHANGINGW (TVN_FIRST-17)
59
60 typedef struct tagNMTVITEMCHANGE
61 {
62 NMHDR hdr;
63 UINT uChanged;
64 HTREEITEM hItem;
65 UINT uStateNew;
66 UINT uStateOld;
67 LPARAM lParam;
68 } NMTVITEMCHANGE;
69
70 #endif
71
72
73 // this helper class is used on vista systems for preventing unwanted
74 // item state changes in the vista tree control. It is only effective in
75 // multi-select mode on vista systems.
76
77 // The vista tree control includes some new code that originally broke the
78 // multi-selection tree, causing seemingly spurious item selection state changes
79 // during Shift or Ctrl-click item selection. (To witness the original broken
80 // behaviour, simply make IsLocked() below always return false). This problem was
81 // solved by using the following class to 'unlock' an item's selection state.
82
83 class TreeItemUnlocker
84 {
85 public:
86 // unlock a single item
87 TreeItemUnlocker(HTREEITEM item)
88 {
89 m_oldUnlockedItem = ms_unlockedItem;
90 ms_unlockedItem = item;
91 }
92
93 // unlock all items, don't use unless absolutely necessary
94 TreeItemUnlocker()
95 {
96 m_oldUnlockedItem = ms_unlockedItem;
97 ms_unlockedItem = (HTREEITEM)-1;
98 }
99
100 // lock everything back
101 ~TreeItemUnlocker() { ms_unlockedItem = m_oldUnlockedItem; }
102
103
104 // check if the item state is currently locked
105 static bool IsLocked(HTREEITEM item)
106 { return ms_unlockedItem != (HTREEITEM)-1 && item != ms_unlockedItem; }
107
108 private:
109 static HTREEITEM ms_unlockedItem;
110 HTREEITEM m_oldUnlockedItem;
111
112 wxDECLARE_NO_COPY_CLASS(TreeItemUnlocker);
113 };
114
115 HTREEITEM TreeItemUnlocker::ms_unlockedItem = NULL;
116
117 // another helper class: set the variable to true during its lifetime and reset
118 // it to false when it is destroyed
119 //
120 // it is currently always used with wxTreeCtrl::m_changingSelection
121 class TempSetter
122 {
123 public:
124 TempSetter(bool& var) : m_var(var)
125 {
126 wxASSERT_MSG( !m_var, "variable shouldn't be already set" );
127 m_var = true;
128 }
129
130 ~TempSetter()
131 {
132 m_var = false;
133 }
134
135 private:
136 bool& m_var;
137
138 wxDECLARE_NO_COPY_CLASS(TempSetter);
139 };
140
141 // ----------------------------------------------------------------------------
142 // private functions
143 // ----------------------------------------------------------------------------
144
145 namespace
146 {
147
148 // Work around a problem with TreeView_GetItemRect() when using MinGW/Cygwin:
149 // it results in warnings about breaking strict aliasing rules because HITEM is
150 // passed via a RECT pointer, so use a union to avoid them and define our own
151 // version of the standard macro using it.
152 union TVGetItemRectParam
153 {
154 RECT rect;
155 HTREEITEM hItem;
156 };
157
158 inline bool
159 wxTreeView_GetItemRect(HWND hwnd,
160 HTREEITEM hItem,
161 TVGetItemRectParam& param,
162 BOOL fItemRect)
163 {
164 param.hItem = hItem;
165 return ::SendMessage(hwnd, TVM_GETITEMRECT, fItemRect,
166 (LPARAM)&param) == TRUE;
167 }
168
169 } // anonymous namespace
170
171 // wrappers for TreeView_GetItem/TreeView_SetItem
172 static bool IsItemSelected(HWND hwndTV, HTREEITEM hItem)
173 {
174 TV_ITEM tvi;
175 tvi.mask = TVIF_STATE | TVIF_HANDLE;
176 tvi.stateMask = TVIS_SELECTED;
177 tvi.hItem = hItem;
178
179 TreeItemUnlocker unlocker(hItem);
180
181 if ( !TreeView_GetItem(hwndTV, &tvi) )
182 {
183 wxLogLastError(wxT("TreeView_GetItem"));
184 }
185
186 return (tvi.state & TVIS_SELECTED) != 0;
187 }
188
189 static bool SelectItem(HWND hwndTV, HTREEITEM hItem, bool select = true)
190 {
191 TV_ITEM tvi;
192 tvi.mask = TVIF_STATE | TVIF_HANDLE;
193 tvi.stateMask = TVIS_SELECTED;
194 tvi.state = select ? TVIS_SELECTED : 0;
195 tvi.hItem = hItem;
196
197 TreeItemUnlocker unlocker(hItem);
198
199 if ( TreeView_SetItem(hwndTV, &tvi) == -1 )
200 {
201 wxLogLastError(wxT("TreeView_SetItem"));
202 return false;
203 }
204
205 return true;
206 }
207
208 static inline void UnselectItem(HWND hwndTV, HTREEITEM htItem)
209 {
210 SelectItem(hwndTV, htItem, false);
211 }
212
213 static inline void ToggleItemSelection(HWND hwndTV, HTREEITEM htItem)
214 {
215 SelectItem(hwndTV, htItem, !IsItemSelected(hwndTV, htItem));
216 }
217
218 // helper function which selects all items in a range and, optionally,
219 // deselects all the other ones
220 //
221 // returns true if the selection changed at all or false if nothing changed
222
223 // flags for SelectRange()
224 enum
225 {
226 SR_SIMULATE = 1, // don't do anything, just return true or false
227 SR_UNSELECT_OTHERS = 2 // deselect the items not in range
228 };
229
230 static bool SelectRange(HWND hwndTV,
231 HTREEITEM htFirst,
232 HTREEITEM htLast,
233 int flags)
234 {
235 // find the first (or last) item and select it
236 bool changed = false;
237 bool cont = true;
238 HTREEITEM htItem = (HTREEITEM)TreeView_GetRoot(hwndTV);
239
240 while ( htItem && cont )
241 {
242 if ( (htItem == htFirst) || (htItem == htLast) )
243 {
244 if ( !IsItemSelected(hwndTV, htItem) )
245 {
246 if ( !(flags & SR_SIMULATE) )
247 {
248 SelectItem(hwndTV, htItem);
249 }
250
251 changed = true;
252 }
253
254 cont = false;
255 }
256 else // not first or last
257 {
258 if ( flags & SR_UNSELECT_OTHERS )
259 {
260 if ( IsItemSelected(hwndTV, htItem) )
261 {
262 if ( !(flags & SR_SIMULATE) )
263 UnselectItem(hwndTV, htItem);
264
265 changed = true;
266 }
267 }
268 }
269
270 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
271 }
272
273 // select the items in range
274 cont = htFirst != htLast;
275 while ( htItem && cont )
276 {
277 if ( !IsItemSelected(hwndTV, htItem) )
278 {
279 if ( !(flags & SR_SIMULATE) )
280 {
281 SelectItem(hwndTV, htItem);
282 }
283
284 changed = true;
285 }
286
287 cont = (htItem != htFirst) && (htItem != htLast);
288
289 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
290 }
291
292 // optionally deselect the rest
293 if ( flags & SR_UNSELECT_OTHERS )
294 {
295 while ( htItem )
296 {
297 if ( IsItemSelected(hwndTV, htItem) )
298 {
299 if ( !(flags & SR_SIMULATE) )
300 {
301 UnselectItem(hwndTV, htItem);
302 }
303
304 changed = true;
305 }
306
307 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
308 }
309 }
310
311 // seems to be necessary - otherwise the just selected items don't always
312 // appear as selected
313 if ( !(flags & SR_SIMULATE) )
314 {
315 UpdateWindow(hwndTV);
316 }
317
318 return changed;
319 }
320
321 // helper function which tricks the standard control into changing the focused
322 // item without changing anything else (if someone knows why Microsoft doesn't
323 // allow to do it by just setting TVIS_FOCUSED flag, please tell me!)
324 //
325 // returns true if the focus was changed, false if the given item was already
326 // the focused one
327 static bool SetFocus(HWND hwndTV, HTREEITEM htItem)
328 {
329 // the current focus
330 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(hwndTV);
331
332 if ( htItem == htFocus )
333 return false;
334
335 if ( htItem )
336 {
337 // remember the selection state of the item
338 bool wasSelected = IsItemSelected(hwndTV, htItem);
339
340 if ( htFocus && IsItemSelected(hwndTV, htFocus) )
341 {
342 // prevent the tree from unselecting the old focus which it
343 // would do by default (TreeView_SelectItem unselects the
344 // focused item)
345 TreeView_SelectItem(hwndTV, 0);
346 SelectItem(hwndTV, htFocus);
347 }
348
349 TreeView_SelectItem(hwndTV, htItem);
350
351 if ( !wasSelected )
352 {
353 // need to clear the selection which TreeView_SelectItem() gave
354 // us
355 UnselectItem(hwndTV, htItem);
356 }
357 //else: was selected, still selected - ok
358 }
359 else // reset focus
360 {
361 bool wasFocusSelected = IsItemSelected(hwndTV, htFocus);
362
363 // just clear the focus
364 TreeView_SelectItem(hwndTV, 0);
365
366 if ( wasFocusSelected )
367 {
368 // restore the selection state
369 SelectItem(hwndTV, htFocus);
370 }
371 }
372
373 return true;
374 }
375
376 // ----------------------------------------------------------------------------
377 // private classes
378 // ----------------------------------------------------------------------------
379
380 // a convenient wrapper around TV_ITEM struct which adds a ctor
381 #ifdef __VISUALC__
382 #pragma warning( disable : 4097 ) // inheriting from typedef
383 #endif
384
385 struct wxTreeViewItem : public TV_ITEM
386 {
387 wxTreeViewItem(const wxTreeItemId& item, // the item handle
388 UINT mask_, // fields which are valid
389 UINT stateMask_ = 0) // for TVIF_STATE only
390 {
391 wxZeroMemory(*this);
392
393 // hItem member is always valid
394 mask = mask_ | TVIF_HANDLE;
395 stateMask = stateMask_;
396 hItem = HITEM(item);
397 }
398 };
399
400 // ----------------------------------------------------------------------------
401 // This class is our userdata/lParam for the TV_ITEMs stored in the treeview.
402 //
403 // We need this for a couple of reasons:
404 //
405 // 1) This class is needed for support of different images: the Win32 common
406 // control natively supports only 2 images (the normal one and another for the
407 // selected state). We wish to provide support for 2 more of them for folder
408 // items (i.e. those which have children): for expanded state and for expanded
409 // selected state. For this we use this structure to store the additional items
410 // images.
411 //
412 // 2) This class is also needed to hold the HITEM so that we can sort
413 // it correctly in the MSW sort callback.
414 //
415 // In addition it makes other workarounds such as this easier and helps
416 // simplify the code.
417 // ----------------------------------------------------------------------------
418
419 class wxTreeItemParam
420 {
421 public:
422 wxTreeItemParam()
423 {
424 m_data = NULL;
425
426 for ( size_t n = 0; n < WXSIZEOF(m_images); n++ )
427 {
428 m_images[n] = -1;
429 }
430 }
431
432 // dtor deletes the associated data as well
433 virtual ~wxTreeItemParam() { delete m_data; }
434
435 // accessors
436 // get the real data associated with the item
437 wxTreeItemData *GetData() const { return m_data; }
438 // change it
439 void SetData(wxTreeItemData *data) { m_data = data; }
440
441 // do we have such image?
442 bool HasImage(wxTreeItemIcon which) const { return m_images[which] != -1; }
443 // get image, falling back to the other images if this one is not
444 // specified
445 int GetImage(wxTreeItemIcon which) const
446 {
447 int image = m_images[which];
448 if ( image == -1 )
449 {
450 switch ( which )
451 {
452 case wxTreeItemIcon_SelectedExpanded:
453 // We consider that expanded icon is more important than
454 // selected so test for it first.
455 image = m_images[wxTreeItemIcon_Expanded];
456 if ( image == -1 )
457 image = m_images[wxTreeItemIcon_Selected];
458 if ( image != -1 )
459 break;
460 //else: fall through
461
462 case wxTreeItemIcon_Selected:
463 case wxTreeItemIcon_Expanded:
464 image = m_images[wxTreeItemIcon_Normal];
465 break;
466
467 case wxTreeItemIcon_Normal:
468 // no fallback
469 break;
470
471 default:
472 wxFAIL_MSG( wxT("unsupported wxTreeItemIcon value") );
473 }
474 }
475
476 return image;
477 }
478 // change the given image
479 void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; }
480
481 // get item
482 const wxTreeItemId& GetItem() const { return m_item; }
483 // set item
484 void SetItem(const wxTreeItemId& item) { m_item = item; }
485
486 protected:
487 // all the images associated with the item
488 int m_images[wxTreeItemIcon_Max];
489
490 // item for sort callbacks
491 wxTreeItemId m_item;
492
493 // the real client data
494 wxTreeItemData *m_data;
495
496 wxDECLARE_NO_COPY_CLASS(wxTreeItemParam);
497 };
498
499 // wxVirutalNode is used in place of a single root when 'hidden' root is
500 // specified.
501 class wxVirtualNode : public wxTreeViewItem
502 {
503 public:
504 wxVirtualNode(wxTreeItemParam *param)
505 : wxTreeViewItem(TVI_ROOT, 0)
506 {
507 m_param = param;
508 }
509
510 ~wxVirtualNode()
511 {
512 delete m_param;
513 }
514
515 wxTreeItemParam *GetParam() const { return m_param; }
516 void SetParam(wxTreeItemParam *param) { delete m_param; m_param = param; }
517
518 private:
519 wxTreeItemParam *m_param;
520
521 wxDECLARE_NO_COPY_CLASS(wxVirtualNode);
522 };
523
524 #ifdef __VISUALC__
525 #pragma warning( default : 4097 )
526 #endif
527
528 // a macro to get the virtual root, returns NULL if none
529 #define GET_VIRTUAL_ROOT() ((wxVirtualNode *)m_pVirtualRoot)
530
531 // returns true if the item is the virtual root
532 #define IS_VIRTUAL_ROOT(item) (HITEM(item) == TVI_ROOT)
533
534 // a class which encapsulates the tree traversal logic: it vists all (unless
535 // OnVisit() returns false) items under the given one
536 class wxTreeTraversal
537 {
538 public:
539 wxTreeTraversal(const wxTreeCtrl *tree)
540 {
541 m_tree = tree;
542 }
543
544 // give it a virtual dtor: not really needed as the class is never used
545 // polymorphically and not even allocated on heap at all, but this is safer
546 // (in case it ever is) and silences the compiler warnings for now
547 virtual ~wxTreeTraversal() { }
548
549 // do traverse the tree: visit all items (recursively by default) under the
550 // given one; return true if all items were traversed or false if the
551 // traversal was aborted because OnVisit returned false
552 bool DoTraverse(const wxTreeItemId& root, bool recursively = true);
553
554 // override this function to do whatever is needed for each item, return
555 // false to stop traversing
556 virtual bool OnVisit(const wxTreeItemId& item) = 0;
557
558 protected:
559 const wxTreeCtrl *GetTree() const { return m_tree; }
560
561 private:
562 bool Traverse(const wxTreeItemId& root, bool recursively);
563
564 const wxTreeCtrl *m_tree;
565
566 wxDECLARE_NO_COPY_CLASS(wxTreeTraversal);
567 };
568
569 // internal class for getting the selected items
570 class TraverseSelections : public wxTreeTraversal
571 {
572 public:
573 TraverseSelections(const wxTreeCtrl *tree,
574 wxArrayTreeItemIds& selections)
575 : wxTreeTraversal(tree), m_selections(selections)
576 {
577 m_selections.Empty();
578
579 if (tree->GetCount() > 0)
580 DoTraverse(tree->GetRootItem());
581 }
582
583 virtual bool OnVisit(const wxTreeItemId& item)
584 {
585 const wxTreeCtrl * const tree = GetTree();
586
587 // can't visit a virtual node.
588 if ( (tree->GetRootItem() == item) && tree->HasFlag(wxTR_HIDE_ROOT) )
589 {
590 return true;
591 }
592
593 if ( ::IsItemSelected(GetHwndOf(tree), HITEM(item)) )
594 {
595 m_selections.Add(item);
596 }
597
598 return true;
599 }
600
601 size_t GetCount() const { return m_selections.GetCount(); }
602
603 private:
604 wxArrayTreeItemIds& m_selections;
605
606 wxDECLARE_NO_COPY_CLASS(TraverseSelections);
607 };
608
609 // internal class for counting tree items
610 class TraverseCounter : public wxTreeTraversal
611 {
612 public:
613 TraverseCounter(const wxTreeCtrl *tree,
614 const wxTreeItemId& root,
615 bool recursively)
616 : wxTreeTraversal(tree)
617 {
618 m_count = 0;
619
620 DoTraverse(root, recursively);
621 }
622
623 virtual bool OnVisit(const wxTreeItemId& WXUNUSED(item))
624 {
625 m_count++;
626
627 return true;
628 }
629
630 size_t GetCount() const { return m_count; }
631
632 private:
633 size_t m_count;
634
635 wxDECLARE_NO_COPY_CLASS(TraverseCounter);
636 };
637
638 // ----------------------------------------------------------------------------
639 // wxWin macros
640 // ----------------------------------------------------------------------------
641
642 // ----------------------------------------------------------------------------
643 // constants
644 // ----------------------------------------------------------------------------
645
646 // indices in gs_expandEvents table below
647 enum
648 {
649 IDX_COLLAPSE,
650 IDX_EXPAND,
651 IDX_WHAT_MAX
652 };
653
654 enum
655 {
656 IDX_DONE,
657 IDX_DOING,
658 IDX_HOW_MAX
659 };
660
661 // handy table for sending events - it has to be initialized during run-time
662 // now so can't be const any more
663 static /* const */ wxEventType gs_expandEvents[IDX_WHAT_MAX][IDX_HOW_MAX];
664
665 /*
666 but logically it's a const table with the following entries:
667 =
668 {
669 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING },
670 { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING }
671 };
672 */
673
674 // ============================================================================
675 // implementation
676 // ============================================================================
677
678 // ----------------------------------------------------------------------------
679 // tree traversal
680 // ----------------------------------------------------------------------------
681
682 bool wxTreeTraversal::DoTraverse(const wxTreeItemId& root, bool recursively)
683 {
684 if ( !OnVisit(root) )
685 return false;
686
687 return Traverse(root, recursively);
688 }
689
690 bool wxTreeTraversal::Traverse(const wxTreeItemId& root, bool recursively)
691 {
692 wxTreeItemIdValue cookie;
693 wxTreeItemId child = m_tree->GetFirstChild(root, cookie);
694 while ( child.IsOk() )
695 {
696 // depth first traversal
697 if ( recursively && !Traverse(child, true) )
698 return false;
699
700 if ( !OnVisit(child) )
701 return false;
702
703 child = m_tree->GetNextChild(root, cookie);
704 }
705
706 return true;
707 }
708
709 // ----------------------------------------------------------------------------
710 // construction and destruction
711 // ----------------------------------------------------------------------------
712
713 void wxTreeCtrl::Init()
714 {
715 m_textCtrl = NULL;
716 m_hasAnyAttr = false;
717 #if wxUSE_DRAGIMAGE
718 m_dragImage = NULL;
719 #endif
720 m_pVirtualRoot = NULL;
721 m_dragStarted = false;
722 m_focusLost = true;
723 m_changingSelection = false;
724 m_triggerStateImageClick = false;
725 m_mouseUpDeselect = false;
726
727 // initialize the global array of events now as it can't be done statically
728 // with the wxEVT_XXX values being allocated during run-time only
729 gs_expandEvents[IDX_COLLAPSE][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_COLLAPSED;
730 gs_expandEvents[IDX_COLLAPSE][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_COLLAPSING;
731 gs_expandEvents[IDX_EXPAND][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_EXPANDED;
732 gs_expandEvents[IDX_EXPAND][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_EXPANDING;
733 }
734
735 bool wxTreeCtrl::Create(wxWindow *parent,
736 wxWindowID id,
737 const wxPoint& pos,
738 const wxSize& size,
739 long style,
740 const wxValidator& validator,
741 const wxString& name)
742 {
743 Init();
744
745 if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
746 style |= wxBORDER_SUNKEN;
747
748 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
749 return false;
750
751 WXDWORD exStyle = 0;
752 DWORD wstyle = MSWGetStyle(m_windowStyle, & exStyle);
753 wstyle |= WS_TABSTOP | TVS_SHOWSELALWAYS;
754
755 if ( !(m_windowStyle & wxTR_NO_LINES) )
756 wstyle |= TVS_HASLINES;
757 if ( m_windowStyle & wxTR_HAS_BUTTONS )
758 wstyle |= TVS_HASBUTTONS;
759
760 if ( m_windowStyle & wxTR_EDIT_LABELS )
761 wstyle |= TVS_EDITLABELS;
762
763 if ( m_windowStyle & wxTR_LINES_AT_ROOT )
764 wstyle |= TVS_LINESATROOT;
765
766 if ( m_windowStyle & wxTR_FULL_ROW_HIGHLIGHT )
767 {
768 if ( wxApp::GetComCtl32Version() >= 471 )
769 wstyle |= TVS_FULLROWSELECT;
770 }
771
772 #if !defined(__WXWINCE__) && defined(TVS_INFOTIP)
773 // Need so that TVN_GETINFOTIP messages will be sent
774 wstyle |= TVS_INFOTIP;
775 #endif
776
777 // Create the tree control.
778 if ( !MSWCreateControl(WC_TREEVIEW, wstyle, pos, size) )
779 return false;
780
781 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
782 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
783
784 wxSetCCUnicodeFormat(GetHwnd());
785
786 if ( m_windowStyle & wxTR_TWIST_BUTTONS )
787 {
788 // Under Vista and later Explorer uses rotating ("twist") buttons
789 // instead of the default "+/-" ones so apply its theme to the tree
790 // control to implement this style.
791 if ( wxGetWinVersion() >= wxWinVersion_Vista )
792 {
793 if ( wxUxThemeEngine *theme = wxUxThemeEngine::GetIfActive() )
794 {
795 theme->SetWindowTheme(GetHwnd(), L"EXPLORER", NULL);
796 }
797 }
798 }
799
800 return true;
801 }
802
803 wxTreeCtrl::~wxTreeCtrl()
804 {
805 m_isBeingDeleted = true;
806
807 // delete any attributes
808 if ( m_hasAnyAttr )
809 {
810 WX_CLEAR_HASH_MAP(wxMapTreeAttr, m_attrs);
811
812 // prevent TVN_DELETEITEM handler from deleting the attributes again!
813 m_hasAnyAttr = false;
814 }
815
816 DeleteTextCtrl();
817
818 // delete user data to prevent memory leaks
819 // also deletes hidden root node storage.
820 DeleteAllItems();
821 }
822
823 // ----------------------------------------------------------------------------
824 // accessors
825 // ----------------------------------------------------------------------------
826
827 /* static */ wxVisualAttributes
828 wxTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
829 {
830 wxVisualAttributes attrs = GetCompositeControlsDefaultAttributes(variant);
831
832 // common controls have their own default font
833 attrs.font = wxGetCCDefaultFont();
834
835 return attrs;
836 }
837
838
839 // simple wrappers which add error checking in debug mode
840
841 bool wxTreeCtrl::DoGetItem(wxTreeViewItem *tvItem) const
842 {
843 wxCHECK_MSG( tvItem->hItem != TVI_ROOT, false,
844 wxT("can't retrieve virtual root item") );
845
846 if ( !TreeView_GetItem(GetHwnd(), tvItem) )
847 {
848 wxLogLastError(wxT("TreeView_GetItem"));
849
850 return false;
851 }
852
853 return true;
854 }
855
856 void wxTreeCtrl::DoSetItem(wxTreeViewItem *tvItem)
857 {
858 TreeItemUnlocker unlocker(tvItem->hItem);
859
860 if ( TreeView_SetItem(GetHwnd(), tvItem) == -1 )
861 {
862 wxLogLastError(wxT("TreeView_SetItem"));
863 }
864 }
865
866 unsigned int wxTreeCtrl::GetCount() const
867 {
868 return (unsigned int)TreeView_GetCount(GetHwnd());
869 }
870
871 unsigned int wxTreeCtrl::GetIndent() const
872 {
873 return TreeView_GetIndent(GetHwnd());
874 }
875
876 void wxTreeCtrl::SetIndent(unsigned int indent)
877 {
878 TreeView_SetIndent(GetHwnd(), indent);
879 }
880
881 void wxTreeCtrl::SetAnyImageList(wxImageList *imageList, int which)
882 {
883 // no error return
884 (void) TreeView_SetImageList(GetHwnd(),
885 imageList ? imageList->GetHIMAGELIST() : 0,
886 which);
887 }
888
889 void wxTreeCtrl::SetImageList(wxImageList *imageList)
890 {
891 if (m_ownsImageListNormal)
892 delete m_imageListNormal;
893
894 SetAnyImageList(m_imageListNormal = imageList, TVSIL_NORMAL);
895 m_ownsImageListNormal = false;
896 }
897
898 void wxTreeCtrl::SetStateImageList(wxImageList *imageList)
899 {
900 if (m_ownsImageListState) delete m_imageListState;
901 SetAnyImageList(m_imageListState = imageList, TVSIL_STATE);
902 m_ownsImageListState = false;
903 }
904
905 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item,
906 bool recursively) const
907 {
908 wxCHECK_MSG( item.IsOk(), 0u, wxT("invalid tree item") );
909
910 TraverseCounter counter(this, item, recursively);
911 return counter.GetCount() - 1;
912 }
913
914 // ----------------------------------------------------------------------------
915 // control colours
916 // ----------------------------------------------------------------------------
917
918 bool wxTreeCtrl::SetBackgroundColour(const wxColour &colour)
919 {
920 if ( !wxWindowBase::SetBackgroundColour(colour) )
921 return false;
922
923 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0, colour.GetPixel());
924
925 return true;
926 }
927
928 bool wxTreeCtrl::SetForegroundColour(const wxColour &colour)
929 {
930 if ( !wxWindowBase::SetForegroundColour(colour) )
931 return false;
932
933 ::SendMessage(GetHwnd(), TVM_SETTEXTCOLOR, 0, colour.GetPixel());
934
935 return true;
936 }
937
938 // ----------------------------------------------------------------------------
939 // Item access
940 // ----------------------------------------------------------------------------
941
942 bool wxTreeCtrl::IsHiddenRoot(const wxTreeItemId& item) const
943 {
944 return HITEM(item) == TVI_ROOT && HasFlag(wxTR_HIDE_ROOT);
945 }
946
947 wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const
948 {
949 wxCHECK_MSG( item.IsOk(), wxEmptyString, wxT("invalid tree item") );
950
951 wxChar buf[512]; // the size is arbitrary...
952
953 wxTreeViewItem tvItem(item, TVIF_TEXT);
954 tvItem.pszText = buf;
955 tvItem.cchTextMax = WXSIZEOF(buf);
956 if ( !DoGetItem(&tvItem) )
957 {
958 // don't return some garbage which was on stack, but an empty string
959 buf[0] = wxT('\0');
960 }
961
962 return wxString(buf);
963 }
964
965 void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
966 {
967 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
968
969 if ( IS_VIRTUAL_ROOT(item) )
970 return;
971
972 wxTreeViewItem tvItem(item, TVIF_TEXT);
973 tvItem.pszText = wxMSW_CONV_LPTSTR(text);
974 DoSetItem(&tvItem);
975
976 // when setting the text of the item being edited, the text control should
977 // be updated to reflect the new text as well, otherwise calling
978 // SetItemText() in the OnBeginLabelEdit() handler doesn't have any effect
979 //
980 // don't use GetEditControl() here because m_textCtrl is not set yet
981 HWND hwndEdit = TreeView_GetEditControl(GetHwnd());
982 if ( hwndEdit )
983 {
984 if ( item == m_idEdited )
985 {
986 ::SetWindowText(hwndEdit, text.t_str());
987 }
988 }
989 }
990
991 int wxTreeCtrl::GetItemImage(const wxTreeItemId& item,
992 wxTreeItemIcon which) const
993 {
994 wxCHECK_MSG( item.IsOk(), -1, wxT("invalid tree item") );
995
996 if ( IsHiddenRoot(item) )
997 {
998 // no images for hidden root item
999 return -1;
1000 }
1001
1002 wxTreeItemParam *param = GetItemParam(item);
1003
1004 return param && param->HasImage(which) ? param->GetImage(which) : -1;
1005 }
1006
1007 void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image,
1008 wxTreeItemIcon which)
1009 {
1010 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1011 wxCHECK_RET( which >= 0 &&
1012 which < wxTreeItemIcon_Max,
1013 wxT("invalid image index"));
1014
1015
1016 if ( IsHiddenRoot(item) )
1017 {
1018 // no images for hidden root item
1019 return;
1020 }
1021
1022 wxTreeItemParam *data = GetItemParam(item);
1023 if ( !data )
1024 return;
1025
1026 data->SetImage(image, which);
1027
1028 RefreshItem(item);
1029 }
1030
1031 wxTreeItemParam *wxTreeCtrl::GetItemParam(const wxTreeItemId& item) const
1032 {
1033 wxCHECK_MSG( item.IsOk(), NULL, wxT("invalid tree item") );
1034
1035 wxTreeViewItem tvItem(item, TVIF_PARAM);
1036
1037 // hidden root may still have data.
1038 if ( IS_VIRTUAL_ROOT(item) )
1039 {
1040 return GET_VIRTUAL_ROOT()->GetParam();
1041 }
1042
1043 // visible node.
1044 if ( !DoGetItem(&tvItem) )
1045 {
1046 return NULL;
1047 }
1048
1049 return (wxTreeItemParam *)tvItem.lParam;
1050 }
1051
1052 bool wxTreeCtrl::HandleTreeEvent(wxTreeEvent& event) const
1053 {
1054 if ( event.m_item.IsOk() )
1055 {
1056 event.SetClientObject(GetItemData(event.m_item));
1057 }
1058
1059 return HandleWindowEvent(event);
1060 }
1061
1062 wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const
1063 {
1064 wxTreeItemParam *data = GetItemParam(item);
1065
1066 return data ? data->GetData() : NULL;
1067 }
1068
1069 void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data)
1070 {
1071 // first, associate this piece of data with this item
1072 if ( data )
1073 {
1074 data->SetId(item);
1075 }
1076
1077 wxTreeItemParam *param = GetItemParam(item);
1078
1079 wxCHECK_RET( param, wxT("failed to change tree items data") );
1080
1081 param->SetData(data);
1082 }
1083
1084 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has)
1085 {
1086 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1087
1088 if ( IS_VIRTUAL_ROOT(item) )
1089 return;
1090
1091 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1092 tvItem.cChildren = (int)has;
1093 DoSetItem(&tvItem);
1094 }
1095
1096 void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold)
1097 {
1098 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1099
1100 if ( IS_VIRTUAL_ROOT(item) )
1101 return;
1102
1103 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1104 tvItem.state = bold ? TVIS_BOLD : 0;
1105 DoSetItem(&tvItem);
1106 }
1107
1108 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, bool highlight)
1109 {
1110 if ( IS_VIRTUAL_ROOT(item) )
1111 return;
1112
1113 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_DROPHILITED);
1114 tvItem.state = highlight ? TVIS_DROPHILITED : 0;
1115 DoSetItem(&tvItem);
1116 }
1117
1118 void wxTreeCtrl::RefreshItem(const wxTreeItemId& item)
1119 {
1120 if ( IS_VIRTUAL_ROOT(item) )
1121 return;
1122
1123 wxRect rect;
1124 if ( GetBoundingRect(item, rect) )
1125 {
1126 RefreshRect(rect);
1127 }
1128 }
1129
1130 wxColour wxTreeCtrl::GetItemTextColour(const wxTreeItemId& item) const
1131 {
1132 wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") );
1133
1134 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1135 return it == m_attrs.end() ? wxNullColour : it->second->GetTextColour();
1136 }
1137
1138 wxColour wxTreeCtrl::GetItemBackgroundColour(const wxTreeItemId& item) const
1139 {
1140 wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") );
1141
1142 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1143 return it == m_attrs.end() ? wxNullColour : it->second->GetBackgroundColour();
1144 }
1145
1146 wxFont wxTreeCtrl::GetItemFont(const wxTreeItemId& item) const
1147 {
1148 wxCHECK_MSG( item.IsOk(), wxNullFont, wxT("invalid tree item") );
1149
1150 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1151 return it == m_attrs.end() ? wxNullFont : it->second->GetFont();
1152 }
1153
1154 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId& item,
1155 const wxColour& col)
1156 {
1157 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1158
1159 wxTreeItemAttr *attr;
1160 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1161 if ( it == m_attrs.end() )
1162 {
1163 m_hasAnyAttr = true;
1164
1165 m_attrs[item.m_pItem] =
1166 attr = new wxTreeItemAttr;
1167 }
1168 else
1169 {
1170 attr = it->second;
1171 }
1172
1173 attr->SetTextColour(col);
1174
1175 RefreshItem(item);
1176 }
1177
1178 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item,
1179 const wxColour& col)
1180 {
1181 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1182
1183 wxTreeItemAttr *attr;
1184 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1185 if ( it == m_attrs.end() )
1186 {
1187 m_hasAnyAttr = true;
1188
1189 m_attrs[item.m_pItem] =
1190 attr = new wxTreeItemAttr;
1191 }
1192 else // already in the hash
1193 {
1194 attr = it->second;
1195 }
1196
1197 attr->SetBackgroundColour(col);
1198
1199 RefreshItem(item);
1200 }
1201
1202 void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font)
1203 {
1204 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1205
1206 wxTreeItemAttr *attr;
1207 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1208 if ( it == m_attrs.end() )
1209 {
1210 m_hasAnyAttr = true;
1211
1212 m_attrs[item.m_pItem] =
1213 attr = new wxTreeItemAttr;
1214 }
1215 else // already in the hash
1216 {
1217 attr = it->second;
1218 }
1219
1220 attr->SetFont(font);
1221
1222 // Reset the item's text to ensure that the bounding rect will be adjusted
1223 // for the new font.
1224 SetItemText(item, GetItemText(item));
1225
1226 RefreshItem(item);
1227 }
1228
1229 // ----------------------------------------------------------------------------
1230 // Item status
1231 // ----------------------------------------------------------------------------
1232
1233 bool wxTreeCtrl::IsVisible(const wxTreeItemId& item) const
1234 {
1235 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
1236
1237 if ( item == wxTreeItemId(TVI_ROOT) )
1238 {
1239 // virtual (hidden) root is never visible
1240 return false;
1241 }
1242
1243 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
1244 TVGetItemRectParam param;
1245
1246 // true means to get rect for just the text, not the whole line
1247 if ( !wxTreeView_GetItemRect(GetHwnd(), HITEM(item), param, TRUE) )
1248 {
1249 // if TVM_GETITEMRECT returned false, then the item is definitely not
1250 // visible (because its parent is not expanded)
1251 return false;
1252 }
1253
1254 // however if it returned true, the item might still be outside the
1255 // currently visible part of the tree, test for it (notice that partly
1256 // visible means visible here)
1257 return param.rect.bottom > 0 && param.rect.top < GetClientSize().y;
1258 }
1259
1260 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const
1261 {
1262 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
1263
1264 if ( IS_VIRTUAL_ROOT(item) )
1265 {
1266 wxTreeItemIdValue cookie;
1267 return GetFirstChild(item, cookie).IsOk();
1268 }
1269
1270 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1271 DoGetItem(&tvItem);
1272
1273 return tvItem.cChildren != 0;
1274 }
1275
1276 bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const
1277 {
1278 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
1279
1280 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDED);
1281 DoGetItem(&tvItem);
1282
1283 return (tvItem.state & TVIS_EXPANDED) != 0;
1284 }
1285
1286 bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const
1287 {
1288 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
1289
1290 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_SELECTED);
1291 DoGetItem(&tvItem);
1292
1293 return (tvItem.state & TVIS_SELECTED) != 0;
1294 }
1295
1296 bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const
1297 {
1298 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
1299
1300 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1301 DoGetItem(&tvItem);
1302
1303 return (tvItem.state & TVIS_BOLD) != 0;
1304 }
1305
1306 // ----------------------------------------------------------------------------
1307 // navigation
1308 // ----------------------------------------------------------------------------
1309
1310 wxTreeItemId wxTreeCtrl::GetRootItem() const
1311 {
1312 // Root may be real (visible) or virtual (hidden).
1313 if ( GET_VIRTUAL_ROOT() )
1314 return TVI_ROOT;
1315
1316 return wxTreeItemId(TreeView_GetRoot(GetHwnd()));
1317 }
1318
1319 wxTreeItemId wxTreeCtrl::GetSelection() const
1320 {
1321 wxCHECK_MSG( !HasFlag(wxTR_MULTIPLE), wxTreeItemId(),
1322 wxT("this only works with single selection controls") );
1323
1324 return GetFocusedItem();
1325 }
1326
1327 wxTreeItemId wxTreeCtrl::GetFocusedItem() const
1328 {
1329 return wxTreeItemId(TreeView_GetSelection(GetHwnd()));
1330 }
1331
1332 wxTreeItemId wxTreeCtrl::GetItemParent(const wxTreeItemId& item) const
1333 {
1334 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1335
1336 HTREEITEM hItem;
1337
1338 if ( IS_VIRTUAL_ROOT(item) )
1339 {
1340 // no parent for the virtual root
1341 hItem = 0;
1342 }
1343 else // normal item
1344 {
1345 hItem = TreeView_GetParent(GetHwnd(), HITEM(item));
1346 if ( !hItem && HasFlag(wxTR_HIDE_ROOT) )
1347 {
1348 // the top level items should have the virtual root as their parent
1349 hItem = TVI_ROOT;
1350 }
1351 }
1352
1353 return wxTreeItemId(hItem);
1354 }
1355
1356 wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item,
1357 wxTreeItemIdValue& cookie) const
1358 {
1359 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1360
1361 // remember the last child returned in 'cookie'
1362 cookie = TreeView_GetChild(GetHwnd(), HITEM(item));
1363
1364 return wxTreeItemId(cookie);
1365 }
1366
1367 wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item),
1368 wxTreeItemIdValue& cookie) const
1369 {
1370 wxTreeItemId fromCookie(cookie);
1371
1372 HTREEITEM hitem = HITEM(fromCookie);
1373
1374 hitem = TreeView_GetNextSibling(GetHwnd(), hitem);
1375
1376 wxTreeItemId item(hitem);
1377
1378 cookie = item.m_pItem;
1379
1380 return item;
1381 }
1382
1383 wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const
1384 {
1385 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1386
1387 // can this be done more efficiently?
1388 wxTreeItemIdValue cookie;
1389
1390 wxTreeItemId childLast,
1391 child = GetFirstChild(item, cookie);
1392 while ( child.IsOk() )
1393 {
1394 childLast = child;
1395 child = GetNextChild(item, cookie);
1396 }
1397
1398 return childLast;
1399 }
1400
1401 wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const
1402 {
1403 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1404 return wxTreeItemId(TreeView_GetNextSibling(GetHwnd(), HITEM(item)));
1405 }
1406
1407 wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const
1408 {
1409 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1410 return wxTreeItemId(TreeView_GetPrevSibling(GetHwnd(), HITEM(item)));
1411 }
1412
1413 wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const
1414 {
1415 return wxTreeItemId(TreeView_GetFirstVisible(GetHwnd()));
1416 }
1417
1418 wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const
1419 {
1420 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1421 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetNextVisible() for must be visible itself!"));
1422
1423 wxTreeItemId next(TreeView_GetNextVisible(GetHwnd(), HITEM(item)));
1424 if ( next.IsOk() && !IsVisible(next) )
1425 {
1426 // Win32 considers that any non-collapsed item is visible while we want
1427 // to return only really visible items
1428 next.Unset();
1429 }
1430
1431 return next;
1432 }
1433
1434 wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const
1435 {
1436 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1437 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetPrevVisible() for must be visible itself!"));
1438
1439 wxTreeItemId prev(TreeView_GetPrevVisible(GetHwnd(), HITEM(item)));
1440 if ( prev.IsOk() && !IsVisible(prev) )
1441 {
1442 // just as above, Win32 function will happily return the previous item
1443 // in the tree for the first visible item too
1444 prev.Unset();
1445 }
1446
1447 return prev;
1448 }
1449
1450 // ----------------------------------------------------------------------------
1451 // multiple selections emulation
1452 // ----------------------------------------------------------------------------
1453
1454 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds& selections) const
1455 {
1456 TraverseSelections selector(this, selections);
1457
1458 return selector.GetCount();
1459 }
1460
1461 // ----------------------------------------------------------------------------
1462 // Usual operations
1463 // ----------------------------------------------------------------------------
1464
1465 wxTreeItemId wxTreeCtrl::DoInsertAfter(const wxTreeItemId& parent,
1466 const wxTreeItemId& hInsertAfter,
1467 const wxString& text,
1468 int image, int selectedImage,
1469 wxTreeItemData *data)
1470 {
1471 wxCHECK_MSG( parent.IsOk() || !TreeView_GetRoot(GetHwnd()),
1472 wxTreeItemId(),
1473 wxT("can't have more than one root in the tree") );
1474
1475 TV_INSERTSTRUCT tvIns;
1476 tvIns.hParent = HITEM(parent);
1477 tvIns.hInsertAfter = HITEM(hInsertAfter);
1478
1479 // this is how we insert the item as the first child: supply a NULL
1480 // hInsertAfter
1481 if ( !tvIns.hInsertAfter )
1482 {
1483 tvIns.hInsertAfter = TVI_FIRST;
1484 }
1485
1486 UINT mask = 0;
1487 if ( !text.empty() )
1488 {
1489 mask |= TVIF_TEXT;
1490 tvIns.item.pszText = wxMSW_CONV_LPTSTR(text);
1491 }
1492 else
1493 {
1494 tvIns.item.pszText = NULL;
1495 tvIns.item.cchTextMax = 0;
1496 }
1497
1498 // create the param which will store the other item parameters
1499 wxTreeItemParam *param = new wxTreeItemParam;
1500
1501 // we return the images on demand as they depend on whether the item is
1502 // expanded or collapsed too in our case
1503 mask |= TVIF_IMAGE | TVIF_SELECTEDIMAGE;
1504 tvIns.item.iImage = I_IMAGECALLBACK;
1505 tvIns.item.iSelectedImage = I_IMAGECALLBACK;
1506
1507 param->SetImage(image, wxTreeItemIcon_Normal);
1508 param->SetImage(selectedImage, wxTreeItemIcon_Selected);
1509
1510 mask |= TVIF_PARAM;
1511 tvIns.item.lParam = (LPARAM)param;
1512 tvIns.item.mask = mask;
1513
1514 // don't use the hack below for the children of hidden root: this results
1515 // in a crash inside comctl32.dll when we call TreeView_GetItemRect()
1516 const bool firstChild = !IsHiddenRoot(parent) &&
1517 !TreeView_GetChild(GetHwnd(), HITEM(parent));
1518
1519 HTREEITEM id = TreeView_InsertItem(GetHwnd(), &tvIns);
1520 if ( id == 0 )
1521 {
1522 wxLogLastError(wxT("TreeView_InsertItem"));
1523 }
1524
1525 // apparently some Windows versions (2000 and XP are reported to do this)
1526 // sometimes don't refresh the tree after adding the first child and so we
1527 // need this to make the "[+]" appear
1528 if ( firstChild )
1529 {
1530 TVGetItemRectParam param;
1531
1532 wxTreeView_GetItemRect(GetHwnd(), HITEM(parent), param, FALSE);
1533 ::InvalidateRect(GetHwnd(), &param.rect, FALSE);
1534 }
1535
1536 // associate the application tree item with Win32 tree item handle
1537 param->SetItem(id);
1538
1539 // setup wxTreeItemData
1540 if ( data != NULL )
1541 {
1542 param->SetData(data);
1543 data->SetId(id);
1544 }
1545
1546 return wxTreeItemId(id);
1547 }
1548
1549 wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text,
1550 int image, int selectedImage,
1551 wxTreeItemData *data)
1552 {
1553 if ( HasFlag(wxTR_HIDE_ROOT) )
1554 {
1555 wxASSERT_MSG( !m_pVirtualRoot, wxT("tree can have only a single root") );
1556
1557 // create a virtual root item, the parent for all the others
1558 wxTreeItemParam *param = new wxTreeItemParam;
1559 param->SetData(data);
1560
1561 m_pVirtualRoot = new wxVirtualNode(param);
1562
1563 return TVI_ROOT;
1564 }
1565
1566 return DoInsertAfter(wxTreeItemId(), wxTreeItemId(),
1567 text, image, selectedImage, data);
1568 }
1569
1570 wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parent,
1571 size_t index,
1572 const wxString& text,
1573 int image, int selectedImage,
1574 wxTreeItemData *data)
1575 {
1576 wxTreeItemId idPrev;
1577 if ( index == (size_t)-1 )
1578 {
1579 // special value: append to the end
1580 idPrev = TVI_LAST;
1581 }
1582 else // find the item from index
1583 {
1584 wxTreeItemIdValue cookie;
1585 wxTreeItemId idCur = GetFirstChild(parent, cookie);
1586 while ( index != 0 && idCur.IsOk() )
1587 {
1588 index--;
1589
1590 idPrev = idCur;
1591 idCur = GetNextChild(parent, cookie);
1592 }
1593
1594 // assert, not check: if the index is invalid, we will append the item
1595 // to the end
1596 wxASSERT_MSG( index == 0, wxT("bad index in wxTreeCtrl::InsertItem") );
1597 }
1598
1599 return DoInsertAfter(parent, idPrev, text, image, selectedImage, data);
1600 }
1601
1602 void wxTreeCtrl::Delete(const wxTreeItemId& item)
1603 {
1604 // unlock tree selections on vista, without this the
1605 // tree ctrl will eventually crash after item deletion
1606 TreeItemUnlocker unlock_all;
1607
1608 if ( HasFlag(wxTR_MULTIPLE) )
1609 {
1610 bool selected = IsSelected(item);
1611 wxTreeItemId next;
1612
1613 if ( selected )
1614 {
1615 next = TreeView_GetNextVisible(GetHwnd(), HITEM(item));
1616
1617 if ( !next.IsOk() )
1618 {
1619 next = TreeView_GetPrevVisible(GetHwnd(), HITEM(item));
1620 }
1621 }
1622
1623 {
1624 TempSetter set(m_changingSelection);
1625 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item)) )
1626 {
1627 wxLogLastError(wxT("TreeView_DeleteItem"));
1628 return;
1629 }
1630 }
1631
1632 if ( !selected )
1633 {
1634 return;
1635 }
1636
1637 if ( item == m_htSelStart )
1638 m_htSelStart.Unset();
1639
1640 if ( item == m_htClickedItem )
1641 m_htClickedItem.Unset();
1642
1643 if ( next.IsOk() )
1644 {
1645 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, next);
1646
1647 if ( IsTreeEventAllowed(changingEvent) )
1648 {
1649 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this, next);
1650 (void)HandleTreeEvent(changedEvent);
1651 }
1652 else
1653 {
1654 DoUnselectItem(next);
1655 ClearFocusedItem();
1656 }
1657 }
1658 }
1659 else
1660 {
1661 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item)) )
1662 {
1663 wxLogLastError(wxT("TreeView_DeleteItem"));
1664 }
1665 }
1666 }
1667
1668 // delete all children (but don't delete the item itself)
1669 void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item)
1670 {
1671 // unlock tree selections on vista for the duration of this call
1672 TreeItemUnlocker unlock_all;
1673
1674 wxTreeItemIdValue cookie;
1675
1676 wxArrayTreeItemIds children;
1677 wxTreeItemId child = GetFirstChild(item, cookie);
1678 while ( child.IsOk() )
1679 {
1680 children.Add(child);
1681
1682 child = GetNextChild(item, cookie);
1683 }
1684
1685 size_t nCount = children.Count();
1686 for ( size_t n = 0; n < nCount; n++ )
1687 {
1688 Delete(children[n]);
1689 }
1690 }
1691
1692 void wxTreeCtrl::DeleteAllItems()
1693 {
1694 // unlock tree selections on vista for the duration of this call
1695 TreeItemUnlocker unlock_all;
1696
1697 // invalidate all the items we store as they're going to become invalid
1698 m_htSelStart =
1699 m_htClickedItem = wxTreeItemId();
1700
1701 // delete the "virtual" root item.
1702 if ( GET_VIRTUAL_ROOT() )
1703 {
1704 delete GET_VIRTUAL_ROOT();
1705 m_pVirtualRoot = NULL;
1706 }
1707
1708 // and all the real items
1709
1710 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1711 {
1712 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1713 }
1714 }
1715
1716 void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag)
1717 {
1718 wxASSERT_MSG( flag == TVE_COLLAPSE ||
1719 flag == (TVE_COLLAPSE | TVE_COLLAPSERESET) ||
1720 flag == TVE_EXPAND ||
1721 flag == TVE_TOGGLE,
1722 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1723
1724 // A hidden root can be neither expanded nor collapsed.
1725 wxCHECK_RET( !IsHiddenRoot(item),
1726 wxT("Can't expand/collapse hidden root node!") );
1727
1728 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1729 // emulate them. This behaviour has changed slightly with comctl32.dll
1730 // v 4.70 - now it does send them but only the first time. To maintain
1731 // compatible behaviour and also in order to not have surprises with the
1732 // future versions, don't rely on this and still do everything ourselves.
1733 // To avoid that the messages be sent twice when the item is expanded for
1734 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1735
1736 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDEDONCE);
1737 tvItem.state = 0;
1738 DoSetItem(&tvItem);
1739
1740 if ( IsExpanded(item) )
1741 {
1742 wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING,
1743 this, wxTreeItemId(item));
1744
1745 if ( !IsTreeEventAllowed(event) )
1746 return;
1747 }
1748
1749 if ( TreeView_Expand(GetHwnd(), HITEM(item), flag) )
1750 {
1751 if ( IsExpanded(item) )
1752 return;
1753
1754 wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_COLLAPSED, this, item);
1755 (void)HandleTreeEvent(event);
1756 }
1757 //else: change didn't took place, so do nothing at all
1758 }
1759
1760 void wxTreeCtrl::Expand(const wxTreeItemId& item)
1761 {
1762 DoExpand(item, TVE_EXPAND);
1763 }
1764
1765 void wxTreeCtrl::Collapse(const wxTreeItemId& item)
1766 {
1767 DoExpand(item, TVE_COLLAPSE);
1768 }
1769
1770 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item)
1771 {
1772 DoExpand(item, TVE_COLLAPSE | TVE_COLLAPSERESET);
1773 }
1774
1775 void wxTreeCtrl::Toggle(const wxTreeItemId& item)
1776 {
1777 DoExpand(item, TVE_TOGGLE);
1778 }
1779
1780 void wxTreeCtrl::Unselect()
1781 {
1782 wxASSERT_MSG( !HasFlag(wxTR_MULTIPLE),
1783 wxT("doesn't make sense, may be you want UnselectAll()?") );
1784
1785 // the current focus
1786 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
1787
1788 if ( !htFocus )
1789 {
1790 return;
1791 }
1792
1793 if ( HasFlag(wxTR_MULTIPLE) )
1794 {
1795 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
1796 this, wxTreeItemId());
1797 changingEvent.m_itemOld = htFocus;
1798
1799 if ( IsTreeEventAllowed(changingEvent) )
1800 {
1801 ClearFocusedItem();
1802
1803 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
1804 this, wxTreeItemId());
1805 changedEvent.m_itemOld = htFocus;
1806 (void)HandleTreeEvent(changedEvent);
1807 }
1808 }
1809 else
1810 {
1811 ClearFocusedItem();
1812 }
1813 }
1814
1815 void wxTreeCtrl::DoUnselectAll()
1816 {
1817 wxArrayTreeItemIds selections;
1818 size_t count = GetSelections(selections);
1819
1820 for ( size_t n = 0; n < count; n++ )
1821 {
1822 DoUnselectItem(selections[n]);
1823 }
1824
1825 m_htSelStart.Unset();
1826 }
1827
1828 void wxTreeCtrl::UnselectAll()
1829 {
1830 if ( HasFlag(wxTR_MULTIPLE) )
1831 {
1832 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
1833 if ( !htFocus ) return;
1834
1835 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this);
1836 changingEvent.m_itemOld = htFocus;
1837
1838 if ( IsTreeEventAllowed(changingEvent) )
1839 {
1840 DoUnselectAll();
1841
1842 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this);
1843 changedEvent.m_itemOld = htFocus;
1844 (void)HandleTreeEvent(changedEvent);
1845 }
1846 }
1847 else
1848 {
1849 Unselect();
1850 }
1851 }
1852
1853 void wxTreeCtrl::DoSelectChildren(const wxTreeItemId& parent)
1854 {
1855 DoUnselectAll();
1856
1857 wxTreeItemIdValue cookie;
1858 wxTreeItemId child = GetFirstChild(parent, cookie);
1859 while ( child.IsOk() )
1860 {
1861 DoSelectItem(child, true);
1862 child = GetNextChild(child, cookie);
1863 }
1864 }
1865
1866 void wxTreeCtrl::SelectChildren(const wxTreeItemId& parent)
1867 {
1868 wxCHECK_RET( HasFlag(wxTR_MULTIPLE),
1869 "this only works with multiple selection controls" );
1870
1871 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
1872
1873 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this);
1874 changingEvent.m_itemOld = htFocus;
1875
1876 if ( IsTreeEventAllowed(changingEvent) )
1877 {
1878 DoSelectChildren(parent);
1879
1880 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this);
1881 changedEvent.m_itemOld = htFocus;
1882 (void)HandleTreeEvent(changedEvent);
1883 }
1884 }
1885
1886 void wxTreeCtrl::DoSelectItem(const wxTreeItemId& item, bool select)
1887 {
1888 TempSetter set(m_changingSelection);
1889
1890 ::SelectItem(GetHwnd(), HITEM(item), select);
1891 }
1892
1893 void wxTreeCtrl::SelectItem(const wxTreeItemId& item, bool select)
1894 {
1895 wxCHECK_RET( !IsHiddenRoot(item), wxT("can't select hidden root item") );
1896
1897 if ( select == IsSelected(item) )
1898 {
1899 // nothing to do, the item is already in the requested state
1900 return;
1901 }
1902
1903 if ( HasFlag(wxTR_MULTIPLE) )
1904 {
1905 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, item);
1906
1907 if ( IsTreeEventAllowed(changingEvent) )
1908 {
1909 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
1910 DoSelectItem(item, select);
1911
1912 if ( !htFocus )
1913 {
1914 SetFocusedItem(item);
1915 }
1916
1917 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
1918 this, item);
1919 (void)HandleTreeEvent(changedEvent);
1920 }
1921 }
1922 else // single selection
1923 {
1924 wxTreeItemId itemOld, itemNew;
1925 if ( select )
1926 {
1927 itemOld = GetSelection();
1928 itemNew = item;
1929 }
1930 else // deselecting the currently selected item
1931 {
1932 itemOld = item;
1933 // leave itemNew invalid
1934 }
1935
1936 // Recent versions of comctl32.dll send TVN_SELCHANG{ED,ING} events
1937 // when we call TreeView_SelectItem() but apparently some old ones did
1938 // not so send the events ourselves and ignore those generated by
1939 // TreeView_SelectItem() if m_changingSelection is set.
1940 wxTreeEvent
1941 changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, itemNew);
1942 changingEvent.SetOldItem(itemOld);
1943
1944 if ( IsTreeEventAllowed(changingEvent) )
1945 {
1946 TempSetter set(m_changingSelection);
1947
1948 if ( !TreeView_SelectItem(GetHwnd(), HITEM(itemNew)) )
1949 {
1950 wxLogLastError(wxT("TreeView_SelectItem"));
1951 }
1952 else // ok
1953 {
1954 ::SetFocus(GetHwnd(), HITEM(item));
1955
1956 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
1957 this, itemNew);
1958 changedEvent.SetOldItem(itemOld);
1959 (void)HandleTreeEvent(changedEvent);
1960 }
1961 }
1962 //else: program vetoed the change
1963 }
1964 }
1965
1966 void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item)
1967 {
1968 wxCHECK_RET( !IsHiddenRoot(item), wxT("can't show hidden root item") );
1969
1970 // no error return
1971 TreeView_EnsureVisible(GetHwnd(), HITEM(item));
1972 }
1973
1974 void wxTreeCtrl::ScrollTo(const wxTreeItemId& item)
1975 {
1976 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item)) )
1977 {
1978 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1979 }
1980 }
1981
1982 wxTextCtrl *wxTreeCtrl::GetEditControl() const
1983 {
1984 return m_textCtrl;
1985 }
1986
1987 void wxTreeCtrl::DeleteTextCtrl()
1988 {
1989 if ( m_textCtrl )
1990 {
1991 // the HWND corresponding to this control is deleted by the tree
1992 // control itself and we don't know when exactly this happens, so check
1993 // if the window still exists before calling UnsubclassWin()
1994 if ( !::IsWindow(GetHwndOf(m_textCtrl)) )
1995 {
1996 m_textCtrl->SetHWND(0);
1997 }
1998
1999 m_textCtrl->UnsubclassWin();
2000 m_textCtrl->SetHWND(0);
2001 wxDELETE(m_textCtrl);
2002
2003 m_idEdited.Unset();
2004 }
2005 }
2006
2007 wxTextCtrl *wxTreeCtrl::EditLabel(const wxTreeItemId& item,
2008 wxClassInfo *textControlClass)
2009 {
2010 wxASSERT( textControlClass->IsKindOf(wxCLASSINFO(wxTextCtrl)) );
2011
2012 DeleteTextCtrl();
2013
2014 m_idEdited = item;
2015 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
2016 HWND hWnd = (HWND) TreeView_EditLabel(GetHwnd(), HITEM(item));
2017
2018 // this is not an error - the TVN_BEGINLABELEDIT handler might have
2019 // returned false
2020 if ( !hWnd )
2021 {
2022 wxDELETE(m_textCtrl);
2023 return NULL;
2024 }
2025
2026 // textctrl is subclassed in MSWOnNotify
2027 return m_textCtrl;
2028 }
2029
2030 // End label editing, optionally cancelling the edit
2031 void wxTreeCtrl::DoEndEditLabel(bool discardChanges)
2032 {
2033 TreeView_EndEditLabelNow(GetHwnd(), discardChanges);
2034
2035 DeleteTextCtrl();
2036 }
2037
2038 wxTreeItemId wxTreeCtrl::DoTreeHitTest(const wxPoint& point, int& flags) const
2039 {
2040 TV_HITTESTINFO hitTestInfo;
2041 hitTestInfo.pt.x = (int)point.x;
2042 hitTestInfo.pt.y = (int)point.y;
2043
2044 (void) TreeView_HitTest(GetHwnd(), &hitTestInfo);
2045
2046 flags = 0;
2047
2048 // avoid repetition
2049 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
2050 flags |= wxTREE_HITTEST_##flag
2051
2052 TRANSLATE_FLAG(ABOVE);
2053 TRANSLATE_FLAG(BELOW);
2054 TRANSLATE_FLAG(NOWHERE);
2055 TRANSLATE_FLAG(ONITEMBUTTON);
2056 TRANSLATE_FLAG(ONITEMICON);
2057 TRANSLATE_FLAG(ONITEMINDENT);
2058 TRANSLATE_FLAG(ONITEMLABEL);
2059 TRANSLATE_FLAG(ONITEMRIGHT);
2060 TRANSLATE_FLAG(ONITEMSTATEICON);
2061 TRANSLATE_FLAG(TOLEFT);
2062 TRANSLATE_FLAG(TORIGHT);
2063
2064 #undef TRANSLATE_FLAG
2065
2066 return wxTreeItemId(hitTestInfo.hItem);
2067 }
2068
2069 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
2070 wxRect& rect,
2071 bool textOnly) const
2072 {
2073 // Virtual root items have no bounding rectangle
2074 if ( IS_VIRTUAL_ROOT(item) )
2075 {
2076 return false;
2077 }
2078
2079 TVGetItemRectParam param;
2080
2081 if ( wxTreeView_GetItemRect(GetHwnd(), HITEM(item), param, textOnly) )
2082 {
2083 rect = wxRect(wxPoint(param.rect.left, param.rect.top),
2084 wxPoint(param.rect.right, param.rect.bottom));
2085
2086 return true;
2087 }
2088 else
2089 {
2090 // couldn't retrieve rect: for example, item isn't visible
2091 return false;
2092 }
2093 }
2094
2095 void wxTreeCtrl::ClearFocusedItem()
2096 {
2097 TempSetter set(m_changingSelection);
2098
2099 if ( !TreeView_SelectItem(GetHwnd(), 0) )
2100 {
2101 wxLogLastError(wxT("TreeView_SelectItem"));
2102 }
2103 }
2104
2105 void wxTreeCtrl::SetFocusedItem(const wxTreeItemId& item)
2106 {
2107 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
2108
2109 TempSetter set(m_changingSelection);
2110
2111 ::SetFocus(GetHwnd(), HITEM(item));
2112 }
2113
2114 void wxTreeCtrl::DoUnselectItem(const wxTreeItemId& item)
2115 {
2116 TempSetter set(m_changingSelection);
2117
2118 ::UnselectItem(GetHwnd(), HITEM(item));
2119 }
2120
2121 void wxTreeCtrl::DoToggleItemSelection(const wxTreeItemId& item)
2122 {
2123 TempSetter set(m_changingSelection);
2124
2125 ::ToggleItemSelection(GetHwnd(), HITEM(item));
2126 }
2127
2128 // ----------------------------------------------------------------------------
2129 // sorting stuff
2130 // ----------------------------------------------------------------------------
2131
2132 // this is just a tiny namespace which is friend to wxTreeCtrl and so can use
2133 // functions such as IsDataIndirect()
2134 class wxTreeSortHelper
2135 {
2136 public:
2137 static int CALLBACK Compare(LPARAM data1, LPARAM data2, LPARAM tree);
2138
2139 private:
2140 static wxTreeItemId GetIdFromData(LPARAM lParam)
2141 {
2142 return ((wxTreeItemParam*)lParam)->GetItem();
2143 }
2144 };
2145
2146 int CALLBACK wxTreeSortHelper::Compare(LPARAM pItem1,
2147 LPARAM pItem2,
2148 LPARAM htree)
2149 {
2150 wxCHECK_MSG( pItem1 && pItem2, 0,
2151 wxT("sorting tree without data doesn't make sense") );
2152
2153 wxTreeCtrl *tree = (wxTreeCtrl *)htree;
2154
2155 return tree->OnCompareItems(GetIdFromData(pItem1),
2156 GetIdFromData(pItem2));
2157 }
2158
2159 void wxTreeCtrl::SortChildren(const wxTreeItemId& item)
2160 {
2161 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
2162
2163 // rely on the fact that TreeView_SortChildren does the same thing as our
2164 // default behaviour, i.e. sorts items alphabetically and so call it
2165 // directly if we're not in derived class (much more efficient!)
2166 // RN: Note that if you find you're code doesn't sort as expected this
2167 // may be why as if you don't use the DECLARE_CLASS/IMPLEMENT_CLASS
2168 // combo for your derived wxTreeCtrl if will sort without
2169 // OnCompareItems
2170 if ( GetClassInfo() == wxCLASSINFO(wxTreeCtrl) )
2171 {
2172 TreeView_SortChildren(GetHwnd(), HITEM(item), 0);
2173 }
2174 else
2175 {
2176 TV_SORTCB tvSort;
2177 tvSort.hParent = HITEM(item);
2178 tvSort.lpfnCompare = wxTreeSortHelper::Compare;
2179 tvSort.lParam = (LPARAM)this;
2180 TreeView_SortChildrenCB(GetHwnd(), &tvSort, 0 /* reserved */);
2181 }
2182 }
2183
2184 // ----------------------------------------------------------------------------
2185 // implementation
2186 // ----------------------------------------------------------------------------
2187
2188 bool wxTreeCtrl::MSWShouldPreProcessMessage(WXMSG* msg)
2189 {
2190 if ( msg->message == WM_KEYDOWN )
2191 {
2192 // Only eat VK_RETURN if not being used by the application in
2193 // conjunction with modifiers
2194 if ( (msg->wParam == VK_RETURN) && !wxIsAnyModifierDown() )
2195 {
2196 // we need VK_RETURN to generate wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2197 return false;
2198 }
2199 }
2200
2201 return wxTreeCtrlBase::MSWShouldPreProcessMessage(msg);
2202 }
2203
2204 bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id_)
2205 {
2206 const int id = (signed short)id_;
2207
2208 if ( cmd == EN_UPDATE )
2209 {
2210 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
2211 event.SetEventObject( this );
2212 ProcessCommand(event);
2213 }
2214 else if ( cmd == EN_KILLFOCUS )
2215 {
2216 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
2217 event.SetEventObject( this );
2218 ProcessCommand(event);
2219 }
2220 else
2221 {
2222 // nothing done
2223 return false;
2224 }
2225
2226 // command processed
2227 return true;
2228 }
2229
2230 bool wxTreeCtrl::MSWIsOnItem(unsigned flags) const
2231 {
2232 unsigned mask = TVHT_ONITEM;
2233 if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT) )
2234 mask |= TVHT_ONITEMINDENT | TVHT_ONITEMRIGHT;
2235
2236 return (flags & mask) != 0;
2237 }
2238
2239 bool wxTreeCtrl::MSWHandleSelectionKey(unsigned vkey)
2240 {
2241 const bool bCtrl = wxIsCtrlDown();
2242 const bool bShift = wxIsShiftDown();
2243 const HTREEITEM htSel = (HTREEITEM)TreeView_GetSelection(GetHwnd());
2244
2245 switch ( vkey )
2246 {
2247 case VK_RETURN:
2248 case VK_SPACE:
2249 if ( !htSel )
2250 break;
2251
2252 if ( vkey != VK_RETURN && bCtrl )
2253 {
2254 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2255 this, htSel);
2256 changingEvent.m_itemOld = htSel;
2257
2258 if ( IsTreeEventAllowed(changingEvent) )
2259 {
2260 DoToggleItemSelection(wxTreeItemId(htSel));
2261
2262 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2263 this, htSel);
2264 changedEvent.m_itemOld = htSel;
2265 (void)HandleTreeEvent(changedEvent);
2266 }
2267 }
2268 else
2269 {
2270 wxArrayTreeItemIds selections;
2271 size_t count = GetSelections(selections);
2272
2273 if ( count != 1 || HITEM(selections[0]) != htSel )
2274 {
2275 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2276 this, htSel);
2277 changingEvent.m_itemOld = htSel;
2278
2279 if ( IsTreeEventAllowed(changingEvent) )
2280 {
2281 DoUnselectAll();
2282 DoSelectItem(wxTreeItemId(htSel));
2283
2284 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2285 this, htSel);
2286 changedEvent.m_itemOld = htSel;
2287 (void)HandleTreeEvent(changedEvent);
2288 }
2289 }
2290 }
2291 break;
2292
2293 case VK_UP:
2294 case VK_DOWN:
2295 if ( !bCtrl && !bShift )
2296 {
2297 wxArrayTreeItemIds selections;
2298 wxTreeItemId next;
2299
2300 if ( htSel )
2301 {
2302 next = vkey == VK_UP
2303 ? TreeView_GetPrevVisible(GetHwnd(), htSel)
2304 : TreeView_GetNextVisible(GetHwnd(), htSel);
2305 }
2306 else
2307 {
2308 next = GetRootItem();
2309
2310 if ( IsHiddenRoot(next) )
2311 next = TreeView_GetChild(GetHwnd(), HITEM(next));
2312 }
2313
2314 if ( !next.IsOk() )
2315 {
2316 break;
2317 }
2318
2319 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2320 this, next);
2321 changingEvent.m_itemOld = htSel;
2322
2323 if ( IsTreeEventAllowed(changingEvent) )
2324 {
2325 DoUnselectAll();
2326 DoSelectItem(next);
2327 SetFocusedItem(next);
2328
2329 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2330 this, next);
2331 changedEvent.m_itemOld = htSel;
2332 (void)HandleTreeEvent(changedEvent);
2333 }
2334 }
2335 else if ( htSel )
2336 {
2337 wxTreeItemId next = vkey == VK_UP
2338 ? TreeView_GetPrevVisible(GetHwnd(), htSel)
2339 : TreeView_GetNextVisible(GetHwnd(), htSel);
2340
2341 if ( !next.IsOk() )
2342 {
2343 break;
2344 }
2345
2346 if ( !m_htSelStart )
2347 {
2348 m_htSelStart = htSel;
2349 }
2350
2351 if ( bShift && SelectRange(GetHwnd(), HITEM(m_htSelStart), HITEM(next),
2352 SR_UNSELECT_OTHERS | SR_SIMULATE) )
2353 {
2354 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, next);
2355 changingEvent.m_itemOld = htSel;
2356
2357 if ( IsTreeEventAllowed(changingEvent) )
2358 {
2359 SelectRange(GetHwnd(), HITEM(m_htSelStart), HITEM(next),
2360 SR_UNSELECT_OTHERS);
2361
2362 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this, next);
2363 changedEvent.m_itemOld = htSel;
2364 (void)HandleTreeEvent(changedEvent);
2365 }
2366 }
2367
2368 SetFocusedItem(next);
2369 }
2370 break;
2371
2372 case VK_LEFT:
2373 if ( HasChildren(htSel) && IsExpanded(htSel) )
2374 {
2375 Collapse(htSel);
2376 }
2377 else
2378 {
2379 wxTreeItemId next = GetItemParent(htSel);
2380
2381 if ( next.IsOk() && !IsHiddenRoot(next) )
2382 {
2383 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2384 this, next);
2385 changingEvent.m_itemOld = htSel;
2386
2387 if ( IsTreeEventAllowed(changingEvent) )
2388 {
2389 DoUnselectAll();
2390 DoSelectItem(next);
2391 SetFocusedItem(next);
2392
2393 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2394 this, next);
2395 changedEvent.m_itemOld = htSel;
2396 (void)HandleTreeEvent(changedEvent);
2397 }
2398 }
2399 }
2400 break;
2401
2402 case VK_RIGHT:
2403 if ( !IsVisible(htSel) )
2404 {
2405 EnsureVisible(htSel);
2406 }
2407
2408 if ( !HasChildren(htSel) )
2409 break;
2410
2411 if ( !IsExpanded(htSel) )
2412 {
2413 Expand(htSel);
2414 }
2415 else
2416 {
2417 wxTreeItemId next = TreeView_GetChild(GetHwnd(), htSel);
2418
2419 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, next);
2420 changingEvent.m_itemOld = htSel;
2421
2422 if ( IsTreeEventAllowed(changingEvent) )
2423 {
2424 DoUnselectAll();
2425 DoSelectItem(next);
2426 SetFocusedItem(next);
2427
2428 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this, next);
2429 changedEvent.m_itemOld = htSel;
2430 (void)HandleTreeEvent(changedEvent);
2431 }
2432 }
2433 break;
2434
2435 case VK_HOME:
2436 case VK_END:
2437 {
2438 wxTreeItemId next = GetRootItem();
2439
2440 if ( IsHiddenRoot(next) )
2441 {
2442 next = TreeView_GetChild(GetHwnd(), HITEM(next));
2443 }
2444
2445 if ( !next.IsOk() )
2446 break;
2447
2448 if ( vkey == VK_END )
2449 {
2450 for ( ;; )
2451 {
2452 wxTreeItemId nextTemp = TreeView_GetNextVisible(
2453 GetHwnd(), HITEM(next));
2454
2455 if ( !nextTemp.IsOk() )
2456 break;
2457
2458 next = nextTemp;
2459 }
2460 }
2461
2462 if ( htSel == HITEM(next) )
2463 break;
2464
2465 if ( bShift )
2466 {
2467 if ( !m_htSelStart )
2468 {
2469 m_htSelStart = htSel;
2470 }
2471
2472 if ( SelectRange(GetHwnd(),
2473 HITEM(m_htSelStart), HITEM(next),
2474 SR_UNSELECT_OTHERS | SR_SIMULATE) )
2475 {
2476 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2477 this, next);
2478 changingEvent.m_itemOld = htSel;
2479
2480 if ( IsTreeEventAllowed(changingEvent) )
2481 {
2482 SelectRange(GetHwnd(),
2483 HITEM(m_htSelStart), HITEM(next),
2484 SR_UNSELECT_OTHERS);
2485 SetFocusedItem(next);
2486
2487 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2488 this, next);
2489 changedEvent.m_itemOld = htSel;
2490 (void)HandleTreeEvent(changedEvent);
2491 }
2492 }
2493 }
2494 else // no Shift
2495 {
2496 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2497 this, next);
2498 changingEvent.m_itemOld = htSel;
2499
2500 if ( IsTreeEventAllowed(changingEvent) )
2501 {
2502 DoUnselectAll();
2503 DoSelectItem(next);
2504 SetFocusedItem(next);
2505
2506 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2507 this, next);
2508 changedEvent.m_itemOld = htSel;
2509 (void)HandleTreeEvent(changedEvent);
2510 }
2511 }
2512 }
2513 break;
2514
2515 case VK_PRIOR:
2516 case VK_NEXT:
2517 if ( bCtrl )
2518 {
2519 wxTreeItemId firstVisible = GetFirstVisibleItem();
2520 size_t visibleCount = TreeView_GetVisibleCount(GetHwnd());
2521 wxTreeItemId nextAdjacent = (vkey == VK_PRIOR) ?
2522 TreeView_GetPrevVisible(GetHwnd(), HITEM(firstVisible)) :
2523 TreeView_GetNextVisible(GetHwnd(), HITEM(firstVisible));
2524
2525 if ( !nextAdjacent )
2526 {
2527 break;
2528 }
2529
2530 wxTreeItemId nextStart = firstVisible;
2531
2532 for ( size_t n = 1; n < visibleCount; n++ )
2533 {
2534 wxTreeItemId nextTemp = (vkey == VK_PRIOR) ?
2535 TreeView_GetPrevVisible(GetHwnd(), HITEM(nextStart)) :
2536 TreeView_GetNextVisible(GetHwnd(), HITEM(nextStart));
2537
2538 if ( nextTemp.IsOk() )
2539 {
2540 nextStart = nextTemp;
2541 }
2542 else
2543 {
2544 break;
2545 }
2546 }
2547
2548 EnsureVisible(nextStart);
2549
2550 if ( vkey == VK_NEXT )
2551 {
2552 wxTreeItemId nextEnd = nextStart;
2553
2554 for ( size_t n = 1; n < visibleCount; n++ )
2555 {
2556 wxTreeItemId nextTemp =
2557 TreeView_GetNextVisible(GetHwnd(), HITEM(nextEnd));
2558
2559 if ( nextTemp.IsOk() )
2560 {
2561 nextEnd = nextTemp;
2562 }
2563 else
2564 {
2565 break;
2566 }
2567 }
2568
2569 EnsureVisible(nextEnd);
2570 }
2571 }
2572 else // no Ctrl
2573 {
2574 size_t visibleCount = TreeView_GetVisibleCount(GetHwnd());
2575 wxTreeItemId nextAdjacent = (vkey == VK_PRIOR) ?
2576 TreeView_GetPrevVisible(GetHwnd(), htSel) :
2577 TreeView_GetNextVisible(GetHwnd(), htSel);
2578
2579 if ( !nextAdjacent )
2580 {
2581 break;
2582 }
2583
2584 wxTreeItemId next(htSel);
2585
2586 for ( size_t n = 1; n < visibleCount; n++ )
2587 {
2588 wxTreeItemId nextTemp = vkey == VK_PRIOR ?
2589 TreeView_GetPrevVisible(GetHwnd(), HITEM(next)) :
2590 TreeView_GetNextVisible(GetHwnd(), HITEM(next));
2591
2592 if ( !nextTemp.IsOk() )
2593 break;
2594
2595 next = nextTemp;
2596 }
2597
2598 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2599 this, next);
2600 changingEvent.m_itemOld = htSel;
2601
2602 if ( IsTreeEventAllowed(changingEvent) )
2603 {
2604 DoUnselectAll();
2605 m_htSelStart.Unset();
2606 DoSelectItem(next);
2607 SetFocusedItem(next);
2608
2609 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2610 this, next);
2611 changedEvent.m_itemOld = htSel;
2612 (void)HandleTreeEvent(changedEvent);
2613 }
2614 }
2615 break;
2616
2617 default:
2618 return false;
2619 }
2620
2621 return true;
2622 }
2623
2624 bool wxTreeCtrl::MSWHandleTreeKeyDownEvent(WXWPARAM wParam, WXLPARAM lParam)
2625 {
2626 wxTreeEvent keyEvent(wxEVT_COMMAND_TREE_KEY_DOWN, this);
2627 keyEvent.m_evtKey = CreateKeyEvent(wxEVT_KEY_DOWN, wParam, lParam);
2628
2629 bool processed = HandleTreeEvent(keyEvent);
2630
2631 // generate a separate event for Space/Return
2632 if ( !wxIsCtrlDown() && !wxIsShiftDown() && !wxIsAltDown() &&
2633 ((wParam == VK_SPACE) || (wParam == VK_RETURN)) )
2634 {
2635 const HTREEITEM htSel = (HTREEITEM)TreeView_GetSelection(GetHwnd());
2636 if ( htSel )
2637 {
2638 wxTreeEvent activatedEvent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED,
2639 this, htSel);
2640 (void)HandleTreeEvent(activatedEvent);
2641 }
2642 }
2643
2644 return processed;
2645 }
2646
2647 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
2648 // only do it during dragging, minimize wxWin overhead (this is important for
2649 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
2650 // instead of passing by wxWin events
2651 WXLRESULT
2652 wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
2653 {
2654 bool processed = false;
2655 WXLRESULT rc = 0;
2656 bool isMultiple = HasFlag(wxTR_MULTIPLE);
2657
2658 if ( nMsg == WM_CONTEXTMENU )
2659 {
2660 int x = GET_X_LPARAM(lParam),
2661 y = GET_Y_LPARAM(lParam);
2662
2663 // the item for which the menu should be shown
2664 wxTreeItemId item;
2665
2666 // the position where the menu should be shown in client coordinates
2667 // (so that it can be passed directly to PopupMenu())
2668 wxPoint pt;
2669
2670 if ( x == -1 || y == -1 )
2671 {
2672 // this means that the event was generated from keyboard (e.g. with
2673 // Shift-F10 or special Windows menu key)
2674 //
2675 // use the Explorer standard of putting the menu at the left edge
2676 // of the text, in the vertical middle of the text
2677 item = wxTreeItemId(TreeView_GetSelection(GetHwnd()));
2678 if ( item.IsOk() )
2679 {
2680 // Use the bounding rectangle of only the text part
2681 wxRect rect;
2682 GetBoundingRect(item, rect, true);
2683 pt = wxPoint(rect.GetX(), rect.GetY() + rect.GetHeight() / 2);
2684 }
2685 }
2686 else // event from mouse, use mouse position
2687 {
2688 pt = ScreenToClient(wxPoint(x, y));
2689
2690 TV_HITTESTINFO tvhti;
2691 tvhti.pt.x = pt.x;
2692 tvhti.pt.y = pt.y;
2693
2694 if ( TreeView_HitTest(GetHwnd(), &tvhti) )
2695 item = wxTreeItemId(tvhti.hItem);
2696 }
2697
2698 // create the event
2699 if ( item.IsOk() )
2700 {
2701 wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_MENU, this, item);
2702
2703 event.m_pointDrag = pt;
2704
2705 if ( HandleTreeEvent(event) )
2706 processed = true;
2707 //else: continue with generating wxEVT_CONTEXT_MENU in base class code
2708 }
2709 }
2710 else if ( (nMsg >= WM_MOUSEFIRST) && (nMsg <= WM_MOUSELAST) )
2711 {
2712 // we only process mouse messages here and these parameters have the
2713 // same meaning for all of them
2714 int x = GET_X_LPARAM(lParam),
2715 y = GET_Y_LPARAM(lParam);
2716
2717 TV_HITTESTINFO tvht;
2718 tvht.pt.x = x;
2719 tvht.pt.y = y;
2720
2721 HTREEITEM htOldItem = TreeView_GetSelection(GetHwnd());
2722 HTREEITEM htItem = TreeView_HitTest(GetHwnd(), &tvht);
2723
2724 switch ( nMsg )
2725 {
2726 case WM_LBUTTONDOWN:
2727 if ( !isMultiple )
2728 break;
2729
2730 m_htClickedItem.Unset();
2731
2732 if ( !MSWIsOnItem(tvht.flags) )
2733 {
2734 if ( tvht.flags & TVHT_ONITEMBUTTON )
2735 {
2736 // either it's going to be handled by user code or
2737 // we're going to use it ourselves to toggle the
2738 // branch, in either case don't pass it to the base
2739 // class which would generate another mouse click event
2740 // for it even though it's already handled here
2741 processed = true;
2742 SetFocus();
2743
2744 if ( !HandleMouseEvent(nMsg, x, y, wParam) )
2745 {
2746 if ( !IsExpanded(htItem) )
2747 {
2748 Expand(htItem);
2749 }
2750 else
2751 {
2752 Collapse(htItem);
2753 }
2754 }
2755 }
2756
2757 m_focusLost = false;
2758 break;
2759 }
2760
2761 processed = true;
2762 SetFocus();
2763 m_htClickedItem = (WXHTREEITEM) htItem;
2764 m_ptClick = wxPoint(x, y);
2765
2766 if ( wParam & MK_CONTROL )
2767 {
2768 if ( HandleMouseEvent(nMsg, x, y, wParam) )
2769 {
2770 m_htClickedItem.Unset();
2771 break;
2772 }
2773
2774 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2775 this, htItem);
2776 changingEvent.m_itemOld = htOldItem;
2777
2778 if ( IsTreeEventAllowed(changingEvent) )
2779 {
2780 // toggle selected state
2781 DoToggleItemSelection(wxTreeItemId(htItem));
2782
2783 SetFocusedItem(wxTreeItemId(htItem));
2784
2785 // reset on any click without Shift
2786 m_htSelStart.Unset();
2787
2788 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2789 this, htItem);
2790 changedEvent.m_itemOld = htOldItem;
2791 (void)HandleTreeEvent(changedEvent);
2792 }
2793 }
2794 else if ( wParam & MK_SHIFT )
2795 {
2796 if ( HandleMouseEvent(nMsg, x, y, wParam) )
2797 {
2798 m_htClickedItem.Unset();
2799 break;
2800 }
2801
2802 int srFlags = 0;
2803 bool willChange = true;
2804
2805 if ( !(wParam & MK_CONTROL) )
2806 {
2807 srFlags |= SR_UNSELECT_OTHERS;
2808 }
2809
2810 if ( !m_htSelStart )
2811 {
2812 // take the focused item
2813 m_htSelStart = htOldItem;
2814 }
2815 else
2816 {
2817 willChange = SelectRange(GetHwnd(), HITEM(m_htSelStart),
2818 htItem, srFlags | SR_SIMULATE);
2819 }
2820
2821 if ( willChange )
2822 {
2823 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2824 this, htItem);
2825 changingEvent.m_itemOld = htOldItem;
2826
2827 if ( IsTreeEventAllowed(changingEvent) )
2828 {
2829 // this selects all items between the starting one
2830 // and the current
2831 if ( m_htSelStart )
2832 {
2833 SelectRange(GetHwnd(), HITEM(m_htSelStart),
2834 htItem, srFlags);
2835 }
2836 else
2837 {
2838 DoSelectItem(wxTreeItemId(htItem));
2839 }
2840
2841 SetFocusedItem(wxTreeItemId(htItem));
2842
2843 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2844 this, htItem);
2845 changedEvent.m_itemOld = htOldItem;
2846 (void)HandleTreeEvent(changedEvent);
2847 }
2848 }
2849 }
2850 else // normal click
2851 {
2852 // avoid doing anything if we click on the only
2853 // currently selected item
2854
2855 wxArrayTreeItemIds selections;
2856 size_t count = GetSelections(selections);
2857
2858 if ( count == 0 ||
2859 count > 1 ||
2860 HITEM(selections[0]) != htItem )
2861 {
2862 if ( HandleMouseEvent(nMsg, x, y, wParam) )
2863 {
2864 m_htClickedItem.Unset();
2865 break;
2866 }
2867
2868 // clear the previously selected items, if the user
2869 // clicked outside of the present selection, otherwise,
2870 // perform the deselection on mouse-up, this allows
2871 // multiple drag and drop to work.
2872 if ( !IsItemSelected(GetHwnd(), htItem))
2873 {
2874 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2875 this, htItem);
2876 changingEvent.m_itemOld = htOldItem;
2877
2878 if ( IsTreeEventAllowed(changingEvent) )
2879 {
2880 DoUnselectAll();
2881 DoSelectItem(wxTreeItemId(htItem));
2882 SetFocusedItem(wxTreeItemId(htItem));
2883
2884 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2885 this, htItem);
2886 changedEvent.m_itemOld = htOldItem;
2887 (void)HandleTreeEvent(changedEvent);
2888 }
2889 }
2890 else
2891 {
2892 SetFocusedItem(wxTreeItemId(htItem));
2893 m_mouseUpDeselect = true;
2894 }
2895 }
2896 else // click on a single selected item
2897 {
2898 // don't interfere with the default processing in
2899 // WM_MOUSEMOVE handler below as the default window
2900 // proc will start the drag itself if we let have
2901 // WM_LBUTTONDOWN
2902 m_htClickedItem.Unset();
2903
2904 // prevent in-place editing from starting if focus lost
2905 // since previous click
2906 if ( m_focusLost )
2907 {
2908 ClearFocusedItem();
2909 DoSelectItem(wxTreeItemId(htItem));
2910 SetFocusedItem(wxTreeItemId(htItem));
2911 }
2912 else
2913 {
2914 processed = false;
2915 }
2916 }
2917
2918 // reset on any click without Shift
2919 m_htSelStart.Unset();
2920 }
2921
2922 m_focusLost = false;
2923
2924 // we consumed the event so we need to trigger state image
2925 // click if needed
2926 if ( processed )
2927 {
2928 int htFlags = 0;
2929 wxTreeItemId item = HitTest(wxPoint(x, y), htFlags);
2930
2931 if ( htFlags & wxTREE_HITTEST_ONITEMSTATEICON )
2932 {
2933 m_triggerStateImageClick = true;
2934 }
2935 }
2936 break;
2937
2938 case WM_RBUTTONDOWN:
2939 if ( !isMultiple )
2940 break;
2941
2942 processed = true;
2943 SetFocus();
2944
2945 if ( HandleMouseEvent(nMsg, x, y, wParam) || !htItem )
2946 {
2947 break;
2948 }
2949
2950 // default handler removes the highlight from the currently
2951 // focused item when right mouse button is pressed on another
2952 // one but keeps the remaining items highlighted, which is
2953 // confusing, so override this default behaviour
2954 if ( !IsItemSelected(GetHwnd(), htItem) )
2955 {
2956 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2957 this, htItem);
2958 changingEvent.m_itemOld = htOldItem;
2959
2960 if ( IsTreeEventAllowed(changingEvent) )
2961 {
2962 DoUnselectAll();
2963 DoSelectItem(wxTreeItemId(htItem));
2964 SetFocusedItem(wxTreeItemId(htItem));
2965
2966 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2967 this, htItem);
2968 changedEvent.m_itemOld = htOldItem;
2969 (void)HandleTreeEvent(changedEvent);
2970 }
2971 }
2972
2973 break;
2974
2975 case WM_MOUSEMOVE:
2976 #ifndef __WXWINCE__
2977 if ( m_htClickedItem )
2978 {
2979 int cx = abs(m_ptClick.x - x);
2980 int cy = abs(m_ptClick.y - y);
2981
2982 if ( cx > ::GetSystemMetrics(SM_CXDRAG) ||
2983 cy > ::GetSystemMetrics(SM_CYDRAG) )
2984 {
2985 NM_TREEVIEW tv;
2986 wxZeroMemory(tv);
2987
2988 tv.hdr.hwndFrom = GetHwnd();
2989 tv.hdr.idFrom = ::GetWindowLong(GetHwnd(), GWL_ID);
2990 tv.hdr.code = TVN_BEGINDRAG;
2991
2992 tv.itemNew.hItem = HITEM(m_htClickedItem);
2993
2994
2995 TVITEM tviAux;
2996 wxZeroMemory(tviAux);
2997
2998 tviAux.hItem = HITEM(m_htClickedItem);
2999 tviAux.mask = TVIF_STATE | TVIF_PARAM;
3000 tviAux.stateMask = 0xffffffff;
3001 TreeView_GetItem(GetHwnd(), &tviAux);
3002
3003 tv.itemNew.state = tviAux.state;
3004 tv.itemNew.lParam = tviAux.lParam;
3005
3006 tv.ptDrag.x = x;
3007 tv.ptDrag.y = y;
3008
3009 // do it before SendMessage() call below to avoid
3010 // reentrancies here if there is another WM_MOUSEMOVE
3011 // in the queue already
3012 m_htClickedItem.Unset();
3013
3014 ::SendMessage(GetHwndOf(GetParent()), WM_NOTIFY,
3015 tv.hdr.idFrom, (LPARAM)&tv );
3016
3017 // don't pass it to the default window proc, it would
3018 // start dragging again
3019 processed = true;
3020 }
3021 }
3022 #endif // __WXWINCE__
3023
3024 #if wxUSE_DRAGIMAGE
3025 if ( m_dragImage )
3026 {
3027 m_dragImage->Move(wxPoint(x, y));
3028 if ( htItem )
3029 {
3030 // highlight the item as target (hiding drag image is
3031 // necessary - otherwise the display will be corrupted)
3032 m_dragImage->Hide();
3033 TreeView_SelectDropTarget(GetHwnd(), htItem);
3034 m_dragImage->Show();
3035 }
3036 }
3037 #endif // wxUSE_DRAGIMAGE
3038 break;
3039
3040 case WM_LBUTTONUP:
3041 if ( isMultiple )
3042 {
3043 // deselect other items if needed
3044 if ( htItem )
3045 {
3046 if ( m_mouseUpDeselect )
3047 {
3048 m_mouseUpDeselect = false;
3049
3050 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
3051 this, htItem);
3052 changingEvent.m_itemOld = htOldItem;
3053
3054 if ( IsTreeEventAllowed(changingEvent) )
3055 {
3056 DoUnselectAll();
3057 DoSelectItem(wxTreeItemId(htItem));
3058 SetFocusedItem(wxTreeItemId(htItem));
3059
3060 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
3061 this, htItem);
3062 changedEvent.m_itemOld = htOldItem;
3063 (void)HandleTreeEvent(changedEvent);
3064 }
3065 }
3066 }
3067
3068 m_htClickedItem.Unset();
3069
3070 if ( m_triggerStateImageClick )
3071 {
3072 if ( tvht.flags & TVHT_ONITEMSTATEICON )
3073 {
3074 wxTreeEvent event(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK,
3075 this, htItem);
3076 (void)HandleTreeEvent(event);
3077
3078 m_triggerStateImageClick = false;
3079 processed = true;
3080 }
3081 }
3082
3083 if ( !m_dragStarted && MSWIsOnItem(tvht.flags) )
3084 {
3085 processed = true;
3086 }
3087 }
3088
3089 // fall through
3090
3091 case WM_RBUTTONUP:
3092 #if wxUSE_DRAGIMAGE
3093 if ( m_dragImage )
3094 {
3095 m_dragImage->EndDrag();
3096 wxDELETE(m_dragImage);
3097
3098 // generate the drag end event
3099 wxTreeEvent event(wxEVT_COMMAND_TREE_END_DRAG,
3100 this, htItem);
3101 event.m_pointDrag = wxPoint(x, y);
3102 (void)HandleTreeEvent(event);
3103
3104 // if we don't do it, the tree seems to think that 2 items
3105 // are selected simultaneously which is quite weird
3106 TreeView_SelectDropTarget(GetHwnd(), 0);
3107 }
3108 #endif // wxUSE_DRAGIMAGE
3109
3110 if ( isMultiple && nMsg == WM_RBUTTONUP )
3111 {
3112 // send NM_RCLICK
3113 NMHDR nmhdr;
3114 nmhdr.hwndFrom = GetHwnd();
3115 nmhdr.idFrom = ::GetWindowLong(GetHwnd(), GWL_ID);
3116 nmhdr.code = NM_RCLICK;
3117 ::SendMessage(::GetParent(GetHwnd()), WM_NOTIFY,
3118 nmhdr.idFrom, (LPARAM)&nmhdr);
3119 processed = true;
3120 }
3121
3122 m_dragStarted = false;
3123
3124 break;
3125 }
3126 }
3127 else if ( (nMsg == WM_SETFOCUS || nMsg == WM_KILLFOCUS) )
3128 {
3129 if ( isMultiple )
3130 {
3131 // the tree control greys out the selected item when it loses focus
3132 // and paints it as selected again when it regains it, but it won't
3133 // do it for the other items itself - help it
3134 wxArrayTreeItemIds selections;
3135 size_t count = GetSelections(selections);
3136 TVGetItemRectParam param;
3137
3138 for ( size_t n = 0; n < count; n++ )
3139 {
3140 // TreeView_GetItemRect() will return false if item is not
3141 // visible, which may happen perfectly well
3142 if ( wxTreeView_GetItemRect(GetHwnd(), HITEM(selections[n]),
3143 param, TRUE) )
3144 {
3145 ::InvalidateRect(GetHwnd(), &param.rect, FALSE);
3146 }
3147 }
3148 }
3149
3150 if ( nMsg == WM_KILLFOCUS )
3151 {
3152 m_focusLost = true;
3153 }
3154 }
3155 else if ( (nMsg == WM_KEYDOWN || nMsg == WM_SYSKEYDOWN) && isMultiple )
3156 {
3157 // normally we want to generate wxEVT_KEY_DOWN events from TVN_KEYDOWN
3158 // notification but for the keys which can be used to change selection
3159 // we need to do it from here so as to not apply the default behaviour
3160 // if the events are handled by the user code
3161 switch ( wParam )
3162 {
3163 case VK_RETURN:
3164 case VK_SPACE:
3165 case VK_UP:
3166 case VK_DOWN:
3167 case VK_LEFT:
3168 case VK_RIGHT:
3169 case VK_HOME:
3170 case VK_END:
3171 case VK_PRIOR:
3172 case VK_NEXT:
3173 if ( !HandleKeyDown(wParam, lParam) &&
3174 !MSWHandleTreeKeyDownEvent(wParam, lParam) )
3175 {
3176 // use the key to update the selection if it was left
3177 // unprocessed
3178 MSWHandleSelectionKey(wParam);
3179 }
3180
3181 // pretend that we did process it in any case as we already
3182 // generated an event for it
3183 processed = true;
3184
3185 //default: for all the other keys leave processed as false so that
3186 // the tree control generates a TVN_KEYDOWN for us
3187 }
3188
3189 }
3190 else if ( nMsg == WM_COMMAND )
3191 {
3192 // if we receive a EN_KILLFOCUS command from the in-place edit control
3193 // used for label editing, make sure to end editing
3194 WORD id, cmd;
3195 WXHWND hwnd;
3196 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
3197
3198 if ( cmd == EN_KILLFOCUS )
3199 {
3200 if ( m_textCtrl && m_textCtrl->GetHandle() == hwnd )
3201 {
3202 DoEndEditLabel();
3203
3204 processed = true;
3205 }
3206 }
3207 }
3208
3209 if ( !processed )
3210 rc = wxControl::MSWWindowProc(nMsg, wParam, lParam);
3211
3212 return rc;
3213 }
3214
3215 WXLRESULT
3216 wxTreeCtrl::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
3217 {
3218 if ( nMsg == WM_CHAR )
3219 {
3220 // don't let the control process Space and Return keys because it
3221 // doesn't do anything useful with them anyhow but always beeps
3222 // annoyingly when it receives them and there is no way to turn it off
3223 // simply if you just process TREEITEM_ACTIVATED event to which Space
3224 // and Enter presses are mapped in your code
3225 if ( wParam == VK_SPACE || wParam == VK_RETURN )
3226 return 0;
3227 }
3228 #if wxUSE_DRAGIMAGE
3229 else if ( nMsg == WM_KEYDOWN )
3230 {
3231 if ( wParam == VK_ESCAPE )
3232 {
3233 if ( m_dragImage )
3234 {
3235 m_dragImage->EndDrag();
3236 wxDELETE(m_dragImage);
3237
3238 // if we don't do it, the tree seems to think that 2 items
3239 // are selected simultaneously which is quite weird
3240 TreeView_SelectDropTarget(GetHwnd(), 0);
3241 }
3242 }
3243 }
3244 #endif // wxUSE_DRAGIMAGE
3245
3246 return wxControl::MSWDefWindowProc(nMsg, wParam, lParam);
3247 }
3248
3249 // process WM_NOTIFY Windows message
3250 bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
3251 {
3252 wxTreeEvent event(wxEVT_NULL, this);
3253 wxEventType eventType = wxEVT_NULL;
3254 NMHDR *hdr = (NMHDR *)lParam;
3255
3256 switch ( hdr->code )
3257 {
3258 case TVN_BEGINDRAG:
3259 eventType = wxEVT_COMMAND_TREE_BEGIN_DRAG;
3260 // fall through
3261
3262 case TVN_BEGINRDRAG:
3263 {
3264 if ( eventType == wxEVT_NULL )
3265 eventType = wxEVT_COMMAND_TREE_BEGIN_RDRAG;
3266 //else: left drag, already set above
3267
3268 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
3269
3270 event.m_item = tv->itemNew.hItem;
3271 event.m_pointDrag = wxPoint(tv->ptDrag.x, tv->ptDrag.y);
3272
3273 // don't allow dragging by default: the user code must
3274 // explicitly say that it wants to allow it to avoid breaking
3275 // the old apps
3276 event.Veto();
3277 }
3278 break;
3279
3280 case TVN_BEGINLABELEDIT:
3281 {
3282 eventType = wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT;
3283 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3284
3285 // although the user event handler may still veto it, it is
3286 // important to set it now so that calls to SetItemText() from
3287 // the event handler would change the text controls contents
3288 m_idEdited =
3289 event.m_item = info->item.hItem;
3290 event.m_label = info->item.pszText;
3291 event.m_editCancelled = false;
3292 }
3293 break;
3294
3295 case TVN_DELETEITEM:
3296 {
3297 eventType = wxEVT_COMMAND_TREE_DELETE_ITEM;
3298 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
3299
3300 event.m_item = tv->itemOld.hItem;
3301
3302 if ( m_hasAnyAttr )
3303 {
3304 wxMapTreeAttr::iterator it = m_attrs.find(tv->itemOld.hItem);
3305 if ( it != m_attrs.end() )
3306 {
3307 delete it->second;
3308 m_attrs.erase(it);
3309 }
3310 }
3311 }
3312 break;
3313
3314 case TVN_ENDLABELEDIT:
3315 {
3316 eventType = wxEVT_COMMAND_TREE_END_LABEL_EDIT;
3317 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3318
3319 event.m_item = info->item.hItem;
3320 event.m_label = info->item.pszText;
3321 event.m_editCancelled = info->item.pszText == NULL;
3322 break;
3323 }
3324
3325 #ifndef __WXWINCE__
3326 // These *must* not be removed or TVN_GETINFOTIP will
3327 // not be processed each time the mouse is moved
3328 // and the tooltip will only ever update once.
3329 case TTN_NEEDTEXTA:
3330 case TTN_NEEDTEXTW:
3331 {
3332 *result = 0;
3333
3334 break;
3335 }
3336
3337 #ifdef TVN_GETINFOTIP
3338 case TVN_GETINFOTIP:
3339 {
3340 eventType = wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP;
3341 NMTVGETINFOTIP *info = (NMTVGETINFOTIP*)lParam;
3342
3343 // Which item are we trying to get a tooltip for?
3344 event.m_item = info->hItem;
3345
3346 break;
3347 }
3348 #endif // TVN_GETINFOTIP
3349 #endif // !__WXWINCE__
3350
3351 case TVN_GETDISPINFO:
3352 eventType = wxEVT_COMMAND_TREE_GET_INFO;
3353 // fall through
3354
3355 case TVN_SETDISPINFO:
3356 {
3357 if ( eventType == wxEVT_NULL )
3358 eventType = wxEVT_COMMAND_TREE_SET_INFO;
3359 //else: get, already set above
3360
3361 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3362
3363 event.m_item = info->item.hItem;
3364 break;
3365 }
3366
3367 case TVN_ITEMEXPANDING:
3368 case TVN_ITEMEXPANDED:
3369 {
3370 NM_TREEVIEW *tv = (NM_TREEVIEW*)lParam;
3371
3372 int what;
3373 switch ( tv->action )
3374 {
3375 default:
3376 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv->action);
3377 // fall through
3378
3379 case TVE_EXPAND:
3380 what = IDX_EXPAND;
3381 break;
3382
3383 case TVE_COLLAPSE:
3384 what = IDX_COLLAPSE;
3385 break;
3386 }
3387
3388 int how = hdr->code == TVN_ITEMEXPANDING ? IDX_DOING
3389 : IDX_DONE;
3390
3391 eventType = gs_expandEvents[what][how];
3392
3393 event.m_item = tv->itemNew.hItem;
3394 }
3395 break;
3396
3397 case TVN_KEYDOWN:
3398 {
3399 TV_KEYDOWN *info = (TV_KEYDOWN *)lParam;
3400
3401 // fabricate the lParam and wParam parameters sufficiently
3402 // similar to the ones from a "real" WM_KEYDOWN so that
3403 // CreateKeyEvent() works correctly
3404 return MSWHandleTreeKeyDownEvent(
3405 info->wVKey, (wxIsAltDown() ? KF_ALTDOWN : 0) << 16);
3406 }
3407
3408
3409 // Vista's tree control has introduced some problems with our
3410 // multi-selection tree. When TreeView_SelectItem() is called,
3411 // the wrong items are deselected.
3412
3413 // Fortunately, Vista provides a new notification, TVN_ITEMCHANGING
3414 // that can be used to regulate this incorrect behaviour. The
3415 // following messages will allow only the unlocked item's selection
3416 // state to change
3417
3418 case TVN_ITEMCHANGINGA:
3419 case TVN_ITEMCHANGINGW:
3420 {
3421 // we only need to handles these in multi-select trees
3422 if ( HasFlag(wxTR_MULTIPLE) )
3423 {
3424 // get info about the item about to be changed
3425 NMTVITEMCHANGE* info = (NMTVITEMCHANGE*)lParam;
3426 if (TreeItemUnlocker::IsLocked(info->hItem))
3427 {
3428 // item's state is locked, don't allow the change
3429 // returning 1 will disallow the change
3430 *result = 1;
3431 return true;
3432 }
3433 }
3434
3435 // allow the state change
3436 }
3437 return false;
3438
3439 // NB: MSLU is broken and sends TVN_SELCHANGEDA instead of
3440 // TVN_SELCHANGEDW in Unicode mode under Win98. Therefore
3441 // we have to handle both messages:
3442 case TVN_SELCHANGEDA:
3443 case TVN_SELCHANGEDW:
3444 if ( !m_changingSelection )
3445 {
3446 eventType = wxEVT_COMMAND_TREE_SEL_CHANGED;
3447 }
3448 // fall through
3449
3450 case TVN_SELCHANGINGA:
3451 case TVN_SELCHANGINGW:
3452 if ( !m_changingSelection )
3453 {
3454 if ( eventType == wxEVT_NULL )
3455 eventType = wxEVT_COMMAND_TREE_SEL_CHANGING;
3456 //else: already set above
3457
3458 if (hdr->code == TVN_SELCHANGINGW ||
3459 hdr->code == TVN_SELCHANGEDW)
3460 {
3461 NM_TREEVIEWW *tv = (NM_TREEVIEWW *)lParam;
3462 event.m_item = tv->itemNew.hItem;
3463 event.m_itemOld = tv->itemOld.hItem;
3464 }
3465 else
3466 {
3467 NM_TREEVIEWA *tv = (NM_TREEVIEWA *)lParam;
3468 event.m_item = tv->itemNew.hItem;
3469 event.m_itemOld = tv->itemOld.hItem;
3470 }
3471 }
3472
3473 // we receive this message from WM_LBUTTONDOWN handler inside
3474 // comctl32.dll and so before the click is passed to
3475 // DefWindowProc() which sets the focus to the window which was
3476 // clicked and this can lead to unexpected event sequences: for
3477 // example, we may get a "selection change" event from the tree
3478 // before getting a "kill focus" event for the text control which
3479 // had the focus previously, thus breaking user code doing input
3480 // validation
3481 //
3482 // to avoid such surprises, we force the generation of focus events
3483 // now, before we generate the selection change ones
3484 if ( !m_changingSelection && !m_isBeingDeleted )
3485 SetFocus();
3486 break;
3487
3488 // instead of explicitly checking for _WIN32_IE, check if the
3489 // required symbols are available in the headers
3490 #if defined(CDDS_PREPAINT)
3491 case NM_CUSTOMDRAW:
3492 {
3493 LPNMTVCUSTOMDRAW lptvcd = (LPNMTVCUSTOMDRAW)lParam;
3494 NMCUSTOMDRAW& nmcd = lptvcd->nmcd;
3495 switch ( nmcd.dwDrawStage )
3496 {
3497 case CDDS_PREPAINT:
3498 // if we've got any items with non standard attributes,
3499 // notify us before painting each item
3500 *result = m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
3501 : CDRF_DODEFAULT;
3502
3503 // windows in TreeCtrl use one-based index for item state images,
3504 // 0 indexed image is not being used, we're using zero-based index,
3505 // so we have to add temp image (of zero index) to state image list
3506 // before we draw any item, then after items are drawn we have to
3507 // delete it (in POSTPAINT notify)
3508 if (m_imageListState && m_imageListState->GetImageCount() > 0)
3509 {
3510 typedef BOOL (wxSTDCALL *ImageList_Copy_t)
3511 (HIMAGELIST, int, HIMAGELIST, int, UINT);
3512 static ImageList_Copy_t s_pfnImageList_Copy = NULL;
3513 static bool loaded = false;
3514
3515 if ( !loaded )
3516 {
3517 wxLoadedDLL dllComCtl32(wxT("comctl32.dll"));
3518 if ( dllComCtl32.IsLoaded() )
3519 wxDL_INIT_FUNC(s_pfn, ImageList_Copy, dllComCtl32);
3520 }
3521
3522 if ( !s_pfnImageList_Copy )
3523 {
3524 // this code is broken with ImageList_Copy()
3525 // but I don't care enough about Win95 support
3526 // to write it now -- if anybody does, please
3527 // do it
3528 wxFAIL_MSG("TODO: implement this for Win95");
3529 break;
3530 }
3531
3532 const HIMAGELIST
3533 hImageList = GetHimagelistOf(m_imageListState);
3534
3535 // add temporary image
3536 int width, height;
3537 m_imageListState->GetSize(0, width, height);
3538
3539 HBITMAP hbmpTemp = ::CreateBitmap(width, height, 1, 1, NULL);
3540 int index = ::ImageList_Add(hImageList, hbmpTemp, hbmpTemp);
3541 ::DeleteObject(hbmpTemp);
3542
3543 if ( index != -1 )
3544 {
3545 // move images to right
3546 for ( int i = index; i > 0; i-- )
3547 {
3548 (*s_pfnImageList_Copy)(hImageList, i,
3549 hImageList, i-1,
3550 ILCF_MOVE);
3551 }
3552
3553 // we must remove the image in POSTPAINT notify
3554 *result |= CDRF_NOTIFYPOSTPAINT;
3555 }
3556 }
3557 break;
3558
3559 case CDDS_POSTPAINT:
3560 // we are deleting temp image of 0 index, which was
3561 // added before items were drawn (in PREPAINT notify)
3562 if (m_imageListState && m_imageListState->GetImageCount() > 0)
3563 m_imageListState->Remove(0);
3564 break;
3565
3566 case CDDS_ITEMPREPAINT:
3567 {
3568 wxMapTreeAttr::iterator
3569 it = m_attrs.find((void *)nmcd.dwItemSpec);
3570
3571 if ( it == m_attrs.end() )
3572 {
3573 // nothing to do for this item
3574 *result = CDRF_DODEFAULT;
3575 break;
3576 }
3577
3578 wxTreeItemAttr * const attr = it->second;
3579
3580 wxTreeViewItem tvItem((void *)nmcd.dwItemSpec,
3581 TVIF_STATE, TVIS_DROPHILITED);
3582 DoGetItem(&tvItem);
3583 const UINT tvItemState = tvItem.state;
3584
3585 // selection colours should override ours,
3586 // otherwise it is too confusing to the user
3587 if ( !(nmcd.uItemState & CDIS_SELECTED) &&
3588 !(tvItemState & TVIS_DROPHILITED) )
3589 {
3590 wxColour colBack;
3591 if ( attr->HasBackgroundColour() )
3592 {
3593 colBack = attr->GetBackgroundColour();
3594 lptvcd->clrTextBk = wxColourToRGB(colBack);
3595 }
3596 }
3597
3598 // but we still want to keep the special foreground
3599 // colour when we don't have focus (we can't keep
3600 // it when we do, it would usually be unreadable on
3601 // the almost inverted bg colour...)
3602 if ( ( !(nmcd.uItemState & CDIS_SELECTED) ||
3603 FindFocus() != this ) &&
3604 !(tvItemState & TVIS_DROPHILITED) )
3605 {
3606 wxColour colText;
3607 if ( attr->HasTextColour() )
3608 {
3609 colText = attr->GetTextColour();
3610 lptvcd->clrText = wxColourToRGB(colText);
3611 }
3612 }
3613
3614 if ( attr->HasFont() )
3615 {
3616 HFONT hFont = GetHfontOf(attr->GetFont());
3617
3618 ::SelectObject(nmcd.hdc, hFont);
3619
3620 *result = CDRF_NEWFONT;
3621 }
3622 else // no specific font
3623 {
3624 *result = CDRF_DODEFAULT;
3625 }
3626 }
3627 break;
3628
3629 default:
3630 *result = CDRF_DODEFAULT;
3631 }
3632 }
3633
3634 // we always process it
3635 return true;
3636 #endif // have owner drawn support in headers
3637
3638 case NM_CLICK:
3639 {
3640 DWORD pos = GetMessagePos();
3641 POINT point;
3642 point.x = LOWORD(pos);
3643 point.y = HIWORD(pos);
3644 ::MapWindowPoints(HWND_DESKTOP, GetHwnd(), &point, 1);
3645 int htFlags = 0;
3646 wxTreeItemId item = HitTest(wxPoint(point.x, point.y), htFlags);
3647
3648 if ( htFlags & wxTREE_HITTEST_ONITEMSTATEICON )
3649 {
3650 event.m_item = item;
3651 eventType = wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK;
3652 }
3653
3654 break;
3655 }
3656
3657 case NM_DBLCLK:
3658 case NM_RCLICK:
3659 {
3660 TV_HITTESTINFO tvhti;
3661 wxGetCursorPosMSW(&tvhti.pt);
3662 ::ScreenToClient(GetHwnd(), &tvhti.pt);
3663 if ( TreeView_HitTest(GetHwnd(), &tvhti) )
3664 {
3665 if ( MSWIsOnItem(tvhti.flags) )
3666 {
3667 event.m_item = tvhti.hItem;
3668 eventType = (int)hdr->code == NM_DBLCLK
3669 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
3670 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK;
3671
3672 event.m_pointDrag.x = tvhti.pt.x;
3673 event.m_pointDrag.y = tvhti.pt.y;
3674 }
3675
3676 break;
3677 }
3678 }
3679 // fall through
3680
3681 default:
3682 return wxControl::MSWOnNotify(idCtrl, lParam, result);
3683 }
3684
3685 event.SetEventType(eventType);
3686
3687 bool processed = HandleTreeEvent(event);
3688
3689 // post processing
3690 switch ( hdr->code )
3691 {
3692 case NM_DBLCLK:
3693 // we translate NM_DBLCLK into ACTIVATED event and if the user
3694 // handled the activation of the item we shouldn't proceed with
3695 // also using the same double click for toggling the item expanded
3696 // state -- but OTOH do let the user to expand/collapse the item by
3697 // double clicking on it if the activation is not handled specially
3698 *result = processed;
3699 break;
3700
3701 case NM_RCLICK:
3702 // prevent tree control from sending WM_CONTEXTMENU to our parent
3703 // (which it does if NM_RCLICK is not handled) because we want to
3704 // send it to the control itself
3705 *result =
3706 processed = true;
3707
3708 ::SendMessage(GetHwnd(), WM_CONTEXTMENU,
3709 (WPARAM)GetHwnd(), ::GetMessagePos());
3710 break;
3711
3712 case TVN_BEGINDRAG:
3713 case TVN_BEGINRDRAG:
3714 #if wxUSE_DRAGIMAGE
3715 if ( event.IsAllowed() )
3716 {
3717 // normally this is impossible because the m_dragImage is
3718 // deleted once the drag operation is over
3719 wxASSERT_MSG( !m_dragImage, wxT("starting to drag once again?") );
3720
3721 m_dragImage = new wxDragImage(*this, event.m_item);
3722 m_dragImage->BeginDrag(wxPoint(0,0), this);
3723 m_dragImage->Show();
3724
3725 m_dragStarted = true;
3726 }
3727 #endif // wxUSE_DRAGIMAGE
3728 break;
3729
3730 case TVN_DELETEITEM:
3731 {
3732 // NB: we might process this message using wxWidgets event
3733 // tables, but due to overhead of wxWin event system we
3734 // prefer to do it here ourself (otherwise deleting a tree
3735 // with many items is just too slow)
3736 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
3737
3738 wxTreeItemParam *param =
3739 (wxTreeItemParam *)tv->itemOld.lParam;
3740 delete param;
3741
3742 processed = true; // Make sure we don't get called twice
3743 }
3744 break;
3745
3746 case TVN_BEGINLABELEDIT:
3747 // return true to cancel label editing
3748 *result = !event.IsAllowed();
3749
3750 // set ES_WANTRETURN ( like we do in BeginLabelEdit )
3751 if ( event.IsAllowed() )
3752 {
3753 HWND hText = TreeView_GetEditControl(GetHwnd());
3754 if ( hText )
3755 {
3756 // MBN: if m_textCtrl already has an HWND, it is a stale
3757 // pointer from a previous edit (because the user
3758 // didn't modify the label before dismissing the control,
3759 // and TVN_ENDLABELEDIT was not sent), so delete it
3760 if ( m_textCtrl && m_textCtrl->GetHWND() )
3761 DeleteTextCtrl();
3762 if ( !m_textCtrl )
3763 m_textCtrl = new wxTextCtrl();
3764 m_textCtrl->SetParent(this);
3765 m_textCtrl->SetHWND((WXHWND)hText);
3766 m_textCtrl->SubclassWin((WXHWND)hText);
3767
3768 // set wxTE_PROCESS_ENTER style for the text control to
3769 // force it to process the Enter presses itself, otherwise
3770 // they could be stolen from it by the dialog
3771 // navigation code
3772 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle()
3773 | wxTE_PROCESS_ENTER);
3774 }
3775 }
3776 else // we had set m_idEdited before
3777 {
3778 m_idEdited.Unset();
3779 }
3780 break;
3781
3782 case TVN_ENDLABELEDIT:
3783 // return true to set the label to the new string: note that we
3784 // also must pretend that we did process the message or it is going
3785 // to be passed to DefWindowProc() which will happily return false
3786 // cancelling the label change
3787 *result = event.IsAllowed();
3788 processed = true;
3789
3790 // ensure that we don't have the text ctrl which is going to be
3791 // deleted any more
3792 DeleteTextCtrl();
3793 break;
3794
3795 #ifndef __WXWINCE__
3796 #ifdef TVN_GETINFOTIP
3797 case TVN_GETINFOTIP:
3798 {
3799 // If the user permitted a tooltip change, change it
3800 if (event.IsAllowed())
3801 {
3802 SetToolTip(event.m_label);
3803 }
3804 }
3805 break;
3806 #endif
3807 #endif
3808
3809 case TVN_SELCHANGING:
3810 case TVN_ITEMEXPANDING:
3811 // return true to prevent the action from happening
3812 *result = !event.IsAllowed();
3813 break;
3814
3815 case TVN_ITEMEXPANDED:
3816 {
3817 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
3818 const wxTreeItemId id(tv->itemNew.hItem);
3819
3820 if ( tv->action == TVE_COLLAPSE )
3821 {
3822 if ( wxApp::GetComCtl32Version() >= 600 )
3823 {
3824 // for some reason the item selection rectangle depends
3825 // on whether it is expanded or collapsed (at least
3826 // with comctl32.dll v6): it is wider (by 3 pixels) in
3827 // the expanded state, so when the item collapses and
3828 // then is deselected the rightmost 3 pixels of the
3829 // previously drawn selection are left on the screen
3830 //
3831 // it's not clear if it's a bug in comctl32.dll or in
3832 // our code (because it does not happen in Explorer but
3833 // OTOH we don't do anything which could result in this
3834 // AFAICS) but we do need to work around it to avoid
3835 // ugly artifacts
3836 RefreshItem(id);
3837 }
3838 }
3839 else // expand
3840 {
3841 // the item is also not refreshed properly after expansion when
3842 // it has an image depending on the expanded/collapsed state:
3843 // again, it's not clear if the bug is in comctl32.dll or our
3844 // code...
3845 int image = GetItemImage(id, wxTreeItemIcon_Expanded);
3846 if ( image != -1 )
3847 {
3848 RefreshItem(id);
3849 }
3850 }
3851 }
3852 break;
3853
3854 case TVN_GETDISPINFO:
3855 // NB: so far the user can't set the image himself anyhow, so do it
3856 // anyway - but this may change later
3857 //if ( /* !processed && */ )
3858 {
3859 wxTreeItemId item = event.m_item;
3860 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3861
3862 const wxTreeItemParam * const param = GetItemParam(item);
3863 if ( !param )
3864 break;
3865
3866 if ( info->item.mask & TVIF_IMAGE )
3867 {
3868 info->item.iImage =
3869 param->GetImage
3870 (
3871 IsExpanded(item) ? wxTreeItemIcon_Expanded
3872 : wxTreeItemIcon_Normal
3873 );
3874 }
3875 if ( info->item.mask & TVIF_SELECTEDIMAGE )
3876 {
3877 info->item.iSelectedImage =
3878 param->GetImage
3879 (
3880 IsExpanded(item) ? wxTreeItemIcon_SelectedExpanded
3881 : wxTreeItemIcon_Selected
3882 );
3883 }
3884 }
3885 break;
3886
3887 //default:
3888 // for the other messages the return value is ignored and there is
3889 // nothing special to do
3890 }
3891 return processed;
3892 }
3893
3894 // ----------------------------------------------------------------------------
3895 // State control.
3896 // ----------------------------------------------------------------------------
3897
3898 // why do they define INDEXTOSTATEIMAGEMASK but not the inverse?
3899 #define STATEIMAGEMASKTOINDEX(state) (((state) & TVIS_STATEIMAGEMASK) >> 12)
3900
3901 int wxTreeCtrl::DoGetItemState(const wxTreeItemId& item) const
3902 {
3903 wxCHECK_MSG( item.IsOk(), wxTREE_ITEMSTATE_NONE, wxT("invalid tree item") );
3904
3905 // receive the desired information
3906 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
3907 DoGetItem(&tvItem);
3908
3909 // state images are one-based
3910 return STATEIMAGEMASKTOINDEX(tvItem.state) - 1;
3911 }
3912
3913 void wxTreeCtrl::DoSetItemState(const wxTreeItemId& item, int state)
3914 {
3915 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
3916
3917 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
3918
3919 // state images are one-based
3920 // 0 if no state image display (wxTREE_ITEMSTATE_NONE = -1)
3921 tvItem.state = INDEXTOSTATEIMAGEMASK(state + 1);
3922
3923 DoSetItem(&tvItem);
3924 }
3925
3926 #endif // wxUSE_TREECTRL