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