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 // ----------------------------------------------------------------------------
21 #pragma implementation "treectrl.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/msw/private.h"
35 // Set this to 1 to be _absolutely_ sure that repainting will work for all
36 // comctl32.dll versions
37 #define wxUSE_COMCTL32_SAFELY 0
39 // Mingw32 is a bit mental even though this is done in winundef
48 #if defined(__WIN95__)
52 #include "wx/dynarray.h"
53 #include "wx/imaglist.h"
54 #include "wx/settings.h"
55 #include "wx/msw/treectrl.h"
56 #include "wx/msw/dragimag.h"
58 #ifdef __GNUWIN32_OLD__
59 #include "wx/msw/gnuwin32/extra.h"
62 #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
66 // Bug in headers, sometimes
68 #define TVIS_FOCUSED 0x0001
72 #define TV_FIRST 0x1100
75 #ifndef TVS_CHECKBOXES
76 #define TVS_CHECKBOXES 0x0100
79 #ifndef TVS_FULLROWSELECT
80 #define TVS_FULLROWSELECT 0x1000
83 // old headers might miss these messages (comctl32.dll 4.71+ only)
84 #ifndef TVM_SETBKCOLOR
85 #define TVM_SETBKCOLOR (TV_FIRST + 29)
86 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
89 // a macro to hide the ugliness of nested casts
90 #define HITEM(item) (HTREEITEM)(WXHTREEITEM)(item)
92 // the native control doesn't support multiple selections under MSW and we
93 // have 2 ways to emulate them: either using TVS_CHECKBOXES style and let
94 // checkboxes be the selection status (checked == selected) or by really
95 // emulating everything, i.e. intercepting mouse and key events &c. The first
96 // approach is much easier but doesn't work with comctl32.dll < 4.71 and also
98 #define wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE 0
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 // wrapper for TreeView_HitTest
105 static HTREEITEM
GetItemFromPoint(HWND hwndTV
, int x
, int y
)
111 return (HTREEITEM
)TreeView_HitTest(hwndTV
, &tvht
);
114 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
116 // wrappers for TreeView_GetItem/TreeView_SetItem
117 static bool IsItemSelected(HWND hwndTV
, HTREEITEM hItem
)
121 tvi
.mask
= TVIF_STATE
| TVIF_HANDLE
;
122 tvi
.stateMask
= TVIS_SELECTED
;
125 if ( !TreeView_GetItem(hwndTV
, &tvi
) )
127 wxLogLastError(wxT("TreeView_GetItem"));
130 return (tvi
.state
& TVIS_SELECTED
) != 0;
133 static void SelectItem(HWND hwndTV
, HTREEITEM hItem
, bool select
= TRUE
)
136 tvi
.mask
= TVIF_STATE
| TVIF_HANDLE
;
137 tvi
.stateMask
= TVIS_SELECTED
;
138 tvi
.state
= select
? TVIS_SELECTED
: 0;
141 if ( TreeView_SetItem(hwndTV
, &tvi
) == -1 )
143 wxLogLastError(wxT("TreeView_SetItem"));
147 static inline void UnselectItem(HWND hwndTV
, HTREEITEM htItem
)
149 SelectItem(hwndTV
, htItem
, FALSE
);
152 static inline void ToggleItemSelection(HWND hwndTV
, HTREEITEM htItem
)
154 SelectItem(hwndTV
, htItem
, !IsItemSelected(hwndTV
, htItem
));
157 // helper function which selects all items in a range and, optionally,
158 // unselects all others
159 static void SelectRange(HWND hwndTV
,
162 bool unselectOthers
= TRUE
)
164 // find the first (or last) item and select it
166 HTREEITEM htItem
= (HTREEITEM
)TreeView_GetRoot(hwndTV
);
167 while ( htItem
&& cont
)
169 if ( (htItem
== htFirst
) || (htItem
== htLast
) )
171 if ( !IsItemSelected(hwndTV
, htItem
) )
173 SelectItem(hwndTV
, htItem
);
180 if ( unselectOthers
&& IsItemSelected(hwndTV
, htItem
) )
182 UnselectItem(hwndTV
, htItem
);
186 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
189 // select the items in range
190 cont
= htFirst
!= htLast
;
191 while ( htItem
&& cont
)
193 if ( !IsItemSelected(hwndTV
, htItem
) )
195 SelectItem(hwndTV
, htItem
);
198 cont
= (htItem
!= htFirst
) && (htItem
!= htLast
);
200 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
204 if ( unselectOthers
)
208 if ( IsItemSelected(hwndTV
, htItem
) )
210 UnselectItem(hwndTV
, htItem
);
213 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
217 // seems to be necessary - otherwise the just selected items don't always
218 // appear as selected
219 UpdateWindow(hwndTV
);
222 // helper function which tricks the standard control into changing the focused
223 // item without changing anything else (if someone knows why Microsoft doesn't
224 // allow to do it by just setting TVIS_FOCUSED flag, please tell me!)
225 static void SetFocus(HWND hwndTV
, HTREEITEM htItem
)
228 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(hwndTV
);
233 if ( htItem
!= htFocus
)
235 // remember the selection state of the item
236 bool wasSelected
= IsItemSelected(hwndTV
, htItem
);
238 if ( htFocus
&& IsItemSelected(hwndTV
, htFocus
) )
240 // prevent the tree from unselecting the old focus which it
241 // would do by default (TreeView_SelectItem unselects the
243 TreeView_SelectItem(hwndTV
, 0);
244 SelectItem(hwndTV
, htFocus
);
247 TreeView_SelectItem(hwndTV
, htItem
);
251 // need to clear the selection which TreeView_SelectItem() gave
253 UnselectItem(hwndTV
, htItem
);
255 //else: was selected, still selected - ok
257 //else: nothing to do, focus already there
263 bool wasFocusSelected
= IsItemSelected(hwndTV
, htFocus
);
265 // just clear the focus
266 TreeView_SelectItem(hwndTV
, 0);
268 if ( wasFocusSelected
)
270 // restore the selection state
271 SelectItem(hwndTV
, htFocus
);
274 //else: nothing to do, no focus already
278 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
280 // ----------------------------------------------------------------------------
282 // ----------------------------------------------------------------------------
284 // a convenient wrapper around TV_ITEM struct which adds a ctor
286 #pragma warning( disable : 4097 ) // inheriting from typedef
289 struct wxTreeViewItem
: public TV_ITEM
291 wxTreeViewItem(const wxTreeItemId
& item
, // the item handle
292 UINT mask_
, // fields which are valid
293 UINT stateMask_
= 0) // for TVIF_STATE only
297 // hItem member is always valid
298 mask
= mask_
| TVIF_HANDLE
;
299 stateMask
= stateMask_
;
304 // wxVirutalNode is used in place of a single root when 'hidden' root is
306 class wxVirtualNode
: public wxTreeViewItem
309 wxVirtualNode(wxTreeItemData
*data
)
310 : wxTreeViewItem(TVI_ROOT
, 0)
320 wxTreeItemData
*GetData() const { return m_data
; }
321 void SetData(wxTreeItemData
*data
) { delete m_data
; m_data
= data
; }
324 wxTreeItemData
*m_data
;
328 #pragma warning( default : 4097 )
331 // a macro to get the virtual root, returns NULL if none
332 #define GET_VIRTUAL_ROOT() ((wxVirtualNode *)m_pVirtualRoot)
334 // returns TRUE if the item is the virtual root
335 #define IS_VIRTUAL_ROOT(item) (HITEM(item) == TVI_ROOT)
337 // a class which encapsulates the tree traversal logic: it vists all (unless
338 // OnVisit() returns FALSE) items under the given one
339 class wxTreeTraversal
342 wxTreeTraversal(const wxTreeCtrl
*tree
)
347 // do traverse the tree: visit all items (recursively by default) under the
348 // given one; return TRUE if all items were traversed or FALSE if the
349 // traversal was aborted because OnVisit returned FALSE
350 bool DoTraverse(const wxTreeItemId
& root
, bool recursively
= TRUE
);
352 // override this function to do whatever is needed for each item, return
353 // FALSE to stop traversing
354 virtual bool OnVisit(const wxTreeItemId
& item
) = 0;
357 const wxTreeCtrl
*GetTree() const { return m_tree
; }
360 bool Traverse(const wxTreeItemId
& root
, bool recursively
);
362 const wxTreeCtrl
*m_tree
;
365 // internal class for getting the selected items
366 class TraverseSelections
: public wxTreeTraversal
369 TraverseSelections(const wxTreeCtrl
*tree
,
370 wxArrayTreeItemIds
& selections
)
371 : wxTreeTraversal(tree
), m_selections(selections
)
373 m_selections
.Empty();
375 DoTraverse(tree
->GetRootItem());
378 virtual bool OnVisit(const wxTreeItemId
& item
)
380 // can't visit a virtual node.
381 if ( (GetTree()->GetRootItem() == item
) && (GetTree()->GetWindowStyle() & wxTR_HIDE_ROOT
))
386 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
387 if ( GetTree()->IsItemChecked(item
) )
389 if ( ::IsItemSelected(GetHwndOf(GetTree()), HITEM(item
)) )
392 m_selections
.Add(item
);
398 size_t GetCount() const { return m_selections
.GetCount(); }
401 wxArrayTreeItemIds
& m_selections
;
404 // internal class for counting tree items
405 class TraverseCounter
: public wxTreeTraversal
408 TraverseCounter(const wxTreeCtrl
*tree
,
409 const wxTreeItemId
& root
,
411 : wxTreeTraversal(tree
)
415 DoTraverse(root
, recursively
);
418 virtual bool OnVisit(const wxTreeItemId
& WXUNUSED(item
))
425 size_t GetCount() const { return m_count
; }
431 // ----------------------------------------------------------------------------
432 // This class is needed for support of different images: the Win32 common
433 // control natively supports only 2 images (the normal one and another for the
434 // selected state). We wish to provide support for 2 more of them for folder
435 // items (i.e. those which have children): for expanded state and for expanded
436 // selected state. For this we use this structure to store the additional items
439 // There is only one problem with this: when we retrieve the item's data, we
440 // don't know whether we get a pointer to wxTreeItemData or
441 // wxTreeItemIndirectData. So we always set the item id to an invalid value
442 // in this class and the code using the client data checks for it and retrieves
443 // the real client data in this case.
444 // ----------------------------------------------------------------------------
446 class wxTreeItemIndirectData
: public wxTreeItemData
449 // ctor associates this data with the item and the real item data becomes
450 // available through our GetData() method
451 wxTreeItemIndirectData(wxTreeCtrl
*tree
, const wxTreeItemId
& item
)
453 for ( size_t n
= 0; n
< WXSIZEOF(m_images
); n
++ )
459 m_data
= tree
->GetItemData(item
);
461 // and set ourselves as the new one
462 tree
->SetIndirectItemData(item
, this);
464 // we must have the invalid value for the item
468 // dtor deletes the associated data as well
469 virtual ~wxTreeItemIndirectData() { delete m_data
; }
472 // get the real data associated with the item
473 wxTreeItemData
*GetData() const { return m_data
; }
475 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
477 // do we have such image?
478 bool HasImage(wxTreeItemIcon which
) const { return m_images
[which
] != -1; }
480 int GetImage(wxTreeItemIcon which
) const { return m_images
[which
]; }
482 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
485 // all the images associated with the item
486 int m_images
[wxTreeItemIcon_Max
];
488 // the real client data
489 wxTreeItemData
*m_data
;
492 // ----------------------------------------------------------------------------
494 // ----------------------------------------------------------------------------
496 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxControl
)
498 // ----------------------------------------------------------------------------
500 // ----------------------------------------------------------------------------
502 // indices in gs_expandEvents table below
517 // handy table for sending events - it has to be initialized during run-time
518 // now so can't be const any more
519 static /* const */ wxEventType gs_expandEvents
[IDX_WHAT_MAX
][IDX_HOW_MAX
];
522 but logically it's a const table with the following entries:
525 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING },
526 { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING }
530 // ============================================================================
532 // ============================================================================
534 // ----------------------------------------------------------------------------
536 // ----------------------------------------------------------------------------
538 bool wxTreeTraversal::DoTraverse(const wxTreeItemId
& root
, bool recursively
)
540 if ( !OnVisit(root
) )
543 return Traverse(root
, recursively
);
546 bool wxTreeTraversal::Traverse(const wxTreeItemId
& root
, bool recursively
)
549 wxTreeItemId child
= m_tree
->GetFirstChild(root
, cookie
);
550 while ( child
.IsOk() )
552 // depth first traversal
553 if ( recursively
&& !Traverse(child
, TRUE
) )
556 if ( !OnVisit(child
) )
559 child
= m_tree
->GetNextChild(root
, cookie
);
565 // ----------------------------------------------------------------------------
566 // construction and destruction
567 // ----------------------------------------------------------------------------
569 void wxTreeCtrl::Init()
571 m_imageListNormal
= NULL
;
572 m_imageListState
= NULL
;
573 m_ownsImageListNormal
= m_ownsImageListState
= FALSE
;
575 m_hasAnyAttr
= FALSE
;
578 m_pVirtualRoot
= NULL
;
580 // initialize the global array of events now as it can't be done statically
581 // with the wxEVT_XXX values being allocated during run-time only
582 gs_expandEvents
[IDX_COLLAPSE
][IDX_DONE
] = wxEVT_COMMAND_TREE_ITEM_COLLAPSED
;
583 gs_expandEvents
[IDX_COLLAPSE
][IDX_DOING
] = wxEVT_COMMAND_TREE_ITEM_COLLAPSING
;
584 gs_expandEvents
[IDX_EXPAND
][IDX_DONE
] = wxEVT_COMMAND_TREE_ITEM_EXPANDED
;
585 gs_expandEvents
[IDX_EXPAND
][IDX_DOING
] = wxEVT_COMMAND_TREE_ITEM_EXPANDING
;
588 bool wxTreeCtrl::Create(wxWindow
*parent
,
593 const wxValidator
& validator
,
594 const wxString
& name
)
598 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
601 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
|
604 if ( m_windowStyle
& wxCLIP_SIBLINGS
)
605 wstyle
|= WS_CLIPSIBLINGS
;
607 if ((m_windowStyle
& wxTR_NO_LINES
) == 0)
608 wstyle
|= TVS_HASLINES
;
609 if ( m_windowStyle
& wxTR_HAS_BUTTONS
)
610 wstyle
|= TVS_HASBUTTONS
;
612 if ( m_windowStyle
& wxTR_EDIT_LABELS
)
613 wstyle
|= TVS_EDITLABELS
;
615 if ( m_windowStyle
& wxTR_LINES_AT_ROOT
)
616 wstyle
|= TVS_LINESATROOT
;
618 if ( m_windowStyle
& wxTR_FULL_ROW_HIGHLIGHT
)
620 if ( wxTheApp
->GetComCtl32Version() >= 471 )
621 wstyle
|= TVS_FULLROWSELECT
;
624 // using TVS_CHECKBOXES for emulation of a multiselection tree control
625 // doesn't work without the new enough headers
626 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE && \
627 !defined( __GNUWIN32_OLD__ ) && \
628 !defined( __BORLANDC__ ) && \
629 !defined( __WATCOMC__ ) && \
630 (!defined(__VISUALC__) || (__VISUALC__ > 1010))
632 // we emulate the multiple selection tree controls by using checkboxes: set
633 // up the image list we need for this if we do have multiple selections
634 if ( m_windowStyle
& wxTR_MULTIPLE
)
635 wstyle
|= TVS_CHECKBOXES
;
636 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
638 // Create the tree control.
639 if ( !MSWCreateControl(WC_TREEVIEW
, wstyle
) )
642 #if wxUSE_COMCTL32_SAFELY
643 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
644 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
646 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
647 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
649 // This works around a bug in the Windows tree control whereby for some versions
650 // of comctrl32, setting any colour actually draws the background in black.
651 // This will initialise the background to the system colour.
652 // THIS FIX NOW REVERTED since it caused problems on _other_ systems.
653 // Assume the user has an updated comctl32.dll.
654 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0,-1);
655 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
));
656 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
660 // VZ: this is some experimental code which may be used to get the
661 // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71.
662 // AFAIK, the standard DLL does about the same thing anyhow.
664 if ( m_windowStyle
& wxTR_MULTIPLE
)
668 // create the DC compatible with the current screen
669 HDC hdcMem
= CreateCompatibleDC(NULL
);
671 // create a mono bitmap of the standard size
672 int x
= GetSystemMetrics(SM_CXMENUCHECK
);
673 int y
= GetSystemMetrics(SM_CYMENUCHECK
);
674 wxImageList
imagelistCheckboxes(x
, y
, FALSE
, 2);
675 HBITMAP hbmpCheck
= CreateBitmap(x
, y
, // bitmap size
676 1, // # of color planes
677 1, // # bits needed for one pixel
678 0); // array containing colour data
679 SelectObject(hdcMem
, hbmpCheck
);
681 // then draw a check mark into it
682 RECT rect
= { 0, 0, x
, y
};
683 if ( !::DrawFrameControl(hdcMem
, &rect
,
685 DFCS_BUTTONCHECK
| DFCS_CHECKED
) )
687 wxLogLastError(wxT("DrawFrameControl(check)"));
690 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
691 imagelistCheckboxes
.Add(bmp
);
693 if ( !::DrawFrameControl(hdcMem
, &rect
,
697 wxLogLastError(wxT("DrawFrameControl(uncheck)"));
700 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
701 imagelistCheckboxes
.Add(bmp
);
707 SetStateImageList(&imagelistCheckboxes
);
711 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
716 wxTreeCtrl::~wxTreeCtrl()
718 // delete any attributes
721 for ( wxNode
*node
= m_attrs
.Next(); node
; node
= m_attrs
.Next() )
723 delete (wxTreeItemAttr
*)node
->Data();
726 // prevent TVN_DELETEITEM handler from deleting the attributes again!
727 m_hasAnyAttr
= FALSE
;
732 // delete user data to prevent memory leaks
733 // also deletes hidden root node storage.
736 if (m_ownsImageListNormal
) delete m_imageListNormal
;
737 if (m_ownsImageListState
) delete m_imageListState
;
740 // ----------------------------------------------------------------------------
742 // ----------------------------------------------------------------------------
744 // simple wrappers which add error checking in debug mode
746 bool wxTreeCtrl::DoGetItem(wxTreeViewItem
* tvItem
) const
748 wxCHECK_MSG( tvItem
->hItem
!= TVI_ROOT
, FALSE
,
749 _T("can't retrieve virtual root item") );
751 if ( !TreeView_GetItem(GetHwnd(), tvItem
) )
753 wxLogLastError(wxT("TreeView_GetItem"));
761 void wxTreeCtrl::DoSetItem(wxTreeViewItem
* tvItem
)
763 if ( TreeView_SetItem(GetHwnd(), tvItem
) == -1 )
765 wxLogLastError(wxT("TreeView_SetItem"));
769 size_t wxTreeCtrl::GetCount() const
771 return (size_t)TreeView_GetCount(GetHwnd());
774 unsigned int wxTreeCtrl::GetIndent() const
776 return TreeView_GetIndent(GetHwnd());
779 void wxTreeCtrl::SetIndent(unsigned int indent
)
781 TreeView_SetIndent(GetHwnd(), indent
);
784 wxImageList
*wxTreeCtrl::GetImageList() const
786 return m_imageListNormal
;
789 wxImageList
*wxTreeCtrl::GetStateImageList() const
791 return m_imageListNormal
;
794 void wxTreeCtrl::SetAnyImageList(wxImageList
*imageList
, int which
)
797 TreeView_SetImageList(GetHwnd(),
798 imageList
? imageList
->GetHIMAGELIST() : 0,
802 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
804 if (m_ownsImageListNormal
)
805 delete m_imageListNormal
;
807 SetAnyImageList(m_imageListNormal
= imageList
, TVSIL_NORMAL
);
808 m_ownsImageListNormal
= FALSE
;
811 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
813 if (m_ownsImageListState
) delete m_imageListState
;
814 SetAnyImageList(m_imageListState
= imageList
, TVSIL_STATE
);
815 m_ownsImageListState
= FALSE
;
818 void wxTreeCtrl::AssignImageList(wxImageList
*imageList
)
820 SetImageList(imageList
);
821 m_ownsImageListNormal
= TRUE
;
824 void wxTreeCtrl::AssignStateImageList(wxImageList
*imageList
)
826 SetStateImageList(imageList
);
827 m_ownsImageListState
= TRUE
;
830 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
831 bool recursively
) const
833 TraverseCounter
counter(this, item
, recursively
);
835 return counter
.GetCount() - 1;
838 // ----------------------------------------------------------------------------
840 // ----------------------------------------------------------------------------
842 bool wxTreeCtrl::SetBackgroundColour(const wxColour
&colour
)
844 #if !wxUSE_COMCTL32_SAFELY
845 if ( !wxWindowBase::SetBackgroundColour(colour
) )
848 SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0, colour
.GetPixel());
854 bool wxTreeCtrl::SetForegroundColour(const wxColour
&colour
)
856 #if !wxUSE_COMCTL32_SAFELY
857 if ( !wxWindowBase::SetForegroundColour(colour
) )
860 SendMessage(GetHwnd(), TVM_SETTEXTCOLOR
, 0, colour
.GetPixel());
866 // ----------------------------------------------------------------------------
868 // ----------------------------------------------------------------------------
870 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
872 wxChar buf
[512]; // the size is arbitrary...
874 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
875 tvItem
.pszText
= buf
;
876 tvItem
.cchTextMax
= WXSIZEOF(buf
);
877 if ( !DoGetItem(&tvItem
) )
879 // don't return some garbage which was on stack, but an empty string
883 return wxString(buf
);
886 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
888 if ( IS_VIRTUAL_ROOT(item
) )
891 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
892 tvItem
.pszText
= (wxChar
*)text
.c_str(); // conversion is ok
896 int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId
& item
,
897 wxTreeItemIcon which
) const
899 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
900 if ( !DoGetItem(&tvItem
) )
905 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetImage(which
);
908 void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId
& item
,
910 wxTreeItemIcon which
) const
912 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
913 if ( !DoGetItem(&tvItem
) )
918 wxTreeItemIndirectData
*data
= ((wxTreeItemIndirectData
*)tvItem
.lParam
);
920 data
->SetImage(image
, which
);
922 // make sure that we have selected images as well
923 if ( which
== wxTreeItemIcon_Normal
&&
924 !data
->HasImage(wxTreeItemIcon_Selected
) )
926 data
->SetImage(image
, wxTreeItemIcon_Selected
);
929 if ( which
== wxTreeItemIcon_Expanded
&&
930 !data
->HasImage(wxTreeItemIcon_SelectedExpanded
) )
932 data
->SetImage(image
, wxTreeItemIcon_SelectedExpanded
);
936 void wxTreeCtrl::DoSetItemImages(const wxTreeItemId
& item
,
940 wxTreeViewItem
tvItem(item
, TVIF_IMAGE
| TVIF_SELECTEDIMAGE
);
941 tvItem
.iSelectedImage
= imageSel
;
942 tvItem
.iImage
= image
;
946 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
947 wxTreeItemIcon which
) const
949 if ( (HITEM(item
) == TVI_ROOT
) && (m_windowStyle
& wxTR_HIDE_ROOT
) )
951 // TODO: Maybe a hidden root can still provide images?
955 if ( HasIndirectData(item
) )
957 return DoGetItemImageFromData(item
, which
);
964 wxFAIL_MSG( wxT("unknown tree item image type") );
966 case wxTreeItemIcon_Normal
:
970 case wxTreeItemIcon_Selected
:
971 mask
= TVIF_SELECTEDIMAGE
;
974 case wxTreeItemIcon_Expanded
:
975 case wxTreeItemIcon_SelectedExpanded
:
979 wxTreeViewItem
tvItem(item
, mask
);
982 return mask
== TVIF_IMAGE
? tvItem
.iImage
: tvItem
.iSelectedImage
;
985 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
, int image
,
986 wxTreeItemIcon which
)
988 if ( IS_VIRTUAL_ROOT(item
) )
990 // TODO: Maybe a hidden root can still store images?
994 int imageNormal
, imageSel
;
998 wxFAIL_MSG( wxT("unknown tree item image type") );
1000 case wxTreeItemIcon_Normal
:
1001 imageNormal
= image
;
1002 imageSel
= GetItemSelectedImage(item
);
1005 case wxTreeItemIcon_Selected
:
1006 imageNormal
= GetItemImage(item
);
1010 case wxTreeItemIcon_Expanded
:
1011 case wxTreeItemIcon_SelectedExpanded
:
1012 if ( !HasIndirectData(item
) )
1014 // we need to get the old images first, because after we create
1015 // the wxTreeItemIndirectData GetItemXXXImage() will use it to
1017 imageNormal
= GetItemImage(item
);
1018 imageSel
= GetItemSelectedImage(item
);
1020 // if it doesn't have it yet, add it
1021 wxTreeItemIndirectData
*data
= new
1022 wxTreeItemIndirectData(this, item
);
1024 // copy the data to the new location
1025 data
->SetImage(imageNormal
, wxTreeItemIcon_Normal
);
1026 data
->SetImage(imageSel
, wxTreeItemIcon_Selected
);
1029 DoSetItemImageFromData(item
, image
, which
);
1031 // reset the normal/selected images because we won't use them any
1032 // more - now they're stored inside the indirect data
1034 imageSel
= I_IMAGECALLBACK
;
1038 // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always
1039 // change both normal and selected image - otherwise the change simply
1040 // doesn't take place!
1041 DoSetItemImages(item
, imageNormal
, imageSel
);
1044 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
1046 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
1048 // Hidden root may have data.
1049 if ( IS_VIRTUAL_ROOT(item
) )
1051 return GET_VIRTUAL_ROOT()->GetData();
1055 if ( !DoGetItem(&tvItem
) )
1060 wxTreeItemData
*data
= (wxTreeItemData
*)tvItem
.lParam
;
1061 if ( IsDataIndirect(data
) )
1063 data
= ((wxTreeItemIndirectData
*)data
)->GetData();
1069 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
1071 if ( IS_VIRTUAL_ROOT(item
) )
1073 GET_VIRTUAL_ROOT()->SetData(data
);
1076 // first, associate this piece of data with this item
1082 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
1084 if ( HasIndirectData(item
) )
1086 if ( DoGetItem(&tvItem
) )
1088 ((wxTreeItemIndirectData
*)tvItem
.lParam
)->SetData(data
);
1092 wxFAIL_MSG( wxT("failed to change tree items data") );
1097 tvItem
.lParam
= (LPARAM
)data
;
1102 void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId
& item
,
1103 wxTreeItemIndirectData
*data
)
1105 // this should never happen because it's unnecessary and will probably lead
1106 // to crash too because the code elsewhere supposes that the pointer the
1107 // wxTreeItemIndirectData has is a real wxItemData and not
1108 // wxTreeItemIndirectData as well
1109 wxASSERT_MSG( !HasIndirectData(item
), wxT("setting indirect data twice?") );
1111 SetItemData(item
, data
);
1114 bool wxTreeCtrl::HasIndirectData(const wxTreeItemId
& item
) const
1116 // query the item itself
1117 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
1118 if ( !DoGetItem(&tvItem
) )
1123 wxTreeItemData
*data
= (wxTreeItemData
*)tvItem
.lParam
;
1125 return data
&& IsDataIndirect(data
);
1128 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
1130 if ( IS_VIRTUAL_ROOT(item
) )
1133 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1134 tvItem
.cChildren
= (int)has
;
1138 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
1140 if ( IS_VIRTUAL_ROOT(item
) )
1143 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1144 tvItem
.state
= bold
? TVIS_BOLD
: 0;
1148 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
)
1150 if ( IS_VIRTUAL_ROOT(item
) )
1153 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_DROPHILITED
);
1154 tvItem
.state
= highlight
? TVIS_DROPHILITED
: 0;
1158 void wxTreeCtrl::RefreshItem(const wxTreeItemId
& item
)
1160 if ( IS_VIRTUAL_ROOT(item
) )
1164 if ( GetBoundingRect(item
, rect
) )
1170 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
1171 const wxColour
& col
)
1173 m_hasAnyAttr
= TRUE
;
1175 long id
= (long)(WXHTREEITEM
)item
;
1176 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
1179 attr
= new wxTreeItemAttr
;
1180 m_attrs
.Put(id
, (wxObject
*)attr
);
1183 attr
->SetTextColour(col
);
1188 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1189 const wxColour
& col
)
1191 m_hasAnyAttr
= TRUE
;
1193 long id
= (long)(WXHTREEITEM
)item
;
1194 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
1197 attr
= new wxTreeItemAttr
;
1198 m_attrs
.Put(id
, (wxObject
*)attr
);
1201 attr
->SetBackgroundColour(col
);
1206 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1208 m_hasAnyAttr
= TRUE
;
1210 long id
= (long)(WXHTREEITEM
)item
;
1211 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
1214 attr
= new wxTreeItemAttr
;
1215 m_attrs
.Put(id
, (wxObject
*)attr
);
1218 attr
->SetFont(font
);
1223 // ----------------------------------------------------------------------------
1225 // ----------------------------------------------------------------------------
1227 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1229 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
1232 // this ugliness comes directly from MSDN - it *is* the correct way to pass
1233 // the HTREEITEM with TVM_GETITEMRECT
1234 *(WXHTREEITEM
*)&rect
= (WXHTREEITEM
)item
;
1236 // FALSE means get item rect for the whole item, not only text
1237 return SendMessage(GetHwnd(), TVM_GETITEMRECT
, FALSE
, (LPARAM
)&rect
) != 0;
1240 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1242 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1245 return tvItem
.cChildren
!= 0;
1248 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1250 // probably not a good idea to put it here
1251 //wxASSERT( ItemHasChildren(item) );
1253 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDED
);
1256 return (tvItem
.state
& TVIS_EXPANDED
) != 0;
1259 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1261 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_SELECTED
);
1264 return (tvItem
.state
& TVIS_SELECTED
) != 0;
1267 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1269 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1272 return (tvItem
.state
& TVIS_BOLD
) != 0;
1275 // ----------------------------------------------------------------------------
1277 // ----------------------------------------------------------------------------
1279 wxTreeItemId
wxTreeCtrl::GetRootItem() const
1281 // Root may be real (visible) or virtual (hidden).
1282 if ( GET_VIRTUAL_ROOT() )
1285 return wxTreeItemId((WXHTREEITEM
) TreeView_GetRoot(GetHwnd()));
1288 wxTreeItemId
wxTreeCtrl::GetSelection() const
1290 wxCHECK_MSG( !(m_windowStyle
& wxTR_MULTIPLE
), (long)(WXHTREEITEM
)0,
1291 wxT("this only works with single selection controls") );
1293 return wxTreeItemId((WXHTREEITEM
) TreeView_GetSelection(GetHwnd()));
1296 wxTreeItemId
wxTreeCtrl::GetParent(const wxTreeItemId
& item
) const
1300 if ( IS_VIRTUAL_ROOT(item
) )
1302 // no parent for the virtual root
1307 hItem
= TreeView_GetParent(GetHwnd(), HITEM(item
));
1308 if ( !hItem
&& HasFlag(wxTR_HIDE_ROOT
) )
1310 // the top level items should have the virtual root as their parent
1315 return wxTreeItemId((WXHTREEITEM
)hItem
);
1318 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1319 long& _cookie
) const
1321 // remember the last child returned in 'cookie'
1322 _cookie
= (long)TreeView_GetChild(GetHwnd(), HITEM(item
));
1324 return wxTreeItemId((WXHTREEITEM
)_cookie
);
1327 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& WXUNUSED(item
),
1328 long& _cookie
) const
1330 wxTreeItemId l
= wxTreeItemId((WXHTREEITEM
)TreeView_GetNextSibling(GetHwnd(),
1337 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1339 // can this be done more efficiently?
1342 wxTreeItemId childLast
,
1343 child
= GetFirstChild(item
, cookie
);
1344 while ( child
.IsOk() )
1347 child
= GetNextChild(item
, cookie
);
1353 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1355 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextSibling(GetHwnd(), HITEM(item
)));
1358 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1360 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevSibling(GetHwnd(), HITEM(item
)));
1363 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
1365 return wxTreeItemId((WXHTREEITEM
) TreeView_GetFirstVisible(GetHwnd()));
1368 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1370 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetNextVisible() for must be visible itself!"));
1372 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextVisible(GetHwnd(), HITEM(item
)));
1375 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1377 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetPrevVisible() for must be visible itself!"));
1379 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevVisible(GetHwnd(), HITEM(item
)));
1382 // ----------------------------------------------------------------------------
1383 // multiple selections emulation
1384 // ----------------------------------------------------------------------------
1386 bool wxTreeCtrl::IsItemChecked(const wxTreeItemId
& item
) const
1388 // receive the desired information.
1389 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
1392 // state image indices are 1 based
1393 return ((tvItem
.state
>> 12) - 1) == 1;
1396 void wxTreeCtrl::SetItemCheck(const wxTreeItemId
& item
, bool check
)
1398 // receive the desired information.
1399 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
1403 // state images are one-based
1404 tvItem
.state
= (check
? 2 : 1) << 12;
1409 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
& selections
) const
1411 TraverseSelections
selector(this, selections
);
1413 return selector
.GetCount();
1416 // ----------------------------------------------------------------------------
1418 // ----------------------------------------------------------------------------
1420 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parent
,
1421 wxTreeItemId hInsertAfter
,
1422 const wxString
& text
,
1423 int image
, int selectedImage
,
1424 wxTreeItemData
*data
)
1426 wxCHECK_MSG( parent
.IsOk() || !TreeView_GetRoot(GetHwnd()),
1428 _T("can't have more than one root in the tree") );
1430 TV_INSERTSTRUCT tvIns
;
1431 tvIns
.hParent
= HITEM(parent
);
1432 tvIns
.hInsertAfter
= HITEM(hInsertAfter
);
1434 // this is how we insert the item as the first child: supply a NULL
1436 if ( !tvIns
.hInsertAfter
)
1438 tvIns
.hInsertAfter
= TVI_FIRST
;
1442 if ( !text
.IsEmpty() )
1445 tvIns
.item
.pszText
= (wxChar
*)text
.c_str(); // cast is ok
1449 tvIns
.item
.pszText
= NULL
;
1450 tvIns
.item
.cchTextMax
= 0;
1456 tvIns
.item
.iImage
= image
;
1458 if ( selectedImage
== -1 )
1460 // take the same image for selected icon if not specified
1461 selectedImage
= image
;
1465 if ( selectedImage
!= -1 )
1467 mask
|= TVIF_SELECTEDIMAGE
;
1468 tvIns
.item
.iSelectedImage
= selectedImage
;
1474 tvIns
.item
.lParam
= (LPARAM
)data
;
1477 tvIns
.item
.mask
= mask
;
1479 HTREEITEM id
= (HTREEITEM
) TreeView_InsertItem(GetHwnd(), &tvIns
);
1482 wxLogLastError(wxT("TreeView_InsertItem"));
1487 // associate the application tree item with Win32 tree item handle
1488 data
->SetId((WXHTREEITEM
)id
);
1491 return wxTreeItemId((WXHTREEITEM
)id
);
1494 // for compatibility only
1495 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1496 const wxString
& text
,
1497 int image
, int selImage
,
1500 return DoInsertItem(parent
, (WXHTREEITEM
)insertAfter
, text
,
1501 image
, selImage
, NULL
);
1504 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
1505 int image
, int selectedImage
,
1506 wxTreeItemData
*data
)
1509 if ( m_windowStyle
& wxTR_HIDE_ROOT
)
1511 // create a virtual root item, the parent for all the others
1512 m_pVirtualRoot
= new wxVirtualNode(data
);
1517 return DoInsertItem(wxTreeItemId((long)(WXHTREEITEM
) 0), (long)(WXHTREEITEM
) 0,
1518 text
, image
, selectedImage
, data
);
1521 wxTreeItemId
wxTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1522 const wxString
& text
,
1523 int image
, int selectedImage
,
1524 wxTreeItemData
*data
)
1526 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_FIRST
,
1527 text
, image
, selectedImage
, data
);
1530 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1531 const wxTreeItemId
& idPrevious
,
1532 const wxString
& text
,
1533 int image
, int selectedImage
,
1534 wxTreeItemData
*data
)
1536 return DoInsertItem(parent
, idPrevious
, text
, image
, selectedImage
, data
);
1539 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1541 const wxString
& text
,
1542 int image
, int selectedImage
,
1543 wxTreeItemData
*data
)
1545 // find the item from index
1547 wxTreeItemId idPrev
, idCur
= GetFirstChild(parent
, cookie
);
1548 while ( index
!= 0 && idCur
.IsOk() )
1553 idCur
= GetNextChild(parent
, cookie
);
1556 // assert, not check: if the index is invalid, we will append the item
1558 wxASSERT_MSG( index
== 0, _T("bad index in wxTreeCtrl::InsertItem") );
1560 return DoInsertItem(parent
, idPrev
, text
, image
, selectedImage
, data
);
1563 wxTreeItemId
wxTreeCtrl::AppendItem(const wxTreeItemId
& parent
,
1564 const wxString
& text
,
1565 int image
, int selectedImage
,
1566 wxTreeItemData
*data
)
1568 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_LAST
,
1569 text
, image
, selectedImage
, data
);
1572 void wxTreeCtrl::Delete(const wxTreeItemId
& item
)
1574 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item
)) )
1576 wxLogLastError(wxT("TreeView_DeleteItem"));
1580 // delete all children (but don't delete the item itself)
1581 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& item
)
1585 wxArrayLong children
;
1586 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1587 while ( child
.IsOk() )
1589 children
.Add((long)(WXHTREEITEM
)child
);
1591 child
= GetNextChild(item
, cookie
);
1594 size_t nCount
= children
.Count();
1595 for ( size_t n
= 0; n
< nCount
; n
++ )
1597 if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM
)children
[n
]) )
1599 wxLogLastError(wxT("TreeView_DeleteItem"));
1604 void wxTreeCtrl::DeleteAllItems()
1606 // delete stored root item.
1607 delete GET_VIRTUAL_ROOT();
1609 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1611 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1615 void wxTreeCtrl::DoExpand(const wxTreeItemId
& item
, int flag
)
1617 wxASSERT_MSG( flag
== TVE_COLLAPSE
||
1618 flag
== (TVE_COLLAPSE
| TVE_COLLAPSERESET
) ||
1619 flag
== TVE_EXPAND
||
1621 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1623 // A hidden root can be neither expanded nor collapsed.
1624 if ( (HITEM(item
) == TVI_ROOT
) && (m_windowStyle
& wxTR_HIDE_ROOT
) )
1626 // No action will be taken.
1630 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1631 // emulate them. This behaviour has changed slightly with comctl32.dll
1632 // v 4.70 - now it does send them but only the first time. To maintain
1633 // compatible behaviour and also in order to not have surprises with the
1634 // future versions, don't rely on this and still do everything ourselves.
1635 // To avoid that the messages be sent twice when the item is expanded for
1636 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1638 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDEDONCE
);
1642 if ( TreeView_Expand(GetHwnd(), HITEM(item
), flag
) != 0 )
1644 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1645 event
.m_item
= item
;
1646 event
.SetEventObject(this);
1648 // note that the {EXPAND|COLLAPS}ING event is sent by TreeView_Expand()
1650 event
.SetEventType(gs_expandEvents
[IsExpanded(item
) ? IDX_EXPAND
1654 (void)GetEventHandler()->ProcessEvent(event
);
1656 //else: change didn't took place, so do nothing at all
1659 void wxTreeCtrl::Expand(const wxTreeItemId
& item
)
1661 DoExpand(item
, TVE_EXPAND
);
1664 void wxTreeCtrl::Collapse(const wxTreeItemId
& item
)
1666 DoExpand(item
, TVE_COLLAPSE
);
1669 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1671 DoExpand(item
, TVE_COLLAPSE
| TVE_COLLAPSERESET
);
1674 void wxTreeCtrl::Toggle(const wxTreeItemId
& item
)
1676 DoExpand(item
, TVE_TOGGLE
);
1679 void wxTreeCtrl::ExpandItem(const wxTreeItemId
& item
, int action
)
1681 DoExpand(item
, action
);
1684 void wxTreeCtrl::Unselect()
1686 wxASSERT_MSG( !(m_windowStyle
& wxTR_MULTIPLE
),
1687 wxT("doesn't make sense, may be you want UnselectAll()?") );
1689 // just remove the selection
1690 SelectItem(wxTreeItemId((long) (WXHTREEITEM
) 0));
1693 void wxTreeCtrl::UnselectAll()
1695 if ( m_windowStyle
& wxTR_MULTIPLE
)
1697 wxArrayTreeItemIds selections
;
1698 size_t count
= GetSelections(selections
);
1699 for ( size_t n
= 0; n
< count
; n
++ )
1701 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1702 SetItemCheck(selections
[n
], FALSE
);
1703 #else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1704 ::UnselectItem(GetHwnd(), HITEM(selections
[n
]));
1705 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1710 // just remove the selection
1715 void wxTreeCtrl::SelectItem(const wxTreeItemId
& item
)
1717 if ( m_windowStyle
& wxTR_MULTIPLE
)
1719 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1720 // selecting the item means checking it
1722 #else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1723 ::SelectItem(GetHwnd(), HITEM(item
));
1724 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1728 // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive
1729 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1730 // send them ourselves
1732 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1733 event
.m_item
= item
;
1734 event
.SetEventObject(this);
1736 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING
);
1737 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
1739 if ( !TreeView_SelectItem(GetHwnd(), HITEM(item
)) )
1741 wxLogLastError(wxT("TreeView_SelectItem"));
1745 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1746 (void)GetEventHandler()->ProcessEvent(event
);
1749 //else: program vetoed the change
1753 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1756 TreeView_EnsureVisible(GetHwnd(), HITEM(item
));
1759 void wxTreeCtrl::ScrollTo(const wxTreeItemId
& item
)
1761 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item
)) )
1763 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1767 wxTextCtrl
* wxTreeCtrl::GetEditControl() const
1769 // normally, we could try to do something like this to return something
1770 // even when the editing was started by the user and not by calling
1771 // EditLabel() - but as nobody has asked for this so far and there might be
1772 // problems in the code below, I leave it disabled for now (VZ)
1776 HWND hwndText
= TreeView_GetEditControl(GetHwnd());
1779 m_textCtrl
= new wxTextCtrl(this, -1);
1781 m_textCtrl
->SetHWND((WXHWND
)hwndText
);
1783 //else: not editing label right now
1790 void wxTreeCtrl::DeleteTextCtrl()
1794 // the HWND corresponding to this control is deleted by the tree
1795 // control itself and we don't know when exactly this happens, so check
1796 // if the window still exists before calling UnsubclassWin()
1797 if ( !::IsWindow(GetHwndOf(m_textCtrl
)) )
1799 m_textCtrl
->SetHWND(0);
1802 m_textCtrl
->UnsubclassWin();
1803 m_textCtrl
->SetHWND(0);
1809 wxTextCtrl
* wxTreeCtrl::EditLabel(const wxTreeItemId
& item
,
1810 wxClassInfo
* textControlClass
)
1812 wxASSERT( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
1816 HWND hWnd
= (HWND
) TreeView_EditLabel(GetHwnd(), HITEM(item
));
1818 // this is not an error - the TVN_BEGINLABELEDIT handler might have
1825 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1826 m_textCtrl
->SetParent(this);
1827 m_textCtrl
->SetHWND((WXHWND
)hWnd
);
1828 m_textCtrl
->SubclassWin((WXHWND
)hWnd
);
1833 // End label editing, optionally cancelling the edit
1834 void wxTreeCtrl::EndEditLabel(const wxTreeItemId
& WXUNUSED(item
), bool discardChanges
)
1836 TreeView_EndEditLabelNow(GetHwnd(), discardChanges
);
1841 wxTreeItemId
wxTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
1843 TV_HITTESTINFO hitTestInfo
;
1844 hitTestInfo
.pt
.x
= (int)point
.x
;
1845 hitTestInfo
.pt
.y
= (int)point
.y
;
1847 TreeView_HitTest(GetHwnd(), &hitTestInfo
);
1852 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
1853 flags |= wxTREE_HITTEST_##flag
1855 TRANSLATE_FLAG(ABOVE
);
1856 TRANSLATE_FLAG(BELOW
);
1857 TRANSLATE_FLAG(NOWHERE
);
1858 TRANSLATE_FLAG(ONITEMBUTTON
);
1859 TRANSLATE_FLAG(ONITEMICON
);
1860 TRANSLATE_FLAG(ONITEMINDENT
);
1861 TRANSLATE_FLAG(ONITEMLABEL
);
1862 TRANSLATE_FLAG(ONITEMRIGHT
);
1863 TRANSLATE_FLAG(ONITEMSTATEICON
);
1864 TRANSLATE_FLAG(TOLEFT
);
1865 TRANSLATE_FLAG(TORIGHT
);
1867 #undef TRANSLATE_FLAG
1869 return wxTreeItemId((WXHTREEITEM
) hitTestInfo
.hItem
);
1872 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
1874 bool textOnly
) const
1877 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item
),
1880 rect
= wxRect(wxPoint(rc
.left
, rc
.top
), wxPoint(rc
.right
, rc
.bottom
));
1886 // couldn't retrieve rect: for example, item isn't visible
1891 // ----------------------------------------------------------------------------
1893 // ----------------------------------------------------------------------------
1895 // this is just a tiny namespace which is friend to wxTreeCtrl and so can use
1896 // functions such as IsDataIndirect()
1897 class wxTreeSortHelper
1900 static int CALLBACK
Compare(LPARAM data1
, LPARAM data2
, LPARAM tree
);
1903 static wxTreeItemId
GetIdFromData(wxTreeCtrl
*tree
, LPARAM item
)
1905 wxTreeItemData
*data
= (wxTreeItemData
*)item
;
1906 if ( tree
->IsDataIndirect(data
) )
1908 data
= ((wxTreeItemIndirectData
*)data
)->GetData();
1911 return data
->GetId();
1915 int CALLBACK
wxTreeSortHelper::Compare(LPARAM pItem1
,
1919 wxCHECK_MSG( pItem1
&& pItem2
, 0,
1920 wxT("sorting tree without data doesn't make sense") );
1922 wxTreeCtrl
*tree
= (wxTreeCtrl
*)htree
;
1924 return tree
->OnCompareItems(GetIdFromData(tree
, pItem1
),
1925 GetIdFromData(tree
, pItem2
));
1928 int wxTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1929 const wxTreeItemId
& item2
)
1931 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1934 void wxTreeCtrl::SortChildren(const wxTreeItemId
& item
)
1936 // rely on the fact that TreeView_SortChildren does the same thing as our
1937 // default behaviour, i.e. sorts items alphabetically and so call it
1938 // directly if we're not in derived class (much more efficient!)
1939 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl
) )
1941 TreeView_SortChildren(GetHwnd(), HITEM(item
), 0);
1946 tvSort
.hParent
= HITEM(item
);
1947 tvSort
.lpfnCompare
= wxTreeSortHelper::Compare
;
1948 tvSort
.lParam
= (LPARAM
)this;
1949 TreeView_SortChildrenCB(GetHwnd(), &tvSort
, 0 /* reserved */);
1953 // ----------------------------------------------------------------------------
1955 // ----------------------------------------------------------------------------
1957 bool wxTreeCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1959 if ( cmd
== EN_UPDATE
)
1961 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1962 event
.SetEventObject( this );
1963 ProcessCommand(event
);
1965 else if ( cmd
== EN_KILLFOCUS
)
1967 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1968 event
.SetEventObject( this );
1969 ProcessCommand(event
);
1977 // command processed
1981 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
1982 // only do it during dragging, minimize wxWin overhead (this is important for
1983 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
1984 // instead of passing by wxWin events
1985 long wxTreeCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1987 bool processed
= FALSE
;
1989 bool isMultiple
= (GetWindowStyle() & wxTR_MULTIPLE
) != 0;
1991 if ( (nMsg
>= WM_MOUSEFIRST
) && (nMsg
<= WM_MOUSELAST
) )
1993 // we only process mouse messages here and these parameters have the same
1994 // meaning for all of them
1995 int x
= GET_X_LPARAM(lParam
),
1996 y
= GET_Y_LPARAM(lParam
);
1997 HTREEITEM htItem
= GetItemFromPoint(GetHwnd(), x
, y
);
2001 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2002 case WM_LBUTTONDOWN
:
2003 if ( htItem
&& isMultiple
)
2005 if ( wParam
& MK_CONTROL
)
2009 // toggle selected state
2010 ToggleItemSelection(GetHwnd(), htItem
);
2012 ::SetFocus(GetHwnd(), htItem
);
2014 // reset on any click without Shift
2019 else if ( wParam
& MK_SHIFT
)
2021 // this selects all items between the starting one and
2024 if ( !m_htSelStart
)
2026 // take the focused item
2027 m_htSelStart
= (WXHTREEITEM
)
2028 TreeView_GetSelection(GetHwnd());
2031 SelectRange(GetHwnd(), HITEM(m_htSelStart
), htItem
,
2032 !(wParam
& MK_CONTROL
));
2034 ::SetFocus(GetHwnd(), htItem
);
2038 else // normal click
2040 // clear the selection and then let the default handler
2044 // prevent the click from starting in-place editing
2045 // when there was no selection in the control
2046 TreeView_SelectItem(GetHwnd(), 0);
2048 // reset on any click without Shift
2053 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2058 m_dragImage
->Move(wxPoint(x
, y
));
2061 // highlight the item as target (hiding drag image is
2062 // necessary - otherwise the display will be corrupted)
2063 m_dragImage
->Hide();
2064 TreeView_SelectDropTarget(GetHwnd(), htItem
);
2065 m_dragImage
->Show();
2074 m_dragImage
->EndDrag();
2078 // generate the drag end event
2079 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, m_windowId
);
2081 event
.m_item
= (WXHTREEITEM
)htItem
;
2082 event
.m_pointDrag
= wxPoint(x
, y
);
2083 event
.SetEventObject(this);
2085 (void)GetEventHandler()->ProcessEvent(event
);
2087 // if we don't do it, the tree seems to think that 2 items
2088 // are selected simultaneously which is quite weird
2089 TreeView_SelectDropTarget(GetHwnd(), 0);
2094 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2095 else if ( (nMsg
== WM_SETFOCUS
|| nMsg
== WM_KILLFOCUS
) && isMultiple
)
2097 // the tree control greys out the selected item when it loses focus and
2098 // paints it as selected again when it regains it, but it won't do it
2099 // for the other items itself - help it
2100 wxArrayTreeItemIds selections
;
2101 size_t count
= GetSelections(selections
);
2103 for ( size_t n
= 0; n
< count
; n
++ )
2105 // TreeView_GetItemRect() will return FALSE if item is not visible,
2106 // which may happen perfectly well
2107 if ( TreeView_GetItemRect(GetHwnd(), HITEM(selections
[n
]),
2110 ::InvalidateRect(GetHwnd(), &rect
, FALSE
);
2114 else if ( nMsg
== WM_KEYDOWN
&& isMultiple
)
2116 bool bCtrl
= wxIsCtrlDown(),
2117 bShift
= wxIsShiftDown();
2119 // we handle.arrows and space, but not page up/down and home/end: the
2120 // latter should be easy, but not the former
2122 HTREEITEM htSel
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
2123 if ( !m_htSelStart
)
2125 m_htSelStart
= (WXHTREEITEM
)htSel
;
2128 if ( wParam
== VK_SPACE
)
2132 ToggleItemSelection(GetHwnd(), htSel
);
2138 ::SelectItem(GetHwnd(), htSel
);
2143 else if ( wParam
== VK_UP
|| wParam
== VK_DOWN
)
2145 if ( !bCtrl
&& !bShift
)
2147 // no modifiers, just clear selection and then let the default
2148 // processing to take place
2153 (void)wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
2155 HTREEITEM htNext
= (HTREEITEM
)(wParam
== VK_UP
2156 ? TreeView_GetPrevVisible(GetHwnd(), htSel
)
2157 : TreeView_GetNextVisible(GetHwnd(), htSel
));
2161 // at the top/bottom
2167 SelectRange(GetHwnd(), HITEM(m_htSelStart
), htNext
);
2171 // without changing selection
2172 ::SetFocus(GetHwnd(), htNext
);
2179 #endif // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2181 rc
= wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
2186 // process WM_NOTIFY Windows message
2187 bool wxTreeCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
2189 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
2190 wxEventType eventType
= wxEVT_NULL
;
2191 NMHDR
*hdr
= (NMHDR
*)lParam
;
2193 switch ( hdr
->code
)
2196 eventType
= wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2199 case TVN_BEGINRDRAG
:
2201 if ( eventType
== wxEVT_NULL
)
2202 eventType
= wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
2203 //else: left drag, already set above
2205 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
2207 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
2208 event
.m_pointDrag
= wxPoint(tv
->ptDrag
.x
, tv
->ptDrag
.y
);
2210 // don't allow dragging by default: the user code must
2211 // explicitly say that it wants to allow it to avoid breaking
2217 case TVN_BEGINLABELEDIT
:
2219 eventType
= wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
2220 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
2222 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
2223 event
.m_label
= info
->item
.pszText
;
2227 case TVN_DELETEITEM
:
2229 eventType
= wxEVT_COMMAND_TREE_DELETE_ITEM
;
2230 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
2232 event
.m_item
= (WXHTREEITEM
)tv
->itemOld
.hItem
;
2236 delete (wxTreeItemAttr
*)m_attrs
.
2237 Delete((long)tv
->itemOld
.hItem
);
2242 case TVN_ENDLABELEDIT
:
2244 eventType
= wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
2245 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
2247 event
.m_item
= (WXHTREEITEM
)info
->item
.hItem
;
2248 event
.m_label
= info
->item
.pszText
;
2249 if (info
->item
.pszText
== NULL
)
2254 case TVN_GETDISPINFO
:
2255 eventType
= wxEVT_COMMAND_TREE_GET_INFO
;
2258 case TVN_SETDISPINFO
:
2260 if ( eventType
== wxEVT_NULL
)
2261 eventType
= wxEVT_COMMAND_TREE_SET_INFO
;
2262 //else: get, already set above
2264 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
2266 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
2270 case TVN_ITEMEXPANDING
:
2271 case TVN_ITEMEXPANDED
:
2273 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2276 switch ( tv
->action
)
2279 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv
->action
);
2287 what
= IDX_COLLAPSE
;
2291 int how
= (int)hdr
->code
== TVN_ITEMEXPANDING
? IDX_DOING
2294 eventType
= gs_expandEvents
[what
][how
];
2296 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
2302 eventType
= wxEVT_COMMAND_TREE_KEY_DOWN
;
2303 TV_KEYDOWN
*info
= (TV_KEYDOWN
*)lParam
;
2305 // we pass 0 as last CreateKeyEvent() parameter because we
2306 // don't have access to the real key press flags here - but as
2307 // it is only used to determin wxKeyEvent::m_altDown flag it's
2309 event
.m_evtKey
= CreateKeyEvent(wxEVT_KEY_DOWN
,
2310 wxCharCodeMSWToWX(info
->wVKey
),
2313 // a separate event for Space/Return
2314 if ( !wxIsCtrlDown() && !wxIsShiftDown() &&
2315 ((info
->wVKey
== VK_SPACE
) || (info
->wVKey
== VK_RETURN
)) )
2317 wxTreeEvent
event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
2319 event2
.SetEventObject(this);
2320 if ( !(GetWindowStyle() & wxTR_MULTIPLE
) )
2322 event2
.m_item
= GetSelection();
2324 //else: don't know how to get it
2326 (void)GetEventHandler()->ProcessEvent(event2
);
2331 case TVN_SELCHANGED
:
2332 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGED
;
2335 case TVN_SELCHANGING
:
2337 if ( eventType
== wxEVT_NULL
)
2338 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGING
;
2339 //else: already set above
2341 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2343 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
2344 event
.m_itemOld
= (WXHTREEITEM
) tv
->itemOld
.hItem
;
2348 #if defined(_WIN32_IE) && _WIN32_IE >= 0x300 && !wxUSE_COMCTL32_SAFELY && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
2351 LPNMTVCUSTOMDRAW lptvcd
= (LPNMTVCUSTOMDRAW
)lParam
;
2352 NMCUSTOMDRAW
& nmcd
= lptvcd
->nmcd
;
2353 switch ( nmcd
.dwDrawStage
)
2356 // if we've got any items with non standard attributes,
2357 // notify us before painting each item
2358 *result
= m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
2362 case CDDS_ITEMPREPAINT
:
2364 wxTreeItemAttr
*attr
=
2365 (wxTreeItemAttr
*)m_attrs
.Get(nmcd
.dwItemSpec
);
2369 // nothing to do for this item
2370 *result
= CDRF_DODEFAULT
;
2375 wxColour colText
, colBack
;
2376 if ( attr
->HasFont() )
2378 wxFont font
= attr
->GetFont();
2379 hFont
= (HFONT
)font
.GetResourceHandle();
2386 if ( attr
->HasTextColour() )
2388 colText
= attr
->GetTextColour();
2392 colText
= GetForegroundColour();
2395 // selection colours should override ours
2396 if ( nmcd
.uItemState
& CDIS_SELECTED
)
2398 DWORD clrBk
= ::GetSysColor(COLOR_HIGHLIGHT
);
2399 lptvcd
->clrTextBk
= clrBk
;
2401 // try to make the text visible
2402 lptvcd
->clrText
= wxColourToRGB(colText
);
2403 lptvcd
->clrText
|= ~clrBk
;
2404 lptvcd
->clrText
&= 0x00ffffff;
2408 if ( attr
->HasBackgroundColour() )
2410 colBack
= attr
->GetBackgroundColour();
2414 colBack
= GetBackgroundColour();
2417 lptvcd
->clrText
= wxColourToRGB(colText
);
2418 lptvcd
->clrTextBk
= wxColourToRGB(colBack
);
2421 // note that if we wanted to set colours for
2422 // individual columns (subitems), we would have
2423 // returned CDRF_NOTIFYSUBITEMREDRAW from here
2426 ::SelectObject(nmcd
.hdc
, hFont
);
2428 *result
= CDRF_NEWFONT
;
2432 *result
= CDRF_DODEFAULT
;
2438 *result
= CDRF_DODEFAULT
;
2442 // we always process it
2444 #endif // _WIN32_IE >= 0x300
2449 TV_HITTESTINFO tvhti
;
2450 ::GetCursorPos(&tvhti
.pt
);
2451 ::ScreenToClient(GetHwnd(), &tvhti
.pt
);
2452 if ( TreeView_HitTest(GetHwnd(), &tvhti
) )
2454 if ( tvhti
.flags
& TVHT_ONITEM
)
2456 event
.m_item
= (WXHTREEITEM
) tvhti
.hItem
;
2457 eventType
= (int)hdr
->code
== NM_DBLCLK
2458 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2459 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
2461 event
.m_pointDrag
.x
= tvhti
.pt
.x
;
2462 event
.m_pointDrag
.y
= tvhti
.pt
.y
;
2471 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2474 event
.SetEventObject(this);
2475 event
.SetEventType(eventType
);
2477 bool processed
= GetEventHandler()->ProcessEvent(event
);
2480 switch ( hdr
->code
)
2483 // we translate NM_DBLCLK into ACTIVATED event, so don't interpret
2484 // the return code of this event handler as the return value for
2485 // NM_DBLCLK - otherwise, double clicking the item to toggle its
2486 // expanded status would never work
2491 case TVN_BEGINRDRAG
:
2492 if ( event
.IsAllowed() )
2494 // normally this is impossible because the m_dragImage is
2495 // deleted once the drag operation is over
2496 wxASSERT_MSG( !m_dragImage
, _T("starting to drag once again?") );
2498 m_dragImage
= new wxDragImage(*this, event
.m_item
);
2499 m_dragImage
->BeginDrag(wxPoint(0, 0), this);
2500 m_dragImage
->Show();
2504 case TVN_DELETEITEM
:
2506 // NB: we might process this message using wxWindows event
2507 // tables, but due to overhead of wxWin event system we
2508 // prefer to do it here ourself (otherwise deleting a tree
2509 // with many items is just too slow)
2510 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2512 wxTreeItemId item
= event
.m_item
;
2513 if ( HasIndirectData(item
) )
2515 wxTreeItemIndirectData
*data
= (wxTreeItemIndirectData
*)
2517 delete data
; // can't be NULL here
2521 wxTreeItemData
*data
= (wxTreeItemData
*)tv
->itemOld
.lParam
;
2522 delete data
; // may be NULL, ok
2525 processed
= TRUE
; // Make sure we don't get called twice
2529 case TVN_BEGINLABELEDIT
:
2530 // return TRUE to cancel label editing
2531 *result
= !event
.IsAllowed();
2534 case TVN_ENDLABELEDIT
:
2535 // return TRUE to set the label to the new string: note that we
2536 // also must pretend that we did process the message or it is going
2537 // to be passed to DefWindowProc() which will happily return FALSE
2538 // cancelling the label change
2539 *result
= event
.IsAllowed();
2542 // ensure that we don't have the text ctrl which is going to be
2547 case TVN_SELCHANGING
:
2548 case TVN_ITEMEXPANDING
:
2549 // return TRUE to prevent the action from happening
2550 *result
= !event
.IsAllowed();
2553 case TVN_ITEMEXPANDED
:
2554 // the item is not refreshed properly after expansion when it has
2555 // an image depending on the expanded/collapsed state - bug in
2556 // comctl32.dll or our code?
2558 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2559 if ( tv
->action
== TVE_EXPAND
)
2561 wxTreeItemId id
= (WXHTREEITEM
)tv
->itemNew
.hItem
;
2563 int image
= GetItemImage(id
, wxTreeItemIcon_Expanded
);
2572 case TVN_GETDISPINFO
:
2573 // NB: so far the user can't set the image himself anyhow, so do it
2574 // anyway - but this may change later
2575 // if ( /* !processed && */ 1 )
2577 wxTreeItemId item
= event
.m_item
;
2578 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
2579 if ( info
->item
.mask
& TVIF_IMAGE
)
2582 DoGetItemImageFromData
2585 IsExpanded(item
) ? wxTreeItemIcon_Expanded
2586 : wxTreeItemIcon_Normal
2589 if ( info
->item
.mask
& TVIF_SELECTEDIMAGE
)
2591 info
->item
.iSelectedImage
=
2592 DoGetItemImageFromData
2595 IsExpanded(item
) ? wxTreeItemIcon_SelectedExpanded
2596 : wxTreeItemIcon_Selected
2603 // for the other messages the return value is ignored and there is
2604 // nothing special to do
2611 #endif // wxUSE_TREECTRL