1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/treectrl.cpp
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin to be less MSW-specific on 10.10.98
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/treectrl.h"
32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
33 #include "wx/msw/missing.h"
34 #include "wx/dynarray.h"
37 #include "wx/settings.h"
40 #include "wx/dynlib.h"
41 #include "wx/msw/private.h"
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
47 #include "wx/imaglist.h"
48 #include "wx/msw/dragimag.h"
50 // macros to hide the cast ugliness
51 // --------------------------------
53 // get HTREEITEM from wxTreeItemId
54 #define HITEM(item) ((HTREEITEM)(((item).m_pItem)))
57 // older SDKs are missing these
58 #ifndef TVN_ITEMCHANGINGA
60 #define TVN_ITEMCHANGINGA (TVN_FIRST-16)
61 #define TVN_ITEMCHANGINGW (TVN_FIRST-17)
63 typedef struct tagNMTVITEMCHANGE
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.
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.
86 class TreeItemUnlocker
89 // unlock a single item
90 TreeItemUnlocker(HTREEITEM item
) { ms_unlockedItem
= item
; }
92 // unlock all items, don't use unless absolutely necessary
93 TreeItemUnlocker() { ms_unlockedItem
= (HTREEITEM
)-1; }
95 // lock everything back
96 ~TreeItemUnlocker() { ms_unlockedItem
= NULL
; }
99 // check if the item state is currently locked
100 static bool IsLocked(HTREEITEM item
)
101 { return ms_unlockedItem
!= (HTREEITEM
)-1 && item
!= ms_unlockedItem
; }
104 static HTREEITEM ms_unlockedItem
;
107 HTREEITEM
TreeItemUnlocker::ms_unlockedItem
= NULL
;
109 // another helper class: set the variable to true during its lifetime and reset
110 // it to false when it is destroyed
112 // it is currently always used with wxTreeCtrl::m_changingSelection
116 TempSetter(bool& var
) : m_var(var
)
118 wxASSERT_MSG( !m_var
, "variable shouldn't be already set" );
130 wxDECLARE_NO_COPY_CLASS(TempSetter
);
133 // ----------------------------------------------------------------------------
135 // ----------------------------------------------------------------------------
137 // wrappers for TreeView_GetItem/TreeView_SetItem
138 static bool IsItemSelected(HWND hwndTV
, HTREEITEM hItem
)
141 tvi
.mask
= TVIF_STATE
| TVIF_HANDLE
;
142 tvi
.stateMask
= TVIS_SELECTED
;
145 TreeItemUnlocker
unlocker(hItem
);
147 if ( !TreeView_GetItem(hwndTV
, &tvi
) )
149 wxLogLastError(wxT("TreeView_GetItem"));
152 return (tvi
.state
& TVIS_SELECTED
) != 0;
155 static bool SelectItem(HWND hwndTV
, HTREEITEM hItem
, bool select
= true)
158 tvi
.mask
= TVIF_STATE
| TVIF_HANDLE
;
159 tvi
.stateMask
= TVIS_SELECTED
;
160 tvi
.state
= select
? TVIS_SELECTED
: 0;
163 TreeItemUnlocker
unlocker(hItem
);
165 if ( TreeView_SetItem(hwndTV
, &tvi
) == -1 )
167 wxLogLastError(wxT("TreeView_SetItem"));
174 static inline void UnselectItem(HWND hwndTV
, HTREEITEM htItem
)
176 SelectItem(hwndTV
, htItem
, false);
179 static inline void ToggleItemSelection(HWND hwndTV
, HTREEITEM htItem
)
181 SelectItem(hwndTV
, htItem
, !IsItemSelected(hwndTV
, htItem
));
184 // helper function which selects all items in a range and, optionally,
185 // deselects all the other ones
187 // returns true if the selection changed at all or false if nothing changed
189 // flags for SelectRange()
192 SR_SIMULATE
= 1, // don't do anything, just return true or false
193 SR_UNSELECT_OTHERS
= 2 // deselect the items not in range
196 static bool SelectRange(HWND hwndTV
,
201 // find the first (or last) item and select it
202 bool changed
= false;
204 HTREEITEM htItem
= (HTREEITEM
)TreeView_GetRoot(hwndTV
);
206 while ( htItem
&& cont
)
208 if ( (htItem
== htFirst
) || (htItem
== htLast
) )
210 if ( !IsItemSelected(hwndTV
, htItem
) )
212 if ( !(flags
& SR_SIMULATE
) )
214 SelectItem(hwndTV
, htItem
);
222 else // not first or last
224 if ( flags
& SR_UNSELECT_OTHERS
)
226 if ( IsItemSelected(hwndTV
, htItem
) )
228 if ( !(flags
& SR_SIMULATE
) )
229 UnselectItem(hwndTV
, htItem
);
236 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
239 // select the items in range
240 cont
= htFirst
!= htLast
;
241 while ( htItem
&& cont
)
243 if ( !IsItemSelected(hwndTV
, htItem
) )
245 if ( !(flags
& SR_SIMULATE
) )
247 SelectItem(hwndTV
, htItem
);
253 cont
= (htItem
!= htFirst
) && (htItem
!= htLast
);
255 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
258 // optionally deselect the rest
259 if ( flags
& SR_UNSELECT_OTHERS
)
263 if ( IsItemSelected(hwndTV
, htItem
) )
265 if ( !(flags
& SR_SIMULATE
) )
267 UnselectItem(hwndTV
, htItem
);
273 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
277 // seems to be necessary - otherwise the just selected items don't always
278 // appear as selected
279 if ( !(flags
& SR_SIMULATE
) )
281 UpdateWindow(hwndTV
);
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!)
291 // returns true if the focus was changed, false if the given item was already
293 static bool SetFocus(HWND hwndTV
, HTREEITEM htItem
)
296 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(hwndTV
);
298 if ( htItem
== htFocus
)
303 // remember the selection state of the item
304 bool wasSelected
= IsItemSelected(hwndTV
, htItem
);
306 if ( htFocus
&& IsItemSelected(hwndTV
, htFocus
) )
308 // prevent the tree from unselecting the old focus which it
309 // would do by default (TreeView_SelectItem unselects the
311 TreeView_SelectItem(hwndTV
, 0);
312 SelectItem(hwndTV
, htFocus
);
315 TreeView_SelectItem(hwndTV
, htItem
);
319 // need to clear the selection which TreeView_SelectItem() gave
321 UnselectItem(hwndTV
, htItem
);
323 //else: was selected, still selected - ok
327 bool wasFocusSelected
= IsItemSelected(hwndTV
, htFocus
);
329 // just clear the focus
330 TreeView_SelectItem(hwndTV
, 0);
332 if ( wasFocusSelected
)
334 // restore the selection state
335 SelectItem(hwndTV
, htFocus
);
342 // ----------------------------------------------------------------------------
344 // ----------------------------------------------------------------------------
346 // a convenient wrapper around TV_ITEM struct which adds a ctor
348 #pragma warning( disable : 4097 ) // inheriting from typedef
351 struct wxTreeViewItem
: public TV_ITEM
353 wxTreeViewItem(const wxTreeItemId
& item
, // the item handle
354 UINT mask_
, // fields which are valid
355 UINT stateMask_
= 0) // for TVIF_STATE only
359 // hItem member is always valid
360 mask
= mask_
| TVIF_HANDLE
;
361 stateMask
= stateMask_
;
366 // ----------------------------------------------------------------------------
367 // This class is our userdata/lParam for the TV_ITEMs stored in the treeview.
369 // We need this for a couple of reasons:
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
378 // 2) This class is also needed to hold the HITEM so that we can sort
379 // it correctly in the MSW sort callback.
381 // In addition it makes other workarounds such as this easier and helps
382 // simplify the code.
383 // ----------------------------------------------------------------------------
385 class wxTreeItemParam
392 for ( size_t n
= 0; n
< WXSIZEOF(m_images
); n
++ )
398 // dtor deletes the associated data as well
399 virtual ~wxTreeItemParam() { delete m_data
; }
402 // get the real data associated with the item
403 wxTreeItemData
*GetData() const { return m_data
; }
405 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
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
411 int GetImage(wxTreeItemIcon which
) const
413 int image
= m_images
[which
];
418 case wxTreeItemIcon_SelectedExpanded
:
419 image
= GetImage(wxTreeItemIcon_Expanded
);
424 case wxTreeItemIcon_Selected
:
425 case wxTreeItemIcon_Expanded
:
426 image
= GetImage(wxTreeItemIcon_Normal
);
429 case wxTreeItemIcon_Normal
:
434 wxFAIL_MSG( wxT("unsupported wxTreeItemIcon value") );
440 // change the given image
441 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
444 const wxTreeItemId
& GetItem() const { return m_item
; }
446 void SetItem(const wxTreeItemId
& item
) { m_item
= item
; }
449 // all the images associated with the item
450 int m_images
[wxTreeItemIcon_Max
];
452 // item for sort callbacks
455 // the real client data
456 wxTreeItemData
*m_data
;
458 wxDECLARE_NO_COPY_CLASS(wxTreeItemParam
);
461 // wxVirutalNode is used in place of a single root when 'hidden' root is
463 class wxVirtualNode
: public wxTreeViewItem
466 wxVirtualNode(wxTreeItemParam
*param
)
467 : wxTreeViewItem(TVI_ROOT
, 0)
477 wxTreeItemParam
*GetParam() const { return m_param
; }
478 void SetParam(wxTreeItemParam
*param
) { delete m_param
; m_param
= param
; }
481 wxTreeItemParam
*m_param
;
483 wxDECLARE_NO_COPY_CLASS(wxVirtualNode
);
487 #pragma warning( default : 4097 )
490 // a macro to get the virtual root, returns NULL if none
491 #define GET_VIRTUAL_ROOT() ((wxVirtualNode *)m_pVirtualRoot)
493 // returns true if the item is the virtual root
494 #define IS_VIRTUAL_ROOT(item) (HITEM(item) == TVI_ROOT)
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
501 wxTreeTraversal(const wxTreeCtrl
*tree
)
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() { }
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);
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;
521 const wxTreeCtrl
*GetTree() const { return m_tree
; }
524 bool Traverse(const wxTreeItemId
& root
, bool recursively
);
526 const wxTreeCtrl
*m_tree
;
528 wxDECLARE_NO_COPY_CLASS(wxTreeTraversal
);
531 // internal class for getting the selected items
532 class TraverseSelections
: public wxTreeTraversal
535 TraverseSelections(const wxTreeCtrl
*tree
,
536 wxArrayTreeItemIds
& selections
)
537 : wxTreeTraversal(tree
), m_selections(selections
)
539 m_selections
.Empty();
541 if (tree
->GetCount() > 0)
542 DoTraverse(tree
->GetRootItem());
545 virtual bool OnVisit(const wxTreeItemId
& item
)
547 const wxTreeCtrl
* const tree
= GetTree();
549 // can't visit a virtual node.
550 if ( (tree
->GetRootItem() == item
) && tree
->HasFlag(wxTR_HIDE_ROOT
) )
555 if ( ::IsItemSelected(GetHwndOf(tree
), HITEM(item
)) )
557 m_selections
.Add(item
);
563 size_t GetCount() const { return m_selections
.GetCount(); }
566 wxArrayTreeItemIds
& m_selections
;
568 wxDECLARE_NO_COPY_CLASS(TraverseSelections
);
571 // internal class for counting tree items
572 class TraverseCounter
: public wxTreeTraversal
575 TraverseCounter(const wxTreeCtrl
*tree
,
576 const wxTreeItemId
& root
,
578 : wxTreeTraversal(tree
)
582 DoTraverse(root
, recursively
);
585 virtual bool OnVisit(const wxTreeItemId
& WXUNUSED(item
))
592 size_t GetCount() const { return m_count
; }
597 wxDECLARE_NO_COPY_CLASS(TraverseCounter
);
600 // ----------------------------------------------------------------------------
602 // ----------------------------------------------------------------------------
604 #if wxUSE_EXTENDED_RTTI
605 WX_DEFINE_FLAGS( wxTreeCtrlStyle
)
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
)
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
)
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
)
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
)
650 wxFLAGS_MEMBER(wxTR_DEFAULT_STYLE
)
652 wxEND_FLAGS( wxTreeCtrlStyle
)
654 IMPLEMENT_DYNAMIC_CLASS_XTI(wxTreeCtrl
, wxControl
,"wx/treectrl.h")
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()
662 wxBEGIN_HANDLERS_TABLE(wxTreeCtrl
)
663 wxEND_HANDLERS_TABLE()
665 wxCONSTRUCTOR_5( wxTreeCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
667 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxControl
)
670 // ----------------------------------------------------------------------------
672 // ----------------------------------------------------------------------------
674 // indices in gs_expandEvents table below
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
];
694 but logically it's a const table with the following entries:
697 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING },
698 { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING }
702 // ============================================================================
704 // ============================================================================
706 // ----------------------------------------------------------------------------
708 // ----------------------------------------------------------------------------
710 bool wxTreeTraversal::DoTraverse(const wxTreeItemId
& root
, bool recursively
)
712 if ( !OnVisit(root
) )
715 return Traverse(root
, recursively
);
718 bool wxTreeTraversal::Traverse(const wxTreeItemId
& root
, bool recursively
)
720 wxTreeItemIdValue cookie
;
721 wxTreeItemId child
= m_tree
->GetFirstChild(root
, cookie
);
722 while ( child
.IsOk() )
724 // depth first traversal
725 if ( recursively
&& !Traverse(child
, true) )
728 if ( !OnVisit(child
) )
731 child
= m_tree
->GetNextChild(root
, cookie
);
737 // ----------------------------------------------------------------------------
738 // construction and destruction
739 // ----------------------------------------------------------------------------
741 void wxTreeCtrl::Init()
744 m_hasAnyAttr
= false;
748 m_pVirtualRoot
= NULL
;
749 m_dragStarted
= false;
751 m_changingSelection
= false;
752 m_triggerStateImageClick
= false;
753 m_mouseUpDeselect
= false;
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
;
763 bool wxTreeCtrl::Create(wxWindow
*parent
,
768 const wxValidator
& validator
,
769 const wxString
& name
)
773 if ( (style
& wxBORDER_MASK
) == wxBORDER_DEFAULT
)
774 style
|= wxBORDER_SUNKEN
;
776 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
780 DWORD wstyle
= MSWGetStyle(m_windowStyle
, & exStyle
);
781 wstyle
|= WS_TABSTOP
| TVS_SHOWSELALWAYS
;
783 if ( !(m_windowStyle
& wxTR_NO_LINES
) )
784 wstyle
|= TVS_HASLINES
;
785 if ( m_windowStyle
& wxTR_HAS_BUTTONS
)
786 wstyle
|= TVS_HASBUTTONS
;
788 if ( m_windowStyle
& wxTR_EDIT_LABELS
)
789 wstyle
|= TVS_EDITLABELS
;
791 if ( m_windowStyle
& wxTR_LINES_AT_ROOT
)
792 wstyle
|= TVS_LINESATROOT
;
794 if ( m_windowStyle
& wxTR_FULL_ROW_HIGHLIGHT
)
796 if ( wxApp::GetComCtl32Version() >= 471 )
797 wstyle
|= TVS_FULLROWSELECT
;
800 #if !defined(__WXWINCE__) && defined(TVS_INFOTIP)
801 // Need so that TVN_GETINFOTIP messages will be sent
802 wstyle
|= TVS_INFOTIP
;
805 // Create the tree control.
806 if ( !MSWCreateControl(WC_TREEVIEW
, wstyle
, pos
, size
) )
809 #if wxUSE_COMCTL32_SAFELY
810 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
811 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
813 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
814 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
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());
826 wxSetCCUnicodeFormat(GetHwnd());
831 wxTreeCtrl::~wxTreeCtrl()
833 // delete any attributes
836 WX_CLEAR_HASH_MAP(wxMapTreeAttr
, m_attrs
);
838 // prevent TVN_DELETEITEM handler from deleting the attributes again!
839 m_hasAnyAttr
= false;
844 // delete user data to prevent memory leaks
845 // also deletes hidden root node storage.
849 // ----------------------------------------------------------------------------
851 // ----------------------------------------------------------------------------
853 /* static */ wxVisualAttributes
854 wxTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
856 wxVisualAttributes attrs
= GetCompositeControlsDefaultAttributes(variant
);
858 // common controls have their own default font
859 attrs
.font
= wxGetCCDefaultFont();
865 // simple wrappers which add error checking in debug mode
867 bool wxTreeCtrl::DoGetItem(wxTreeViewItem
*tvItem
) const
869 wxCHECK_MSG( tvItem
->hItem
!= TVI_ROOT
, false,
870 wxT("can't retrieve virtual root item") );
872 if ( !TreeView_GetItem(GetHwnd(), tvItem
) )
874 wxLogLastError(wxT("TreeView_GetItem"));
882 void wxTreeCtrl::DoSetItem(wxTreeViewItem
*tvItem
)
884 TreeItemUnlocker
unlocker(tvItem
->hItem
);
886 if ( TreeView_SetItem(GetHwnd(), tvItem
) == -1 )
888 wxLogLastError(wxT("TreeView_SetItem"));
892 unsigned int wxTreeCtrl::GetCount() const
894 return (unsigned int)TreeView_GetCount(GetHwnd());
897 unsigned int wxTreeCtrl::GetIndent() const
899 return TreeView_GetIndent(GetHwnd());
902 void wxTreeCtrl::SetIndent(unsigned int indent
)
904 TreeView_SetIndent(GetHwnd(), indent
);
907 void wxTreeCtrl::SetAnyImageList(wxImageList
*imageList
, int which
)
910 (void) TreeView_SetImageList(GetHwnd(),
911 imageList
? imageList
->GetHIMAGELIST() : 0,
915 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
917 if (m_ownsImageListNormal
)
918 delete m_imageListNormal
;
920 SetAnyImageList(m_imageListNormal
= imageList
, TVSIL_NORMAL
);
921 m_ownsImageListNormal
= false;
924 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
926 if (m_ownsImageListState
) delete m_imageListState
;
927 SetAnyImageList(m_imageListState
= imageList
, TVSIL_STATE
);
928 m_ownsImageListState
= false;
931 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
932 bool recursively
) const
934 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
936 TraverseCounter
counter(this, item
, recursively
);
937 return counter
.GetCount() - 1;
940 // ----------------------------------------------------------------------------
942 // ----------------------------------------------------------------------------
944 bool wxTreeCtrl::SetBackgroundColour(const wxColour
&colour
)
946 #if !wxUSE_COMCTL32_SAFELY
947 if ( !wxWindowBase::SetBackgroundColour(colour
) )
950 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0, colour
.GetPixel());
956 bool wxTreeCtrl::SetForegroundColour(const wxColour
&colour
)
958 #if !wxUSE_COMCTL32_SAFELY
959 if ( !wxWindowBase::SetForegroundColour(colour
) )
962 ::SendMessage(GetHwnd(), TVM_SETTEXTCOLOR
, 0, colour
.GetPixel());
968 // ----------------------------------------------------------------------------
970 // ----------------------------------------------------------------------------
972 bool wxTreeCtrl::IsHiddenRoot(const wxTreeItemId
& item
) const
974 return HITEM(item
) == TVI_ROOT
&& HasFlag(wxTR_HIDE_ROOT
);
977 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
979 wxCHECK_MSG( item
.IsOk(), wxEmptyString
, wxT("invalid tree item") );
981 wxChar buf
[512]; // the size is arbitrary...
983 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
984 tvItem
.pszText
= buf
;
985 tvItem
.cchTextMax
= WXSIZEOF(buf
);
986 if ( !DoGetItem(&tvItem
) )
988 // don't return some garbage which was on stack, but an empty string
992 return wxString(buf
);
995 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
997 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
999 if ( IS_VIRTUAL_ROOT(item
) )
1002 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
1003 tvItem
.pszText
= (wxChar
*)text
.wx_str(); // conversion is ok
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
1010 // don't use GetEditControl() here because m_textCtrl is not set yet
1011 HWND hwndEdit
= TreeView_GetEditControl(GetHwnd());
1014 if ( item
== m_idEdited
)
1016 ::SetWindowText(hwndEdit
, text
.wx_str());
1021 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
1022 wxTreeItemIcon which
) const
1024 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
1026 if ( IsHiddenRoot(item
) )
1028 // no images for hidden root item
1032 wxTreeItemParam
*param
= GetItemParam(item
);
1034 return param
&& param
->HasImage(which
) ? param
->GetImage(which
) : -1;
1037 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
, int image
,
1038 wxTreeItemIcon which
)
1040 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1041 wxCHECK_RET( which
>= 0 &&
1042 which
< wxTreeItemIcon_Max
,
1043 wxT("invalid image index"));
1046 if ( IsHiddenRoot(item
) )
1048 // no images for hidden root item
1052 wxTreeItemParam
*data
= GetItemParam(item
);
1056 data
->SetImage(image
, which
);
1061 wxTreeItemParam
*wxTreeCtrl::GetItemParam(const wxTreeItemId
& item
) const
1063 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
1065 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
1067 // hidden root may still have data.
1068 if ( IS_VIRTUAL_ROOT(item
) )
1070 return GET_VIRTUAL_ROOT()->GetParam();
1074 if ( !DoGetItem(&tvItem
) )
1079 return (wxTreeItemParam
*)tvItem
.lParam
;
1082 bool wxTreeCtrl::HandleTreeEvent(wxTreeEvent
& event
) const
1084 if ( event
.m_item
.IsOk() )
1086 event
.SetClientObject(GetItemData(event
.m_item
));
1089 return HandleWindowEvent(event
);
1092 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
1094 wxTreeItemParam
*data
= GetItemParam(item
);
1096 return data
? data
->GetData() : NULL
;
1099 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
1101 // first, associate this piece of data with this item
1107 wxTreeItemParam
*param
= GetItemParam(item
);
1109 wxCHECK_RET( param
, wxT("failed to change tree items data") );
1111 param
->SetData(data
);
1114 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
1116 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1118 if ( IS_VIRTUAL_ROOT(item
) )
1121 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1122 tvItem
.cChildren
= (int)has
;
1126 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
1128 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1130 if ( IS_VIRTUAL_ROOT(item
) )
1133 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1134 tvItem
.state
= bold
? TVIS_BOLD
: 0;
1138 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
)
1140 if ( IS_VIRTUAL_ROOT(item
) )
1143 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_DROPHILITED
);
1144 tvItem
.state
= highlight
? TVIS_DROPHILITED
: 0;
1148 void wxTreeCtrl::RefreshItem(const wxTreeItemId
& item
)
1150 if ( IS_VIRTUAL_ROOT(item
) )
1154 if ( GetBoundingRect(item
, rect
) )
1160 wxColour
wxTreeCtrl::GetItemTextColour(const wxTreeItemId
& item
) const
1162 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
1164 wxMapTreeAttr::const_iterator it
= m_attrs
.find(item
.m_pItem
);
1165 return it
== m_attrs
.end() ? wxNullColour
: it
->second
->GetTextColour();
1168 wxColour
wxTreeCtrl::GetItemBackgroundColour(const wxTreeItemId
& item
) const
1170 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
1172 wxMapTreeAttr::const_iterator it
= m_attrs
.find(item
.m_pItem
);
1173 return it
== m_attrs
.end() ? wxNullColour
: it
->second
->GetBackgroundColour();
1176 wxFont
wxTreeCtrl::GetItemFont(const wxTreeItemId
& item
) const
1178 wxCHECK_MSG( item
.IsOk(), wxNullFont
, wxT("invalid tree item") );
1180 wxMapTreeAttr::const_iterator it
= m_attrs
.find(item
.m_pItem
);
1181 return it
== m_attrs
.end() ? wxNullFont
: it
->second
->GetFont();
1184 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
1185 const wxColour
& col
)
1187 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1189 wxTreeItemAttr
*attr
;
1190 wxMapTreeAttr::iterator it
= m_attrs
.find(item
.m_pItem
);
1191 if ( it
== m_attrs
.end() )
1193 m_hasAnyAttr
= true;
1195 m_attrs
[item
.m_pItem
] =
1196 attr
= new wxTreeItemAttr
;
1203 attr
->SetTextColour(col
);
1208 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1209 const wxColour
& col
)
1211 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1213 wxTreeItemAttr
*attr
;
1214 wxMapTreeAttr::iterator it
= m_attrs
.find(item
.m_pItem
);
1215 if ( it
== m_attrs
.end() )
1217 m_hasAnyAttr
= true;
1219 m_attrs
[item
.m_pItem
] =
1220 attr
= new wxTreeItemAttr
;
1222 else // already in the hash
1227 attr
->SetBackgroundColour(col
);
1232 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1234 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1236 wxTreeItemAttr
*attr
;
1237 wxMapTreeAttr::iterator it
= m_attrs
.find(item
.m_pItem
);
1238 if ( it
== m_attrs
.end() )
1240 m_hasAnyAttr
= true;
1242 m_attrs
[item
.m_pItem
] =
1243 attr
= new wxTreeItemAttr
;
1245 else // already in the hash
1250 attr
->SetFont(font
);
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
));
1259 // ----------------------------------------------------------------------------
1261 // ----------------------------------------------------------------------------
1263 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1265 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1267 if ( item
== wxTreeItemId(TVI_ROOT
) )
1269 // virtual (hidden) root is never visible
1273 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
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
);
1280 // true means to get rect for just the text, not the whole line
1281 if ( !::SendMessage(GetHwnd(), TVM_GETITEMRECT
, true, (LPARAM
)&rect
) )
1283 // if TVM_GETITEMRECT returned false, then the item is definitely not
1284 // visible (because its parent is not expanded)
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
;
1294 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1296 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1298 if ( IS_VIRTUAL_ROOT(item
) )
1300 wxTreeItemIdValue cookie
;
1301 return GetFirstChild(item
, cookie
).IsOk();
1304 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1307 return tvItem
.cChildren
!= 0;
1310 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1312 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1314 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDED
);
1317 return (tvItem
.state
& TVIS_EXPANDED
) != 0;
1320 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1322 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1324 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_SELECTED
);
1327 return (tvItem
.state
& TVIS_SELECTED
) != 0;
1330 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1332 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1334 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1337 return (tvItem
.state
& TVIS_BOLD
) != 0;
1340 // ----------------------------------------------------------------------------
1342 // ----------------------------------------------------------------------------
1344 wxTreeItemId
wxTreeCtrl::GetRootItem() const
1346 // Root may be real (visible) or virtual (hidden).
1347 if ( GET_VIRTUAL_ROOT() )
1350 return wxTreeItemId(TreeView_GetRoot(GetHwnd()));
1353 wxTreeItemId
wxTreeCtrl::GetSelection() const
1355 wxCHECK_MSG( !HasFlag(wxTR_MULTIPLE
), wxTreeItemId(),
1356 wxT("this only works with single selection controls") );
1358 return GetFocusedItem();
1361 wxTreeItemId
wxTreeCtrl::GetFocusedItem() const
1363 return wxTreeItemId(TreeView_GetSelection(GetHwnd()));
1366 wxTreeItemId
wxTreeCtrl::GetItemParent(const wxTreeItemId
& item
) const
1368 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1372 if ( IS_VIRTUAL_ROOT(item
) )
1374 // no parent for the virtual root
1379 hItem
= TreeView_GetParent(GetHwnd(), HITEM(item
));
1380 if ( !hItem
&& HasFlag(wxTR_HIDE_ROOT
) )
1382 // the top level items should have the virtual root as their parent
1387 return wxTreeItemId(hItem
);
1390 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1391 wxTreeItemIdValue
& cookie
) const
1393 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1395 // remember the last child returned in 'cookie'
1396 cookie
= TreeView_GetChild(GetHwnd(), HITEM(item
));
1398 return wxTreeItemId(cookie
);
1401 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& WXUNUSED(item
),
1402 wxTreeItemIdValue
& cookie
) const
1404 wxTreeItemId
fromCookie(cookie
);
1406 HTREEITEM hitem
= HITEM(fromCookie
);
1408 hitem
= TreeView_GetNextSibling(GetHwnd(), hitem
);
1410 wxTreeItemId
item(hitem
);
1412 cookie
= item
.m_pItem
;
1417 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1419 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1421 // can this be done more efficiently?
1422 wxTreeItemIdValue cookie
;
1424 wxTreeItemId childLast
,
1425 child
= GetFirstChild(item
, cookie
);
1426 while ( child
.IsOk() )
1429 child
= GetNextChild(item
, cookie
);
1435 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1437 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1438 return wxTreeItemId(TreeView_GetNextSibling(GetHwnd(), HITEM(item
)));
1441 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1443 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1444 return wxTreeItemId(TreeView_GetPrevSibling(GetHwnd(), HITEM(item
)));
1447 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
1449 return wxTreeItemId(TreeView_GetFirstVisible(GetHwnd()));
1452 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
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!"));
1457 wxTreeItemId
next(TreeView_GetNextVisible(GetHwnd(), HITEM(item
)));
1458 if ( next
.IsOk() && !IsVisible(next
) )
1460 // Win32 considers that any non-collapsed item is visible while we want
1461 // to return only really visible items
1468 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
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!"));
1473 wxTreeItemId
prev(TreeView_GetPrevVisible(GetHwnd(), HITEM(item
)));
1474 if ( prev
.IsOk() && !IsVisible(prev
) )
1476 // just as above, Win32 function will happily return the previous item
1477 // in the tree for the first visible item too
1484 // ----------------------------------------------------------------------------
1485 // multiple selections emulation
1486 // ----------------------------------------------------------------------------
1488 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
& selections
) const
1490 TraverseSelections
selector(this, selections
);
1492 return selector
.GetCount();
1495 // ----------------------------------------------------------------------------
1497 // ----------------------------------------------------------------------------
1499 wxTreeItemId
wxTreeCtrl::DoInsertAfter(const wxTreeItemId
& parent
,
1500 const wxTreeItemId
& hInsertAfter
,
1501 const wxString
& text
,
1502 int image
, int selectedImage
,
1503 wxTreeItemData
*data
)
1505 wxCHECK_MSG( parent
.IsOk() || !TreeView_GetRoot(GetHwnd()),
1507 wxT("can't have more than one root in the tree") );
1509 TV_INSERTSTRUCT tvIns
;
1510 tvIns
.hParent
= HITEM(parent
);
1511 tvIns
.hInsertAfter
= HITEM(hInsertAfter
);
1513 // this is how we insert the item as the first child: supply a NULL
1515 if ( !tvIns
.hInsertAfter
)
1517 tvIns
.hInsertAfter
= TVI_FIRST
;
1521 if ( !text
.empty() )
1524 tvIns
.item
.pszText
= (wxChar
*)text
.wx_str(); // cast is ok
1528 tvIns
.item
.pszText
= NULL
;
1529 tvIns
.item
.cchTextMax
= 0;
1532 // create the param which will store the other item parameters
1533 wxTreeItemParam
*param
= new wxTreeItemParam
;
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
;
1541 param
->SetImage(image
, wxTreeItemIcon_Normal
);
1542 param
->SetImage(selectedImage
, wxTreeItemIcon_Selected
);
1545 tvIns
.item
.lParam
= (LPARAM
)param
;
1546 tvIns
.item
.mask
= mask
;
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
));
1553 HTREEITEM id
= TreeView_InsertItem(GetHwnd(), &tvIns
);
1556 wxLogLastError(wxT("TreeView_InsertItem"));
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
1565 TreeView_GetItemRect(GetHwnd(), HITEM(parent
), &rect
, FALSE
);
1566 ::InvalidateRect(GetHwnd(), &rect
, FALSE
);
1569 // associate the application tree item with Win32 tree item handle
1572 // setup wxTreeItemData
1575 param
->SetData(data
);
1579 return wxTreeItemId(id
);
1582 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
1583 int image
, int selectedImage
,
1584 wxTreeItemData
*data
)
1586 if ( HasFlag(wxTR_HIDE_ROOT
) )
1588 wxASSERT_MSG( !m_pVirtualRoot
, wxT("tree can have only a single root") );
1590 // create a virtual root item, the parent for all the others
1591 wxTreeItemParam
*param
= new wxTreeItemParam
;
1592 param
->SetData(data
);
1594 m_pVirtualRoot
= new wxVirtualNode(param
);
1599 return DoInsertAfter(wxTreeItemId(), wxTreeItemId(),
1600 text
, image
, selectedImage
, data
);
1603 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parent
,
1605 const wxString
& text
,
1606 int image
, int selectedImage
,
1607 wxTreeItemData
*data
)
1609 wxTreeItemId idPrev
;
1610 if ( index
== (size_t)-1 )
1612 // special value: append to the end
1615 else // find the item from index
1617 wxTreeItemIdValue cookie
;
1618 wxTreeItemId idCur
= GetFirstChild(parent
, cookie
);
1619 while ( index
!= 0 && idCur
.IsOk() )
1624 idCur
= GetNextChild(parent
, cookie
);
1627 // assert, not check: if the index is invalid, we will append the item
1629 wxASSERT_MSG( index
== 0, wxT("bad index in wxTreeCtrl::InsertItem") );
1632 return DoInsertAfter(parent
, idPrev
, text
, image
, selectedImage
, data
);
1635 void wxTreeCtrl::Delete(const wxTreeItemId
& item
)
1637 // unlock tree selections on vista, without this the
1638 // tree ctrl will eventually crash after item deletion
1639 TreeItemUnlocker unlock_all
;
1641 if ( HasFlag(wxTR_MULTIPLE
) )
1643 bool selected
= IsSelected(item
);
1648 next
= TreeView_GetNextVisible(GetHwnd(), HITEM(item
));
1652 next
= TreeView_GetPrevVisible(GetHwnd(), HITEM(item
));
1657 TempSetter
set(m_changingSelection
);
1658 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item
)) )
1660 wxLogLastError(wxT("TreeView_DeleteItem"));
1672 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, next
);
1674 if ( IsTreeEventAllowed(changingEvent
) )
1676 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this, next
);
1677 (void)HandleTreeEvent(changedEvent
);
1681 DoUnselectItem(next
);
1688 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item
)) )
1690 wxLogLastError(wxT("TreeView_DeleteItem"));
1695 // delete all children (but don't delete the item itself)
1696 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& item
)
1698 // unlock tree selections on vista for the duration of this call
1699 TreeItemUnlocker unlock_all
;
1701 wxTreeItemIdValue cookie
;
1703 wxArrayTreeItemIds children
;
1704 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1705 while ( child
.IsOk() )
1707 children
.Add(child
);
1709 child
= GetNextChild(item
, cookie
);
1712 size_t nCount
= children
.Count();
1713 for ( size_t n
= 0; n
< nCount
; n
++ )
1715 Delete(children
[n
]);
1719 void wxTreeCtrl::DeleteAllItems()
1721 // unlock tree selections on vista for the duration of this call
1722 TreeItemUnlocker unlock_all
;
1724 // delete the "virtual" root item.
1725 if ( GET_VIRTUAL_ROOT() )
1727 delete GET_VIRTUAL_ROOT();
1728 m_pVirtualRoot
= NULL
;
1731 // and all the real items
1733 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1735 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1739 void wxTreeCtrl::DoExpand(const wxTreeItemId
& item
, int flag
)
1741 wxASSERT_MSG( flag
== TVE_COLLAPSE
||
1742 flag
== (TVE_COLLAPSE
| TVE_COLLAPSERESET
) ||
1743 flag
== TVE_EXPAND
||
1745 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1747 // A hidden root can be neither expanded nor collapsed.
1748 wxCHECK_RET( !IsHiddenRoot(item
),
1749 wxT("Can't expand/collapse hidden root node!") );
1751 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1752 // emulate them. This behaviour has changed slightly with comctl32.dll
1753 // v 4.70 - now it does send them but only the first time. To maintain
1754 // compatible behaviour and also in order to not have surprises with the
1755 // future versions, don't rely on this and still do everything ourselves.
1756 // To avoid that the messages be sent twice when the item is expanded for
1757 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1759 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDEDONCE
);
1763 if ( IsExpanded(item
) )
1765 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
,
1766 this, wxTreeItemId(item
));
1768 if ( !IsTreeEventAllowed(event
) )
1772 if ( TreeView_Expand(GetHwnd(), HITEM(item
), flag
) )
1774 if ( IsExpanded(item
) )
1777 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, this, item
);
1778 (void)HandleTreeEvent(event
);
1780 //else: change didn't took place, so do nothing at all
1783 void wxTreeCtrl::Expand(const wxTreeItemId
& item
)
1785 DoExpand(item
, TVE_EXPAND
);
1788 void wxTreeCtrl::Collapse(const wxTreeItemId
& item
)
1790 DoExpand(item
, TVE_COLLAPSE
);
1793 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1795 DoExpand(item
, TVE_COLLAPSE
| TVE_COLLAPSERESET
);
1798 void wxTreeCtrl::Toggle(const wxTreeItemId
& item
)
1800 DoExpand(item
, TVE_TOGGLE
);
1803 void wxTreeCtrl::Unselect()
1805 wxASSERT_MSG( !HasFlag(wxTR_MULTIPLE
),
1806 wxT("doesn't make sense, may be you want UnselectAll()?") );
1808 // the current focus
1809 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1816 if ( HasFlag(wxTR_MULTIPLE
) )
1818 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
1819 this, wxTreeItemId());
1820 changingEvent
.m_itemOld
= htFocus
;
1822 if ( IsTreeEventAllowed(changingEvent
) )
1826 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
1827 this, wxTreeItemId());
1828 changedEvent
.m_itemOld
= htFocus
;
1829 (void)HandleTreeEvent(changedEvent
);
1838 void wxTreeCtrl::DoUnselectAll()
1840 wxArrayTreeItemIds selections
;
1841 size_t count
= GetSelections(selections
);
1843 for ( size_t n
= 0; n
< count
; n
++ )
1845 DoUnselectItem(selections
[n
]);
1848 m_htSelStart
.Unset();
1851 void wxTreeCtrl::UnselectAll()
1853 if ( HasFlag(wxTR_MULTIPLE
) )
1855 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1856 if ( !htFocus
) return;
1858 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this);
1859 changingEvent
.m_itemOld
= htFocus
;
1861 if ( IsTreeEventAllowed(changingEvent
) )
1865 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this);
1866 changedEvent
.m_itemOld
= htFocus
;
1867 (void)HandleTreeEvent(changedEvent
);
1876 void wxTreeCtrl::DoSelectItem(const wxTreeItemId
& item
, bool select
)
1878 TempSetter
set(m_changingSelection
);
1880 ::SelectItem(GetHwnd(), HITEM(item
), select
);
1883 void wxTreeCtrl::SelectItem(const wxTreeItemId
& item
, bool select
)
1885 wxCHECK_RET( !IsHiddenRoot(item
), wxT("can't select hidden root item") );
1887 if ( select
== IsSelected(item
) )
1889 // nothing to do, the item is already in the requested state
1893 if ( HasFlag(wxTR_MULTIPLE
) )
1895 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1897 if ( IsTreeEventAllowed(changingEvent
) )
1899 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1900 DoSelectItem(item
, select
);
1904 SetFocusedItem(item
);
1907 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
1909 (void)HandleTreeEvent(changedEvent
);
1912 else // single selection
1914 wxTreeItemId itemOld
, itemNew
;
1917 itemOld
= GetSelection();
1920 else // deselecting the currently selected item
1923 // leave itemNew invalid
1926 // in spite of the docs (MSDN Jan 99 edition), we don't seem to receive
1927 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1928 // send them ourselves
1931 changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, itemNew
);
1932 changingEvent
.SetOldItem(itemOld
);
1934 if ( IsTreeEventAllowed(changingEvent
) )
1936 if ( !TreeView_SelectItem(GetHwnd(), HITEM(itemNew
)) )
1938 wxLogLastError(wxT("TreeView_SelectItem"));
1942 SetFocusedItem(item
);
1944 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
1946 changedEvent
.SetOldItem(itemOld
);
1947 (void)HandleTreeEvent(changedEvent
);
1950 //else: program vetoed the change
1954 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1956 wxCHECK_RET( !IsHiddenRoot(item
), wxT("can't show hidden root item") );
1959 TreeView_EnsureVisible(GetHwnd(), HITEM(item
));
1962 void wxTreeCtrl::ScrollTo(const wxTreeItemId
& item
)
1964 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item
)) )
1966 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1970 wxTextCtrl
*wxTreeCtrl::GetEditControl() const
1975 void wxTreeCtrl::DeleteTextCtrl()
1979 // the HWND corresponding to this control is deleted by the tree
1980 // control itself and we don't know when exactly this happens, so check
1981 // if the window still exists before calling UnsubclassWin()
1982 if ( !::IsWindow(GetHwndOf(m_textCtrl
)) )
1984 m_textCtrl
->SetHWND(0);
1987 m_textCtrl
->UnsubclassWin();
1988 m_textCtrl
->SetHWND(0);
1996 wxTextCtrl
*wxTreeCtrl::EditLabel(const wxTreeItemId
& item
,
1997 wxClassInfo
*textControlClass
)
1999 wxASSERT( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2004 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
2005 HWND hWnd
= (HWND
) TreeView_EditLabel(GetHwnd(), HITEM(item
));
2007 // this is not an error - the TVN_BEGINLABELEDIT handler might have
2016 // textctrl is subclassed in MSWOnNotify
2020 // End label editing, optionally cancelling the edit
2021 void wxTreeCtrl::DoEndEditLabel(bool discardChanges
)
2023 TreeView_EndEditLabelNow(GetHwnd(), discardChanges
);
2028 wxTreeItemId
wxTreeCtrl::DoTreeHitTest(const wxPoint
& point
, int& flags
) const
2030 TV_HITTESTINFO hitTestInfo
;
2031 hitTestInfo
.pt
.x
= (int)point
.x
;
2032 hitTestInfo
.pt
.y
= (int)point
.y
;
2034 (void) TreeView_HitTest(GetHwnd(), &hitTestInfo
);
2039 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
2040 flags |= wxTREE_HITTEST_##flag
2042 TRANSLATE_FLAG(ABOVE
);
2043 TRANSLATE_FLAG(BELOW
);
2044 TRANSLATE_FLAG(NOWHERE
);
2045 TRANSLATE_FLAG(ONITEMBUTTON
);
2046 TRANSLATE_FLAG(ONITEMICON
);
2047 TRANSLATE_FLAG(ONITEMINDENT
);
2048 TRANSLATE_FLAG(ONITEMLABEL
);
2049 TRANSLATE_FLAG(ONITEMRIGHT
);
2050 TRANSLATE_FLAG(ONITEMSTATEICON
);
2051 TRANSLATE_FLAG(TOLEFT
);
2052 TRANSLATE_FLAG(TORIGHT
);
2054 #undef TRANSLATE_FLAG
2056 return wxTreeItemId(hitTestInfo
.hItem
);
2059 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2061 bool textOnly
) const
2065 // Virtual root items have no bounding rectangle
2066 if ( IS_VIRTUAL_ROOT(item
) )
2071 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item
),
2074 rect
= wxRect(wxPoint(rc
.left
, rc
.top
), wxPoint(rc
.right
, rc
.bottom
));
2080 // couldn't retrieve rect: for example, item isn't visible
2085 void wxTreeCtrl::ClearFocusedItem()
2087 TempSetter
set(m_changingSelection
);
2089 if ( !TreeView_SelectItem(GetHwnd(), 0) )
2091 wxLogLastError(wxT("TreeView_SelectItem"));
2095 void wxTreeCtrl::SetFocusedItem(const wxTreeItemId
& item
)
2097 TempSetter
set(m_changingSelection
);
2099 ::SetFocus(GetHwnd(), HITEM(item
));
2102 void wxTreeCtrl::DoUnselectItem(const wxTreeItemId
& item
)
2104 TempSetter
set(m_changingSelection
);
2106 ::UnselectItem(GetHwnd(), HITEM(item
));
2109 void wxTreeCtrl::DoToggleItemSelection(const wxTreeItemId
& item
)
2111 TempSetter
set(m_changingSelection
);
2113 ::ToggleItemSelection(GetHwnd(), HITEM(item
));
2116 // ----------------------------------------------------------------------------
2118 // ----------------------------------------------------------------------------
2120 // this is just a tiny namespace which is friend to wxTreeCtrl and so can use
2121 // functions such as IsDataIndirect()
2122 class wxTreeSortHelper
2125 static int CALLBACK
Compare(LPARAM data1
, LPARAM data2
, LPARAM tree
);
2128 static wxTreeItemId
GetIdFromData(LPARAM lParam
)
2130 return ((wxTreeItemParam
*)lParam
)->GetItem();
2134 int CALLBACK
wxTreeSortHelper::Compare(LPARAM pItem1
,
2138 wxCHECK_MSG( pItem1
&& pItem2
, 0,
2139 wxT("sorting tree without data doesn't make sense") );
2141 wxTreeCtrl
*tree
= (wxTreeCtrl
*)htree
;
2143 return tree
->OnCompareItems(GetIdFromData(pItem1
),
2144 GetIdFromData(pItem2
));
2147 void wxTreeCtrl::SortChildren(const wxTreeItemId
& item
)
2149 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2151 // rely on the fact that TreeView_SortChildren does the same thing as our
2152 // default behaviour, i.e. sorts items alphabetically and so call it
2153 // directly if we're not in derived class (much more efficient!)
2154 // RN: Note that if you find you're code doesn't sort as expected this
2155 // may be why as if you don't use the DECLARE_CLASS/IMPLEMENT_CLASS
2156 // combo for your derived wxTreeCtrl if will sort without
2158 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl
) )
2160 TreeView_SortChildren(GetHwnd(), HITEM(item
), 0);
2165 tvSort
.hParent
= HITEM(item
);
2166 tvSort
.lpfnCompare
= wxTreeSortHelper::Compare
;
2167 tvSort
.lParam
= (LPARAM
)this;
2168 TreeView_SortChildrenCB(GetHwnd(), &tvSort
, 0 /* reserved */);
2172 // ----------------------------------------------------------------------------
2174 // ----------------------------------------------------------------------------
2176 bool wxTreeCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
)
2178 if ( msg
->message
== WM_KEYDOWN
)
2180 // Only eat VK_RETURN if not being used by the application in
2181 // conjunction with modifiers
2182 if ( (msg
->wParam
== VK_RETURN
) && !wxIsAnyModifierDown() )
2184 // we need VK_RETURN to generate wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2189 return wxTreeCtrlBase::MSWShouldPreProcessMessage(msg
);
2192 bool wxTreeCtrl::MSWCommand(WXUINT cmd
, WXWORD id_
)
2194 const int id
= (signed short)id_
;
2196 if ( cmd
== EN_UPDATE
)
2198 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
2199 event
.SetEventObject( this );
2200 ProcessCommand(event
);
2202 else if ( cmd
== EN_KILLFOCUS
)
2204 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
2205 event
.SetEventObject( this );
2206 ProcessCommand(event
);
2214 // command processed
2218 bool wxTreeCtrl::MSWHandleSelectionKey(unsigned vkey
)
2220 const bool bCtrl
= wxIsCtrlDown();
2221 const bool bShift
= wxIsShiftDown();
2222 const HTREEITEM htSel
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
2231 if ( vkey
!= VK_RETURN
&& bCtrl
)
2233 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2235 changingEvent
.m_itemOld
= htSel
;
2237 if ( IsTreeEventAllowed(changingEvent
) )
2239 DoToggleItemSelection(wxTreeItemId(htSel
));
2241 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2243 changedEvent
.m_itemOld
= htSel
;
2244 (void)HandleTreeEvent(changedEvent
);
2249 wxArrayTreeItemIds selections
;
2250 size_t count
= GetSelections(selections
);
2252 if ( count
!= 1 || HITEM(selections
[0]) != htSel
)
2254 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2256 changingEvent
.m_itemOld
= htSel
;
2258 if ( IsTreeEventAllowed(changingEvent
) )
2261 DoSelectItem(wxTreeItemId(htSel
));
2263 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2265 changedEvent
.m_itemOld
= htSel
;
2266 (void)HandleTreeEvent(changedEvent
);
2274 if ( !bCtrl
&& !bShift
)
2276 wxArrayTreeItemIds selections
;
2281 next
= vkey
== VK_UP
2282 ? TreeView_GetPrevVisible(GetHwnd(), htSel
)
2283 : TreeView_GetNextVisible(GetHwnd(), htSel
);
2287 next
= GetRootItem();
2289 if ( IsHiddenRoot(next
) )
2290 next
= TreeView_GetChild(GetHwnd(), HITEM(next
));
2298 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2300 changingEvent
.m_itemOld
= htSel
;
2302 if ( IsTreeEventAllowed(changingEvent
) )
2306 SetFocusedItem(next
);
2308 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2310 changedEvent
.m_itemOld
= htSel
;
2311 (void)HandleTreeEvent(changedEvent
);
2316 wxTreeItemId next
= vkey
== VK_UP
2317 ? TreeView_GetPrevVisible(GetHwnd(), htSel
)
2318 : TreeView_GetNextVisible(GetHwnd(), htSel
);
2325 if ( !m_htSelStart
)
2327 m_htSelStart
= htSel
;
2330 if ( bShift
&& SelectRange(GetHwnd(), HITEM(m_htSelStart
), HITEM(next
),
2331 SR_UNSELECT_OTHERS
| SR_SIMULATE
) )
2333 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, next
);
2334 changingEvent
.m_itemOld
= htSel
;
2336 if ( IsTreeEventAllowed(changingEvent
) )
2338 SelectRange(GetHwnd(), HITEM(m_htSelStart
), HITEM(next
),
2339 SR_UNSELECT_OTHERS
);
2341 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this, next
);
2342 changedEvent
.m_itemOld
= htSel
;
2343 (void)HandleTreeEvent(changedEvent
);
2347 SetFocusedItem(next
);
2352 if ( HasChildren(htSel
) && IsExpanded(htSel
) )
2358 wxTreeItemId next
= GetItemParent(htSel
);
2360 if ( next
.IsOk() && !IsHiddenRoot(next
) )
2362 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2364 changingEvent
.m_itemOld
= htSel
;
2366 if ( IsTreeEventAllowed(changingEvent
) )
2370 SetFocusedItem(next
);
2372 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2374 changedEvent
.m_itemOld
= htSel
;
2375 (void)HandleTreeEvent(changedEvent
);
2382 if ( !IsVisible(htSel
) )
2384 EnsureVisible(htSel
);
2387 if ( !HasChildren(htSel
) )
2390 if ( !IsExpanded(htSel
) )
2396 wxTreeItemId next
= TreeView_GetChild(GetHwnd(), htSel
);
2398 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, next
);
2399 changingEvent
.m_itemOld
= htSel
;
2401 if ( IsTreeEventAllowed(changingEvent
) )
2405 SetFocusedItem(next
);
2407 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this, next
);
2408 changedEvent
.m_itemOld
= htSel
;
2409 (void)HandleTreeEvent(changedEvent
);
2417 wxTreeItemId next
= GetRootItem();
2419 if ( IsHiddenRoot(next
) )
2421 next
= TreeView_GetChild(GetHwnd(), HITEM(next
));
2427 if ( vkey
== VK_END
)
2431 wxTreeItemId nextTemp
= TreeView_GetNextVisible(
2432 GetHwnd(), HITEM(next
));
2434 if ( !nextTemp
.IsOk() )
2441 if ( htSel
== HITEM(next
) )
2446 if ( !m_htSelStart
)
2448 m_htSelStart
= htSel
;
2451 if ( SelectRange(GetHwnd(),
2452 HITEM(m_htSelStart
), HITEM(next
),
2453 SR_UNSELECT_OTHERS
| SR_SIMULATE
) )
2455 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2457 changingEvent
.m_itemOld
= htSel
;
2459 if ( IsTreeEventAllowed(changingEvent
) )
2461 SelectRange(GetHwnd(),
2462 HITEM(m_htSelStart
), HITEM(next
),
2463 SR_UNSELECT_OTHERS
);
2464 SetFocusedItem(next
);
2466 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2468 changedEvent
.m_itemOld
= htSel
;
2469 (void)HandleTreeEvent(changedEvent
);
2475 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2477 changingEvent
.m_itemOld
= htSel
;
2479 if ( IsTreeEventAllowed(changingEvent
) )
2483 SetFocusedItem(next
);
2485 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2487 changedEvent
.m_itemOld
= htSel
;
2488 (void)HandleTreeEvent(changedEvent
);
2498 wxTreeItemId firstVisible
= GetFirstVisibleItem();
2499 size_t visibleCount
= TreeView_GetVisibleCount(GetHwnd());
2500 wxTreeItemId nextAdjacent
= (vkey
== VK_PRIOR
) ?
2501 TreeView_GetPrevVisible(GetHwnd(), HITEM(firstVisible
)) :
2502 TreeView_GetNextVisible(GetHwnd(), HITEM(firstVisible
));
2504 if ( !nextAdjacent
)
2509 wxTreeItemId nextStart
= firstVisible
;
2511 for ( size_t n
= 1; n
< visibleCount
; n
++ )
2513 wxTreeItemId nextTemp
= (vkey
== VK_PRIOR
) ?
2514 TreeView_GetPrevVisible(GetHwnd(), HITEM(nextStart
)) :
2515 TreeView_GetNextVisible(GetHwnd(), HITEM(nextStart
));
2517 if ( nextTemp
.IsOk() )
2519 nextStart
= nextTemp
;
2527 EnsureVisible(nextStart
);
2529 if ( vkey
== VK_NEXT
)
2531 wxTreeItemId nextEnd
= nextStart
;
2533 for ( size_t n
= 1; n
< visibleCount
; n
++ )
2535 wxTreeItemId nextTemp
=
2536 TreeView_GetNextVisible(GetHwnd(), HITEM(nextEnd
));
2538 if ( nextTemp
.IsOk() )
2548 EnsureVisible(nextEnd
);
2553 size_t visibleCount
= TreeView_GetVisibleCount(GetHwnd());
2554 wxTreeItemId nextAdjacent
= (vkey
== VK_PRIOR
) ?
2555 TreeView_GetPrevVisible(GetHwnd(), htSel
) :
2556 TreeView_GetNextVisible(GetHwnd(), htSel
);
2558 if ( !nextAdjacent
)
2563 wxTreeItemId
next(htSel
);
2565 for ( size_t n
= 1; n
< visibleCount
; n
++ )
2567 wxTreeItemId nextTemp
= vkey
== VK_PRIOR
?
2568 TreeView_GetPrevVisible(GetHwnd(), HITEM(next
)) :
2569 TreeView_GetNextVisible(GetHwnd(), HITEM(next
));
2571 if ( !nextTemp
.IsOk() )
2577 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2579 changingEvent
.m_itemOld
= htSel
;
2581 if ( IsTreeEventAllowed(changingEvent
) )
2584 m_htSelStart
.Unset();
2586 SetFocusedItem(next
);
2588 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2590 changedEvent
.m_itemOld
= htSel
;
2591 (void)HandleTreeEvent(changedEvent
);
2603 bool wxTreeCtrl::MSWHandleTreeKeyDownEvent(WXWPARAM wParam
, WXLPARAM lParam
)
2605 wxTreeEvent
keyEvent(wxEVT_COMMAND_TREE_KEY_DOWN
, this);
2607 int keyCode
= wxCharCodeMSWToWX(wParam
);
2611 // wxCharCodeMSWToWX() returns 0 to indicate that this is a
2616 keyEvent
.m_evtKey
= CreateKeyEvent(wxEVT_KEY_DOWN
, keyCode
,
2619 bool processed
= HandleTreeEvent(keyEvent
);
2621 // generate a separate event for Space/Return
2622 if ( !wxIsCtrlDown() && !wxIsShiftDown() && !wxIsAltDown() &&
2623 ((wParam
== VK_SPACE
) || (wParam
== VK_RETURN
)) )
2625 const HTREEITEM htSel
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
2628 wxTreeEvent
activatedEvent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
2630 (void)HandleTreeEvent(activatedEvent
);
2637 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
2638 // only do it during dragging, minimize wxWin overhead (this is important for
2639 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
2640 // instead of passing by wxWin events
2642 wxTreeCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2644 bool processed
= false;
2646 bool isMultiple
= HasFlag(wxTR_MULTIPLE
);
2648 if ( nMsg
== WM_CONTEXTMENU
)
2650 int x
= GET_X_LPARAM(lParam
),
2651 y
= GET_Y_LPARAM(lParam
);
2653 // the item for which the menu should be shown
2656 // the position where the menu should be shown in client coordinates
2657 // (so that it can be passed directly to PopupMenu())
2660 if ( x
== -1 || y
== -1 )
2662 // this means that the event was generated from keyboard (e.g. with
2663 // Shift-F10 or special Windows menu key)
2665 // use the Explorer standard of putting the menu at the left edge
2666 // of the text, in the vertical middle of the text
2667 item
= wxTreeItemId(TreeView_GetSelection(GetHwnd()));
2670 // Use the bounding rectangle of only the text part
2672 GetBoundingRect(item
, rect
, true);
2673 pt
= wxPoint(rect
.GetX(), rect
.GetY() + rect
.GetHeight() / 2);
2676 else // event from mouse, use mouse position
2678 pt
= ScreenToClient(wxPoint(x
, y
));
2680 TV_HITTESTINFO tvhti
;
2684 if ( TreeView_HitTest(GetHwnd(), &tvhti
) )
2685 item
= wxTreeItemId(tvhti
.hItem
);
2689 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_MENU
, this, item
);
2691 event
.m_pointDrag
= pt
;
2693 if ( HandleTreeEvent(event
) )
2695 //else: continue with generating wxEVT_CONTEXT_MENU in base class code
2697 else if ( (nMsg
>= WM_MOUSEFIRST
) && (nMsg
<= WM_MOUSELAST
) )
2699 // we only process mouse messages here and these parameters have the
2700 // same meaning for all of them
2701 int x
= GET_X_LPARAM(lParam
),
2702 y
= GET_Y_LPARAM(lParam
);
2704 TV_HITTESTINFO tvht
;
2708 HTREEITEM htOldItem
= TreeView_GetSelection(GetHwnd());
2709 HTREEITEM htItem
= TreeView_HitTest(GetHwnd(), &tvht
);
2713 case WM_LBUTTONDOWN
:
2717 m_htClickedItem
.Unset();
2719 if ( !(tvht
.flags
& TVHT_ONITEM
) )
2721 if ( tvht
.flags
& TVHT_ONITEMBUTTON
)
2723 // either it's going to be handled by user code or
2724 // we're going to use it ourselves to toggle the
2725 // branch, in either case don't pass it to the base
2726 // class which would generate another mouse click event
2727 // for it even though it's already handled here
2731 if ( !HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2733 if ( !IsExpanded(htItem
) )
2744 m_focusLost
= false;
2750 m_htClickedItem
= (WXHTREEITEM
) htItem
;
2751 m_ptClick
= wxPoint(x
, y
);
2753 if ( wParam
& MK_CONTROL
)
2755 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2757 m_htClickedItem
.Unset();
2761 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2763 changingEvent
.m_itemOld
= htOldItem
;
2765 if ( IsTreeEventAllowed(changingEvent
) )
2767 // toggle selected state
2768 DoToggleItemSelection(wxTreeItemId(htItem
));
2770 SetFocusedItem(wxTreeItemId(htItem
));
2772 // reset on any click without Shift
2773 m_htSelStart
.Unset();
2775 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2777 changedEvent
.m_itemOld
= htOldItem
;
2778 (void)HandleTreeEvent(changedEvent
);
2781 else if ( wParam
& MK_SHIFT
)
2783 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2785 m_htClickedItem
.Unset();
2790 bool willChange
= true;
2792 if ( !(wParam
& MK_CONTROL
) )
2794 srFlags
|= SR_UNSELECT_OTHERS
;
2797 if ( !m_htSelStart
)
2799 // take the focused item
2800 m_htSelStart
= htOldItem
;
2804 willChange
= SelectRange(GetHwnd(), HITEM(m_htSelStart
),
2805 htItem
, srFlags
| SR_SIMULATE
);
2810 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2812 changingEvent
.m_itemOld
= htOldItem
;
2814 if ( IsTreeEventAllowed(changingEvent
) )
2816 // this selects all items between the starting one
2820 SelectRange(GetHwnd(), HITEM(m_htSelStart
),
2825 DoSelectItem(wxTreeItemId(htItem
));
2828 SetFocusedItem(wxTreeItemId(htItem
));
2830 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2832 changedEvent
.m_itemOld
= htOldItem
;
2833 (void)HandleTreeEvent(changedEvent
);
2837 else // normal click
2839 // avoid doing anything if we click on the only
2840 // currently selected item
2842 wxArrayTreeItemIds selections
;
2843 size_t count
= GetSelections(selections
);
2847 HITEM(selections
[0]) != htItem
)
2849 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2851 m_htClickedItem
.Unset();
2855 // clear the previously selected items, if the user
2856 // clicked outside of the present selection, otherwise,
2857 // perform the deselection on mouse-up, this allows
2858 // multiple drag and drop to work.
2859 if ( !IsItemSelected(GetHwnd(), htItem
))
2861 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2863 changingEvent
.m_itemOld
= htOldItem
;
2865 if ( IsTreeEventAllowed(changingEvent
) )
2868 DoSelectItem(wxTreeItemId(htItem
));
2869 SetFocusedItem(wxTreeItemId(htItem
));
2871 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2873 changedEvent
.m_itemOld
= htOldItem
;
2874 (void)HandleTreeEvent(changedEvent
);
2879 SetFocusedItem(wxTreeItemId(htItem
));
2880 m_mouseUpDeselect
= true;
2883 else // click on a single selected item
2885 // don't interfere with the default processing in
2886 // WM_MOUSEMOVE handler below as the default window
2887 // proc will start the drag itself if we let have
2889 m_htClickedItem
.Unset();
2891 // prevent in-place editing from starting if focus lost
2892 // since previous click
2896 DoSelectItem(wxTreeItemId(htItem
));
2897 SetFocusedItem(wxTreeItemId(htItem
));
2905 // reset on any click without Shift
2906 m_htSelStart
.Unset();
2909 m_focusLost
= false;
2911 // we consumed the event so we need to trigger state image
2916 wxTreeItemId item
= HitTest(wxPoint(x
, y
), htFlags
);
2918 if ( htFlags
& wxTREE_HITTEST_ONITEMSTATEICON
)
2920 m_triggerStateImageClick
= true;
2925 case WM_RBUTTONDOWN
:
2932 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) || !htItem
)
2937 // default handler removes the highlight from the currently
2938 // focused item when right mouse button is pressed on another
2939 // one but keeps the remaining items highlighted, which is
2940 // confusing, so override this default behaviour
2941 if ( !IsItemSelected(GetHwnd(), htItem
) )
2943 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2945 changingEvent
.m_itemOld
= htOldItem
;
2947 if ( IsTreeEventAllowed(changingEvent
) )
2950 DoSelectItem(wxTreeItemId(htItem
));
2951 SetFocusedItem(wxTreeItemId(htItem
));
2953 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2955 changedEvent
.m_itemOld
= htOldItem
;
2956 (void)HandleTreeEvent(changedEvent
);
2964 if ( m_htClickedItem
)
2966 int cx
= abs(m_ptClick
.x
- x
);
2967 int cy
= abs(m_ptClick
.y
- y
);
2969 if ( cx
> ::GetSystemMetrics(SM_CXDRAG
) ||
2970 cy
> ::GetSystemMetrics(SM_CYDRAG
) )
2975 tv
.hdr
.hwndFrom
= GetHwnd();
2976 tv
.hdr
.idFrom
= ::GetWindowLong(GetHwnd(), GWL_ID
);
2977 tv
.hdr
.code
= TVN_BEGINDRAG
;
2979 tv
.itemNew
.hItem
= HITEM(m_htClickedItem
);
2983 wxZeroMemory(tviAux
);
2985 tviAux
.hItem
= HITEM(m_htClickedItem
);
2986 tviAux
.mask
= TVIF_STATE
| TVIF_PARAM
;
2987 tviAux
.stateMask
= 0xffffffff;
2988 TreeView_GetItem(GetHwnd(), &tviAux
);
2990 tv
.itemNew
.state
= tviAux
.state
;
2991 tv
.itemNew
.lParam
= tviAux
.lParam
;
2996 // do it before SendMessage() call below to avoid
2997 // reentrancies here if there is another WM_MOUSEMOVE
2998 // in the queue already
2999 m_htClickedItem
.Unset();
3001 ::SendMessage(GetHwndOf(GetParent()), WM_NOTIFY
,
3002 tv
.hdr
.idFrom
, (LPARAM
)&tv
);
3004 // don't pass it to the default window proc, it would
3005 // start dragging again
3009 #endif // __WXWINCE__
3014 m_dragImage
->Move(wxPoint(x
, y
));
3017 // highlight the item as target (hiding drag image is
3018 // necessary - otherwise the display will be corrupted)
3019 m_dragImage
->Hide();
3020 TreeView_SelectDropTarget(GetHwnd(), htItem
);
3021 m_dragImage
->Show();
3024 #endif // wxUSE_DRAGIMAGE
3030 // deselect other items if needed
3033 if ( m_mouseUpDeselect
)
3035 m_mouseUpDeselect
= false;
3037 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
3039 changingEvent
.m_itemOld
= htOldItem
;
3041 if ( IsTreeEventAllowed(changingEvent
) )
3044 DoSelectItem(wxTreeItemId(htItem
));
3045 SetFocusedItem(wxTreeItemId(htItem
));
3047 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
3049 changedEvent
.m_itemOld
= htOldItem
;
3050 (void)HandleTreeEvent(changedEvent
);
3055 m_htClickedItem
.Unset();
3057 if ( m_triggerStateImageClick
)
3059 if ( tvht
.flags
& TVHT_ONITEMSTATEICON
)
3061 wxTreeEvent
event(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
,
3063 (void)HandleTreeEvent(event
);
3065 m_triggerStateImageClick
= false;
3070 if ( !m_dragStarted
&&
3071 (tvht
.flags
& TVHT_ONITEMSTATEICON
||
3072 tvht
.flags
& TVHT_ONITEMICON
||
3073 tvht
.flags
& TVHT_ONITEM
) )
3085 m_dragImage
->EndDrag();
3089 // generate the drag end event
3090 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
,
3092 event
.m_pointDrag
= wxPoint(x
, y
);
3093 (void)HandleTreeEvent(event
);
3095 // if we don't do it, the tree seems to think that 2 items
3096 // are selected simultaneously which is quite weird
3097 TreeView_SelectDropTarget(GetHwnd(), 0);
3099 #endif // wxUSE_DRAGIMAGE
3101 if ( isMultiple
&& nMsg
== WM_RBUTTONUP
)
3105 nmhdr
.hwndFrom
= GetHwnd();
3106 nmhdr
.idFrom
= ::GetWindowLong(GetHwnd(), GWL_ID
);
3107 nmhdr
.code
= NM_RCLICK
;
3108 ::SendMessage(::GetParent(GetHwnd()), WM_NOTIFY
,
3109 nmhdr
.idFrom
, (LPARAM
)&nmhdr
);
3113 m_dragStarted
= false;
3118 else if ( (nMsg
== WM_SETFOCUS
|| nMsg
== WM_KILLFOCUS
) )
3122 // the tree control greys out the selected item when it loses focus
3123 // and paints it as selected again when it regains it, but it won't
3124 // do it for the other items itself - help it
3125 wxArrayTreeItemIds selections
;
3126 size_t count
= GetSelections(selections
);
3129 for ( size_t n
= 0; n
< count
; n
++ )
3131 // TreeView_GetItemRect() will return false if item is not
3132 // visible, which may happen perfectly well
3133 if ( TreeView_GetItemRect(GetHwnd(), HITEM(selections
[n
]),
3136 ::InvalidateRect(GetHwnd(), &rect
, FALSE
);
3141 if ( nMsg
== WM_KILLFOCUS
)
3146 else if ( (nMsg
== WM_KEYDOWN
|| nMsg
== WM_SYSKEYDOWN
) && isMultiple
)
3148 // normally we want to generate wxEVT_KEY_DOWN events from TVN_KEYDOWN
3149 // notification but for the keys which can be used to change selection
3150 // we need to do it from here so as to not apply the default behaviour
3151 // if the events are handled by the user code
3164 if ( !MSWHandleTreeKeyDownEvent(wParam
, lParam
) )
3166 // use the key to update the selection if it was left
3168 MSWHandleSelectionKey(wParam
);
3171 // pretend that we did process it in any case as we already
3172 // generated an event for it
3175 //default: for all the other keys leave processed as false so that
3176 // the tree control generates a TVN_KEYDOWN for us
3180 else if ( nMsg
== WM_COMMAND
)
3182 // if we receive a EN_KILLFOCUS command from the in-place edit control
3183 // used for label editing, make sure to end editing
3186 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
3188 if ( cmd
== EN_KILLFOCUS
)
3190 if ( m_textCtrl
&& m_textCtrl
->GetHandle() == hwnd
)
3200 rc
= wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
3206 wxTreeCtrl::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
3208 if ( nMsg
== WM_CHAR
)
3210 // don't let the control process Space and Return keys because it
3211 // doesn't do anything useful with them anyhow but always beeps
3212 // annoyingly when it receives them and there is no way to turn it off
3213 // simply if you just process TREEITEM_ACTIVATED event to which Space
3214 // and Enter presses are mapped in your code
3215 if ( wParam
== VK_SPACE
|| wParam
== VK_RETURN
)
3219 else if ( nMsg
== WM_KEYDOWN
)
3221 if ( wParam
== VK_ESCAPE
)
3225 m_dragImage
->EndDrag();
3229 // if we don't do it, the tree seems to think that 2 items
3230 // are selected simultaneously which is quite weird
3231 TreeView_SelectDropTarget(GetHwnd(), 0);
3235 #endif // wxUSE_DRAGIMAGE
3237 return wxControl::MSWDefWindowProc(nMsg
, wParam
, lParam
);
3240 // process WM_NOTIFY Windows message
3241 bool wxTreeCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3243 wxTreeEvent
event(wxEVT_NULL
, this);
3244 wxEventType eventType
= wxEVT_NULL
;
3245 NMHDR
*hdr
= (NMHDR
*)lParam
;
3247 switch ( hdr
->code
)
3250 eventType
= wxEVT_COMMAND_TREE_BEGIN_DRAG
;
3253 case TVN_BEGINRDRAG
:
3255 if ( eventType
== wxEVT_NULL
)
3256 eventType
= wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
3257 //else: left drag, already set above
3259 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3261 event
.m_item
= tv
->itemNew
.hItem
;
3262 event
.m_pointDrag
= wxPoint(tv
->ptDrag
.x
, tv
->ptDrag
.y
);
3264 // don't allow dragging by default: the user code must
3265 // explicitly say that it wants to allow it to avoid breaking
3271 case TVN_BEGINLABELEDIT
:
3273 eventType
= wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
3274 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3276 // although the user event handler may still veto it, it is
3277 // important to set it now so that calls to SetItemText() from
3278 // the event handler would change the text controls contents
3280 event
.m_item
= info
->item
.hItem
;
3281 event
.m_label
= info
->item
.pszText
;
3282 event
.m_editCancelled
= false;
3286 case TVN_DELETEITEM
:
3288 eventType
= wxEVT_COMMAND_TREE_DELETE_ITEM
;
3289 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3291 event
.m_item
= tv
->itemOld
.hItem
;
3295 wxMapTreeAttr::iterator it
= m_attrs
.find(tv
->itemOld
.hItem
);
3296 if ( it
!= m_attrs
.end() )
3305 case TVN_ENDLABELEDIT
:
3307 eventType
= wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
3308 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3310 event
.m_item
= info
->item
.hItem
;
3311 event
.m_label
= info
->item
.pszText
;
3312 event
.m_editCancelled
= info
->item
.pszText
== NULL
;
3317 // These *must* not be removed or TVN_GETINFOTIP will
3318 // not be processed each time the mouse is moved
3319 // and the tooltip will only ever update once.
3328 #ifdef TVN_GETINFOTIP
3329 case TVN_GETINFOTIP
:
3331 eventType
= wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
;
3332 NMTVGETINFOTIP
*info
= (NMTVGETINFOTIP
*)lParam
;
3334 // Which item are we trying to get a tooltip for?
3335 event
.m_item
= info
->hItem
;
3339 #endif // TVN_GETINFOTIP
3340 #endif // !__WXWINCE__
3342 case TVN_GETDISPINFO
:
3343 eventType
= wxEVT_COMMAND_TREE_GET_INFO
;
3346 case TVN_SETDISPINFO
:
3348 if ( eventType
== wxEVT_NULL
)
3349 eventType
= wxEVT_COMMAND_TREE_SET_INFO
;
3350 //else: get, already set above
3352 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3354 event
.m_item
= info
->item
.hItem
;
3358 case TVN_ITEMEXPANDING
:
3359 case TVN_ITEMEXPANDED
:
3361 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3364 switch ( tv
->action
)
3367 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv
->action
);
3375 what
= IDX_COLLAPSE
;
3379 int how
= hdr
->code
== TVN_ITEMEXPANDING
? IDX_DOING
3382 eventType
= gs_expandEvents
[what
][how
];
3384 event
.m_item
= tv
->itemNew
.hItem
;
3390 TV_KEYDOWN
*info
= (TV_KEYDOWN
*)lParam
;
3392 // fabricate the lParam and wParam parameters sufficiently
3393 // similar to the ones from a "real" WM_KEYDOWN so that
3394 // CreateKeyEvent() works correctly
3395 return MSWHandleTreeKeyDownEvent(
3396 info
->wVKey
, (wxIsAltDown() ? KF_ALTDOWN
: 0) << 16);
3400 // Vista's tree control has introduced some problems with our
3401 // multi-selection tree. When TreeView_SelectItem() is called,
3402 // the wrong items are deselected.
3404 // Fortunately, Vista provides a new notification, TVN_ITEMCHANGING
3405 // that can be used to regulate this incorrect behavior. The
3406 // following messages will allow only the unlocked item's selection
3409 case TVN_ITEMCHANGINGA
:
3410 case TVN_ITEMCHANGINGW
:
3412 // we only need to handles these in multi-select trees
3413 if ( HasFlag(wxTR_MULTIPLE
) )
3415 // get info about the item about to be changed
3416 NMTVITEMCHANGE
* info
= (NMTVITEMCHANGE
*)lParam
;
3417 if (TreeItemUnlocker::IsLocked(info
->hItem
))
3419 // item's state is locked, don't allow the change
3420 // returning 1 will disallow the change
3426 // allow the state change
3430 // NB: MSLU is broken and sends TVN_SELCHANGEDA instead of
3431 // TVN_SELCHANGEDW in Unicode mode under Win98. Therefore
3432 // we have to handle both messages:
3433 case TVN_SELCHANGEDA
:
3434 case TVN_SELCHANGEDW
:
3435 if ( !HasFlag(wxTR_MULTIPLE
) || !m_changingSelection
)
3437 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGED
;
3441 case TVN_SELCHANGINGA
:
3442 case TVN_SELCHANGINGW
:
3443 if ( !HasFlag(wxTR_MULTIPLE
) || !m_changingSelection
)
3445 if ( eventType
== wxEVT_NULL
)
3446 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGING
;
3447 //else: already set above
3449 if (hdr
->code
== TVN_SELCHANGINGW
||
3450 hdr
->code
== TVN_SELCHANGEDW
)
3452 NM_TREEVIEWW
*tv
= (NM_TREEVIEWW
*)lParam
;
3453 event
.m_item
= tv
->itemNew
.hItem
;
3454 event
.m_itemOld
= tv
->itemOld
.hItem
;
3458 NM_TREEVIEWA
*tv
= (NM_TREEVIEWA
*)lParam
;
3459 event
.m_item
= tv
->itemNew
.hItem
;
3460 event
.m_itemOld
= tv
->itemOld
.hItem
;
3464 // we receive this message from WM_LBUTTONDOWN handler inside
3465 // comctl32.dll and so before the click is passed to
3466 // DefWindowProc() which sets the focus to the window which was
3467 // clicked and this can lead to unexpected event sequences: for
3468 // example, we may get a "selection change" event from the tree
3469 // before getting a "kill focus" event for the text control which
3470 // had the focus previously, thus breaking user code doing input
3473 // to avoid such surprises, we force the generation of focus events
3474 // now, before we generate the selection change ones
3478 // instead of explicitly checking for _WIN32_IE, check if the
3479 // required symbols are available in the headers
3480 #if defined(CDDS_PREPAINT) && !wxUSE_COMCTL32_SAFELY
3483 LPNMTVCUSTOMDRAW lptvcd
= (LPNMTVCUSTOMDRAW
)lParam
;
3484 NMCUSTOMDRAW
& nmcd
= lptvcd
->nmcd
;
3485 switch ( nmcd
.dwDrawStage
)
3488 // if we've got any items with non standard attributes,
3489 // notify us before painting each item
3490 *result
= m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
3493 // windows in TreeCtrl use one-based index for item state images,
3494 // 0 indexed image is not being used, we're using zero-based index,
3495 // so we have to add temp image (of zero index) to state image list
3496 // before we draw any item, then after items are drawn we have to
3497 // delete it (in POSTPAINT notify)
3498 if (m_imageListState
&& m_imageListState
->GetImageCount() > 0)
3500 typedef BOOL (wxSTDCALL
*ImageList_Copy_t
)
3501 (HIMAGELIST
, int, HIMAGELIST
, int, UINT
);
3502 static ImageList_Copy_t s_pfnImageList_Copy
= NULL
;
3503 static bool loaded
= false;
3507 wxLoadedDLL
dllComCtl32(wxT("comctl32.dll"));
3508 if ( dllComCtl32
.IsLoaded() )
3509 wxDL_INIT_FUNC(s_pfn
, ImageList_Copy
, dllComCtl32
);
3512 if ( !s_pfnImageList_Copy
)
3514 // this code is broken with ImageList_Copy()
3515 // but I don't care enough about Win95 support
3516 // to write it now -- if anybody does, please
3518 wxFAIL_MSG("TODO: implement this for Win95");
3523 hImageList
= GetHimagelistOf(m_imageListState
);
3525 // add temporary image
3527 m_imageListState
->GetSize(0, width
, height
);
3529 HBITMAP hbmpTemp
= ::CreateBitmap(width
, height
, 1, 1, NULL
);
3530 int index
= ::ImageList_Add(hImageList
, hbmpTemp
, hbmpTemp
);
3531 ::DeleteObject(hbmpTemp
);
3535 // move images to right
3536 for ( int i
= index
; i
> 0; i
-- )
3538 (*s_pfnImageList_Copy
)(hImageList
, i
,
3543 // we must remove the image in POSTPAINT notify
3544 *result
|= CDRF_NOTIFYPOSTPAINT
;
3549 case CDDS_POSTPAINT
:
3550 // we are deleting temp image of 0 index, which was
3551 // added before items were drawn (in PREPAINT notify)
3552 if (m_imageListState
&& m_imageListState
->GetImageCount() > 0)
3553 m_imageListState
->Remove(0);
3556 case CDDS_ITEMPREPAINT
:
3558 wxMapTreeAttr::iterator
3559 it
= m_attrs
.find((void *)nmcd
.dwItemSpec
);
3561 if ( it
== m_attrs
.end() )
3563 // nothing to do for this item
3564 *result
= CDRF_DODEFAULT
;
3568 wxTreeItemAttr
* const attr
= it
->second
;
3570 wxTreeViewItem
tvItem((void *)nmcd
.dwItemSpec
,
3571 TVIF_STATE
, TVIS_DROPHILITED
);
3573 const UINT tvItemState
= tvItem
.state
;
3575 // selection colours should override ours,
3576 // otherwise it is too confusing to the user
3577 if ( !(nmcd
.uItemState
& CDIS_SELECTED
) &&
3578 !(tvItemState
& TVIS_DROPHILITED
) )
3581 if ( attr
->HasBackgroundColour() )
3583 colBack
= attr
->GetBackgroundColour();
3584 lptvcd
->clrTextBk
= wxColourToRGB(colBack
);
3588 // but we still want to keep the special foreground
3589 // colour when we don't have focus (we can't keep
3590 // it when we do, it would usually be unreadable on
3591 // the almost inverted bg colour...)
3592 if ( ( !(nmcd
.uItemState
& CDIS_SELECTED
) ||
3593 FindFocus() != this ) &&
3594 !(tvItemState
& TVIS_DROPHILITED
) )
3597 if ( attr
->HasTextColour() )
3599 colText
= attr
->GetTextColour();
3600 lptvcd
->clrText
= wxColourToRGB(colText
);
3604 if ( attr
->HasFont() )
3606 HFONT hFont
= GetHfontOf(attr
->GetFont());
3608 ::SelectObject(nmcd
.hdc
, hFont
);
3610 *result
= CDRF_NEWFONT
;
3612 else // no specific font
3614 *result
= CDRF_DODEFAULT
;
3620 *result
= CDRF_DODEFAULT
;
3624 // we always process it
3626 #endif // have owner drawn support in headers
3630 DWORD pos
= GetMessagePos();
3632 point
.x
= LOWORD(pos
);
3633 point
.y
= HIWORD(pos
);
3634 ::MapWindowPoints(HWND_DESKTOP
, GetHwnd(), &point
, 1);
3636 wxTreeItemId item
= HitTest(wxPoint(point
.x
, point
.y
), htFlags
);
3638 if ( htFlags
& wxTREE_HITTEST_ONITEMSTATEICON
)
3640 event
.m_item
= item
;
3641 eventType
= wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
;
3650 TV_HITTESTINFO tvhti
;
3651 ::GetCursorPos(&tvhti
.pt
);
3652 ::ScreenToClient(GetHwnd(), &tvhti
.pt
);
3653 if ( TreeView_HitTest(GetHwnd(), &tvhti
) )
3655 if ( tvhti
.flags
& TVHT_ONITEM
)
3657 event
.m_item
= tvhti
.hItem
;
3658 eventType
= (int)hdr
->code
== NM_DBLCLK
3659 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
3660 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
3662 event
.m_pointDrag
.x
= tvhti
.pt
.x
;
3663 event
.m_pointDrag
.y
= tvhti
.pt
.y
;
3672 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
3675 event
.SetEventType(eventType
);
3677 bool processed
= HandleTreeEvent(event
);
3680 switch ( hdr
->code
)
3683 // we translate NM_DBLCLK into ACTIVATED event and if the user
3684 // handled the activation of the item we shouldn't proceed with
3685 // also using the same double click for toggling the item expanded
3686 // state -- but OTOH do let the user to expand/collapse the item by
3687 // double clicking on it if the activation is not handled specially
3688 *result
= processed
;
3692 // prevent tree control from sending WM_CONTEXTMENU to our parent
3693 // (which it does if NM_RCLICK is not handled) because we want to
3694 // send it to the control itself
3698 ::SendMessage(GetHwnd(), WM_CONTEXTMENU
,
3699 (WPARAM
)GetHwnd(), ::GetMessagePos());
3703 case TVN_BEGINRDRAG
:
3705 if ( event
.IsAllowed() )
3707 // normally this is impossible because the m_dragImage is
3708 // deleted once the drag operation is over
3709 wxASSERT_MSG( !m_dragImage
, wxT("starting to drag once again?") );
3711 m_dragImage
= new wxDragImage(*this, event
.m_item
);
3712 m_dragImage
->BeginDrag(wxPoint(0,0), this);
3713 m_dragImage
->Show();
3715 m_dragStarted
= true;
3717 #endif // wxUSE_DRAGIMAGE
3720 case TVN_DELETEITEM
:
3722 // NB: we might process this message using wxWidgets event
3723 // tables, but due to overhead of wxWin event system we
3724 // prefer to do it here ourself (otherwise deleting a tree
3725 // with many items is just too slow)
3726 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3728 wxTreeItemParam
*param
=
3729 (wxTreeItemParam
*)tv
->itemOld
.lParam
;
3732 processed
= true; // Make sure we don't get called twice
3736 case TVN_BEGINLABELEDIT
:
3737 // return true to cancel label editing
3738 *result
= !event
.IsAllowed();
3740 // set ES_WANTRETURN ( like we do in BeginLabelEdit )
3741 if ( event
.IsAllowed() )
3743 HWND hText
= TreeView_GetEditControl(GetHwnd());
3746 // MBN: if m_textCtrl already has an HWND, it is a stale
3747 // pointer from a previous edit (because the user
3748 // didn't modify the label before dismissing the control,
3749 // and TVN_ENDLABELEDIT was not sent), so delete it
3750 if ( m_textCtrl
&& m_textCtrl
->GetHWND() )
3753 m_textCtrl
= new wxTextCtrl();
3754 m_textCtrl
->SetParent(this);
3755 m_textCtrl
->SetHWND((WXHWND
)hText
);
3756 m_textCtrl
->SubclassWin((WXHWND
)hText
);
3758 // set wxTE_PROCESS_ENTER style for the text control to
3759 // force it to process the Enter presses itself, otherwise
3760 // they could be stolen from it by the dialog
3762 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle()
3763 | wxTE_PROCESS_ENTER
);
3766 else // we had set m_idEdited before
3772 case TVN_ENDLABELEDIT
:
3773 // return true to set the label to the new string: note that we
3774 // also must pretend that we did process the message or it is going
3775 // to be passed to DefWindowProc() which will happily return false
3776 // cancelling the label change
3777 *result
= event
.IsAllowed();
3780 // ensure that we don't have the text ctrl which is going to be
3786 #ifdef TVN_GETINFOTIP
3787 case TVN_GETINFOTIP
:
3789 // If the user permitted a tooltip change, change it
3790 if (event
.IsAllowed())
3792 SetToolTip(event
.m_label
);
3799 case TVN_SELCHANGING
:
3800 case TVN_ITEMEXPANDING
:
3801 // return true to prevent the action from happening
3802 *result
= !event
.IsAllowed();
3805 case TVN_ITEMEXPANDED
:
3807 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3808 const wxTreeItemId
id(tv
->itemNew
.hItem
);
3810 if ( tv
->action
== TVE_COLLAPSE
)
3812 if ( wxApp::GetComCtl32Version() >= 600 )
3814 // for some reason the item selection rectangle depends
3815 // on whether it is expanded or collapsed (at least
3816 // with comctl32.dll v6): it is wider (by 3 pixels) in
3817 // the expanded state, so when the item collapses and
3818 // then is deselected the rightmost 3 pixels of the
3819 // previously drawn selection are left on the screen
3821 // it's not clear if it's a bug in comctl32.dll or in
3822 // our code (because it does not happen in Explorer but
3823 // OTOH we don't do anything which could result in this
3824 // AFAICS) but we do need to work around it to avoid
3831 // the item is also not refreshed properly after expansion when
3832 // it has an image depending on the expanded/collapsed state:
3833 // again, it's not clear if the bug is in comctl32.dll or our
3835 int image
= GetItemImage(id
, wxTreeItemIcon_Expanded
);
3844 case TVN_GETDISPINFO
:
3845 // NB: so far the user can't set the image himself anyhow, so do it
3846 // anyway - but this may change later
3847 //if ( /* !processed && */ )
3849 wxTreeItemId item
= event
.m_item
;
3850 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3852 const wxTreeItemParam
* const param
= GetItemParam(item
);
3856 if ( info
->item
.mask
& TVIF_IMAGE
)
3861 IsExpanded(item
) ? wxTreeItemIcon_Expanded
3862 : wxTreeItemIcon_Normal
3865 if ( info
->item
.mask
& TVIF_SELECTEDIMAGE
)
3867 info
->item
.iSelectedImage
=
3870 IsExpanded(item
) ? wxTreeItemIcon_SelectedExpanded
3871 : wxTreeItemIcon_Selected
3878 // for the other messages the return value is ignored and there is
3879 // nothing special to do
3884 // ----------------------------------------------------------------------------
3886 // ----------------------------------------------------------------------------
3888 // why do they define INDEXTOSTATEIMAGEMASK but not the inverse?
3889 #define STATEIMAGEMASKTOINDEX(state) (((state) & TVIS_STATEIMAGEMASK) >> 12)
3891 int wxTreeCtrl::DoGetItemState(const wxTreeItemId
& item
) const
3893 wxCHECK_MSG( item
.IsOk(), wxTREE_ITEMSTATE_NONE
, wxT("invalid tree item") );
3895 // receive the desired information
3896 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
3899 // state images are one-based
3900 return STATEIMAGEMASKTOINDEX(tvItem
.state
) - 1;
3903 void wxTreeCtrl::DoSetItemState(const wxTreeItemId
& item
, int state
)
3905 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
3907 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
3909 // state images are one-based
3910 // 0 if no state image display (wxTREE_ITEMSTATE_NONE = -1)
3911 tvItem
.state
= INDEXTOSTATEIMAGEMASK(state
+ 1);
3916 #endif // wxUSE_TREECTRL