1 /////////////////////////////////////////////////////////////////////////////
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 #pragma implementation "treectrl.h"
23 // For compilers that support precompilation, includes "wx.h".
24 #include "wx/wxprec.h"
30 #include "wx/msw/private.h"
32 // Set this to 1 to be _absolutely_ sure that repainting will work for all comctl32.dll versions
33 #define wxUSE_COMCTL32_SAFELY 0
35 // Mingw32 is a bit mental even though this is done in winundef
44 #if defined(__WIN95__)
47 #include "wx/dynarray.h"
48 #include "wx/imaglist.h"
49 #include "wx/settings.h"
50 #include "wx/msw/treectrl.h"
51 #include "wx/msw/dragimag.h"
53 #ifdef __GNUWIN32_OLD__
54 #include "wx/msw/gnuwin32/extra.h"
57 #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) || defined(__TWIN32__))
61 // Bug in headers, sometimes
63 #define TVIS_FOCUSED 0x0001
67 #define TV_FIRST 0x1100
70 #ifndef TVS_CHECKBOXES
71 #define TVS_CHECKBOXES 0x0100
74 // old headers might miss these messages (comctl32.dll 4.71+ only)
75 #ifndef TVM_SETBKCOLOR
76 #define TVM_SETBKCOLOR (TV_FIRST + 29)
77 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
80 // a macro to hide the ugliness of nested casts
81 #define HITEM(item) (HTREEITEM)(WXHTREEITEM)(item)
83 // the native control doesn't support multiple selections under MSW and we
84 // have 2 ways to emulate them: either using TVS_CHECKBOXES style and let
85 // checkboxes be the selection status (checked == selected) or by really
86 // emulating everything, i.e. intercepting mouse and key events &c. The first
87 // approach is much easier but doesn't work with comctl32.dll < 4.71 and also
89 #define wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE 0
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
95 // wrapper for TreeView_HitTest
96 static HTREEITEM
GetItemFromPoint(HWND hwndTV
, int x
, int y
)
102 return (HTREEITEM
)TreeView_HitTest(hwndTV
, &tvht
);
105 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
107 // wrappers for TreeView_GetItem/TreeView_SetItem
108 static bool IsItemSelected(HWND hwndTV
, HTREEITEM hItem
)
111 tvi
.mask
= TVIF_STATE
| TVIF_HANDLE
;
112 tvi
.stateMask
= TVIS_SELECTED
;
115 if ( !TreeView_GetItem(hwndTV
, &tvi
) )
117 wxLogLastError(wxT("TreeView_GetItem"));
120 return (tvi
.state
& TVIS_SELECTED
) != 0;
123 static void SelectItem(HWND hwndTV
, HTREEITEM hItem
, bool select
= TRUE
)
126 tvi
.mask
= TVIF_STATE
| TVIF_HANDLE
;
127 tvi
.stateMask
= TVIS_SELECTED
;
128 tvi
.state
= select
? TVIS_SELECTED
: 0;
131 if ( TreeView_SetItem(hwndTV
, &tvi
) == -1 )
133 wxLogLastError(wxT("TreeView_SetItem"));
137 static inline void UnselectItem(HWND hwndTV
, HTREEITEM htItem
)
139 SelectItem(hwndTV
, htItem
, FALSE
);
142 static inline void ToggleItemSelection(HWND hwndTV
, HTREEITEM htItem
)
144 SelectItem(hwndTV
, htItem
, !IsItemSelected(hwndTV
, htItem
));
147 // helper function which selects all items in a range and, optionally,
148 // unselects all others
149 static void SelectRange(HWND hwndTV
,
152 bool unselectOthers
= TRUE
)
154 // find the first (or last) item and select it
156 HTREEITEM htItem
= (HTREEITEM
)TreeView_GetRoot(hwndTV
);
157 while ( htItem
&& cont
)
159 if ( (htItem
== htFirst
) || (htItem
== htLast
) )
161 if ( !IsItemSelected(hwndTV
, htItem
) )
163 SelectItem(hwndTV
, htItem
);
170 if ( unselectOthers
&& IsItemSelected(hwndTV
, htItem
) )
172 UnselectItem(hwndTV
, htItem
);
176 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
179 // select the items in range
180 cont
= htFirst
!= htLast
;
181 while ( htItem
&& cont
)
183 if ( !IsItemSelected(hwndTV
, htItem
) )
185 SelectItem(hwndTV
, htItem
);
188 cont
= (htItem
!= htFirst
) && (htItem
!= htLast
);
190 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
194 if ( unselectOthers
)
198 if ( IsItemSelected(hwndTV
, htItem
) )
200 UnselectItem(hwndTV
, htItem
);
203 htItem
= (HTREEITEM
)TreeView_GetNextVisible(hwndTV
, htItem
);
207 // seems to be necessary - otherwise the just selected items don't always
208 // appear as selected
209 UpdateWindow(hwndTV
);
212 // helper function which tricks the standard control into changing the focused
213 // item without changing anything else (if someone knows why Microsoft doesn't
214 // allow to do it by just setting TVIS_FOCUSED flag, please tell me!)
215 static void SetFocus(HWND hwndTV
, HTREEITEM htItem
)
218 HTREEITEM htFocus
= (HTREEITEM
)TreeView_GetSelection(hwndTV
);
223 if ( htItem
!= htFocus
)
225 // remember the selection state of the item
226 bool wasSelected
= IsItemSelected(hwndTV
, htItem
);
228 if ( htFocus
&& IsItemSelected(hwndTV
, htFocus
) )
230 // prevent the tree from unselecting the old focus which it
231 // would do by default (TreeView_SelectItem unselects the
233 TreeView_SelectItem(hwndTV
, 0);
234 SelectItem(hwndTV
, htFocus
);
237 TreeView_SelectItem(hwndTV
, htItem
);
241 // need to clear the selection which TreeView_SelectItem() gave
243 UnselectItem(hwndTV
, htItem
);
245 //else: was selected, still selected - ok
247 //else: nothing to do, focus already there
253 bool wasFocusSelected
= IsItemSelected(hwndTV
, htFocus
);
255 // just clear the focus
256 TreeView_SelectItem(hwndTV
, 0);
258 if ( wasFocusSelected
)
260 // restore the selection state
261 SelectItem(hwndTV
, htFocus
);
264 //else: nothing to do, no focus already
268 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
270 // ----------------------------------------------------------------------------
272 // ----------------------------------------------------------------------------
274 // a convenient wrapper around TV_ITEM struct which adds a ctor
276 #pragma warning( disable : 4097 ) // inheriting from typedef
279 struct wxTreeViewItem
: public TV_ITEM
281 wxTreeViewItem(const wxTreeItemId
& item
, // the item handle
282 UINT mask_
, // fields which are valid
283 UINT stateMask_
= 0) // for TVIF_STATE only
285 // hItem member is always valid
286 mask
= mask_
| TVIF_HANDLE
;
287 stateMask
= stateMask_
;
293 #pragma warning( default : 4097 )
296 // a class which encapsulates the tree traversal logic: it vists all (unless
297 // OnVisit() returns FALSE) items under the given one
298 class wxTreeTraversal
301 wxTreeTraversal(const wxTreeCtrl
*tree
)
306 // do traverse the tree: visit all items (recursively by default) under the
307 // given one; return TRUE if all items were traversed or FALSE if the
308 // traversal was aborted because OnVisit returned FALSE
309 bool DoTraverse(const wxTreeItemId
& root
, bool recursively
= TRUE
);
311 // override this function to do whatever is needed for each item, return
312 // FALSE to stop traversing
313 virtual bool OnVisit(const wxTreeItemId
& item
) = 0;
316 const wxTreeCtrl
*GetTree() const { return m_tree
; }
319 bool Traverse(const wxTreeItemId
& root
, bool recursively
);
321 const wxTreeCtrl
*m_tree
;
324 // internal class for getting the selected items
325 class TraverseSelections
: public wxTreeTraversal
328 TraverseSelections(const wxTreeCtrl
*tree
,
329 wxArrayTreeItemIds
& selections
)
330 : wxTreeTraversal(tree
), m_selections(selections
)
332 m_selections
.Empty();
334 DoTraverse(tree
->GetRootItem());
337 virtual bool OnVisit(const wxTreeItemId
& item
)
339 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
340 if ( GetTree()->IsItemChecked(item
) )
342 if ( ::IsItemSelected(GetHwndOf(GetTree()), HITEM(item
)) )
345 m_selections
.Add(item
);
351 size_t GetCount() const { return m_selections
.GetCount(); }
354 wxArrayTreeItemIds
& m_selections
;
357 // internal class for counting tree items
358 class TraverseCounter
: public wxTreeTraversal
361 TraverseCounter(const wxTreeCtrl
*tree
,
362 const wxTreeItemId
& root
,
364 : wxTreeTraversal(tree
)
368 DoTraverse(root
, recursively
);
371 virtual bool OnVisit(const wxTreeItemId
& item
)
378 size_t GetCount() const { return m_count
; }
384 // ----------------------------------------------------------------------------
385 // This class is needed for support of different images: the Win32 common
386 // control natively supports only 2 images (the normal one and another for the
387 // selected state). We wish to provide support for 2 more of them for folder
388 // items (i.e. those which have children): for expanded state and for expanded
389 // selected state. For this we use this structure to store the additional items
392 // There is only one problem with this: when we retrieve the item's data, we
393 // don't know whether we get a pointer to wxTreeItemData or
394 // wxTreeItemIndirectData. So we have to maintain a list of all items which
395 // have indirect data inside the listctrl itself.
396 // ----------------------------------------------------------------------------
398 class wxTreeItemIndirectData
401 // ctor associates this data with the item and the real item data becomes
402 // available through our GetData() method
403 wxTreeItemIndirectData(wxTreeCtrl
*tree
, const wxTreeItemId
& item
)
405 for ( size_t n
= 0; n
< WXSIZEOF(m_images
); n
++ )
411 m_data
= tree
->GetItemData(item
);
413 // and set ourselves as the new one
414 tree
->SetIndirectItemData(item
, this);
417 // dtor deletes the associated data as well
418 ~wxTreeItemIndirectData() { delete m_data
; }
421 // get the real data associated with the item
422 wxTreeItemData
*GetData() const { return m_data
; }
424 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
426 // do we have such image?
427 bool HasImage(wxTreeItemIcon which
) const { return m_images
[which
] != -1; }
429 int GetImage(wxTreeItemIcon which
) const { return m_images
[which
]; }
431 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
434 // all the images associated with the item
435 int m_images
[wxTreeItemIcon_Max
];
437 wxTreeItemData
*m_data
;
440 // ----------------------------------------------------------------------------
442 // ----------------------------------------------------------------------------
444 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxControl
)
446 // ----------------------------------------------------------------------------
448 // ----------------------------------------------------------------------------
450 // handy table for sending events
451 static const wxEventType g_events
[2][2] =
453 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, wxEVT_COMMAND_TREE_ITEM_COLLAPSING
},
454 { wxEVT_COMMAND_TREE_ITEM_EXPANDED
, wxEVT_COMMAND_TREE_ITEM_EXPANDING
}
457 // ============================================================================
459 // ============================================================================
461 // ----------------------------------------------------------------------------
463 // ----------------------------------------------------------------------------
465 bool wxTreeTraversal::DoTraverse(const wxTreeItemId
& root
, bool recursively
)
467 if ( !OnVisit(root
) )
470 return Traverse(root
, recursively
);
473 bool wxTreeTraversal::Traverse(const wxTreeItemId
& root
, bool recursively
)
476 wxTreeItemId child
= m_tree
->GetFirstChild(root
, cookie
);
477 while ( child
.IsOk() )
479 // depth first traversal
480 if ( recursively
&& !Traverse(child
, TRUE
) )
483 if ( !OnVisit(child
) )
486 child
= m_tree
->GetNextChild(root
, cookie
);
492 // ----------------------------------------------------------------------------
493 // construction and destruction
494 // ----------------------------------------------------------------------------
496 void wxTreeCtrl::Init()
498 m_imageListNormal
= NULL
;
499 m_imageListState
= NULL
;
501 m_hasAnyAttr
= FALSE
;
507 bool wxTreeCtrl::Create(wxWindow
*parent
,
512 const wxValidator
& validator
,
513 const wxString
& name
)
517 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
520 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
|
521 TVS_SHOWSELALWAYS
/* | WS_CLIPSIBLINGS */;
523 if ((m_windowStyle
& wxTR_NO_LINES
) == 0)
524 wstyle
|= TVS_HASLINES
;
525 if ( m_windowStyle
& wxTR_HAS_BUTTONS
)
526 wstyle
|= TVS_HASBUTTONS
;
528 if ( m_windowStyle
& wxTR_EDIT_LABELS
)
529 wstyle
|= TVS_EDITLABELS
;
531 if ( m_windowStyle
& wxTR_LINES_AT_ROOT
)
532 wstyle
|= TVS_LINESATROOT
;
534 // using TVS_CHECKBOXES for emulation of a multiselection tree control
535 // doesn't work without the new enough headers
536 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE && \
537 !defined( __GNUWIN32_OLD__ ) && \
538 !defined( __BORLANDC__ ) && \
539 !defined( __WATCOMC__ ) && \
540 (!defined(__VISUALC__) || (__VISUALC__ > 1010))
542 // we emulate the multiple selection tree controls by using checkboxes: set
543 // up the image list we need for this if we do have multiple selections
544 if ( m_windowStyle
& wxTR_MULTIPLE
)
545 wstyle
|= TVS_CHECKBOXES
;
546 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
548 // Create the tree control.
549 if ( !MSWCreateControl(WC_TREEVIEW
, wstyle
) )
552 #if wxUSE_COMCTL32_SAFELY
553 wxWindow::SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
554 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
556 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
557 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
559 // This works around a bug in the Windows tree control whereby for some versions
560 // of comctrl32, setting any colour actually draws the background in black.
561 // This will initialise the background to the system colour.
562 // THIS FIX NOW REVERTED since it caused problems on _other_ systems.
563 // Assume the user has an updated comctl32.dll.
564 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0,-1);
565 wxWindow::SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
566 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
570 // VZ: this is some experimental code which may be used to get the
571 // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71.
572 // AFAIK, the standard DLL does about the same thing anyhow.
574 if ( m_windowStyle
& wxTR_MULTIPLE
)
578 // create the DC compatible with the current screen
579 HDC hdcMem
= CreateCompatibleDC(NULL
);
581 // create a mono bitmap of the standard size
582 int x
= GetSystemMetrics(SM_CXMENUCHECK
);
583 int y
= GetSystemMetrics(SM_CYMENUCHECK
);
584 wxImageList
imagelistCheckboxes(x
, y
, FALSE
, 2);
585 HBITMAP hbmpCheck
= CreateBitmap(x
, y
, // bitmap size
586 1, // # of color planes
587 1, // # bits needed for one pixel
588 0); // array containing colour data
589 SelectObject(hdcMem
, hbmpCheck
);
591 // then draw a check mark into it
592 RECT rect
= { 0, 0, x
, y
};
593 if ( !::DrawFrameControl(hdcMem
, &rect
,
595 DFCS_BUTTONCHECK
| DFCS_CHECKED
) )
597 wxLogLastError(wxT("DrawFrameControl(check)"));
600 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
601 imagelistCheckboxes
.Add(bmp
);
603 if ( !::DrawFrameControl(hdcMem
, &rect
,
607 wxLogLastError(wxT("DrawFrameControl(uncheck)"));
610 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
611 imagelistCheckboxes
.Add(bmp
);
617 SetStateImageList(&imagelistCheckboxes
);
621 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
626 wxTreeCtrl::~wxTreeCtrl()
628 // delete any attributes
631 for ( wxNode
*node
= m_attrs
.Next(); node
; node
= m_attrs
.Next() )
633 delete (wxTreeItemAttr
*)node
->Data();
636 // prevent TVN_DELETEITEM handler from deleting the attributes again!
637 m_hasAnyAttr
= FALSE
;
642 // delete user data to prevent memory leaks
646 // ----------------------------------------------------------------------------
648 // ----------------------------------------------------------------------------
650 // simple wrappers which add error checking in debug mode
652 bool wxTreeCtrl::DoGetItem(wxTreeViewItem
* tvItem
) const
654 if ( !TreeView_GetItem(GetHwnd(), tvItem
) )
656 wxLogLastError(wxT("TreeView_GetItem"));
664 void wxTreeCtrl::DoSetItem(wxTreeViewItem
* tvItem
)
666 if ( TreeView_SetItem(GetHwnd(), tvItem
) == -1 )
668 wxLogLastError(wxT("TreeView_SetItem"));
672 size_t wxTreeCtrl::GetCount() const
674 return (size_t)TreeView_GetCount(GetHwnd());
677 unsigned int wxTreeCtrl::GetIndent() const
679 return TreeView_GetIndent(GetHwnd());
682 void wxTreeCtrl::SetIndent(unsigned int indent
)
684 TreeView_SetIndent(GetHwnd(), indent
);
687 wxImageList
*wxTreeCtrl::GetImageList() const
689 return m_imageListNormal
;
692 wxImageList
*wxTreeCtrl::GetStateImageList() const
694 return m_imageListNormal
;
697 void wxTreeCtrl::SetAnyImageList(wxImageList
*imageList
, int which
)
700 TreeView_SetImageList(GetHwnd(),
701 imageList
? imageList
->GetHIMAGELIST() : 0,
705 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
707 SetAnyImageList(m_imageListNormal
= imageList
, TVSIL_NORMAL
);
710 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
712 SetAnyImageList(m_imageListState
= imageList
, TVSIL_STATE
);
715 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
716 bool recursively
) const
718 TraverseCounter
counter(this, item
, recursively
);
720 return counter
.GetCount() - 1;
723 // ----------------------------------------------------------------------------
725 // ----------------------------------------------------------------------------
727 bool wxTreeCtrl::SetBackgroundColour(const wxColour
&colour
)
729 #if !wxUSE_COMCTL32_SAFELY
730 if ( !wxWindowBase::SetBackgroundColour(colour
) )
733 SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0, colour
.GetPixel());
739 bool wxTreeCtrl::SetForegroundColour(const wxColour
&colour
)
741 #if !wxUSE_COMCTL32_SAFELY
742 if ( !wxWindowBase::SetForegroundColour(colour
) )
745 SendMessage(GetHwnd(), TVM_SETTEXTCOLOR
, 0, colour
.GetPixel());
751 // ----------------------------------------------------------------------------
753 // ----------------------------------------------------------------------------
755 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
757 wxChar buf
[512]; // the size is arbitrary...
759 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
760 tvItem
.pszText
= buf
;
761 tvItem
.cchTextMax
= WXSIZEOF(buf
);
762 if ( !DoGetItem(&tvItem
) )
764 // don't return some garbage which was on stack, but an empty string
768 return wxString(buf
);
771 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
773 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
774 tvItem
.pszText
= (wxChar
*)text
.c_str(); // conversion is ok
778 int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId
& item
,
779 wxTreeItemIcon which
) const
781 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
782 if ( !DoGetItem(&tvItem
) )
787 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetImage(which
);
790 void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId
& item
,
792 wxTreeItemIcon which
) const
794 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
795 if ( !DoGetItem(&tvItem
) )
800 wxTreeItemIndirectData
*data
= ((wxTreeItemIndirectData
*)tvItem
.lParam
);
802 data
->SetImage(image
, which
);
804 // make sure that we have selected images as well
805 if ( which
== wxTreeItemIcon_Normal
&&
806 !data
->HasImage(wxTreeItemIcon_Selected
) )
808 data
->SetImage(image
, wxTreeItemIcon_Selected
);
811 if ( which
== wxTreeItemIcon_Expanded
&&
812 !data
->HasImage(wxTreeItemIcon_SelectedExpanded
) )
814 data
->SetImage(image
, wxTreeItemIcon_SelectedExpanded
);
818 void wxTreeCtrl::DoSetItemImages(const wxTreeItemId
& item
,
822 wxTreeViewItem
tvItem(item
, TVIF_IMAGE
| TVIF_SELECTEDIMAGE
);
823 tvItem
.iSelectedImage
= imageSel
;
824 tvItem
.iImage
= image
;
828 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
829 wxTreeItemIcon which
) const
831 if ( HasIndirectData(item
) )
833 return DoGetItemImageFromData(item
, which
);
840 wxFAIL_MSG( wxT("unknown tree item image type") );
842 case wxTreeItemIcon_Normal
:
846 case wxTreeItemIcon_Selected
:
847 mask
= TVIF_SELECTEDIMAGE
;
850 case wxTreeItemIcon_Expanded
:
851 case wxTreeItemIcon_SelectedExpanded
:
855 wxTreeViewItem
tvItem(item
, mask
);
858 return mask
== TVIF_IMAGE
? tvItem
.iImage
: tvItem
.iSelectedImage
;
861 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
, int image
,
862 wxTreeItemIcon which
)
864 int imageNormal
, imageSel
;
868 wxFAIL_MSG( wxT("unknown tree item image type") );
870 case wxTreeItemIcon_Normal
:
872 imageSel
= GetItemSelectedImage(item
);
875 case wxTreeItemIcon_Selected
:
876 imageNormal
= GetItemImage(item
);
880 case wxTreeItemIcon_Expanded
:
881 case wxTreeItemIcon_SelectedExpanded
:
882 if ( !HasIndirectData(item
) )
884 // we need to get the old images first, because after we create
885 // the wxTreeItemIndirectData GetItemXXXImage() will use it to
887 imageNormal
= GetItemImage(item
);
888 imageSel
= GetItemSelectedImage(item
);
890 // if it doesn't have it yet, add it
891 wxTreeItemIndirectData
*data
= new
892 wxTreeItemIndirectData(this, item
);
894 // copy the data to the new location
895 data
->SetImage(imageNormal
, wxTreeItemIcon_Normal
);
896 data
->SetImage(imageSel
, wxTreeItemIcon_Selected
);
899 DoSetItemImageFromData(item
, image
, which
);
901 // reset the normal/selected images because we won't use them any
902 // more - now they're stored inside the indirect data
904 imageSel
= I_IMAGECALLBACK
;
908 // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always
909 // change both normal and selected image - otherwise the change simply
910 // doesn't take place!
911 DoSetItemImages(item
, imageNormal
, imageSel
);
914 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
916 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
917 if ( !DoGetItem(&tvItem
) )
922 if ( HasIndirectData(item
) )
924 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetData();
928 return (wxTreeItemData
*)tvItem
.lParam
;
932 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
934 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
936 if ( HasIndirectData(item
) )
938 if ( DoGetItem(&tvItem
) )
940 ((wxTreeItemIndirectData
*)tvItem
.lParam
)->SetData(data
);
944 wxFAIL_MSG( wxT("failed to change tree items data") );
949 tvItem
.lParam
= (LPARAM
)data
;
954 void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId
& item
,
955 wxTreeItemIndirectData
*data
)
957 // this should never happen because it's unnecessary and will probably lead
958 // to crash too because the code elsewhere supposes that the pointer the
959 // wxTreeItemIndirectData has is a real wxItemData and not
960 // wxTreeItemIndirectData as well
961 wxASSERT_MSG( !HasIndirectData(item
), wxT("setting indirect data twice?") );
963 SetItemData(item
, (wxTreeItemData
*)data
);
965 m_itemsWithIndirectData
.Add(item
);
968 bool wxTreeCtrl::HasIndirectData(const wxTreeItemId
& item
) const
970 return m_itemsWithIndirectData
.Index(item
) != wxNOT_FOUND
;
973 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
975 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
976 tvItem
.cChildren
= (int)has
;
980 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
982 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
983 tvItem
.state
= bold
? TVIS_BOLD
: 0;
987 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
)
989 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_DROPHILITED
);
990 tvItem
.state
= highlight
? TVIS_DROPHILITED
: 0;
994 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
999 long id
= (long)(WXHTREEITEM
)item
;
1000 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
1003 attr
= new wxTreeItemAttr
;
1004 m_attrs
.Put(id
, (wxObject
*)attr
);
1007 attr
->SetTextColour(col
);
1010 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1011 const wxColour
& col
)
1013 m_hasAnyAttr
= TRUE
;
1015 long id
= (long)(WXHTREEITEM
)item
;
1016 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
1019 attr
= new wxTreeItemAttr
;
1020 m_attrs
.Put(id
, (wxObject
*)attr
);
1023 attr
->SetBackgroundColour(col
);
1026 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1028 m_hasAnyAttr
= TRUE
;
1030 long id
= (long)(WXHTREEITEM
)item
;
1031 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
1034 attr
= new wxTreeItemAttr
;
1035 m_attrs
.Put(id
, (wxObject
*)attr
);
1038 attr
->SetFont(font
);
1041 // ----------------------------------------------------------------------------
1043 // ----------------------------------------------------------------------------
1045 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1047 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
1050 // this ugliness comes directly from MSDN - it *is* the correct way to pass
1051 // the HTREEITEM with TVM_GETITEMRECT
1052 *(WXHTREEITEM
*)&rect
= (WXHTREEITEM
)item
;
1054 // FALSE means get item rect for the whole item, not only text
1055 return SendMessage(GetHwnd(), TVM_GETITEMRECT
, FALSE
, (LPARAM
)&rect
) != 0;
1059 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1061 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
1064 return tvItem
.cChildren
!= 0;
1067 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1069 // probably not a good idea to put it here
1070 //wxASSERT( ItemHasChildren(item) );
1072 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDED
);
1075 return (tvItem
.state
& TVIS_EXPANDED
) != 0;
1078 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1080 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_SELECTED
);
1083 return (tvItem
.state
& TVIS_SELECTED
) != 0;
1086 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1088 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
1091 return (tvItem
.state
& TVIS_BOLD
) != 0;
1094 // ----------------------------------------------------------------------------
1096 // ----------------------------------------------------------------------------
1098 wxTreeItemId
wxTreeCtrl::GetRootItem() const
1100 return wxTreeItemId((WXHTREEITEM
) TreeView_GetRoot(GetHwnd()));
1103 wxTreeItemId
wxTreeCtrl::GetSelection() const
1105 wxCHECK_MSG( !(m_windowStyle
& wxTR_MULTIPLE
), (long)(WXHTREEITEM
)0,
1106 wxT("this only works with single selection controls") );
1108 return wxTreeItemId((WXHTREEITEM
) TreeView_GetSelection(GetHwnd()));
1111 wxTreeItemId
wxTreeCtrl::GetParent(const wxTreeItemId
& item
) const
1113 return wxTreeItemId((WXHTREEITEM
) TreeView_GetParent(GetHwnd(), HITEM(item
)));
1116 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1117 long& _cookie
) const
1119 // remember the last child returned in 'cookie'
1120 _cookie
= (long)TreeView_GetChild(GetHwnd(), HITEM(item
));
1122 return wxTreeItemId((WXHTREEITEM
)_cookie
);
1125 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& WXUNUSED(item
),
1126 long& _cookie
) const
1128 wxTreeItemId l
= wxTreeItemId((WXHTREEITEM
)TreeView_GetNextSibling(GetHwnd(),
1135 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1137 // can this be done more efficiently?
1140 wxTreeItemId childLast
,
1141 child
= GetFirstChild(item
, cookie
);
1142 while ( child
.IsOk() )
1145 child
= GetNextChild(item
, cookie
);
1151 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1153 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextSibling(GetHwnd(), HITEM(item
)));
1156 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1158 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevSibling(GetHwnd(), HITEM(item
)));
1161 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
1163 return wxTreeItemId((WXHTREEITEM
) TreeView_GetFirstVisible(GetHwnd()));
1166 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1168 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetNextVisible() for must be visible itself!"));
1170 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextVisible(GetHwnd(), HITEM(item
)));
1173 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1175 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetPrevVisible() for must be visible itself!"));
1177 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevVisible(GetHwnd(), HITEM(item
)));
1180 // ----------------------------------------------------------------------------
1181 // multiple selections emulation
1182 // ----------------------------------------------------------------------------
1184 bool wxTreeCtrl::IsItemChecked(const wxTreeItemId
& item
) const
1186 // receive the desired information.
1187 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
1190 // state image indices are 1 based
1191 return ((tvItem
.state
>> 12) - 1) == 1;
1194 void wxTreeCtrl::SetItemCheck(const wxTreeItemId
& item
, bool check
)
1196 // receive the desired information.
1197 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
1199 // state images are one-based
1200 tvItem
.state
= (check
? 2 : 1) << 12;
1205 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
& selections
) const
1207 TraverseSelections
selector(this, selections
);
1209 return selector
.GetCount();
1212 // ----------------------------------------------------------------------------
1214 // ----------------------------------------------------------------------------
1216 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parent
,
1217 wxTreeItemId hInsertAfter
,
1218 const wxString
& text
,
1219 int image
, int selectedImage
,
1220 wxTreeItemData
*data
)
1222 wxCHECK_MSG( parent
.IsOk() || !TreeView_GetRoot(GetHwnd()),
1224 _T("can't have more than one root in the tree") );
1226 TV_INSERTSTRUCT tvIns
;
1227 tvIns
.hParent
= HITEM(parent
);
1228 tvIns
.hInsertAfter
= HITEM(hInsertAfter
);
1230 // this is how we insert the item as the first child: supply a NULL
1232 if ( !tvIns
.hInsertAfter
)
1234 tvIns
.hInsertAfter
= TVI_FIRST
;
1238 if ( !text
.IsEmpty() )
1241 tvIns
.item
.pszText
= (wxChar
*)text
.c_str(); // cast is ok
1245 tvIns
.item
.pszText
= NULL
;
1246 tvIns
.item
.cchTextMax
= 0;
1252 tvIns
.item
.iImage
= image
;
1254 if ( selectedImage
== -1 )
1256 // take the same image for selected icon if not specified
1257 selectedImage
= image
;
1261 if ( selectedImage
!= -1 )
1263 mask
|= TVIF_SELECTEDIMAGE
;
1264 tvIns
.item
.iSelectedImage
= selectedImage
;
1270 tvIns
.item
.lParam
= (LPARAM
)data
;
1273 tvIns
.item
.mask
= mask
;
1275 HTREEITEM id
= (HTREEITEM
) TreeView_InsertItem(GetHwnd(), &tvIns
);
1278 wxLogLastError(wxT("TreeView_InsertItem"));
1283 // associate the application tree item with Win32 tree item handle
1284 data
->SetId((WXHTREEITEM
)id
);
1287 return wxTreeItemId((WXHTREEITEM
)id
);
1290 // for compatibility only
1291 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1292 const wxString
& text
,
1293 int image
, int selImage
,
1296 return DoInsertItem(parent
, (WXHTREEITEM
)insertAfter
, text
,
1297 image
, selImage
, NULL
);
1300 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
1301 int image
, int selectedImage
,
1302 wxTreeItemData
*data
)
1304 return DoInsertItem(wxTreeItemId((long) (WXHTREEITEM
) 0), (long)(WXHTREEITEM
) 0,
1305 text
, image
, selectedImage
, data
);
1308 wxTreeItemId
wxTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1309 const wxString
& text
,
1310 int image
, int selectedImage
,
1311 wxTreeItemData
*data
)
1313 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_FIRST
,
1314 text
, image
, selectedImage
, data
);
1317 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1318 const wxTreeItemId
& idPrevious
,
1319 const wxString
& text
,
1320 int image
, int selectedImage
,
1321 wxTreeItemData
*data
)
1323 return DoInsertItem(parent
, idPrevious
, text
, image
, selectedImage
, data
);
1326 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1328 const wxString
& text
,
1329 int image
, int selectedImage
,
1330 wxTreeItemData
*data
)
1332 // find the item from index
1334 wxTreeItemId idPrev
, idCur
= GetFirstChild(parent
, cookie
);
1335 while ( index
!= 0 && idCur
.IsOk() )
1340 idCur
= GetNextChild(parent
, cookie
);
1343 // assert, not check: if the index is invalid, we will append the item
1345 wxASSERT_MSG( index
== 0, _T("bad index in wxTreeCtrl::InsertItem") );
1347 return DoInsertItem(parent
, idPrev
, text
, image
, selectedImage
, data
);
1350 wxTreeItemId
wxTreeCtrl::AppendItem(const wxTreeItemId
& parent
,
1351 const wxString
& text
,
1352 int image
, int selectedImage
,
1353 wxTreeItemData
*data
)
1355 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_LAST
,
1356 text
, image
, selectedImage
, data
);
1359 void wxTreeCtrl::Delete(const wxTreeItemId
& item
)
1361 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item
)) )
1363 wxLogLastError(wxT("TreeView_DeleteItem"));
1367 // delete all children (but don't delete the item itself)
1368 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& item
)
1372 wxArrayLong children
;
1373 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1374 while ( child
.IsOk() )
1376 children
.Add((long)(WXHTREEITEM
)child
);
1378 child
= GetNextChild(item
, cookie
);
1381 size_t nCount
= children
.Count();
1382 for ( size_t n
= 0; n
< nCount
; n
++ )
1384 if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM
)children
[n
]) )
1386 wxLogLastError(wxT("TreeView_DeleteItem"));
1391 void wxTreeCtrl::DeleteAllItems()
1393 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1395 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1399 void wxTreeCtrl::DoExpand(const wxTreeItemId
& item
, int flag
)
1401 wxASSERT_MSG( flag
== TVE_COLLAPSE
||
1402 flag
== (TVE_COLLAPSE
| TVE_COLLAPSERESET
) ||
1403 flag
== TVE_EXPAND
||
1405 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1407 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1408 // emulate them. This behaviour has changed slightly with comctl32.dll
1409 // v 4.70 - now it does send them but only the first time. To maintain
1410 // compatible behaviour and also in order to not have surprises with the
1411 // future versions, don't rely on this and still do everything ourselves.
1412 // To avoid that the messages be sent twice when the item is expanded for
1413 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1415 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDEDONCE
);
1419 if ( TreeView_Expand(GetHwnd(), HITEM(item
), flag
) != 0 )
1421 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1422 event
.m_item
= item
;
1424 bool isExpanded
= IsExpanded(item
);
1426 event
.SetEventObject(this);
1428 // FIXME return value of {EXPAND|COLLAPS}ING event handler is discarded
1429 event
.SetEventType(g_events
[isExpanded
][TRUE
]);
1430 GetEventHandler()->ProcessEvent(event
);
1432 event
.SetEventType(g_events
[isExpanded
][FALSE
]);
1433 GetEventHandler()->ProcessEvent(event
);
1435 //else: change didn't took place, so do nothing at all
1438 void wxTreeCtrl::Expand(const wxTreeItemId
& item
)
1440 DoExpand(item
, TVE_EXPAND
);
1443 void wxTreeCtrl::Collapse(const wxTreeItemId
& item
)
1445 DoExpand(item
, TVE_COLLAPSE
);
1448 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1450 DoExpand(item
, TVE_COLLAPSE
| TVE_COLLAPSERESET
);
1453 void wxTreeCtrl::Toggle(const wxTreeItemId
& item
)
1455 DoExpand(item
, TVE_TOGGLE
);
1458 void wxTreeCtrl::ExpandItem(const wxTreeItemId
& item
, int action
)
1460 DoExpand(item
, action
);
1463 void wxTreeCtrl::Unselect()
1465 wxASSERT_MSG( !(m_windowStyle
& wxTR_MULTIPLE
),
1466 wxT("doesn't make sense, may be you want UnselectAll()?") );
1468 // just remove the selection
1469 SelectItem(wxTreeItemId((long) (WXHTREEITEM
) 0));
1472 void wxTreeCtrl::UnselectAll()
1474 if ( m_windowStyle
& wxTR_MULTIPLE
)
1476 wxArrayTreeItemIds selections
;
1477 size_t count
= GetSelections(selections
);
1478 for ( size_t n
= 0; n
< count
; n
++ )
1480 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1481 SetItemCheck(selections
[n
], FALSE
);
1482 #else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1483 ::UnselectItem(GetHwnd(), HITEM(selections
[n
]));
1484 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1489 // just remove the selection
1494 void wxTreeCtrl::SelectItem(const wxTreeItemId
& item
)
1496 if ( m_windowStyle
& wxTR_MULTIPLE
)
1498 #if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1499 // selecting the item means checking it
1501 #else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1502 ::SelectItem(GetHwnd(), HITEM(item
));
1503 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1507 // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive
1508 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1509 // send them ourselves
1511 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1512 event
.m_item
= item
;
1513 event
.SetEventObject(this);
1515 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING
);
1516 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
1518 if ( !TreeView_SelectItem(GetHwnd(), HITEM(item
)) )
1520 wxLogLastError(wxT("TreeView_SelectItem"));
1524 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1525 (void)GetEventHandler()->ProcessEvent(event
);
1528 //else: program vetoed the change
1532 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1535 TreeView_EnsureVisible(GetHwnd(), HITEM(item
));
1538 void wxTreeCtrl::ScrollTo(const wxTreeItemId
& item
)
1540 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item
)) )
1542 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1546 wxTextCtrl
* wxTreeCtrl::GetEditControl() const
1548 // normally, we could try to do something like this to return something
1549 // even when the editing was started by the user and not by calling
1550 // EditLabel() - but as nobody has asked for this so far and there might be
1551 // problems in the code below, I leave it disabled for now (VZ)
1555 HWND hwndText
= TreeView_GetEditControl(GetHwnd());
1558 m_textCtrl
= new wxTextCtrl(this, -1);
1560 m_textCtrl
->SetHWND((WXHWND
)hwndText
);
1562 //else: not editing label right now
1569 void wxTreeCtrl::DeleteTextCtrl()
1573 m_textCtrl
->UnsubclassWin();
1574 m_textCtrl
->SetHWND(0);
1580 wxTextCtrl
* wxTreeCtrl::EditLabel(const wxTreeItemId
& item
,
1581 wxClassInfo
* textControlClass
)
1583 wxASSERT( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
1587 HWND hWnd
= (HWND
) TreeView_EditLabel(GetHwnd(), HITEM(item
));
1589 // this is not an error - the TVN_BEGINLABELEDIT handler might have
1596 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1597 m_textCtrl
->SetHWND((WXHWND
)hWnd
);
1598 m_textCtrl
->SubclassWin((WXHWND
)hWnd
);
1603 // End label editing, optionally cancelling the edit
1604 void wxTreeCtrl::EndEditLabel(const wxTreeItemId
& item
, bool discardChanges
)
1606 TreeView_EndEditLabelNow(GetHwnd(), discardChanges
);
1611 wxTreeItemId
wxTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
1613 TV_HITTESTINFO hitTestInfo
;
1614 hitTestInfo
.pt
.x
= (int)point
.x
;
1615 hitTestInfo
.pt
.y
= (int)point
.y
;
1617 TreeView_HitTest(GetHwnd(), &hitTestInfo
);
1622 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
1623 flags |= wxTREE_HITTEST_##flag
1625 TRANSLATE_FLAG(ABOVE
);
1626 TRANSLATE_FLAG(BELOW
);
1627 TRANSLATE_FLAG(NOWHERE
);
1628 TRANSLATE_FLAG(ONITEMBUTTON
);
1629 TRANSLATE_FLAG(ONITEMICON
);
1630 TRANSLATE_FLAG(ONITEMINDENT
);
1631 TRANSLATE_FLAG(ONITEMLABEL
);
1632 TRANSLATE_FLAG(ONITEMRIGHT
);
1633 TRANSLATE_FLAG(ONITEMSTATEICON
);
1634 TRANSLATE_FLAG(TOLEFT
);
1635 TRANSLATE_FLAG(TORIGHT
);
1637 #undef TRANSLATE_FLAG
1639 return wxTreeItemId((WXHTREEITEM
) hitTestInfo
.hItem
);
1642 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
1644 bool textOnly
) const
1647 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item
),
1650 rect
= wxRect(wxPoint(rc
.left
, rc
.top
), wxPoint(rc
.right
, rc
.bottom
));
1656 // couldn't retrieve rect: for example, item isn't visible
1661 // ----------------------------------------------------------------------------
1663 // ----------------------------------------------------------------------------
1665 static int CALLBACK
TreeView_CompareCallback(wxTreeItemData
*pItem1
,
1666 wxTreeItemData
*pItem2
,
1669 wxCHECK_MSG( pItem1
&& pItem2
, 0,
1670 wxT("sorting tree without data doesn't make sense") );
1672 return tree
->OnCompareItems(pItem1
->GetId(), pItem2
->GetId());
1675 int wxTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1676 const wxTreeItemId
& item2
)
1678 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1681 void wxTreeCtrl::SortChildren(const wxTreeItemId
& item
)
1683 // rely on the fact that TreeView_SortChildren does the same thing as our
1684 // default behaviour, i.e. sorts items alphabetically and so call it
1685 // directly if we're not in derived class (much more efficient!)
1686 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl
) )
1688 TreeView_SortChildren(GetHwnd(), HITEM(item
), 0);
1693 tvSort
.hParent
= HITEM(item
);
1694 tvSort
.lpfnCompare
= (PFNTVCOMPARE
)TreeView_CompareCallback
;
1695 tvSort
.lParam
= (LPARAM
)this;
1696 TreeView_SortChildrenCB(GetHwnd(), &tvSort
, 0 /* reserved */);
1700 // ----------------------------------------------------------------------------
1702 // ----------------------------------------------------------------------------
1704 bool wxTreeCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1706 if ( cmd
== EN_UPDATE
)
1708 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1709 event
.SetEventObject( this );
1710 ProcessCommand(event
);
1712 else if ( cmd
== EN_KILLFOCUS
)
1714 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1715 event
.SetEventObject( this );
1716 ProcessCommand(event
);
1724 // command processed
1728 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
1729 // only do it during dragging, minimize wxWin overhead (this is important for
1730 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
1731 // instead of passing by wxWin events
1732 long wxTreeCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1734 bool processed
= FALSE
;
1737 bool isMultiple
= (GetWindowStyle() & wxTR_MULTIPLE
) != 0;
1739 if ( (nMsg
>= WM_MOUSEFIRST
) && (nMsg
<= WM_MOUSELAST
) )
1741 // we only process mouse messages here and these parameters have the same
1742 // meaning for all of them
1743 int x
= GET_X_LPARAM(lParam
),
1744 y
= GET_Y_LPARAM(lParam
);
1745 HTREEITEM htItem
= GetItemFromPoint(GetHwnd(), x
, y
);
1749 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1750 case WM_LBUTTONDOWN
:
1751 if ( htItem
&& isMultiple
)
1753 if ( wParam
& MK_CONTROL
)
1757 // toggle selected state
1758 ToggleItemSelection(GetHwnd(), htItem
);
1760 ::SetFocus(GetHwnd(), htItem
);
1762 // reset on any click without Shift
1767 else if ( wParam
& MK_SHIFT
)
1769 // this selects all items between the starting one and
1772 if ( !m_htSelStart
)
1774 // take the focused item
1775 m_htSelStart
= (WXHTREEITEM
)
1776 TreeView_GetSelection(GetHwnd());
1779 SelectRange(GetHwnd(), HITEM(m_htSelStart
), htItem
,
1780 !(wParam
& MK_CONTROL
));
1782 ::SetFocus(GetHwnd(), htItem
);
1786 else // normal click
1788 // clear the selection and then let the default handler
1792 // prevent the click from starting in-place editing
1793 // when there was no selection in the control
1794 TreeView_SelectItem(GetHwnd(), 0);
1796 // reset on any click without Shift
1801 #endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1806 m_dragImage
->Move(wxPoint(x
, y
));
1809 // highlight the item as target (hiding drag image is
1810 // necessary - otherwise the display will be corrupted)
1811 m_dragImage
->Hide();
1812 TreeView_SelectDropTarget(GetHwnd(), htItem
);
1813 m_dragImage
->Show();
1822 m_dragImage
->EndDrag();
1826 // generate the drag end event
1827 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, m_windowId
);
1829 event
.m_item
= (WXHTREEITEM
)htItem
;
1830 event
.m_pointDrag
= wxPoint(x
, y
);
1831 event
.SetEventObject(this);
1833 (void)GetEventHandler()->ProcessEvent(event
);
1835 // if we don't do it, the tree seems to think that 2 items
1836 // are selected simultaneously which is quite weird
1837 TreeView_SelectDropTarget(GetHwnd(), 0);
1842 #if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1843 else if ( (nMsg
== WM_SETFOCUS
|| nMsg
== WM_KILLFOCUS
) && isMultiple
)
1845 // the tree control greys out the selected item when it loses focus and
1846 // paints it as selected again when it regains it, but it won't do it
1847 // for the other items itself - help it
1848 wxArrayTreeItemIds selections
;
1849 size_t count
= GetSelections(selections
);
1851 for ( size_t n
= 0; n
< count
; n
++ )
1853 // TreeView_GetItemRect() will return FALSE if item is not visible,
1854 // which may happen perfectly well
1855 if ( TreeView_GetItemRect(GetHwnd(), HITEM(selections
[n
]),
1858 ::InvalidateRect(GetHwnd(), &rect
, FALSE
);
1862 else if ( nMsg
== WM_KEYDOWN
&& isMultiple
)
1864 bool bCtrl
= wxIsCtrlDown(),
1865 bShift
= wxIsShiftDown();
1867 // we handle.arrows and space, but not page up/down and home/end: the
1868 // latter should be easy, but not the former
1870 HTREEITEM htSel
= (HTREEITEM
)TreeView_GetSelection(GetHwnd());
1871 if ( !m_htSelStart
)
1873 m_htSelStart
= (WXHTREEITEM
)htSel
;
1876 if ( wParam
== VK_SPACE
)
1880 ToggleItemSelection(GetHwnd(), htSel
);
1886 ::SelectItem(GetHwnd(), htSel
);
1891 else if ( wParam
== VK_UP
|| wParam
== VK_DOWN
)
1893 if ( !bCtrl
&& !bShift
)
1895 // no modifiers, just clear selection and then let the default
1896 // processing to take place
1901 (void)wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1903 HTREEITEM htNext
= (HTREEITEM
)(wParam
== VK_UP
1904 ? TreeView_GetPrevVisible(GetHwnd(), htSel
)
1905 : TreeView_GetNextVisible(GetHwnd(), htSel
));
1909 // at the top/bottom
1915 SelectRange(GetHwnd(), HITEM(m_htSelStart
), htNext
);
1919 // without changing selection
1920 ::SetFocus(GetHwnd(), htNext
);
1927 #endif // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1930 rc
= wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1935 // process WM_NOTIFY Windows message
1936 bool wxTreeCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1938 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1939 wxEventType eventType
= wxEVT_NULL
;
1940 NMHDR
*hdr
= (NMHDR
*)lParam
;
1942 switch ( hdr
->code
)
1945 eventType
= wxEVT_COMMAND_TREE_BEGIN_DRAG
;
1948 case TVN_BEGINRDRAG
:
1950 if ( eventType
== wxEVT_NULL
)
1951 eventType
= wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
1952 //else: left drag, already set above
1954 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
1956 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1957 event
.m_pointDrag
= wxPoint(tv
->ptDrag
.x
, tv
->ptDrag
.y
);
1959 // don't allow dragging by default: the user code must
1960 // explicitly say that it wants to allow it to avoid breaking
1966 case TVN_BEGINLABELEDIT
:
1968 eventType
= wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
1969 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1971 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
1972 event
.m_label
= info
->item
.pszText
;
1976 case TVN_DELETEITEM
:
1978 eventType
= wxEVT_COMMAND_TREE_DELETE_ITEM
;
1979 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
1981 event
.m_item
= (WXHTREEITEM
)tv
->itemOld
.hItem
;
1985 delete (wxTreeItemAttr
*)m_attrs
.
1986 Delete((long)tv
->itemOld
.hItem
);
1991 case TVN_ENDLABELEDIT
:
1993 eventType
= wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
1994 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1996 event
.m_item
= (WXHTREEITEM
)info
->item
.hItem
;
1997 event
.m_label
= info
->item
.pszText
;
1998 if (info
->item
.pszText
== NULL
)
2003 case TVN_GETDISPINFO
:
2004 eventType
= wxEVT_COMMAND_TREE_GET_INFO
;
2007 case TVN_SETDISPINFO
:
2009 if ( eventType
== wxEVT_NULL
)
2010 eventType
= wxEVT_COMMAND_TREE_SET_INFO
;
2011 //else: get, already set above
2013 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
2015 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
2019 case TVN_ITEMEXPANDING
:
2020 event
.m_code
= FALSE
;
2023 case TVN_ITEMEXPANDED
:
2025 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2027 bool expand
= FALSE
;
2028 switch ( tv
->action
)
2039 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv
->action
);
2042 bool ing
= ((int)hdr
->code
== TVN_ITEMEXPANDING
);
2043 eventType
= g_events
[expand
][ing
];
2045 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
2051 eventType
= wxEVT_COMMAND_TREE_KEY_DOWN
;
2052 TV_KEYDOWN
*info
= (TV_KEYDOWN
*)lParam
;
2054 event
.m_code
= wxCharCodeMSWToWX(info
->wVKey
);
2056 // a separate event for Space/Return
2057 if ( !wxIsCtrlDown() && !wxIsShiftDown() &&
2058 ((info
->wVKey
== VK_SPACE
) || (info
->wVKey
== VK_RETURN
)) )
2060 wxTreeEvent
event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
2062 event2
.SetEventObject(this);
2063 if ( !(GetWindowStyle() & wxTR_MULTIPLE
) )
2065 event2
.m_item
= GetSelection();
2067 //else: don't know how to get it
2069 (void)GetEventHandler()->ProcessEvent(event2
);
2074 case TVN_SELCHANGED
:
2075 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGED
;
2078 case TVN_SELCHANGING
:
2080 if ( eventType
== wxEVT_NULL
)
2081 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGING
;
2082 //else: already set above
2084 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2086 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
2087 event
.m_itemOld
= (WXHTREEITEM
) tv
->itemOld
.hItem
;
2091 #if defined(_WIN32_IE) && _WIN32_IE >= 0x300 && !wxUSE_COMCTL32_SAFELY
2094 LPNMTVCUSTOMDRAW lptvcd
= (LPNMTVCUSTOMDRAW
)lParam
;
2095 NMCUSTOMDRAW
& nmcd
= lptvcd
->nmcd
;
2096 switch( nmcd
.dwDrawStage
)
2099 // if we've got any items with non standard attributes,
2100 // notify us before painting each item
2101 *result
= m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
2105 case CDDS_ITEMPREPAINT
:
2107 wxTreeItemAttr
*attr
=
2108 (wxTreeItemAttr
*)m_attrs
.Get(nmcd
.dwItemSpec
);
2112 // nothing to do for this item
2113 return CDRF_DODEFAULT
;
2117 wxColour colText
, colBack
;
2118 if ( attr
->HasFont() )
2120 wxFont font
= attr
->GetFont();
2121 hFont
= (HFONT
)font
.GetResourceHandle();
2128 if ( attr
->HasTextColour() )
2130 colText
= attr
->GetTextColour();
2134 colText
= GetForegroundColour();
2137 // selection colours should override ours
2138 if ( nmcd
.uItemState
& CDIS_SELECTED
)
2140 DWORD clrBk
= ::GetSysColor(COLOR_HIGHLIGHT
);
2141 lptvcd
->clrTextBk
= clrBk
;
2143 // try to make the text visible
2144 lptvcd
->clrText
= wxColourToRGB(colText
);
2145 lptvcd
->clrText
|= ~clrBk
;
2146 lptvcd
->clrText
&= 0x00ffffff;
2150 if ( attr
->HasBackgroundColour() )
2152 colBack
= attr
->GetBackgroundColour();
2156 colBack
= GetBackgroundColour();
2159 lptvcd
->clrText
= wxColourToRGB(colText
);
2160 lptvcd
->clrTextBk
= wxColourToRGB(colBack
);
2163 // note that if we wanted to set colours for
2164 // individual columns (subitems), we would have
2165 // returned CDRF_NOTIFYSUBITEMREDRAW from here
2168 ::SelectObject(nmcd
.hdc
, hFont
);
2170 *result
= CDRF_NEWFONT
;
2174 *result
= CDRF_DODEFAULT
;
2181 *result
= CDRF_DODEFAULT
;
2186 #endif // _WIN32_IE >= 0x300
2191 TV_HITTESTINFO tvhti
;
2192 ::GetCursorPos(&tvhti
.pt
);
2193 ::ScreenToClient(GetHwnd(), &tvhti
.pt
);
2194 if ( TreeView_HitTest(GetHwnd(), &tvhti
) )
2196 if ( tvhti
.flags
& TVHT_ONITEM
)
2198 event
.m_item
= (WXHTREEITEM
) tvhti
.hItem
;
2199 eventType
= (int)hdr
->code
== NM_DBLCLK
2200 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2201 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
2210 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
2213 event
.SetEventObject(this);
2214 event
.SetEventType(eventType
);
2216 bool processed
= GetEventHandler()->ProcessEvent(event
);
2219 switch ( hdr
->code
)
2222 // we translate NM_DBLCLK into ACTIVATED event, so don't interpret
2223 // the return code of this event handler as the return value for
2224 // NM_DBLCLK - otherwise, double clicking the item to toggle its
2225 // expanded status would never work
2230 case TVN_BEGINRDRAG
:
2231 if ( event
.IsAllowed() )
2233 // normally this is impossible because the m_dragImage is
2234 // deleted once the drag operation is over
2235 wxASSERT_MSG( !m_dragImage
, _T("starting to drag once again?") );
2237 m_dragImage
= new wxDragImage(*this, event
.m_item
);
2238 m_dragImage
->BeginDrag(wxPoint(0, 0), this);
2239 m_dragImage
->Show();
2243 case TVN_DELETEITEM
:
2245 // NB: we might process this message using wxWindows event
2246 // tables, but due to overhead of wxWin event system we
2247 // prefer to do it here ourself (otherwise deleting a tree
2248 // with many items is just too slow)
2249 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
2251 wxTreeItemId item
= event
.m_item
;
2252 if ( HasIndirectData(item
) )
2254 wxTreeItemIndirectData
*data
= (wxTreeItemIndirectData
*)
2256 delete data
; // can't be NULL here
2258 m_itemsWithIndirectData
.Remove(item
);
2260 int iIndex
= m_itemsWithIndirectData
.Index(item
);
2261 wxASSERT( iIndex
!= wxNOT_FOUND
) ;
2262 m_itemsWithIndirectData
.wxBaseArray::RemoveAt((size_t)iIndex
);
2267 wxTreeItemData
*data
= (wxTreeItemData
*)tv
->itemOld
.lParam
;
2268 delete data
; // may be NULL, ok
2271 processed
= TRUE
; // Make sure we don't get called twice
2275 case TVN_BEGINLABELEDIT
:
2276 // return TRUE to cancel label editing
2277 *result
= !event
.IsAllowed();
2280 case TVN_ENDLABELEDIT
:
2281 // return TRUE to set the label to the new string
2282 *result
= event
.IsAllowed();
2284 // ensure that we don't have the text ctrl which is going to be
2289 case TVN_SELCHANGING
:
2290 case TVN_ITEMEXPANDING
:
2291 // return TRUE to prevent the action from happening
2292 *result
= !event
.IsAllowed();
2295 case TVN_GETDISPINFO
:
2296 // NB: so far the user can't set the image himself anyhow, so do it
2297 // anyway - but this may change later
2298 if ( /* !processed && */ 1 )
2300 wxTreeItemId item
= event
.m_item
;
2301 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
2302 if ( info
->item
.mask
& TVIF_IMAGE
)
2305 DoGetItemImageFromData
2308 IsExpanded(item
) ? wxTreeItemIcon_Expanded
2309 : wxTreeItemIcon_Normal
2312 if ( info
->item
.mask
& TVIF_SELECTEDIMAGE
)
2314 info
->item
.iSelectedImage
=
2315 DoGetItemImageFromData
2318 IsExpanded(item
) ? wxTreeItemIcon_SelectedExpanded
2319 : wxTreeItemIcon_Selected
2326 // for the other messages the return value is ignored and there is
2327 // nothing special to do