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;
754 // initialize the global array of events now as it can't be done statically
755 // with the wxEVT_XXX values being allocated during run-time only
756 gs_expandEvents
[IDX_COLLAPSE
][IDX_DONE
] = wxEVT_COMMAND_TREE_ITEM_COLLAPSED
;
757 gs_expandEvents
[IDX_COLLAPSE
][IDX_DOING
] = wxEVT_COMMAND_TREE_ITEM_COLLAPSING
;
758 gs_expandEvents
[IDX_EXPAND
][IDX_DONE
] = wxEVT_COMMAND_TREE_ITEM_EXPANDED
;
759 gs_expandEvents
[IDX_EXPAND
][IDX_DOING
] = wxEVT_COMMAND_TREE_ITEM_EXPANDING
;
762 bool wxTreeCtrl::Create(wxWindow
*parent
,
767 const wxValidator
& validator
,
768 const wxString
& name
)
772 if ( (style
& wxBORDER_MASK
) == wxBORDER_DEFAULT
)
773 style
|= wxBORDER_SUNKEN
;
775 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
779 DWORD wstyle
= MSWGetStyle(m_windowStyle
, & exStyle
);
780 wstyle
|= WS_TABSTOP
| TVS_SHOWSELALWAYS
;
782 if ( !(m_windowStyle
& wxTR_NO_LINES
) )
783 wstyle
|= TVS_HASLINES
;
784 if ( m_windowStyle
& wxTR_HAS_BUTTONS
)
785 wstyle
|= TVS_HASBUTTONS
;
787 if ( m_windowStyle
& wxTR_EDIT_LABELS
)
788 wstyle
|= TVS_EDITLABELS
;
790 if ( m_windowStyle
& wxTR_LINES_AT_ROOT
)
791 wstyle
|= TVS_LINESATROOT
;
793 if ( m_windowStyle
& wxTR_FULL_ROW_HIGHLIGHT
)
795 if ( wxApp::GetComCtl32Version() >= 471 )
796 wstyle
|= TVS_FULLROWSELECT
;
799 #if !defined(__WXWINCE__) && defined(TVS_INFOTIP)
800 // Need so that TVN_GETINFOTIP messages will be sent
801 wstyle
|= TVS_INFOTIP
;
804 // Create the tree control.
805 if ( !MSWCreateControl(WC_TREEVIEW
, wstyle
, pos
, size
) )
808 #if wxUSE_COMCTL32_SAFELY
809 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
810 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
812 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
813 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
815 // This works around a bug in the Windows tree control whereby for some versions
816 // of comctrl32, setting any colour actually draws the background in black.
817 // This will initialise the background to the system colour.
818 // THIS FIX NOW REVERTED since it caused problems on _other_ systems.
819 // Assume the user has an updated comctl32.dll.
820 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0,-1);
821 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
822 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
825 wxSetCCUnicodeFormat(GetHwnd());
830 wxTreeCtrl::~wxTreeCtrl()
832 // delete any attributes
835 WX_CLEAR_HASH_MAP(wxMapTreeAttr
, m_attrs
);
837 // prevent TVN_DELETEITEM handler from deleting the attributes again!
838 m_hasAnyAttr
= false;
843 // delete user data to prevent memory leaks
844 // also deletes hidden root node storage.
848 // ----------------------------------------------------------------------------
850 // ----------------------------------------------------------------------------
852 /* static */ wxVisualAttributes
853 wxTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
855 wxVisualAttributes attrs
= GetCompositeControlsDefaultAttributes(variant
);
857 // common controls have their own default font
858 attrs
.font
= wxGetCCDefaultFont();
864 // simple wrappers which add error checking in debug mode
866 bool wxTreeCtrl::DoGetItem(wxTreeViewItem
*tvItem
) const
868 wxCHECK_MSG( tvItem
->hItem
!= TVI_ROOT
, false,
869 wxT("can't retrieve virtual root item") );
871 if ( !TreeView_GetItem(GetHwnd(), tvItem
) )
873 wxLogLastError(wxT("TreeView_GetItem"));
881 void wxTreeCtrl::DoSetItem(wxTreeViewItem
*tvItem
)
883 TreeItemUnlocker
unlocker(tvItem
->hItem
);
885 if ( TreeView_SetItem(GetHwnd(), tvItem
) == -1 )
887 wxLogLastError(wxT("TreeView_SetItem"));
891 unsigned int wxTreeCtrl::GetCount() const
893 return (unsigned int)TreeView_GetCount(GetHwnd());
896 unsigned int wxTreeCtrl::GetIndent() const
898 return TreeView_GetIndent(GetHwnd());
901 void wxTreeCtrl::SetIndent(unsigned int indent
)
903 TreeView_SetIndent(GetHwnd(), indent
);
906 void wxTreeCtrl::SetAnyImageList(wxImageList
*imageList
, int which
)
909 (void) TreeView_SetImageList(GetHwnd(),
910 imageList
? imageList
->GetHIMAGELIST() : 0,
914 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
916 if (m_ownsImageListNormal
)
917 delete m_imageListNormal
;
919 SetAnyImageList(m_imageListNormal
= imageList
, TVSIL_NORMAL
);
920 m_ownsImageListNormal
= false;
923 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
925 if (m_ownsImageListState
) delete m_imageListState
;
926 SetAnyImageList(m_imageListState
= imageList
, TVSIL_STATE
);
927 m_ownsImageListState
= false;
930 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
931 bool recursively
) const
933 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
935 TraverseCounter
counter(this, item
, recursively
);
936 return counter
.GetCount() - 1;
939 // ----------------------------------------------------------------------------
941 // ----------------------------------------------------------------------------
943 bool wxTreeCtrl::SetBackgroundColour(const wxColour
&colour
)
945 #if !wxUSE_COMCTL32_SAFELY
946 if ( !wxWindowBase::SetBackgroundColour(colour
) )
949 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0, colour
.GetPixel());
955 bool wxTreeCtrl::SetForegroundColour(const wxColour
&colour
)
957 #if !wxUSE_COMCTL32_SAFELY
958 if ( !wxWindowBase::SetForegroundColour(colour
) )
961 ::SendMessage(GetHwnd(), TVM_SETTEXTCOLOR
, 0, colour
.GetPixel());
967 // ----------------------------------------------------------------------------
969 // ----------------------------------------------------------------------------
971 bool wxTreeCtrl::IsHiddenRoot(const wxTreeItemId
& item
) const
973 return HITEM(item
) == TVI_ROOT
&& HasFlag(wxTR_HIDE_ROOT
);
976 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
978 wxCHECK_MSG( item
.IsOk(), wxEmptyString
, wxT("invalid tree item") );
980 wxChar buf
[512]; // the size is arbitrary...
982 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
983 tvItem
.pszText
= buf
;
984 tvItem
.cchTextMax
= WXSIZEOF(buf
);
985 if ( !DoGetItem(&tvItem
) )
987 // don't return some garbage which was on stack, but an empty string
991 return wxString(buf
);
994 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
996 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
998 if ( IS_VIRTUAL_ROOT(item
) )
1001 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
1002 tvItem
.pszText
= (wxChar
*)text
.wx_str(); // conversion is ok
1005 // when setting the text of the item being edited, the text control should
1006 // be updated to reflect the new text as well, otherwise calling
1007 // SetItemText() in the OnBeginLabelEdit() handler doesn't have any effect
1009 // don't use GetEditControl() here because m_textCtrl is not set yet
1010 HWND hwndEdit
= TreeView_GetEditControl(GetHwnd());
1013 if ( item
== m_idEdited
)
1015 ::SetWindowText(hwndEdit
, text
.wx_str());
1020 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
1021 wxTreeItemIcon which
) const
1023 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
1025 if ( IsHiddenRoot(item
) )
1027 // no images for hidden root item
1031 wxTreeItemParam
*param
= GetItemParam(item
);
1033 return param
&& param
->HasImage(which
) ? param
->GetImage(which
) : -1;
1036 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
, int image
,
1037 wxTreeItemIcon which
)
1039 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1040 wxCHECK_RET( which
>= 0 &&
1041 which
< wxTreeItemIcon_Max
,
1042 wxT("invalid image index"));
1045 if ( IsHiddenRoot(item
) )
1047 // no images for hidden root item
1051 wxTreeItemParam
*data
= GetItemParam(item
);
1055 data
->SetImage(image
, which
);
1060 wxTreeItemParam
*wxTreeCtrl::GetItemParam(const wxTreeItemId
& item
) const
1062 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
1064 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
1066 // hidden root may still have data.
1067 if ( IS_VIRTUAL_ROOT(item
) )
1069 return GET_VIRTUAL_ROOT()->GetParam();
1073 if ( !DoGetItem(&tvItem
) )
1078 return (wxTreeItemParam
*)tvItem
.lParam
;
1081 bool wxTreeCtrl::HandleTreeEvent(wxTreeEvent
& event
) const
1083 if ( event
.m_item
.IsOk() )
1085 event
.SetClientObject(GetItemData(event
.m_item
));
1088 return HandleWindowEvent(event
);
1091 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
1093 wxTreeItemParam
*data
= GetItemParam(item
);
1095 return data
? data
->GetData() : NULL
;
1098 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
1100 // first, associate this piece of data with this item
1106 wxTreeItemParam
*param
= GetItemParam(item
);
1108 wxCHECK_RET( param
, wxT("failed to change tree items data") );
1110 param
->SetData(data
);
1113 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
1115 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1117 if ( IS_VIRTUAL_ROOT(item
) )
1120 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1121 tvItem
.cChildren
= (int)has
;
1125 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
1127 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1129 if ( IS_VIRTUAL_ROOT(item
) )
1132 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1133 tvItem
.state
= bold
? TVIS_BOLD
: 0;
1137 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
)
1139 if ( IS_VIRTUAL_ROOT(item
) )
1142 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_DROPHILITED
);
1143 tvItem
.state
= highlight
? TVIS_DROPHILITED
: 0;
1147 void wxTreeCtrl::RefreshItem(const wxTreeItemId
& item
)
1149 if ( IS_VIRTUAL_ROOT(item
) )
1153 if ( GetBoundingRect(item
, rect
) )
1159 wxColour
wxTreeCtrl::GetItemTextColour(const wxTreeItemId
& item
) const
1161 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
1163 wxMapTreeAttr::const_iterator it
= m_attrs
.find(item
.m_pItem
);
1164 return it
== m_attrs
.end() ? wxNullColour
: it
->second
->GetTextColour();
1167 wxColour
wxTreeCtrl::GetItemBackgroundColour(const wxTreeItemId
& item
) const
1169 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
1171 wxMapTreeAttr::const_iterator it
= m_attrs
.find(item
.m_pItem
);
1172 return it
== m_attrs
.end() ? wxNullColour
: it
->second
->GetBackgroundColour();
1175 wxFont
wxTreeCtrl::GetItemFont(const wxTreeItemId
& item
) const
1177 wxCHECK_MSG( item
.IsOk(), wxNullFont
, wxT("invalid tree item") );
1179 wxMapTreeAttr::const_iterator it
= m_attrs
.find(item
.m_pItem
);
1180 return it
== m_attrs
.end() ? wxNullFont
: it
->second
->GetFont();
1183 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
1184 const wxColour
& col
)
1186 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1188 wxTreeItemAttr
*attr
;
1189 wxMapTreeAttr::iterator it
= m_attrs
.find(item
.m_pItem
);
1190 if ( it
== m_attrs
.end() )
1192 m_hasAnyAttr
= true;
1194 m_attrs
[item
.m_pItem
] =
1195 attr
= new wxTreeItemAttr
;
1202 attr
->SetTextColour(col
);
1207 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1208 const wxColour
& col
)
1210 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1212 wxTreeItemAttr
*attr
;
1213 wxMapTreeAttr::iterator it
= m_attrs
.find(item
.m_pItem
);
1214 if ( it
== m_attrs
.end() )
1216 m_hasAnyAttr
= true;
1218 m_attrs
[item
.m_pItem
] =
1219 attr
= new wxTreeItemAttr
;
1221 else // already in the hash
1226 attr
->SetBackgroundColour(col
);
1231 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1233 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1235 wxTreeItemAttr
*attr
;
1236 wxMapTreeAttr::iterator it
= m_attrs
.find(item
.m_pItem
);
1237 if ( it
== m_attrs
.end() )
1239 m_hasAnyAttr
= true;
1241 m_attrs
[item
.m_pItem
] =
1242 attr
= new wxTreeItemAttr
;
1244 else // already in the hash
1249 attr
->SetFont(font
);
1251 // Reset the item's text to ensure that the bounding rect will be adjusted
1252 // for the new font.
1253 SetItemText(item
, GetItemText(item
));
1258 // ----------------------------------------------------------------------------
1260 // ----------------------------------------------------------------------------
1262 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1264 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1266 if ( item
== wxTreeItemId(TVI_ROOT
) )
1268 // virtual (hidden) root is never visible
1272 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
1275 // this ugliness comes directly from MSDN - it *is* the correct way to pass
1276 // the HTREEITEM with TVM_GETITEMRECT
1277 *(HTREEITEM
*)&rect
= HITEM(item
);
1279 // true means to get rect for just the text, not the whole line
1280 if ( !::SendMessage(GetHwnd(), TVM_GETITEMRECT
, true, (LPARAM
)&rect
) )
1282 // if TVM_GETITEMRECT returned false, then the item is definitely not
1283 // visible (because its parent is not expanded)
1287 // however if it returned true, the item might still be outside the
1288 // currently visible part of the tree, test for it (notice that partly
1289 // visible means visible here)
1290 return rect
.bottom
> 0 && rect
.top
< GetClientSize().y
;
1293 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1295 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1297 if ( IS_VIRTUAL_ROOT(item
) )
1299 wxTreeItemIdValue cookie
;
1300 return GetFirstChild(item
, cookie
).IsOk();
1303 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1306 return tvItem
.cChildren
!= 0;
1309 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1311 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1313 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDED
);
1316 return (tvItem
.state
& TVIS_EXPANDED
) != 0;
1319 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1321 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1323 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_SELECTED
);
1326 return (tvItem
.state
& TVIS_SELECTED
) != 0;
1329 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1331 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1333 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1336 return (tvItem
.state
& TVIS_BOLD
) != 0;
1339 // ----------------------------------------------------------------------------
1341 // ----------------------------------------------------------------------------
1343 wxTreeItemId
wxTreeCtrl::GetRootItem() const
1345 // Root may be real (visible) or virtual (hidden).
1346 if ( GET_VIRTUAL_ROOT() )
1349 return wxTreeItemId(TreeView_GetRoot(GetHwnd()));
1352 wxTreeItemId
wxTreeCtrl::GetSelection() const
1354 wxCHECK_MSG( !HasFlag(wxTR_MULTIPLE
), wxTreeItemId(),
1355 wxT("this only works with single selection controls") );
1357 return GetFocusedItem();
1360 wxTreeItemId
wxTreeCtrl::GetFocusedItem() const
1362 return wxTreeItemId(TreeView_GetSelection(GetHwnd()));
1365 wxTreeItemId
wxTreeCtrl::GetItemParent(const wxTreeItemId
& item
) const
1367 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1371 if ( IS_VIRTUAL_ROOT(item
) )
1373 // no parent for the virtual root
1378 hItem
= TreeView_GetParent(GetHwnd(), HITEM(item
));
1379 if ( !hItem
&& HasFlag(wxTR_HIDE_ROOT
) )
1381 // the top level items should have the virtual root as their parent
1386 return wxTreeItemId(hItem
);
1389 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1390 wxTreeItemIdValue
& cookie
) const
1392 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1394 // remember the last child returned in 'cookie'
1395 cookie
= TreeView_GetChild(GetHwnd(), HITEM(item
));
1397 return wxTreeItemId(cookie
);
1400 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& WXUNUSED(item
),
1401 wxTreeItemIdValue
& cookie
) const
1403 wxTreeItemId
fromCookie(cookie
);
1405 HTREEITEM hitem
= HITEM(fromCookie
);
1407 hitem
= TreeView_GetNextSibling(GetHwnd(), hitem
);
1409 wxTreeItemId
item(hitem
);
1411 cookie
= item
.m_pItem
;
1416 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1418 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1420 // can this be done more efficiently?
1421 wxTreeItemIdValue cookie
;
1423 wxTreeItemId childLast
,
1424 child
= GetFirstChild(item
, cookie
);
1425 while ( child
.IsOk() )
1428 child
= GetNextChild(item
, cookie
);
1434 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1436 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1437 return wxTreeItemId(TreeView_GetNextSibling(GetHwnd(), HITEM(item
)));
1440 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1442 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1443 return wxTreeItemId(TreeView_GetPrevSibling(GetHwnd(), HITEM(item
)));
1446 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
1448 return wxTreeItemId(TreeView_GetFirstVisible(GetHwnd()));
1451 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1453 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1454 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetNextVisible() for must be visible itself!"));
1456 wxTreeItemId
next(TreeView_GetNextVisible(GetHwnd(), HITEM(item
)));
1457 if ( next
.IsOk() && !IsVisible(next
) )
1459 // Win32 considers that any non-collapsed item is visible while we want
1460 // to return only really visible items
1467 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1469 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1470 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetPrevVisible() for must be visible itself!"));
1472 wxTreeItemId
prev(TreeView_GetPrevVisible(GetHwnd(), HITEM(item
)));
1473 if ( prev
.IsOk() && !IsVisible(prev
) )
1475 // just as above, Win32 function will happily return the previous item
1476 // in the tree for the first visible item too
1483 // ----------------------------------------------------------------------------
1484 // multiple selections emulation
1485 // ----------------------------------------------------------------------------
1487 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
& selections
) const
1489 TraverseSelections
selector(this, selections
);
1491 return selector
.GetCount();
1494 // ----------------------------------------------------------------------------
1496 // ----------------------------------------------------------------------------
1498 wxTreeItemId
wxTreeCtrl::DoInsertAfter(const wxTreeItemId
& parent
,
1499 const wxTreeItemId
& hInsertAfter
,
1500 const wxString
& text
,
1501 int image
, int selectedImage
,
1502 wxTreeItemData
*data
)
1504 wxCHECK_MSG( parent
.IsOk() || !TreeView_GetRoot(GetHwnd()),
1506 wxT("can't have more than one root in the tree") );
1508 TV_INSERTSTRUCT tvIns
;
1509 tvIns
.hParent
= HITEM(parent
);
1510 tvIns
.hInsertAfter
= HITEM(hInsertAfter
);
1512 // this is how we insert the item as the first child: supply a NULL
1514 if ( !tvIns
.hInsertAfter
)
1516 tvIns
.hInsertAfter
= TVI_FIRST
;
1520 if ( !text
.empty() )
1523 tvIns
.item
.pszText
= (wxChar
*)text
.wx_str(); // cast is ok
1527 tvIns
.item
.pszText
= NULL
;
1528 tvIns
.item
.cchTextMax
= 0;
1531 // create the param which will store the other item parameters
1532 wxTreeItemParam
*param
= new wxTreeItemParam
;
1534 // we return the images on demand as they depend on whether the item is
1535 // expanded or collapsed too in our case
1536 mask
|= TVIF_IMAGE
| TVIF_SELECTEDIMAGE
;
1537 tvIns
.item
.iImage
= I_IMAGECALLBACK
;
1538 tvIns
.item
.iSelectedImage
= I_IMAGECALLBACK
;
1540 param
->SetImage(image
, wxTreeItemIcon_Normal
);
1541 param
->SetImage(selectedImage
, wxTreeItemIcon_Selected
);
1544 tvIns
.item
.lParam
= (LPARAM
)param
;
1545 tvIns
.item
.mask
= mask
;
1547 // don't use the hack below for the children of hidden root: this results
1548 // in a crash inside comctl32.dll when we call TreeView_GetItemRect()
1549 const bool firstChild
= !IsHiddenRoot(parent
) &&
1550 !TreeView_GetChild(GetHwnd(), HITEM(parent
));
1552 HTREEITEM id
= TreeView_InsertItem(GetHwnd(), &tvIns
);
1555 wxLogLastError(wxT("TreeView_InsertItem"));
1558 // apparently some Windows versions (2000 and XP are reported to do this)
1559 // sometimes don't refresh the tree after adding the first child and so we
1560 // need this to make the "[+]" appear
1564 TreeView_GetItemRect(GetHwnd(), HITEM(parent
), &rect
, FALSE
);
1565 ::InvalidateRect(GetHwnd(), &rect
, FALSE
);
1568 // associate the application tree item with Win32 tree item handle
1571 // setup wxTreeItemData
1574 param
->SetData(data
);
1578 return wxTreeItemId(id
);
1581 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
1582 int image
, int selectedImage
,
1583 wxTreeItemData
*data
)
1585 if ( HasFlag(wxTR_HIDE_ROOT
) )
1587 wxASSERT_MSG( !m_pVirtualRoot
, wxT("tree can have only a single root") );
1589 // create a virtual root item, the parent for all the others
1590 wxTreeItemParam
*param
= new wxTreeItemParam
;
1591 param
->SetData(data
);
1593 m_pVirtualRoot
= new wxVirtualNode(param
);
1598 return DoInsertAfter(wxTreeItemId(), wxTreeItemId(),
1599 text
, image
, selectedImage
, data
);
1602 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parent
,
1604 const wxString
& text
,
1605 int image
, int selectedImage
,
1606 wxTreeItemData
*data
)
1608 wxTreeItemId idPrev
;
1609 if ( index
== (size_t)-1 )
1611 // special value: append to the end
1614 else // find the item from index
1616 wxTreeItemIdValue cookie
;
1617 wxTreeItemId idCur
= GetFirstChild(parent
, cookie
);
1618 while ( index
!= 0 && idCur
.IsOk() )
1623 idCur
= GetNextChild(parent
, cookie
);
1626 // assert, not check: if the index is invalid, we will append the item
1628 wxASSERT_MSG( index
== 0, wxT("bad index in wxTreeCtrl::InsertItem") );
1631 return DoInsertAfter(parent
, idPrev
, text
, image
, selectedImage
, data
);
1634 void wxTreeCtrl::Delete(const wxTreeItemId
& item
)
1636 // unlock tree selections on vista, without this the
1637 // tree ctrl will eventually crash after item deletion
1638 TreeItemUnlocker unlock_all
;
1640 if ( HasFlag(wxTR_MULTIPLE
) )
1642 bool selected
= IsSelected(item
);
1647 next
= TreeView_GetNextVisible(GetHwnd(), HITEM(item
));
1651 next
= TreeView_GetPrevVisible(GetHwnd(), HITEM(item
));
1656 TempSetter
set(m_changingSelection
);
1657 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item
)) )
1659 wxLogLastError(wxT("TreeView_DeleteItem"));
1671 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, next
);
1673 if ( IsTreeEventAllowed(changingEvent
) )
1675 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this, next
);
1676 (void)HandleTreeEvent(changedEvent
);
1680 DoUnselectItem(next
);
1687 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item
)) )
1689 wxLogLastError(wxT("TreeView_DeleteItem"));
1694 // delete all children (but don't delete the item itself)
1695 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& item
)
1697 // unlock tree selections on vista for the duration of this call
1698 TreeItemUnlocker unlock_all
;
1700 wxTreeItemIdValue cookie
;
1702 wxArrayTreeItemIds children
;
1703 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1704 while ( child
.IsOk() )
1706 children
.Add(child
);
1708 child
= GetNextChild(item
, cookie
);
1711 size_t nCount
= children
.Count();
1712 for ( size_t n
= 0; n
< nCount
; n
++ )
1714 Delete(children
[n
]);
1718 void wxTreeCtrl::DeleteAllItems()
1720 // unlock tree selections on vista for the duration of this call
1721 TreeItemUnlocker unlock_all
;
1723 // delete the "virtual" root item.
1724 if ( GET_VIRTUAL_ROOT() )
1726 delete GET_VIRTUAL_ROOT();
1727 m_pVirtualRoot
= NULL
;
1730 // and all the real items
1732 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1734 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1738 void wxTreeCtrl::DoExpand(const wxTreeItemId
& item
, int flag
)
1740 wxASSERT_MSG( flag
== TVE_COLLAPSE
||
1741 flag
== (TVE_COLLAPSE
| TVE_COLLAPSERESET
) ||
1742 flag
== TVE_EXPAND
||
1744 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1746 // A hidden root can be neither expanded nor collapsed.
1747 wxCHECK_RET( !IsHiddenRoot(item
),
1748 wxT("Can't expand/collapse hidden root node!") );
1750 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1751 // emulate them. This behaviour has changed slightly with comctl32.dll
1752 // v 4.70 - now it does send them but only the first time. To maintain
1753 // compatible behaviour and also in order to not have surprises with the
1754 // future versions, don't rely on this and still do everything ourselves.
1755 // To avoid that the messages be sent twice when the item is expanded for
1756 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1758 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDEDONCE
);
1762 if ( IsExpanded(item
) )
1764 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
,
1765 this, wxTreeItemId(item
));
1767 if ( !IsTreeEventAllowed(event
) )
1771 if ( TreeView_Expand(GetHwnd(), HITEM(item
), flag
) )
1773 if ( IsExpanded(item
) )
1776 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, this, item
);
1777 (void)HandleTreeEvent(event
);
1779 //else: change didn't took place, so do nothing at all
1782 void wxTreeCtrl::Expand(const wxTreeItemId
& item
)
1784 DoExpand(item
, TVE_EXPAND
);
1787 void wxTreeCtrl::Collapse(const wxTreeItemId
& item
)
1789 DoExpand(item
, TVE_COLLAPSE
);
1792 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1794 DoExpand(item
, TVE_COLLAPSE
| TVE_COLLAPSERESET
);
1797 void wxTreeCtrl::Toggle(const wxTreeItemId
& item
)
1799 DoExpand(item
, TVE_TOGGLE
);
1802 void wxTreeCtrl::Unselect()
1804 wxASSERT_MSG( !HasFlag(wxTR_MULTIPLE
),
1805 wxT("doesn't make sense, may be you want UnselectAll()?") );
1807 // the current focus
1808 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1815 if ( HasFlag(wxTR_MULTIPLE
) )
1817 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
1818 this, wxTreeItemId());
1819 changingEvent
.m_itemOld
= htFocus
;
1821 if ( IsTreeEventAllowed(changingEvent
) )
1825 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
1826 this, wxTreeItemId());
1827 changedEvent
.m_itemOld
= htFocus
;
1828 (void)HandleTreeEvent(changedEvent
);
1837 void wxTreeCtrl::DoUnselectAll()
1839 wxArrayTreeItemIds selections
;
1840 size_t count
= GetSelections(selections
);
1842 for ( size_t n
= 0; n
< count
; n
++ )
1844 DoUnselectItem(selections
[n
]);
1847 m_htSelStart
.Unset();
1850 void wxTreeCtrl::UnselectAll()
1852 if ( HasFlag(wxTR_MULTIPLE
) )
1854 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1855 if ( !htFocus
) return;
1857 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this);
1858 changingEvent
.m_itemOld
= htFocus
;
1860 if ( IsTreeEventAllowed(changingEvent
) )
1864 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this);
1865 changedEvent
.m_itemOld
= htFocus
;
1866 (void)HandleTreeEvent(changedEvent
);
1875 void wxTreeCtrl::DoSelectItem(const wxTreeItemId
& item
, bool select
)
1877 TempSetter
set(m_changingSelection
);
1879 ::SelectItem(GetHwnd(), HITEM(item
), select
);
1882 void wxTreeCtrl::SelectItem(const wxTreeItemId
& item
, bool select
)
1884 wxCHECK_RET( !IsHiddenRoot(item
), wxT("can't select hidden root item") );
1886 if ( select
== IsSelected(item
) )
1888 // nothing to do, the item is already in the requested state
1892 if ( HasFlag(wxTR_MULTIPLE
) )
1894 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1896 if ( IsTreeEventAllowed(changingEvent
) )
1898 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1899 DoSelectItem(item
, select
);
1903 SetFocusedItem(item
);
1906 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
1908 (void)HandleTreeEvent(changedEvent
);
1911 else // single selection
1913 wxTreeItemId itemOld
, itemNew
;
1916 itemOld
= GetSelection();
1919 else // deselecting the currently selected item
1922 // leave itemNew invalid
1925 // in spite of the docs (MSDN Jan 99 edition), we don't seem to receive
1926 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1927 // send them ourselves
1930 changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, itemNew
);
1931 changingEvent
.SetOldItem(itemOld
);
1933 if ( IsTreeEventAllowed(changingEvent
) )
1935 if ( !TreeView_SelectItem(GetHwnd(), HITEM(itemNew
)) )
1937 wxLogLastError(wxT("TreeView_SelectItem"));
1941 SetFocusedItem(item
);
1943 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
1945 changedEvent
.SetOldItem(itemOld
);
1946 (void)HandleTreeEvent(changedEvent
);
1949 //else: program vetoed the change
1953 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1955 wxCHECK_RET( !IsHiddenRoot(item
), wxT("can't show hidden root item") );
1958 TreeView_EnsureVisible(GetHwnd(), HITEM(item
));
1961 void wxTreeCtrl::ScrollTo(const wxTreeItemId
& item
)
1963 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item
)) )
1965 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1969 wxTextCtrl
*wxTreeCtrl::GetEditControl() const
1974 void wxTreeCtrl::DeleteTextCtrl()
1978 // the HWND corresponding to this control is deleted by the tree
1979 // control itself and we don't know when exactly this happens, so check
1980 // if the window still exists before calling UnsubclassWin()
1981 if ( !::IsWindow(GetHwndOf(m_textCtrl
)) )
1983 m_textCtrl
->SetHWND(0);
1986 m_textCtrl
->UnsubclassWin();
1987 m_textCtrl
->SetHWND(0);
1995 wxTextCtrl
*wxTreeCtrl::EditLabel(const wxTreeItemId
& item
,
1996 wxClassInfo
*textControlClass
)
1998 wxASSERT( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
2003 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
2004 HWND hWnd
= (HWND
) TreeView_EditLabel(GetHwnd(), HITEM(item
));
2006 // this is not an error - the TVN_BEGINLABELEDIT handler might have
2015 // textctrl is subclassed in MSWOnNotify
2019 // End label editing, optionally cancelling the edit
2020 void wxTreeCtrl::DoEndEditLabel(bool discardChanges
)
2022 TreeView_EndEditLabelNow(GetHwnd(), discardChanges
);
2027 wxTreeItemId
wxTreeCtrl::DoTreeHitTest(const wxPoint
& point
, int& flags
) const
2029 TV_HITTESTINFO hitTestInfo
;
2030 hitTestInfo
.pt
.x
= (int)point
.x
;
2031 hitTestInfo
.pt
.y
= (int)point
.y
;
2033 (void) TreeView_HitTest(GetHwnd(), &hitTestInfo
);
2038 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
2039 flags |= wxTREE_HITTEST_##flag
2041 TRANSLATE_FLAG(ABOVE
);
2042 TRANSLATE_FLAG(BELOW
);
2043 TRANSLATE_FLAG(NOWHERE
);
2044 TRANSLATE_FLAG(ONITEMBUTTON
);
2045 TRANSLATE_FLAG(ONITEMICON
);
2046 TRANSLATE_FLAG(ONITEMINDENT
);
2047 TRANSLATE_FLAG(ONITEMLABEL
);
2048 TRANSLATE_FLAG(ONITEMRIGHT
);
2049 TRANSLATE_FLAG(ONITEMSTATEICON
);
2050 TRANSLATE_FLAG(TOLEFT
);
2051 TRANSLATE_FLAG(TORIGHT
);
2053 #undef TRANSLATE_FLAG
2055 return wxTreeItemId(hitTestInfo
.hItem
);
2058 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2060 bool textOnly
) const
2064 // Virtual root items have no bounding rectangle
2065 if ( IS_VIRTUAL_ROOT(item
) )
2070 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item
),
2073 rect
= wxRect(wxPoint(rc
.left
, rc
.top
), wxPoint(rc
.right
, rc
.bottom
));
2079 // couldn't retrieve rect: for example, item isn't visible
2084 void wxTreeCtrl::ClearFocusedItem()
2086 TempSetter
set(m_changingSelection
);
2088 if ( !TreeView_SelectItem(GetHwnd(), 0) )
2090 wxLogLastError(wxT("TreeView_SelectItem"));
2094 void wxTreeCtrl::SetFocusedItem(const wxTreeItemId
& item
)
2096 TempSetter
set(m_changingSelection
);
2098 ::SetFocus(GetHwnd(), HITEM(item
));
2101 void wxTreeCtrl::DoUnselectItem(const wxTreeItemId
& item
)
2103 TempSetter
set(m_changingSelection
);
2105 ::UnselectItem(GetHwnd(), HITEM(item
));
2108 void wxTreeCtrl::DoToggleItemSelection(const wxTreeItemId
& item
)
2110 TempSetter
set(m_changingSelection
);
2112 ::ToggleItemSelection(GetHwnd(), HITEM(item
));
2115 // ----------------------------------------------------------------------------
2117 // ----------------------------------------------------------------------------
2119 // this is just a tiny namespace which is friend to wxTreeCtrl and so can use
2120 // functions such as IsDataIndirect()
2121 class wxTreeSortHelper
2124 static int CALLBACK
Compare(LPARAM data1
, LPARAM data2
, LPARAM tree
);
2127 static wxTreeItemId
GetIdFromData(LPARAM lParam
)
2129 return ((wxTreeItemParam
*)lParam
)->GetItem();
2133 int CALLBACK
wxTreeSortHelper::Compare(LPARAM pItem1
,
2137 wxCHECK_MSG( pItem1
&& pItem2
, 0,
2138 wxT("sorting tree without data doesn't make sense") );
2140 wxTreeCtrl
*tree
= (wxTreeCtrl
*)htree
;
2142 return tree
->OnCompareItems(GetIdFromData(pItem1
),
2143 GetIdFromData(pItem2
));
2146 void wxTreeCtrl::SortChildren(const wxTreeItemId
& item
)
2148 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
2150 // rely on the fact that TreeView_SortChildren does the same thing as our
2151 // default behaviour, i.e. sorts items alphabetically and so call it
2152 // directly if we're not in derived class (much more efficient!)
2153 // RN: Note that if you find you're code doesn't sort as expected this
2154 // may be why as if you don't use the DECLARE_CLASS/IMPLEMENT_CLASS
2155 // combo for your derived wxTreeCtrl if will sort without
2157 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl
) )
2159 TreeView_SortChildren(GetHwnd(), HITEM(item
), 0);
2164 tvSort
.hParent
= HITEM(item
);
2165 tvSort
.lpfnCompare
= wxTreeSortHelper::Compare
;
2166 tvSort
.lParam
= (LPARAM
)this;
2167 TreeView_SortChildrenCB(GetHwnd(), &tvSort
, 0 /* reserved */);
2171 // ----------------------------------------------------------------------------
2173 // ----------------------------------------------------------------------------
2175 bool wxTreeCtrl::MSWShouldPreProcessMessage(WXMSG
* msg
)
2177 if ( msg
->message
== WM_KEYDOWN
)
2179 // Only eat VK_RETURN if not being used by the application in
2180 // conjunction with modifiers
2181 if ( (msg
->wParam
== VK_RETURN
) && !wxIsAnyModifierDown() )
2183 // we need VK_RETURN to generate wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2188 return wxTreeCtrlBase::MSWShouldPreProcessMessage(msg
);
2191 bool wxTreeCtrl::MSWCommand(WXUINT cmd
, WXWORD id_
)
2193 const int id
= (signed short)id_
;
2195 if ( cmd
== EN_UPDATE
)
2197 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
2198 event
.SetEventObject( this );
2199 ProcessCommand(event
);
2201 else if ( cmd
== EN_KILLFOCUS
)
2203 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
2204 event
.SetEventObject( this );
2205 ProcessCommand(event
);
2213 // command processed
2217 bool wxTreeCtrl::MSWHandleSelectionKey(unsigned vkey
)
2219 const bool bCtrl
= wxIsCtrlDown();
2220 const bool bShift
= wxIsShiftDown();
2221 const HTREEITEM htSel
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
2230 if ( vkey
!= VK_RETURN
&& bCtrl
)
2232 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2234 changingEvent
.m_itemOld
= htSel
;
2236 if ( IsTreeEventAllowed(changingEvent
) )
2238 DoToggleItemSelection(wxTreeItemId(htSel
));
2240 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2242 changedEvent
.m_itemOld
= htSel
;
2243 (void)HandleTreeEvent(changedEvent
);
2248 wxArrayTreeItemIds selections
;
2249 size_t count
= GetSelections(selections
);
2251 if ( count
!= 1 || HITEM(selections
[0]) != htSel
)
2253 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2255 changingEvent
.m_itemOld
= htSel
;
2257 if ( IsTreeEventAllowed(changingEvent
) )
2260 DoSelectItem(wxTreeItemId(htSel
));
2262 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2264 changedEvent
.m_itemOld
= htSel
;
2265 (void)HandleTreeEvent(changedEvent
);
2273 if ( !bCtrl
&& !bShift
)
2275 wxArrayTreeItemIds selections
;
2280 next
= vkey
== VK_UP
2281 ? TreeView_GetPrevVisible(GetHwnd(), htSel
)
2282 : TreeView_GetNextVisible(GetHwnd(), htSel
);
2286 next
= GetRootItem();
2288 if ( IsHiddenRoot(next
) )
2289 next
= TreeView_GetChild(GetHwnd(), HITEM(next
));
2297 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2299 changingEvent
.m_itemOld
= htSel
;
2301 if ( IsTreeEventAllowed(changingEvent
) )
2305 SetFocusedItem(next
);
2307 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2309 changedEvent
.m_itemOld
= htSel
;
2310 (void)HandleTreeEvent(changedEvent
);
2315 wxTreeItemId next
= vkey
== VK_UP
2316 ? TreeView_GetPrevVisible(GetHwnd(), htSel
)
2317 : TreeView_GetNextVisible(GetHwnd(), htSel
);
2324 if ( !m_htSelStart
)
2326 m_htSelStart
= htSel
;
2329 if ( bShift
&& SelectRange(GetHwnd(), HITEM(m_htSelStart
), HITEM(next
),
2330 SR_UNSELECT_OTHERS
| SR_SIMULATE
) )
2332 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, next
);
2333 changingEvent
.m_itemOld
= htSel
;
2335 if ( IsTreeEventAllowed(changingEvent
) )
2337 SelectRange(GetHwnd(), HITEM(m_htSelStart
), HITEM(next
),
2338 SR_UNSELECT_OTHERS
);
2340 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this, next
);
2341 changedEvent
.m_itemOld
= htSel
;
2342 (void)HandleTreeEvent(changedEvent
);
2346 SetFocusedItem(next
);
2351 if ( HasChildren(htSel
) && IsExpanded(htSel
) )
2357 wxTreeItemId next
= GetItemParent(htSel
);
2359 if ( next
.IsOk() && !IsHiddenRoot(next
) )
2361 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2363 changingEvent
.m_itemOld
= htSel
;
2365 if ( IsTreeEventAllowed(changingEvent
) )
2369 SetFocusedItem(next
);
2371 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2373 changedEvent
.m_itemOld
= htSel
;
2374 (void)HandleTreeEvent(changedEvent
);
2381 if ( !IsVisible(htSel
) )
2383 EnsureVisible(htSel
);
2386 if ( !HasChildren(htSel
) )
2389 if ( !IsExpanded(htSel
) )
2395 wxTreeItemId next
= TreeView_GetChild(GetHwnd(), htSel
);
2397 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, next
);
2398 changingEvent
.m_itemOld
= htSel
;
2400 if ( IsTreeEventAllowed(changingEvent
) )
2404 SetFocusedItem(next
);
2406 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
, this, next
);
2407 changedEvent
.m_itemOld
= htSel
;
2408 (void)HandleTreeEvent(changedEvent
);
2416 wxTreeItemId next
= GetRootItem();
2418 if ( IsHiddenRoot(next
) )
2420 next
= TreeView_GetChild(GetHwnd(), HITEM(next
));
2426 if ( vkey
== VK_END
)
2430 wxTreeItemId nextTemp
= TreeView_GetNextVisible(
2431 GetHwnd(), HITEM(next
));
2433 if ( !nextTemp
.IsOk() )
2440 if ( htSel
== HITEM(next
) )
2445 if ( !m_htSelStart
)
2447 m_htSelStart
= htSel
;
2450 if ( SelectRange(GetHwnd(),
2451 HITEM(m_htSelStart
), HITEM(next
),
2452 SR_UNSELECT_OTHERS
| SR_SIMULATE
) )
2454 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2456 changingEvent
.m_itemOld
= htSel
;
2458 if ( IsTreeEventAllowed(changingEvent
) )
2460 SelectRange(GetHwnd(),
2461 HITEM(m_htSelStart
), HITEM(next
),
2462 SR_UNSELECT_OTHERS
);
2463 SetFocusedItem(next
);
2465 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2467 changedEvent
.m_itemOld
= htSel
;
2468 (void)HandleTreeEvent(changedEvent
);
2474 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2476 changingEvent
.m_itemOld
= htSel
;
2478 if ( IsTreeEventAllowed(changingEvent
) )
2482 SetFocusedItem(next
);
2484 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2486 changedEvent
.m_itemOld
= htSel
;
2487 (void)HandleTreeEvent(changedEvent
);
2497 wxTreeItemId firstVisible
= GetFirstVisibleItem();
2498 size_t visibleCount
= TreeView_GetVisibleCount(GetHwnd());
2499 wxTreeItemId nextAdjacent
= (vkey
== VK_PRIOR
) ?
2500 TreeView_GetPrevVisible(GetHwnd(), HITEM(firstVisible
)) :
2501 TreeView_GetNextVisible(GetHwnd(), HITEM(firstVisible
));
2503 if ( !nextAdjacent
)
2508 wxTreeItemId nextStart
= firstVisible
;
2510 for ( size_t n
= 1; n
< visibleCount
; n
++ )
2512 wxTreeItemId nextTemp
= (vkey
== VK_PRIOR
) ?
2513 TreeView_GetPrevVisible(GetHwnd(), HITEM(nextStart
)) :
2514 TreeView_GetNextVisible(GetHwnd(), HITEM(nextStart
));
2516 if ( nextTemp
.IsOk() )
2518 nextStart
= nextTemp
;
2526 EnsureVisible(nextStart
);
2528 if ( vkey
== VK_NEXT
)
2530 wxTreeItemId nextEnd
= nextStart
;
2532 for ( size_t n
= 1; n
< visibleCount
; n
++ )
2534 wxTreeItemId nextTemp
=
2535 TreeView_GetNextVisible(GetHwnd(), HITEM(nextEnd
));
2537 if ( nextTemp
.IsOk() )
2547 EnsureVisible(nextEnd
);
2552 size_t visibleCount
= TreeView_GetVisibleCount(GetHwnd());
2553 wxTreeItemId nextAdjacent
= (vkey
== VK_PRIOR
) ?
2554 TreeView_GetPrevVisible(GetHwnd(), htSel
) :
2555 TreeView_GetNextVisible(GetHwnd(), htSel
);
2557 if ( !nextAdjacent
)
2562 wxTreeItemId
next(htSel
);
2564 for ( size_t n
= 1; n
< visibleCount
; n
++ )
2566 wxTreeItemId nextTemp
= vkey
== VK_PRIOR
?
2567 TreeView_GetPrevVisible(GetHwnd(), HITEM(next
)) :
2568 TreeView_GetNextVisible(GetHwnd(), HITEM(next
));
2570 if ( !nextTemp
.IsOk() )
2576 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2578 changingEvent
.m_itemOld
= htSel
;
2580 if ( IsTreeEventAllowed(changingEvent
) )
2583 m_htSelStart
.Unset();
2585 SetFocusedItem(next
);
2587 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2589 changedEvent
.m_itemOld
= htSel
;
2590 (void)HandleTreeEvent(changedEvent
);
2602 bool wxTreeCtrl::MSWHandleTreeKeyDownEvent(WXWPARAM wParam
, WXLPARAM lParam
)
2604 wxTreeEvent
keyEvent(wxEVT_COMMAND_TREE_KEY_DOWN
, this);
2606 int keyCode
= wxCharCodeMSWToWX(wParam
);
2610 // wxCharCodeMSWToWX() returns 0 to indicate that this is a
2615 keyEvent
.m_evtKey
= CreateKeyEvent(wxEVT_KEY_DOWN
, keyCode
,
2618 bool processed
= HandleTreeEvent(keyEvent
);
2620 // generate a separate event for Space/Return
2621 if ( !wxIsCtrlDown() && !wxIsShiftDown() && !wxIsAltDown() &&
2622 ((wParam
== VK_SPACE
) || (wParam
== VK_RETURN
)) )
2624 const HTREEITEM htSel
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
2627 wxTreeEvent
activatedEvent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
2629 (void)HandleTreeEvent(activatedEvent
);
2636 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
2637 // only do it during dragging, minimize wxWin overhead (this is important for
2638 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
2639 // instead of passing by wxWin events
2641 wxTreeCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
2643 bool processed
= false;
2645 bool isMultiple
= HasFlag(wxTR_MULTIPLE
);
2647 if ( nMsg
== WM_CONTEXTMENU
)
2649 int x
= GET_X_LPARAM(lParam
),
2650 y
= GET_Y_LPARAM(lParam
);
2652 // the item for which the menu should be shown
2655 // the position where the menu should be shown in client coordinates
2656 // (so that it can be passed directly to PopupMenu())
2659 if ( x
== -1 || y
== -1 )
2661 // this means that the event was generated from keyboard (e.g. with
2662 // Shift-F10 or special Windows menu key)
2664 // use the Explorer standard of putting the menu at the left edge
2665 // of the text, in the vertical middle of the text
2666 item
= wxTreeItemId(TreeView_GetSelection(GetHwnd()));
2669 // Use the bounding rectangle of only the text part
2671 GetBoundingRect(item
, rect
, true);
2672 pt
= wxPoint(rect
.GetX(), rect
.GetY() + rect
.GetHeight() / 2);
2675 else // event from mouse, use mouse position
2677 pt
= ScreenToClient(wxPoint(x
, y
));
2679 TV_HITTESTINFO tvhti
;
2683 if ( TreeView_HitTest(GetHwnd(), &tvhti
) )
2684 item
= wxTreeItemId(tvhti
.hItem
);
2688 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_MENU
, this, item
);
2690 event
.m_pointDrag
= pt
;
2692 if ( HandleTreeEvent(event
) )
2694 //else: continue with generating wxEVT_CONTEXT_MENU in base class code
2696 else if ( (nMsg
>= WM_MOUSEFIRST
) && (nMsg
<= WM_MOUSELAST
) )
2698 // we only process mouse messages here and these parameters have the
2699 // same meaning for all of them
2700 int x
= GET_X_LPARAM(lParam
),
2701 y
= GET_Y_LPARAM(lParam
);
2703 TV_HITTESTINFO tvht
;
2707 HTREEITEM htOldItem
= TreeView_GetSelection(GetHwnd());
2708 HTREEITEM htItem
= TreeView_HitTest(GetHwnd(), &tvht
);
2712 case WM_LBUTTONDOWN
:
2716 m_htClickedItem
.Unset();
2718 if ( !(tvht
.flags
& TVHT_ONITEM
) )
2720 if ( !HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2722 if ( tvht
.flags
& TVHT_ONITEMBUTTON
)
2724 if ( !IsExpanded(htItem
) )
2737 m_focusLost
= false;
2743 m_htClickedItem
= (WXHTREEITEM
) htItem
;
2744 m_ptClick
= wxPoint(x
, y
);
2746 if ( wParam
& MK_CONTROL
)
2748 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2750 m_htClickedItem
.Unset();
2754 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2756 changingEvent
.m_itemOld
= htOldItem
;
2758 if ( IsTreeEventAllowed(changingEvent
) )
2760 // toggle selected state
2761 DoToggleItemSelection(wxTreeItemId(htItem
));
2763 SetFocusedItem(wxTreeItemId(htItem
));
2765 // reset on any click without Shift
2766 m_htSelStart
.Unset();
2768 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2770 changedEvent
.m_itemOld
= htOldItem
;
2771 (void)HandleTreeEvent(changedEvent
);
2774 else if ( wParam
& MK_SHIFT
)
2776 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2778 m_htClickedItem
.Unset();
2783 bool willChange
= true;
2785 if ( !(wParam
& MK_CONTROL
) )
2787 srFlags
|= SR_UNSELECT_OTHERS
;
2790 if ( !m_htSelStart
)
2792 // take the focused item
2793 m_htSelStart
= htOldItem
;
2797 willChange
= SelectRange(GetHwnd(), HITEM(m_htSelStart
),
2798 htItem
, srFlags
| SR_SIMULATE
);
2803 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2805 changingEvent
.m_itemOld
= htOldItem
;
2807 if ( IsTreeEventAllowed(changingEvent
) )
2809 // this selects all items between the starting one
2813 SelectRange(GetHwnd(), HITEM(m_htSelStart
),
2818 DoSelectItem(wxTreeItemId(htItem
));
2821 SetFocusedItem(wxTreeItemId(htItem
));
2823 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2825 changedEvent
.m_itemOld
= htOldItem
;
2826 (void)HandleTreeEvent(changedEvent
);
2830 else // normal click
2832 // avoid doing anything if we click on the only
2833 // currently selected item
2835 wxArrayTreeItemIds selections
;
2836 size_t count
= GetSelections(selections
);
2840 HITEM(selections
[0]) != htItem
)
2842 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) )
2844 m_htClickedItem
.Unset();
2848 // clear the previously selected items, if the user
2849 // clicked outside of the present selection, otherwise,
2850 // perform the deselection on mouse-up, this allows
2851 // multiple drag and drop to work.
2852 if ( !IsItemSelected(GetHwnd(), htItem
))
2854 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2856 changingEvent
.m_itemOld
= htOldItem
;
2858 if ( IsTreeEventAllowed(changingEvent
) )
2861 DoSelectItem(wxTreeItemId(htItem
));
2862 SetFocusedItem(wxTreeItemId(htItem
));
2864 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2866 changedEvent
.m_itemOld
= htOldItem
;
2867 (void)HandleTreeEvent(changedEvent
);
2872 SetFocusedItem(wxTreeItemId(htItem
));
2875 else // click on a single selected item
2877 // don't interfere with the default processing in
2878 // WM_MOUSEMOVE handler below as the default window
2879 // proc will start the drag itself if we let have
2881 m_htClickedItem
.Unset();
2883 // prevent in-place editing from starting if focus lost
2884 // since previous click
2888 DoSelectItem(wxTreeItemId(htItem
));
2889 SetFocusedItem(wxTreeItemId(htItem
));
2897 // reset on any click without Shift
2898 m_htSelStart
.Unset();
2901 m_focusLost
= false;
2903 // we consumed the event so we need to trigger state image
2908 wxTreeItemId item
= HitTest(wxPoint(x
, y
), htFlags
);
2910 if ( htFlags
& wxTREE_HITTEST_ONITEMSTATEICON
)
2912 m_triggerStateImageClick
= true;
2917 case WM_RBUTTONDOWN
:
2924 if ( HandleMouseEvent(nMsg
, x
, y
, wParam
) || !htItem
)
2929 // default handler removes the highlight from the currently
2930 // focused item when right mouse button is pressed on another
2931 // one but keeps the remaining items highlighted, which is
2932 // confusing, so override this default behaviour
2933 if ( !IsItemSelected(GetHwnd(), htItem
) )
2935 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
2937 changingEvent
.m_itemOld
= htOldItem
;
2939 if ( IsTreeEventAllowed(changingEvent
) )
2942 DoSelectItem(wxTreeItemId(htItem
));
2943 SetFocusedItem(wxTreeItemId(htItem
));
2945 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
2947 changedEvent
.m_itemOld
= htOldItem
;
2948 (void)HandleTreeEvent(changedEvent
);
2956 if ( m_htClickedItem
)
2958 int cx
= abs(m_ptClick
.x
- x
);
2959 int cy
= abs(m_ptClick
.y
- y
);
2961 if ( cx
> ::GetSystemMetrics(SM_CXDRAG
) ||
2962 cy
> ::GetSystemMetrics(SM_CYDRAG
) )
2967 tv
.hdr
.hwndFrom
= GetHwnd();
2968 tv
.hdr
.idFrom
= ::GetWindowLong(GetHwnd(), GWL_ID
);
2969 tv
.hdr
.code
= TVN_BEGINDRAG
;
2971 tv
.itemNew
.hItem
= HITEM(m_htClickedItem
);
2975 wxZeroMemory(tviAux
);
2977 tviAux
.hItem
= HITEM(m_htClickedItem
);
2978 tviAux
.mask
= TVIF_STATE
| TVIF_PARAM
;
2979 tviAux
.stateMask
= 0xffffffff;
2980 TreeView_GetItem(GetHwnd(), &tviAux
);
2982 tv
.itemNew
.state
= tviAux
.state
;
2983 tv
.itemNew
.lParam
= tviAux
.lParam
;
2988 // do it before SendMessage() call below to avoid
2989 // reentrancies here if there is another WM_MOUSEMOVE
2990 // in the queue already
2991 m_htClickedItem
.Unset();
2993 ::SendMessage(GetHwndOf(GetParent()), WM_NOTIFY
,
2994 tv
.hdr
.idFrom
, (LPARAM
)&tv
);
2996 // don't pass it to the default window proc, it would
2997 // start dragging again
3001 #endif // __WXWINCE__
3006 m_dragImage
->Move(wxPoint(x
, y
));
3009 // highlight the item as target (hiding drag image is
3010 // necessary - otherwise the display will be corrupted)
3011 m_dragImage
->Hide();
3012 TreeView_SelectDropTarget(GetHwnd(), htItem
);
3013 m_dragImage
->Show();
3016 #endif // wxUSE_DRAGIMAGE
3022 // deselect other items if multiple items selected
3025 wxArrayTreeItemIds selections
;
3026 size_t count
= GetSelections(selections
);
3029 !(wParam
& MK_CONTROL
) &&
3030 !(wParam
& MK_SHIFT
) )
3032 wxTreeEvent
changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING
,
3034 changingEvent
.m_itemOld
= htOldItem
;
3036 if ( IsTreeEventAllowed(changingEvent
) )
3039 DoSelectItem(wxTreeItemId(htItem
));
3040 SetFocusedItem(wxTreeItemId(htItem
));
3042 wxTreeEvent
changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED
,
3044 changedEvent
.m_itemOld
= htOldItem
;
3045 (void)HandleTreeEvent(changedEvent
);
3050 m_htClickedItem
.Unset();
3052 if ( m_triggerStateImageClick
)
3054 if ( tvht
.flags
& TVHT_ONITEMSTATEICON
)
3056 wxTreeEvent
event(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
,
3058 (void)HandleTreeEvent(event
);
3060 m_triggerStateImageClick
= false;
3065 if ( !m_dragStarted
&&
3066 (tvht
.flags
& TVHT_ONITEMSTATEICON
||
3067 tvht
.flags
& TVHT_ONITEMICON
||
3068 tvht
.flags
& TVHT_ONITEM
) )
3080 m_dragImage
->EndDrag();
3084 // generate the drag end event
3085 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
,
3087 event
.m_pointDrag
= wxPoint(x
, y
);
3088 (void)HandleTreeEvent(event
);
3090 // if we don't do it, the tree seems to think that 2 items
3091 // are selected simultaneously which is quite weird
3092 TreeView_SelectDropTarget(GetHwnd(), 0);
3094 #endif // wxUSE_DRAGIMAGE
3096 if ( isMultiple
&& nMsg
== WM_RBUTTONUP
)
3100 nmhdr
.hwndFrom
= GetHwnd();
3101 nmhdr
.idFrom
= ::GetWindowLong(GetHwnd(), GWL_ID
);
3102 nmhdr
.code
= NM_RCLICK
;
3103 ::SendMessage(::GetParent(GetHwnd()), WM_NOTIFY
,
3104 nmhdr
.idFrom
, (LPARAM
)&nmhdr
);
3108 m_dragStarted
= false;
3113 else if ( (nMsg
== WM_SETFOCUS
|| nMsg
== WM_KILLFOCUS
) )
3117 // the tree control greys out the selected item when it loses focus
3118 // and paints it as selected again when it regains it, but it won't
3119 // do it for the other items itself - help it
3120 wxArrayTreeItemIds selections
;
3121 size_t count
= GetSelections(selections
);
3124 for ( size_t n
= 0; n
< count
; n
++ )
3126 // TreeView_GetItemRect() will return false if item is not
3127 // visible, which may happen perfectly well
3128 if ( TreeView_GetItemRect(GetHwnd(), HITEM(selections
[n
]),
3131 ::InvalidateRect(GetHwnd(), &rect
, FALSE
);
3136 if ( nMsg
== WM_KILLFOCUS
)
3141 else if ( (nMsg
== WM_KEYDOWN
|| nMsg
== WM_SYSKEYDOWN
) && isMultiple
)
3143 // normally we want to generate wxEVT_KEY_DOWN events from TVN_KEYDOWN
3144 // notification but for the keys which can be used to change selection
3145 // we need to do it from here so as to not apply the default behaviour
3146 // if the events are handled by the user code
3159 if ( !MSWHandleTreeKeyDownEvent(wParam
, lParam
) )
3161 // use the key to update the selection if it was left
3163 MSWHandleSelectionKey(wParam
);
3166 // pretend that we did process it in any case as we already
3167 // generated an event for it
3170 //default: for all the other keys leave processed as false so that
3171 // the tree control generates a TVN_KEYDOWN for us
3175 else if ( nMsg
== WM_COMMAND
)
3177 // if we receive a EN_KILLFOCUS command from the in-place edit control
3178 // used for label editing, make sure to end editing
3181 UnpackCommand(wParam
, lParam
, &id
, &hwnd
, &cmd
);
3183 if ( cmd
== EN_KILLFOCUS
)
3185 if ( m_textCtrl
&& m_textCtrl
->GetHandle() == hwnd
)
3195 rc
= wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
3201 wxTreeCtrl::MSWDefWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
3203 if ( nMsg
== WM_CHAR
)
3205 // don't let the control process Space and Return keys because it
3206 // doesn't do anything useful with them anyhow but always beeps
3207 // annoyingly when it receives them and there is no way to turn it off
3208 // simply if you just process TREEITEM_ACTIVATED event to which Space
3209 // and Enter presses are mapped in your code
3210 if ( wParam
== VK_SPACE
|| wParam
== VK_RETURN
)
3214 else if ( nMsg
== WM_KEYDOWN
)
3216 if ( wParam
== VK_ESCAPE
)
3220 m_dragImage
->EndDrag();
3224 // if we don't do it, the tree seems to think that 2 items
3225 // are selected simultaneously which is quite weird
3226 TreeView_SelectDropTarget(GetHwnd(), 0);
3230 #endif // wxUSE_DRAGIMAGE
3232 return wxControl::MSWDefWindowProc(nMsg
, wParam
, lParam
);
3235 // process WM_NOTIFY Windows message
3236 bool wxTreeCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
3238 wxTreeEvent
event(wxEVT_NULL
, this);
3239 wxEventType eventType
= wxEVT_NULL
;
3240 NMHDR
*hdr
= (NMHDR
*)lParam
;
3242 switch ( hdr
->code
)
3245 eventType
= wxEVT_COMMAND_TREE_BEGIN_DRAG
;
3248 case TVN_BEGINRDRAG
:
3250 if ( eventType
== wxEVT_NULL
)
3251 eventType
= wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
3252 //else: left drag, already set above
3254 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3256 event
.m_item
= tv
->itemNew
.hItem
;
3257 event
.m_pointDrag
= wxPoint(tv
->ptDrag
.x
, tv
->ptDrag
.y
);
3259 // don't allow dragging by default: the user code must
3260 // explicitly say that it wants to allow it to avoid breaking
3266 case TVN_BEGINLABELEDIT
:
3268 eventType
= wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
3269 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3271 // although the user event handler may still veto it, it is
3272 // important to set it now so that calls to SetItemText() from
3273 // the event handler would change the text controls contents
3275 event
.m_item
= info
->item
.hItem
;
3276 event
.m_label
= info
->item
.pszText
;
3277 event
.m_editCancelled
= false;
3281 case TVN_DELETEITEM
:
3283 eventType
= wxEVT_COMMAND_TREE_DELETE_ITEM
;
3284 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3286 event
.m_item
= tv
->itemOld
.hItem
;
3290 wxMapTreeAttr::iterator it
= m_attrs
.find(tv
->itemOld
.hItem
);
3291 if ( it
!= m_attrs
.end() )
3300 case TVN_ENDLABELEDIT
:
3302 eventType
= wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
3303 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3305 event
.m_item
= info
->item
.hItem
;
3306 event
.m_label
= info
->item
.pszText
;
3307 event
.m_editCancelled
= info
->item
.pszText
== NULL
;
3312 // These *must* not be removed or TVN_GETINFOTIP will
3313 // not be processed each time the mouse is moved
3314 // and the tooltip will only ever update once.
3323 #ifdef TVN_GETINFOTIP
3324 case TVN_GETINFOTIP
:
3326 eventType
= wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
;
3327 NMTVGETINFOTIP
*info
= (NMTVGETINFOTIP
*)lParam
;
3329 // Which item are we trying to get a tooltip for?
3330 event
.m_item
= info
->hItem
;
3334 #endif // TVN_GETINFOTIP
3335 #endif // !__WXWINCE__
3337 case TVN_GETDISPINFO
:
3338 eventType
= wxEVT_COMMAND_TREE_GET_INFO
;
3341 case TVN_SETDISPINFO
:
3343 if ( eventType
== wxEVT_NULL
)
3344 eventType
= wxEVT_COMMAND_TREE_SET_INFO
;
3345 //else: get, already set above
3347 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3349 event
.m_item
= info
->item
.hItem
;
3353 case TVN_ITEMEXPANDING
:
3354 case TVN_ITEMEXPANDED
:
3356 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3359 switch ( tv
->action
)
3362 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv
->action
);
3370 what
= IDX_COLLAPSE
;
3374 int how
= hdr
->code
== TVN_ITEMEXPANDING
? IDX_DOING
3377 eventType
= gs_expandEvents
[what
][how
];
3379 event
.m_item
= tv
->itemNew
.hItem
;
3385 TV_KEYDOWN
*info
= (TV_KEYDOWN
*)lParam
;
3387 // fabricate the lParam and wParam parameters sufficiently
3388 // similar to the ones from a "real" WM_KEYDOWN so that
3389 // CreateKeyEvent() works correctly
3390 return MSWHandleTreeKeyDownEvent(
3391 info
->wVKey
, (wxIsAltDown() ? KF_ALTDOWN
: 0) << 16);
3395 // Vista's tree control has introduced some problems with our
3396 // multi-selection tree. When TreeView_SelectItem() is called,
3397 // the wrong items are deselected.
3399 // Fortunately, Vista provides a new notification, TVN_ITEMCHANGING
3400 // that can be used to regulate this incorrect behavior. The
3401 // following messages will allow only the unlocked item's selection
3404 case TVN_ITEMCHANGINGA
:
3405 case TVN_ITEMCHANGINGW
:
3407 // we only need to handles these in multi-select trees
3408 if ( HasFlag(wxTR_MULTIPLE
) )
3410 // get info about the item about to be changed
3411 NMTVITEMCHANGE
* info
= (NMTVITEMCHANGE
*)lParam
;
3412 if (TreeItemUnlocker::IsLocked(info
->hItem
))
3414 // item's state is locked, don't allow the change
3415 // returning 1 will disallow the change
3421 // allow the state change
3425 // NB: MSLU is broken and sends TVN_SELCHANGEDA instead of
3426 // TVN_SELCHANGEDW in Unicode mode under Win98. Therefore
3427 // we have to handle both messages:
3428 case TVN_SELCHANGEDA
:
3429 case TVN_SELCHANGEDW
:
3430 if ( !HasFlag(wxTR_MULTIPLE
) || !m_changingSelection
)
3432 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGED
;
3436 case TVN_SELCHANGINGA
:
3437 case TVN_SELCHANGINGW
:
3438 if ( !HasFlag(wxTR_MULTIPLE
) || !m_changingSelection
)
3440 if ( eventType
== wxEVT_NULL
)
3441 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGING
;
3442 //else: already set above
3444 if (hdr
->code
== TVN_SELCHANGINGW
||
3445 hdr
->code
== TVN_SELCHANGEDW
)
3447 NM_TREEVIEWW
*tv
= (NM_TREEVIEWW
*)lParam
;
3448 event
.m_item
= tv
->itemNew
.hItem
;
3449 event
.m_itemOld
= tv
->itemOld
.hItem
;
3453 NM_TREEVIEWA
*tv
= (NM_TREEVIEWA
*)lParam
;
3454 event
.m_item
= tv
->itemNew
.hItem
;
3455 event
.m_itemOld
= tv
->itemOld
.hItem
;
3459 // we receive this message from WM_LBUTTONDOWN handler inside
3460 // comctl32.dll and so before the click is passed to
3461 // DefWindowProc() which sets the focus to the window which was
3462 // clicked and this can lead to unexpected event sequences: for
3463 // example, we may get a "selection change" event from the tree
3464 // before getting a "kill focus" event for the text control which
3465 // had the focus previously, thus breaking user code doing input
3468 // to avoid such surprises, we force the generation of focus events
3469 // now, before we generate the selection change ones
3473 // instead of explicitly checking for _WIN32_IE, check if the
3474 // required symbols are available in the headers
3475 #if defined(CDDS_PREPAINT) && !wxUSE_COMCTL32_SAFELY
3478 LPNMTVCUSTOMDRAW lptvcd
= (LPNMTVCUSTOMDRAW
)lParam
;
3479 NMCUSTOMDRAW
& nmcd
= lptvcd
->nmcd
;
3480 switch ( nmcd
.dwDrawStage
)
3483 // if we've got any items with non standard attributes,
3484 // notify us before painting each item
3485 *result
= m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
3488 // windows in TreeCtrl use one-based index for item state images,
3489 // 0 indexed image is not being used, we're using zero-based index,
3490 // so we have to add temp image (of zero index) to state image list
3491 // before we draw any item, then after items are drawn we have to
3492 // delete it (in POSTPAINT notify)
3493 if (m_imageListState
&& m_imageListState
->GetImageCount() > 0)
3495 typedef BOOL (wxSTDCALL
*ImageList_Copy_t
)
3496 (HIMAGELIST
, int, HIMAGELIST
, int, UINT
);
3497 static ImageList_Copy_t s_pfnImageList_Copy
= NULL
;
3498 static bool loaded
= false;
3502 wxLoadedDLL
dllComCtl32(wxT("comctl32.dll"));
3503 if ( dllComCtl32
.IsLoaded() )
3504 wxDL_INIT_FUNC(s_pfn
, ImageList_Copy
, dllComCtl32
);
3507 if ( !s_pfnImageList_Copy
)
3509 // this code is broken with ImageList_Copy()
3510 // but I don't care enough about Win95 support
3511 // to write it now -- if anybody does, please
3513 wxFAIL_MSG("TODO: implement this for Win95");
3518 hImageList
= GetHimagelistOf(m_imageListState
);
3520 // add temporary image
3522 m_imageListState
->GetSize(0, width
, height
);
3524 HBITMAP hbmpTemp
= ::CreateBitmap(width
, height
, 1, 1, NULL
);
3525 int index
= ::ImageList_Add(hImageList
, hbmpTemp
, hbmpTemp
);
3526 ::DeleteObject(hbmpTemp
);
3530 // move images to right
3531 for ( int i
= index
; i
> 0; i
-- )
3533 (*s_pfnImageList_Copy
)(hImageList
, i
,
3538 // we must remove the image in POSTPAINT notify
3539 *result
|= CDRF_NOTIFYPOSTPAINT
;
3544 case CDDS_POSTPAINT
:
3545 // we are deleting temp image of 0 index, which was
3546 // added before items were drawn (in PREPAINT notify)
3547 if (m_imageListState
&& m_imageListState
->GetImageCount() > 0)
3548 m_imageListState
->Remove(0);
3551 case CDDS_ITEMPREPAINT
:
3553 wxMapTreeAttr::iterator
3554 it
= m_attrs
.find((void *)nmcd
.dwItemSpec
);
3556 if ( it
== m_attrs
.end() )
3558 // nothing to do for this item
3559 *result
= CDRF_DODEFAULT
;
3563 wxTreeItemAttr
* const attr
= it
->second
;
3565 wxTreeViewItem
tvItem((void *)nmcd
.dwItemSpec
,
3566 TVIF_STATE
, TVIS_DROPHILITED
);
3568 const UINT tvItemState
= tvItem
.state
;
3570 // selection colours should override ours,
3571 // otherwise it is too confusing to the user
3572 if ( !(nmcd
.uItemState
& CDIS_SELECTED
) &&
3573 !(tvItemState
& TVIS_DROPHILITED
) )
3576 if ( attr
->HasBackgroundColour() )
3578 colBack
= attr
->GetBackgroundColour();
3579 lptvcd
->clrTextBk
= wxColourToRGB(colBack
);
3583 // but we still want to keep the special foreground
3584 // colour when we don't have focus (we can't keep
3585 // it when we do, it would usually be unreadable on
3586 // the almost inverted bg colour...)
3587 if ( ( !(nmcd
.uItemState
& CDIS_SELECTED
) ||
3588 FindFocus() != this ) &&
3589 !(tvItemState
& TVIS_DROPHILITED
) )
3592 if ( attr
->HasTextColour() )
3594 colText
= attr
->GetTextColour();
3595 lptvcd
->clrText
= wxColourToRGB(colText
);
3599 if ( attr
->HasFont() )
3601 HFONT hFont
= GetHfontOf(attr
->GetFont());
3603 ::SelectObject(nmcd
.hdc
, hFont
);
3605 *result
= CDRF_NEWFONT
;
3607 else // no specific font
3609 *result
= CDRF_DODEFAULT
;
3615 *result
= CDRF_DODEFAULT
;
3619 // we always process it
3621 #endif // have owner drawn support in headers
3625 DWORD pos
= GetMessagePos();
3627 point
.x
= LOWORD(pos
);
3628 point
.y
= HIWORD(pos
);
3629 ::MapWindowPoints(HWND_DESKTOP
, GetHwnd(), &point
, 1);
3631 wxTreeItemId item
= HitTest(wxPoint(point
.x
, point
.y
), htFlags
);
3633 if ( htFlags
& wxTREE_HITTEST_ONITEMSTATEICON
)
3635 event
.m_item
= item
;
3636 eventType
= wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
;
3645 TV_HITTESTINFO tvhti
;
3646 ::GetCursorPos(&tvhti
.pt
);
3647 ::ScreenToClient(GetHwnd(), &tvhti
.pt
);
3648 if ( TreeView_HitTest(GetHwnd(), &tvhti
) )
3650 if ( tvhti
.flags
& TVHT_ONITEM
)
3652 event
.m_item
= tvhti
.hItem
;
3653 eventType
= (int)hdr
->code
== NM_DBLCLK
3654 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
3655 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
3657 event
.m_pointDrag
.x
= tvhti
.pt
.x
;
3658 event
.m_pointDrag
.y
= tvhti
.pt
.y
;
3667 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
3670 event
.SetEventType(eventType
);
3672 bool processed
= HandleTreeEvent(event
);
3675 switch ( hdr
->code
)
3678 // we translate NM_DBLCLK into ACTIVATED event and if the user
3679 // handled the activation of the item we shouldn't proceed with
3680 // also using the same double click for toggling the item expanded
3681 // state -- but OTOH do let the user to expand/collapse the item by
3682 // double clicking on it if the activation is not handled specially
3683 *result
= processed
;
3687 // prevent tree control from sending WM_CONTEXTMENU to our parent
3688 // (which it does if NM_RCLICK is not handled) because we want to
3689 // send it to the control itself
3693 ::SendMessage(GetHwnd(), WM_CONTEXTMENU
,
3694 (WPARAM
)GetHwnd(), ::GetMessagePos());
3698 case TVN_BEGINRDRAG
:
3700 if ( event
.IsAllowed() )
3702 // normally this is impossible because the m_dragImage is
3703 // deleted once the drag operation is over
3704 wxASSERT_MSG( !m_dragImage
, wxT("starting to drag once again?") );
3706 m_dragImage
= new wxDragImage(*this, event
.m_item
);
3707 m_dragImage
->BeginDrag(wxPoint(0,0), this);
3708 m_dragImage
->Show();
3710 m_dragStarted
= true;
3712 #endif // wxUSE_DRAGIMAGE
3715 case TVN_DELETEITEM
:
3717 // NB: we might process this message using wxWidgets event
3718 // tables, but due to overhead of wxWin event system we
3719 // prefer to do it here ourself (otherwise deleting a tree
3720 // with many items is just too slow)
3721 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3723 wxTreeItemParam
*param
=
3724 (wxTreeItemParam
*)tv
->itemOld
.lParam
;
3727 processed
= true; // Make sure we don't get called twice
3731 case TVN_BEGINLABELEDIT
:
3732 // return true to cancel label editing
3733 *result
= !event
.IsAllowed();
3735 // set ES_WANTRETURN ( like we do in BeginLabelEdit )
3736 if ( event
.IsAllowed() )
3738 HWND hText
= TreeView_GetEditControl(GetHwnd());
3741 // MBN: if m_textCtrl already has an HWND, it is a stale
3742 // pointer from a previous edit (because the user
3743 // didn't modify the label before dismissing the control,
3744 // and TVN_ENDLABELEDIT was not sent), so delete it
3745 if ( m_textCtrl
&& m_textCtrl
->GetHWND() )
3748 m_textCtrl
= new wxTextCtrl();
3749 m_textCtrl
->SetParent(this);
3750 m_textCtrl
->SetHWND((WXHWND
)hText
);
3751 m_textCtrl
->SubclassWin((WXHWND
)hText
);
3753 // set wxTE_PROCESS_ENTER style for the text control to
3754 // force it to process the Enter presses itself, otherwise
3755 // they could be stolen from it by the dialog
3757 m_textCtrl
->SetWindowStyle(m_textCtrl
->GetWindowStyle()
3758 | wxTE_PROCESS_ENTER
);
3761 else // we had set m_idEdited before
3767 case TVN_ENDLABELEDIT
:
3768 // return true to set the label to the new string: note that we
3769 // also must pretend that we did process the message or it is going
3770 // to be passed to DefWindowProc() which will happily return false
3771 // cancelling the label change
3772 *result
= event
.IsAllowed();
3775 // ensure that we don't have the text ctrl which is going to be
3781 #ifdef TVN_GETINFOTIP
3782 case TVN_GETINFOTIP
:
3784 // If the user permitted a tooltip change, change it
3785 if (event
.IsAllowed())
3787 SetToolTip(event
.m_label
);
3794 case TVN_SELCHANGING
:
3795 case TVN_ITEMEXPANDING
:
3796 // return true to prevent the action from happening
3797 *result
= !event
.IsAllowed();
3800 case TVN_ITEMEXPANDED
:
3802 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
3803 const wxTreeItemId
id(tv
->itemNew
.hItem
);
3805 if ( tv
->action
== TVE_COLLAPSE
)
3807 if ( wxApp::GetComCtl32Version() >= 600 )
3809 // for some reason the item selection rectangle depends
3810 // on whether it is expanded or collapsed (at least
3811 // with comctl32.dll v6): it is wider (by 3 pixels) in
3812 // the expanded state, so when the item collapses and
3813 // then is deselected the rightmost 3 pixels of the
3814 // previously drawn selection are left on the screen
3816 // it's not clear if it's a bug in comctl32.dll or in
3817 // our code (because it does not happen in Explorer but
3818 // OTOH we don't do anything which could result in this
3819 // AFAICS) but we do need to work around it to avoid
3826 // the item is also not refreshed properly after expansion when
3827 // it has an image depending on the expanded/collapsed state:
3828 // again, it's not clear if the bug is in comctl32.dll or our
3830 int image
= GetItemImage(id
, wxTreeItemIcon_Expanded
);
3839 case TVN_GETDISPINFO
:
3840 // NB: so far the user can't set the image himself anyhow, so do it
3841 // anyway - but this may change later
3842 //if ( /* !processed && */ )
3844 wxTreeItemId item
= event
.m_item
;
3845 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
3847 const wxTreeItemParam
* const param
= GetItemParam(item
);
3851 if ( info
->item
.mask
& TVIF_IMAGE
)
3856 IsExpanded(item
) ? wxTreeItemIcon_Expanded
3857 : wxTreeItemIcon_Normal
3860 if ( info
->item
.mask
& TVIF_SELECTEDIMAGE
)
3862 info
->item
.iSelectedImage
=
3865 IsExpanded(item
) ? wxTreeItemIcon_SelectedExpanded
3866 : wxTreeItemIcon_Selected
3873 // for the other messages the return value is ignored and there is
3874 // nothing special to do
3879 // ----------------------------------------------------------------------------
3881 // ----------------------------------------------------------------------------
3883 // why do they define INDEXTOSTATEIMAGEMASK but not the inverse?
3884 #define STATEIMAGEMASKTOINDEX(state) (((state) & TVIS_STATEIMAGEMASK) >> 12)
3886 int wxTreeCtrl::DoGetItemState(const wxTreeItemId
& item
) const
3888 wxCHECK_MSG( item
.IsOk(), wxTREE_ITEMSTATE_NONE
, wxT("invalid tree item") );
3890 // receive the desired information
3891 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
3894 // state images are one-based
3895 return STATEIMAGEMASKTOINDEX(tvItem
.state
) - 1;
3898 void wxTreeCtrl::DoSetItemState(const wxTreeItemId
& item
, int state
)
3900 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
3902 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
3904 // state images are one-based
3905 // 0 if no state image display (wxTREE_ITEMSTATE_NONE = -1)
3906 tvItem
.state
= INDEXTOSTATEIMAGEMASK(state
+ 1);
3911 #endif // wxUSE_TREECTRL