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 // Mingw32 is a bit mental even though this is done in winundef
41 #if defined(__WIN95__)
44 #include "wx/dynarray.h"
45 #include "wx/imaglist.h"
46 #include "wx/treectrl.h"
47 #include "wx/settings.h"
49 #include "wx/msw/dragimag.h"
51 #ifdef __GNUWIN32_OLD__
52 #include "wx/msw/gnuwin32/extra.h"
55 #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) || defined(__TWIN32__))
59 // Bug in headers, sometimes
61 #define TVIS_FOCUSED 0x0001
65 #define TV_FIRST 0x1100
68 #ifndef TVS_CHECKBOXES
69 #define TVS_CHECKBOXES 0x0100
72 // old headers might miss these messages (comctl32.dll 4.71+ only)
73 #ifndef TVM_SETBKCOLOR
74 #define TVM_SETBKCOLOR (TV_FIRST + 29)
75 #define TVM_SETTEXTCOLOR (TV_FIRST + 30)
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 // a convenient wrapper around TV_ITEM struct which adds a ctor
84 #pragma warning( disable : 4097 )
87 struct wxTreeViewItem
: public TV_ITEM
89 wxTreeViewItem(const wxTreeItemId
& item
, // the item handle
90 UINT mask_
, // fields which are valid
91 UINT stateMask_
= 0) // for TVIF_STATE only
93 // hItem member is always valid
94 mask
= mask_
| TVIF_HANDLE
;
95 stateMask
= stateMask_
;
96 hItem
= (HTREEITEM
) (WXHTREEITEM
) item
;
101 #pragma warning( default : 4097 )
104 // a class which encapsulates the tree traversal logic: it vists all (unless
105 // OnVisit() returns FALSE) items under the given one
106 class wxTreeTraversal
109 wxTreeTraversal(const wxTreeCtrl
*tree
)
114 // do traverse the tree: visit all items (recursively by default) under the
115 // given one; return TRUE if all items were traversed or FALSE if the
116 // traversal was aborted because OnVisit returned FALSE
117 bool DoTraverse(const wxTreeItemId
& root
, bool recursively
= TRUE
);
119 // override this function to do whatever is needed for each item, return
120 // FALSE to stop traversing
121 virtual bool OnVisit(const wxTreeItemId
& item
) = 0;
124 const wxTreeCtrl
*GetTree() const { return m_tree
; }
127 bool Traverse(const wxTreeItemId
& root
, bool recursively
);
129 const wxTreeCtrl
*m_tree
;
132 // internal class for getting the selected items
133 class TraverseSelections
: public wxTreeTraversal
136 TraverseSelections(const wxTreeCtrl
*tree
,
137 wxArrayTreeItemIds
& selections
)
138 : wxTreeTraversal(tree
), m_selections(selections
)
140 m_selections
.Empty();
142 DoTraverse(tree
->GetRootItem());
145 virtual bool OnVisit(const wxTreeItemId
& item
)
147 if ( GetTree()->IsItemChecked(item
) )
149 m_selections
.Add(item
);
155 size_t GetCount() const { return m_selections
.GetCount(); }
158 wxArrayTreeItemIds
& m_selections
;
161 // internal class for counting tree items
162 class TraverseCounter
: public wxTreeTraversal
165 TraverseCounter(const wxTreeCtrl
*tree
,
166 const wxTreeItemId
& root
,
168 : wxTreeTraversal(tree
)
172 DoTraverse(root
, recursively
);
175 virtual bool OnVisit(const wxTreeItemId
& item
)
182 size_t GetCount() const { return m_count
; }
188 // ----------------------------------------------------------------------------
189 // This class is needed for support of different images: the Win32 common
190 // control natively supports only 2 images (the normal one and another for the
191 // selected state). We wish to provide support for 2 more of them for folder
192 // items (i.e. those which have children): for expanded state and for expanded
193 // selected state. For this we use this structure to store the additional items
196 // There is only one problem with this: when we retrieve the item's data, we
197 // don't know whether we get a pointer to wxTreeItemData or
198 // wxTreeItemIndirectData. So we have to maintain a list of all items which
199 // have indirect data inside the listctrl itself.
200 // ----------------------------------------------------------------------------
202 class wxTreeItemIndirectData
205 // ctor associates this data with the item and the real item data becomes
206 // available through our GetData() method
207 wxTreeItemIndirectData(wxTreeCtrl
*tree
, const wxTreeItemId
& item
)
209 for ( size_t n
= 0; n
< WXSIZEOF(m_images
); n
++ )
215 m_data
= tree
->GetItemData(item
);
217 // and set ourselves as the new one
218 tree
->SetIndirectItemData(item
, this);
221 // dtor deletes the associated data as well
222 ~wxTreeItemIndirectData() { delete m_data
; }
225 // get the real data associated with the item
226 wxTreeItemData
*GetData() const { return m_data
; }
228 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
230 // do we have such image?
231 bool HasImage(wxTreeItemIcon which
) const { return m_images
[which
] != -1; }
233 int GetImage(wxTreeItemIcon which
) const { return m_images
[which
]; }
235 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
238 // all the images associated with the item
239 int m_images
[wxTreeItemIcon_Max
];
241 wxTreeItemData
*m_data
;
244 // ----------------------------------------------------------------------------
246 // ----------------------------------------------------------------------------
248 static HTREEITEM
GetItemFromPoint(HWND hwndTV
, int x
, int y
)
254 // TreeView_HitTest() doesn't do the right cast in mingw32 headers
255 return (HTREEITEM
)TreeView_HitTest(hwndTV
, &tvht
);
258 // ----------------------------------------------------------------------------
260 // ----------------------------------------------------------------------------
262 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxControl
)
264 // ----------------------------------------------------------------------------
266 // ----------------------------------------------------------------------------
268 // handy table for sending events
269 static const wxEventType g_events
[2][2] =
271 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, wxEVT_COMMAND_TREE_ITEM_COLLAPSING
},
272 { wxEVT_COMMAND_TREE_ITEM_EXPANDED
, wxEVT_COMMAND_TREE_ITEM_EXPANDING
}
275 // ============================================================================
277 // ============================================================================
279 // ----------------------------------------------------------------------------
281 // ----------------------------------------------------------------------------
283 bool wxTreeTraversal::DoTraverse(const wxTreeItemId
& root
, bool recursively
)
285 if ( !OnVisit(root
) )
288 return Traverse(root
, recursively
);
291 bool wxTreeTraversal::Traverse(const wxTreeItemId
& root
, bool recursively
)
294 wxTreeItemId child
= m_tree
->GetFirstChild(root
, cookie
);
295 while ( child
.IsOk() )
297 // depth first traversal
298 if ( recursively
&& !Traverse(child
, TRUE
) )
301 if ( !OnVisit(child
) )
304 child
= m_tree
->GetNextChild(root
, cookie
);
310 // ----------------------------------------------------------------------------
311 // construction and destruction
312 // ----------------------------------------------------------------------------
314 void wxTreeCtrl::Init()
316 m_imageListNormal
= NULL
;
317 m_imageListState
= NULL
;
319 m_hasAnyAttr
= FALSE
;
323 bool wxTreeCtrl::Create(wxWindow
*parent
,
328 const wxValidator
& validator
,
329 const wxString
& name
)
333 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
336 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
|
337 TVS_HASLINES
| TVS_SHOWSELALWAYS
;
339 if ( m_windowStyle
& wxTR_HAS_BUTTONS
)
340 wstyle
|= TVS_HASBUTTONS
;
342 if ( m_windowStyle
& wxTR_EDIT_LABELS
)
343 wstyle
|= TVS_EDITLABELS
;
345 if ( m_windowStyle
& wxTR_LINES_AT_ROOT
)
346 wstyle
|= TVS_LINESATROOT
;
348 #if !defined( __GNUWIN32_OLD__ ) && \
349 !defined( __BORLANDC__ ) && \
350 !defined( __WATCOMC__ ) && \
351 (!defined(__VISUALC__) || (__VISUALC__ > 1010))
353 // we emulate the multiple selection tree controls by using checkboxes: set
354 // up the image list we need for this if we do have multiple selections
355 if ( m_windowStyle
& wxTR_MULTIPLE
)
356 wstyle
|= TVS_CHECKBOXES
;
359 // Create the tree control.
360 if ( !MSWCreateControl(WC_TREEVIEW
, wstyle
) )
363 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
364 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
366 // VZ: this is some experimental code which may be used to get the
367 // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71.
368 // AFAIK, the standard DLL does about the same thing anyhow.
370 if ( m_windowStyle
& wxTR_MULTIPLE
)
374 // create the DC compatible with the current screen
375 HDC hdcMem
= CreateCompatibleDC(NULL
);
377 // create a mono bitmap of the standard size
378 int x
= GetSystemMetrics(SM_CXMENUCHECK
);
379 int y
= GetSystemMetrics(SM_CYMENUCHECK
);
380 wxImageList
imagelistCheckboxes(x
, y
, FALSE
, 2);
381 HBITMAP hbmpCheck
= CreateBitmap(x
, y
, // bitmap size
382 1, // # of color planes
383 1, // # bits needed for one pixel
384 0); // array containing colour data
385 SelectObject(hdcMem
, hbmpCheck
);
387 // then draw a check mark into it
388 RECT rect
= { 0, 0, x
, y
};
389 if ( !::DrawFrameControl(hdcMem
, &rect
,
391 DFCS_BUTTONCHECK
| DFCS_CHECKED
) )
393 wxLogLastError(wxT("DrawFrameControl(check)"));
396 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
397 imagelistCheckboxes
.Add(bmp
);
399 if ( !::DrawFrameControl(hdcMem
, &rect
,
403 wxLogLastError(wxT("DrawFrameControl(uncheck)"));
406 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
407 imagelistCheckboxes
.Add(bmp
);
413 SetStateImageList(&imagelistCheckboxes
);
417 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
422 wxTreeCtrl::~wxTreeCtrl()
424 // delete any attributes
427 for ( wxNode
*node
= m_attrs
.Next(); node
; node
= m_attrs
.Next() )
429 delete (wxTreeItemAttr
*)node
->Data();
432 // prevent TVN_DELETEITEM handler from deleting the attributes again!
433 m_hasAnyAttr
= FALSE
;
438 // delete user data to prevent memory leaks
442 // ----------------------------------------------------------------------------
444 // ----------------------------------------------------------------------------
446 // simple wrappers which add error checking in debug mode
448 bool wxTreeCtrl::DoGetItem(wxTreeViewItem
* tvItem
) const
450 if ( !TreeView_GetItem(GetHwnd(), tvItem
) )
452 wxLogLastError("TreeView_GetItem");
460 void wxTreeCtrl::DoSetItem(wxTreeViewItem
* tvItem
)
462 if ( TreeView_SetItem(GetHwnd(), tvItem
) == -1 )
464 wxLogLastError("TreeView_SetItem");
468 size_t wxTreeCtrl::GetCount() const
470 return (size_t)TreeView_GetCount(GetHwnd());
473 unsigned int wxTreeCtrl::GetIndent() const
475 return TreeView_GetIndent(GetHwnd());
478 void wxTreeCtrl::SetIndent(unsigned int indent
)
480 TreeView_SetIndent(GetHwnd(), indent
);
483 wxImageList
*wxTreeCtrl::GetImageList() const
485 return m_imageListNormal
;
488 wxImageList
*wxTreeCtrl::GetStateImageList() const
490 return m_imageListNormal
;
493 void wxTreeCtrl::SetAnyImageList(wxImageList
*imageList
, int which
)
496 TreeView_SetImageList(GetHwnd(),
497 imageList
? imageList
->GetHIMAGELIST() : 0,
501 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
503 SetAnyImageList(m_imageListNormal
= imageList
, TVSIL_NORMAL
);
506 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
508 SetAnyImageList(m_imageListState
= imageList
, TVSIL_STATE
);
511 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
512 bool recursively
) const
514 TraverseCounter
counter(this, item
, recursively
);
516 return counter
.GetCount() - 1;
519 // ----------------------------------------------------------------------------
521 // ----------------------------------------------------------------------------
523 bool wxTreeCtrl::SetBackgroundColour(const wxColour
&colour
)
525 if ( !wxWindowBase::SetBackgroundColour(colour
) )
528 SendMessage(GetHwnd(), TVM_SETBKCOLOR
, 0, colour
.GetPixel());
533 bool wxTreeCtrl::SetForegroundColour(const wxColour
&colour
)
535 if ( !wxWindowBase::SetForegroundColour(colour
) )
538 SendMessage(GetHwnd(), TVM_SETTEXTCOLOR
, 0, colour
.GetPixel());
543 // ----------------------------------------------------------------------------
545 // ----------------------------------------------------------------------------
547 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
549 wxChar buf
[512]; // the size is arbitrary...
551 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
552 tvItem
.pszText
= buf
;
553 tvItem
.cchTextMax
= WXSIZEOF(buf
);
554 if ( !DoGetItem(&tvItem
) )
556 // don't return some garbage which was on stack, but an empty string
560 return wxString(buf
);
563 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
565 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
566 tvItem
.pszText
= (wxChar
*)text
.c_str(); // conversion is ok
570 int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId
& item
,
571 wxTreeItemIcon which
) const
573 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
574 if ( !DoGetItem(&tvItem
) )
579 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetImage(which
);
582 void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId
& item
,
584 wxTreeItemIcon which
) const
586 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
587 if ( !DoGetItem(&tvItem
) )
592 wxTreeItemIndirectData
*data
= ((wxTreeItemIndirectData
*)tvItem
.lParam
);
594 data
->SetImage(image
, which
);
596 // make sure that we have selected images as well
597 if ( which
== wxTreeItemIcon_Normal
&&
598 !data
->HasImage(wxTreeItemIcon_Selected
) )
600 data
->SetImage(image
, wxTreeItemIcon_Selected
);
603 if ( which
== wxTreeItemIcon_Expanded
&&
604 !data
->HasImage(wxTreeItemIcon_SelectedExpanded
) )
606 data
->SetImage(image
, wxTreeItemIcon_SelectedExpanded
);
610 void wxTreeCtrl::DoSetItemImages(const wxTreeItemId
& item
,
614 wxTreeViewItem
tvItem(item
, TVIF_IMAGE
| TVIF_SELECTEDIMAGE
);
615 tvItem
.iSelectedImage
= imageSel
;
616 tvItem
.iImage
= image
;
620 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
621 wxTreeItemIcon which
) const
623 if ( HasIndirectData(item
) )
625 return DoGetItemImageFromData(item
, which
);
632 wxFAIL_MSG( wxT("unknown tree item image type") );
634 case wxTreeItemIcon_Normal
:
638 case wxTreeItemIcon_Selected
:
639 mask
= TVIF_SELECTEDIMAGE
;
642 case wxTreeItemIcon_Expanded
:
643 case wxTreeItemIcon_SelectedExpanded
:
647 wxTreeViewItem
tvItem(item
, mask
);
650 return mask
== TVIF_IMAGE
? tvItem
.iImage
: tvItem
.iSelectedImage
;
653 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
, int image
,
654 wxTreeItemIcon which
)
656 int imageNormal
, imageSel
;
660 wxFAIL_MSG( wxT("unknown tree item image type") );
662 case wxTreeItemIcon_Normal
:
664 imageSel
= GetItemSelectedImage(item
);
667 case wxTreeItemIcon_Selected
:
668 imageNormal
= GetItemImage(item
);
672 case wxTreeItemIcon_Expanded
:
673 case wxTreeItemIcon_SelectedExpanded
:
674 if ( !HasIndirectData(item
) )
676 // we need to get the old images first, because after we create
677 // the wxTreeItemIndirectData GetItemXXXImage() will use it to
679 imageNormal
= GetItemImage(item
);
680 imageSel
= GetItemSelectedImage(item
);
682 // if it doesn't have it yet, add it
683 wxTreeItemIndirectData
*data
= new
684 wxTreeItemIndirectData(this, item
);
686 // copy the data to the new location
687 data
->SetImage(imageNormal
, wxTreeItemIcon_Normal
);
688 data
->SetImage(imageSel
, wxTreeItemIcon_Selected
);
691 DoSetItemImageFromData(item
, image
, which
);
693 // reset the normal/selected images because we won't use them any
694 // more - now they're stored inside the indirect data
696 imageSel
= I_IMAGECALLBACK
;
700 // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always
701 // change both normal and selected image - otherwise the change simply
702 // doesn't take place!
703 DoSetItemImages(item
, imageNormal
, imageSel
);
706 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
708 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
709 if ( !DoGetItem(&tvItem
) )
714 if ( HasIndirectData(item
) )
716 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetData();
720 return (wxTreeItemData
*)tvItem
.lParam
;
724 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
726 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
728 if ( HasIndirectData(item
) )
730 if ( DoGetItem(&tvItem
) )
732 ((wxTreeItemIndirectData
*)tvItem
.lParam
)->SetData(data
);
736 wxFAIL_MSG( wxT("failed to change tree items data") );
741 tvItem
.lParam
= (LPARAM
)data
;
746 void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId
& item
,
747 wxTreeItemIndirectData
*data
)
749 // this should never happen because it's unnecessary and will probably lead
750 // to crash too because the code elsewhere supposes that the pointer the
751 // wxTreeItemIndirectData has is a real wxItemData and not
752 // wxTreeItemIndirectData as well
753 wxASSERT_MSG( !HasIndirectData(item
), wxT("setting indirect data twice?") );
755 SetItemData(item
, (wxTreeItemData
*)data
);
757 m_itemsWithIndirectData
.Add(item
);
760 bool wxTreeCtrl::HasIndirectData(const wxTreeItemId
& item
) const
762 return m_itemsWithIndirectData
.Index(item
) != wxNOT_FOUND
;
765 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
767 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
768 tvItem
.cChildren
= (int)has
;
772 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
774 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
775 tvItem
.state
= bold
? TVIS_BOLD
: 0;
779 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
)
781 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_DROPHILITED
);
782 tvItem
.state
= highlight
? TVIS_DROPHILITED
: 0;
786 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
791 long id
= (long)(WXHTREEITEM
)item
;
792 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
795 attr
= new wxTreeItemAttr
;
796 m_attrs
.Put(id
, (wxObject
*)attr
);
799 attr
->SetTextColour(col
);
802 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
807 long id
= (long)(WXHTREEITEM
)item
;
808 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
811 attr
= new wxTreeItemAttr
;
812 m_attrs
.Put(id
, (wxObject
*)attr
);
815 attr
->SetBackgroundColour(col
);
818 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
822 long id
= (long)(WXHTREEITEM
)item
;
823 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
826 attr
= new wxTreeItemAttr
;
827 m_attrs
.Put(id
, (wxObject
*)attr
);
833 // ----------------------------------------------------------------------------
835 // ----------------------------------------------------------------------------
837 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
839 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
842 // this ugliness comes directly from MSDN - it *is* the correct way to pass
843 // the HTREEITEM with TVM_GETITEMRECT
844 *(WXHTREEITEM
*)&rect
= (WXHTREEITEM
)item
;
846 // FALSE means get item rect for the whole item, not only text
847 return SendMessage(GetHwnd(), TVM_GETITEMRECT
, FALSE
, (LPARAM
)&rect
) != 0;
851 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
853 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
856 return tvItem
.cChildren
!= 0;
859 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
861 // probably not a good idea to put it here
862 //wxASSERT( ItemHasChildren(item) );
864 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDED
);
867 return (tvItem
.state
& TVIS_EXPANDED
) != 0;
870 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
872 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_SELECTED
);
875 return (tvItem
.state
& TVIS_SELECTED
) != 0;
878 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
880 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
883 return (tvItem
.state
& TVIS_BOLD
) != 0;
886 // ----------------------------------------------------------------------------
888 // ----------------------------------------------------------------------------
890 wxTreeItemId
wxTreeCtrl::GetRootItem() const
892 return wxTreeItemId((WXHTREEITEM
) TreeView_GetRoot(GetHwnd()));
895 wxTreeItemId
wxTreeCtrl::GetSelection() const
897 wxCHECK_MSG( !(m_windowStyle
& wxTR_MULTIPLE
), (WXHTREEITEM
)0,
898 wxT("this only works with single selection controls") );
900 return wxTreeItemId((WXHTREEITEM
) TreeView_GetSelection(GetHwnd()));
903 wxTreeItemId
wxTreeCtrl::GetParent(const wxTreeItemId
& item
) const
905 return wxTreeItemId((WXHTREEITEM
) TreeView_GetParent(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
908 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
911 // remember the last child returned in 'cookie'
912 _cookie
= (long)TreeView_GetChild(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
)item
);
914 return wxTreeItemId((WXHTREEITEM
)_cookie
);
917 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& WXUNUSED(item
),
920 wxTreeItemId l
= wxTreeItemId((WXHTREEITEM
)TreeView_GetNextSibling(GetHwnd(),
921 (HTREEITEM
)(WXHTREEITEM
)_cookie
));
927 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
929 // can this be done more efficiently?
932 wxTreeItemId childLast
,
933 child
= GetFirstChild(item
, cookie
);
934 while ( child
.IsOk() )
937 child
= GetNextChild(item
, cookie
);
943 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
945 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextSibling(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
948 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
950 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevSibling(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
953 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
955 return wxTreeItemId((WXHTREEITEM
) TreeView_GetFirstVisible(GetHwnd()));
958 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
960 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetNextVisible() "
961 "for must be visible itself!"));
963 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
966 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
968 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetPrevVisible() "
969 "for must be visible itself!"));
971 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
974 // ----------------------------------------------------------------------------
975 // multiple selections emulation
976 // ----------------------------------------------------------------------------
978 bool wxTreeCtrl::IsItemChecked(const wxTreeItemId
& item
) const
980 // receive the desired information.
981 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
984 // state image indices are 1 based
985 return ((tvItem
.state
>> 12) - 1) == 1;
988 void wxTreeCtrl::SetItemCheck(const wxTreeItemId
& item
, bool check
)
990 // receive the desired information.
991 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
993 // state images are one-based
994 tvItem
.state
= (check
? 2 : 1) << 12;
999 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
& selections
) const
1001 TraverseSelections
selector(this, selections
);
1003 return selector
.GetCount();
1006 // ----------------------------------------------------------------------------
1008 // ----------------------------------------------------------------------------
1010 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parent
,
1011 wxTreeItemId hInsertAfter
,
1012 const wxString
& text
,
1013 int image
, int selectedImage
,
1014 wxTreeItemData
*data
)
1016 TV_INSERTSTRUCT tvIns
;
1017 tvIns
.hParent
= (HTREEITEM
) (WXHTREEITEM
)parent
;
1018 tvIns
.hInsertAfter
= (HTREEITEM
) (WXHTREEITEM
) hInsertAfter
;
1020 // this is how we insert the item as the first child: supply a NULL
1022 if ( !tvIns
.hInsertAfter
)
1024 tvIns
.hInsertAfter
= TVI_FIRST
;
1028 if ( !text
.IsEmpty() )
1031 tvIns
.item
.pszText
= (wxChar
*)text
.c_str(); // cast is ok
1037 tvIns
.item
.iImage
= image
;
1039 if ( selectedImage
== -1 )
1041 // take the same image for selected icon if not specified
1042 selectedImage
= image
;
1046 if ( selectedImage
!= -1 )
1048 mask
|= TVIF_SELECTEDIMAGE
;
1049 tvIns
.item
.iSelectedImage
= selectedImage
;
1055 tvIns
.item
.lParam
= (LPARAM
)data
;
1058 tvIns
.item
.mask
= mask
;
1060 HTREEITEM id
= (HTREEITEM
) TreeView_InsertItem(GetHwnd(), &tvIns
);
1063 wxLogLastError("TreeView_InsertItem");
1068 // associate the application tree item with Win32 tree item handle
1069 data
->SetId((WXHTREEITEM
)id
);
1072 return wxTreeItemId((WXHTREEITEM
)id
);
1075 // for compatibility only
1076 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1077 const wxString
& text
,
1078 int image
, int selImage
,
1081 return DoInsertItem(parent
, (WXHTREEITEM
)insertAfter
, text
,
1082 image
, selImage
, NULL
);
1085 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
1086 int image
, int selectedImage
,
1087 wxTreeItemData
*data
)
1089 return DoInsertItem(wxTreeItemId((WXHTREEITEM
) 0), (WXHTREEITEM
) 0,
1090 text
, image
, selectedImage
, data
);
1093 wxTreeItemId
wxTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1094 const wxString
& text
,
1095 int image
, int selectedImage
,
1096 wxTreeItemData
*data
)
1098 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_FIRST
,
1099 text
, image
, selectedImage
, data
);
1102 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1103 const wxTreeItemId
& idPrevious
,
1104 const wxString
& text
,
1105 int image
, int selectedImage
,
1106 wxTreeItemData
*data
)
1108 return DoInsertItem(parent
, idPrevious
, text
, image
, selectedImage
, data
);
1111 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1113 const wxString
& text
,
1114 int image
, int selectedImage
,
1115 wxTreeItemData
*data
)
1117 // find the item from index
1119 wxTreeItemId idPrev
, idCur
= GetFirstChild(parent
, cookie
);
1120 while ( index
!= 0 && idCur
.IsOk() )
1125 idCur
= GetNextChild(parent
, cookie
);
1128 // assert, not check: if the index is invalid, we will append the item
1130 wxASSERT_MSG( index
== 0, _T("bad index in wxTreeCtrl::InsertItem") );
1132 return DoInsertItem(parent
, idPrev
, text
, image
, selectedImage
, data
);
1135 wxTreeItemId
wxTreeCtrl::AppendItem(const wxTreeItemId
& parent
,
1136 const wxString
& text
,
1137 int image
, int selectedImage
,
1138 wxTreeItemData
*data
)
1140 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_LAST
,
1141 text
, image
, selectedImage
, data
);
1144 void wxTreeCtrl::Delete(const wxTreeItemId
& item
)
1146 if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM
)(WXHTREEITEM
)item
) )
1148 wxLogLastError("TreeView_DeleteItem");
1152 // delete all children (but don't delete the item itself)
1153 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& item
)
1157 wxArrayLong children
;
1158 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1159 while ( child
.IsOk() )
1161 children
.Add((long)(WXHTREEITEM
)child
);
1163 child
= GetNextChild(item
, cookie
);
1166 size_t nCount
= children
.Count();
1167 for ( size_t n
= 0; n
< nCount
; n
++ )
1169 if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM
)children
[n
]) )
1171 wxLogLastError("TreeView_DeleteItem");
1176 void wxTreeCtrl::DeleteAllItems()
1178 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1180 wxLogLastError("TreeView_DeleteAllItems");
1184 void wxTreeCtrl::DoExpand(const wxTreeItemId
& item
, int flag
)
1186 wxASSERT_MSG( flag
== TVE_COLLAPSE
||
1187 flag
== (TVE_COLLAPSE
| TVE_COLLAPSERESET
) ||
1188 flag
== TVE_EXPAND
||
1190 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1192 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1193 // emulate them. This behaviour has changed slightly with comctl32.dll
1194 // v 4.70 - now it does send them but only the first time. To maintain
1195 // compatible behaviour and also in order to not have surprises with the
1196 // future versions, don't rely on this and still do everything ourselves.
1197 // To avoid that the messages be sent twice when the item is expanded for
1198 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1200 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDEDONCE
);
1204 if ( TreeView_Expand(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
, flag
) != 0 )
1206 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1207 event
.m_item
= item
;
1209 bool isExpanded
= IsExpanded(item
);
1211 event
.SetEventObject(this);
1213 // FIXME return value of {EXPAND|COLLAPS}ING event handler is discarded
1214 event
.SetEventType(g_events
[isExpanded
][TRUE
]);
1215 GetEventHandler()->ProcessEvent(event
);
1217 event
.SetEventType(g_events
[isExpanded
][FALSE
]);
1218 GetEventHandler()->ProcessEvent(event
);
1220 //else: change didn't took place, so do nothing at all
1223 void wxTreeCtrl::Expand(const wxTreeItemId
& item
)
1225 DoExpand(item
, TVE_EXPAND
);
1228 void wxTreeCtrl::Collapse(const wxTreeItemId
& item
)
1230 DoExpand(item
, TVE_COLLAPSE
);
1233 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1235 DoExpand(item
, TVE_COLLAPSE
| TVE_COLLAPSERESET
);
1238 void wxTreeCtrl::Toggle(const wxTreeItemId
& item
)
1240 DoExpand(item
, TVE_TOGGLE
);
1243 void wxTreeCtrl::ExpandItem(const wxTreeItemId
& item
, int action
)
1245 DoExpand(item
, action
);
1248 void wxTreeCtrl::Unselect()
1250 wxASSERT_MSG( !(m_windowStyle
& wxTR_MULTIPLE
), wxT("doesn't make sense") );
1252 // just remove the selection
1253 SelectItem(wxTreeItemId((WXHTREEITEM
) 0));
1256 void wxTreeCtrl::UnselectAll()
1258 if ( m_windowStyle
& wxTR_MULTIPLE
)
1260 wxArrayTreeItemIds selections
;
1261 size_t count
= GetSelections(selections
);
1262 for ( size_t n
= 0; n
< count
; n
++ )
1264 SetItemCheck(selections
[n
], FALSE
);
1269 // just remove the selection
1274 void wxTreeCtrl::SelectItem(const wxTreeItemId
& item
)
1276 if ( m_windowStyle
& wxTR_MULTIPLE
)
1278 // selecting the item means checking it
1283 // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive
1284 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1285 // send them ourselves
1287 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1288 event
.m_item
= item
;
1289 event
.SetEventObject(this);
1291 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING
);
1292 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
1294 if ( !TreeView_SelectItem(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
) )
1296 wxLogLastError("TreeView_SelectItem");
1300 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1301 (void)GetEventHandler()->ProcessEvent(event
);
1304 //else: program vetoed the change
1308 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1311 TreeView_EnsureVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
);
1314 void wxTreeCtrl::ScrollTo(const wxTreeItemId
& item
)
1316 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
) )
1318 wxLogLastError("TreeView_SelectSetFirstVisible");
1322 wxTextCtrl
* wxTreeCtrl::GetEditControl() const
1324 // normally, we could try to do something like this to return something
1325 // even when the editing was started by the user and not by calling
1326 // EditLabel() - but as nobody has asked for this so far and there might be
1327 // problems in the code below, I leave it disabled for now (VZ)
1331 HWND hwndText
= TreeView_GetEditControl(GetHwnd());
1334 m_textCtrl
= new wxTextCtrl(this, -1);
1336 m_textCtrl
->SetHWND((WXHWND
)hwndText
);
1338 //else: not editing label right now
1345 void wxTreeCtrl::DeleteTextCtrl()
1349 m_textCtrl
->UnsubclassWin();
1350 m_textCtrl
->SetHWND(0);
1356 wxTextCtrl
* wxTreeCtrl::EditLabel(const wxTreeItemId
& item
,
1357 wxClassInfo
* textControlClass
)
1359 wxASSERT( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
1363 HWND hWnd
= (HWND
) TreeView_EditLabel(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
);
1365 // this is not an error - the TVN_BEGINLABELEDIT handler might have
1372 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1373 m_textCtrl
->SetHWND((WXHWND
)hWnd
);
1374 m_textCtrl
->SubclassWin((WXHWND
)hWnd
);
1379 // End label editing, optionally cancelling the edit
1380 void wxTreeCtrl::EndEditLabel(const wxTreeItemId
& item
, bool discardChanges
)
1382 TreeView_EndEditLabelNow(GetHwnd(), discardChanges
);
1387 wxTreeItemId
wxTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
1389 TV_HITTESTINFO hitTestInfo
;
1390 hitTestInfo
.pt
.x
= (int)point
.x
;
1391 hitTestInfo
.pt
.y
= (int)point
.y
;
1393 TreeView_HitTest(GetHwnd(), &hitTestInfo
);
1398 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
1399 flags |= wxTREE_HITTEST_##flag
1401 TRANSLATE_FLAG(ABOVE
);
1402 TRANSLATE_FLAG(BELOW
);
1403 TRANSLATE_FLAG(NOWHERE
);
1404 TRANSLATE_FLAG(ONITEMBUTTON
);
1405 TRANSLATE_FLAG(ONITEMICON
);
1406 TRANSLATE_FLAG(ONITEMINDENT
);
1407 TRANSLATE_FLAG(ONITEMLABEL
);
1408 TRANSLATE_FLAG(ONITEMRIGHT
);
1409 TRANSLATE_FLAG(ONITEMSTATEICON
);
1410 TRANSLATE_FLAG(TOLEFT
);
1411 TRANSLATE_FLAG(TORIGHT
);
1413 #undef TRANSLATE_FLAG
1415 return wxTreeItemId((WXHTREEITEM
) hitTestInfo
.hItem
);
1418 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
1420 bool textOnly
) const
1423 if ( TreeView_GetItemRect(GetHwnd(), (HTREEITEM
)(WXHTREEITEM
)item
,
1426 rect
= wxRect(wxPoint(rc
.left
, rc
.top
), wxPoint(rc
.right
, rc
.bottom
));
1432 // couldn't retrieve rect: for example, item isn't visible
1437 // ----------------------------------------------------------------------------
1439 // ----------------------------------------------------------------------------
1441 static int CALLBACK
TreeView_CompareCallback(wxTreeItemData
*pItem1
,
1442 wxTreeItemData
*pItem2
,
1445 wxCHECK_MSG( pItem1
&& pItem2
, 0,
1446 wxT("sorting tree without data doesn't make sense") );
1448 return tree
->OnCompareItems(pItem1
->GetId(), pItem2
->GetId());
1451 int wxTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1452 const wxTreeItemId
& item2
)
1454 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1457 void wxTreeCtrl::SortChildren(const wxTreeItemId
& item
)
1459 // rely on the fact that TreeView_SortChildren does the same thing as our
1460 // default behaviour, i.e. sorts items alphabetically and so call it
1461 // directly if we're not in derived class (much more efficient!)
1462 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl
) )
1464 TreeView_SortChildren(GetHwnd(), (HTREEITEM
)(WXHTREEITEM
)item
, 0);
1469 tvSort
.hParent
= (HTREEITEM
)(WXHTREEITEM
)item
;
1470 tvSort
.lpfnCompare
= (PFNTVCOMPARE
)TreeView_CompareCallback
;
1471 tvSort
.lParam
= (LPARAM
)this;
1472 TreeView_SortChildrenCB(GetHwnd(), &tvSort
, 0 /* reserved */);
1476 // ----------------------------------------------------------------------------
1478 // ----------------------------------------------------------------------------
1480 bool wxTreeCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1482 if ( cmd
== EN_UPDATE
)
1484 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1485 event
.SetEventObject( this );
1486 ProcessCommand(event
);
1488 else if ( cmd
== EN_KILLFOCUS
)
1490 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1491 event
.SetEventObject( this );
1492 ProcessCommand(event
);
1500 // command processed
1504 // we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
1505 // only do it during dragging, minimize wxWin overhead (this is important for
1506 // WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
1507 // instead of passing by wxWin events
1508 long wxTreeCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1516 int x
= GET_X_LPARAM(lParam
),
1517 y
= GET_Y_LPARAM(lParam
);
1519 m_dragImage
->Move(wxPoint(x
, y
), this);
1521 HTREEITEM htiTarget
= GetItemFromPoint(GetHwnd(), x
, y
);
1524 // highlight the item as target (hiding drag image is
1525 // necessary - otherwise the display will be corrupted)
1526 m_dragImage
->Hide(this);
1527 TreeView_SelectDropTarget(GetHwnd(), htiTarget
);
1528 m_dragImage
->Show(this);
1536 m_dragImage
->EndDrag(this);
1540 // generate the drag end event
1541 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, m_windowId
);
1543 int x
= GET_X_LPARAM(lParam
),
1544 y
= GET_Y_LPARAM(lParam
);
1547 = (WXHTREEITEM
)GetItemFromPoint(GetHwnd(), x
, y
);
1548 event
.m_pointDrag
= wxPoint(x
, y
);
1549 event
.SetEventObject(this);
1551 (void)GetEventHandler()->ProcessEvent(event
);
1553 // if we don't do it, the tree seems to think that 2 items
1554 // are selected simultaneously which is quite weird
1555 TreeView_SelectDropTarget(GetHwnd(), 0);
1561 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1564 // process WM_NOTIFY Windows message
1565 bool wxTreeCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1567 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1568 wxEventType eventType
= wxEVT_NULL
;
1569 NMHDR
*hdr
= (NMHDR
*)lParam
;
1571 switch ( hdr
->code
)
1575 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
1578 TV_HITTESTINFO tvhti
;
1579 ::GetCursorPos(&(tvhti
.pt
));
1580 ::ScreenToClient(GetHwnd(),&(tvhti
.pt
));
1581 if ( TreeView_HitTest(GetHwnd(),&tvhti
) )
1583 if( tvhti
.flags
& TVHT_ONITEM
)
1585 event
.m_item
= (WXHTREEITEM
) tvhti
.hItem
;
1586 eventType
= wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
1593 eventType
= wxEVT_COMMAND_TREE_BEGIN_DRAG
;
1596 case TVN_BEGINRDRAG
:
1598 if ( eventType
== wxEVT_NULL
)
1599 eventType
= wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
1600 //else: left drag, already set above
1602 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
1604 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1605 event
.m_pointDrag
= wxPoint(tv
->ptDrag
.x
, tv
->ptDrag
.y
);
1607 // don't allow dragging by default: the user code must
1608 // explicitly say that it wants to allow it to avoid breaking
1614 case TVN_BEGINLABELEDIT
:
1616 eventType
= wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
1617 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1619 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
1620 event
.m_label
= info
->item
.pszText
;
1624 case TVN_DELETEITEM
:
1626 eventType
= wxEVT_COMMAND_TREE_DELETE_ITEM
;
1627 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
1629 event
.m_item
= (WXHTREEITEM
)tv
->itemOld
.hItem
;
1633 delete (wxTreeItemAttr
*)m_attrs
.
1634 Delete((long)tv
->itemOld
.hItem
);
1639 case TVN_ENDLABELEDIT
:
1641 eventType
= wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
1642 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1644 event
.m_item
= (WXHTREEITEM
)info
->item
.hItem
;
1645 event
.m_label
= info
->item
.pszText
;
1646 if (info
->item
.pszText
== NULL
)
1651 case TVN_GETDISPINFO
:
1652 eventType
= wxEVT_COMMAND_TREE_GET_INFO
;
1655 case TVN_SETDISPINFO
:
1657 if ( eventType
== wxEVT_NULL
)
1658 eventType
= wxEVT_COMMAND_TREE_SET_INFO
;
1659 //else: get, already set above
1661 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1663 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
1667 case TVN_ITEMEXPANDING
:
1668 event
.m_code
= FALSE
;
1671 case TVN_ITEMEXPANDED
:
1673 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
1675 bool expand
= FALSE
;
1676 switch ( tv
->action
)
1687 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND "
1688 "message"), tv
->action
);
1691 bool ing
= ((int)hdr
->code
== TVN_ITEMEXPANDING
);
1692 eventType
= g_events
[expand
][ing
];
1694 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1700 eventType
= wxEVT_COMMAND_TREE_KEY_DOWN
;
1701 TV_KEYDOWN
*info
= (TV_KEYDOWN
*)lParam
;
1703 event
.m_code
= wxCharCodeMSWToWX(info
->wVKey
);
1705 // a separate event for this case
1706 if ( info
->wVKey
== VK_SPACE
|| info
->wVKey
== VK_RETURN
)
1708 wxTreeEvent
event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
1710 event2
.SetEventObject(this);
1712 GetEventHandler()->ProcessEvent(event2
);
1717 case TVN_SELCHANGED
:
1718 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGED
;
1721 case TVN_SELCHANGING
:
1723 if ( eventType
== wxEVT_NULL
)
1724 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGING
;
1725 //else: already set above
1727 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
1729 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1730 event
.m_itemOld
= (WXHTREEITEM
) tv
->itemOld
.hItem
;
1734 #if defined(_WIN32_IE) && _WIN32_IE >= 0x300
1737 LPNMTVCUSTOMDRAW lptvcd
= (LPNMTVCUSTOMDRAW
)lParam
;
1738 NMCUSTOMDRAW
& nmcd
= lptvcd
->nmcd
;
1739 switch( nmcd
.dwDrawStage
)
1742 // if we've got any items with non standard attributes,
1743 // notify us before painting each item
1744 *result
= m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
1748 case CDDS_ITEMPREPAINT
:
1750 wxTreeItemAttr
*attr
=
1751 (wxTreeItemAttr
*)m_attrs
.Get(nmcd
.dwItemSpec
);
1755 // nothing to do for this item
1756 return CDRF_DODEFAULT
;
1760 wxColour colText
, colBack
;
1761 if ( attr
->HasFont() )
1763 wxFont font
= attr
->GetFont();
1764 hFont
= (HFONT
)font
.GetResourceHandle();
1771 if ( attr
->HasTextColour() )
1773 colText
= attr
->GetTextColour();
1777 colText
= GetForegroundColour();
1780 // selection colours should override ours
1781 if ( nmcd
.uItemState
& CDIS_SELECTED
)
1783 DWORD clrBk
= ::GetSysColor(COLOR_HIGHLIGHT
);
1784 lptvcd
->clrTextBk
= clrBk
;
1786 // try to make the text visible
1787 lptvcd
->clrText
= wxColourToRGB(colText
);
1788 lptvcd
->clrText
|= ~clrBk
;
1789 lptvcd
->clrText
&= 0x00ffffff;
1793 if ( attr
->HasBackgroundColour() )
1795 colBack
= attr
->GetBackgroundColour();
1799 colBack
= GetBackgroundColour();
1802 lptvcd
->clrText
= wxColourToRGB(colText
);
1803 lptvcd
->clrTextBk
= wxColourToRGB(colBack
);
1806 // note that if we wanted to set colours for
1807 // individual columns (subitems), we would have
1808 // returned CDRF_NOTIFYSUBITEMREDRAW from here
1811 ::SelectObject(nmcd
.hdc
, hFont
);
1813 *result
= CDRF_NEWFONT
;
1817 *result
= CDRF_DODEFAULT
;
1824 *result
= CDRF_DODEFAULT
;
1829 #endif // _WIN32_IE >= 0x300
1832 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1835 event
.SetEventObject(this);
1836 event
.SetEventType(eventType
);
1838 bool processed
= GetEventHandler()->ProcessEvent(event
);
1841 switch ( hdr
->code
)
1844 case TVN_BEGINRDRAG
:
1845 if ( event
.IsAllowed() )
1847 // normally this is impossible because the m_dragImage is
1848 // deleted once the drag operation is over
1849 wxASSERT_MSG( !m_dragImage
, _T("starting to drag once again?") );
1851 m_dragImage
= new wxDragImage(*this, event
.m_item
);
1852 m_dragImage
->BeginDrag(wxPoint(0, 0), this);
1853 m_dragImage
->Show(this);
1857 case TVN_DELETEITEM
:
1859 // NB: we might process this message using wxWindows event
1860 // tables, but due to overhead of wxWin event system we
1861 // prefer to do it here ourself (otherwise deleting a tree
1862 // with many items is just too slow)
1863 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
1865 wxTreeItemId item
= event
.m_item
;
1866 if ( HasIndirectData(item
) )
1868 wxTreeItemIndirectData
*data
= (wxTreeItemIndirectData
*)
1870 delete data
; // can't be NULL here
1872 m_itemsWithIndirectData
.Remove(item
);
1876 wxTreeItemData
*data
= (wxTreeItemData
*)tv
->itemOld
.lParam
;
1877 delete data
; // may be NULL, ok
1880 processed
= TRUE
; // Make sure we don't get called twice
1884 case TVN_BEGINLABELEDIT
:
1885 // return TRUE to cancel label editing
1886 *result
= !event
.IsAllowed();
1889 case TVN_ENDLABELEDIT
:
1890 // return TRUE to set the label to the new string
1891 *result
= event
.IsAllowed();
1893 // ensure that we don't have the text ctrl which is going to be
1898 case TVN_SELCHANGING
:
1899 case TVN_ITEMEXPANDING
:
1900 // return TRUE to prevent the action from happening
1901 *result
= !event
.IsAllowed();
1904 case TVN_GETDISPINFO
:
1905 // NB: so far the user can't set the image himself anyhow, so do it
1906 // anyway - but this may change later
1907 if ( /* !processed && */ 1 )
1909 wxTreeItemId item
= event
.m_item
;
1910 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1911 if ( info
->item
.mask
& TVIF_IMAGE
)
1914 DoGetItemImageFromData
1917 IsExpanded(item
) ? wxTreeItemIcon_Expanded
1918 : wxTreeItemIcon_Normal
1921 if ( info
->item
.mask
& TVIF_SELECTEDIMAGE
)
1923 info
->item
.iSelectedImage
=
1924 DoGetItemImageFromData
1927 IsExpanded(item
) ? wxTreeItemIcon_SelectedExpanded
1928 : wxTreeItemIcon_Selected
1935 // for the other messages the return value is ignored and there is
1936 // nothing special to do
1942 // ----------------------------------------------------------------------------
1944 // ----------------------------------------------------------------------------
1946 IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent
, wxNotifyEvent
)
1948 wxTreeEvent::wxTreeEvent(wxEventType commandType
, int id
)
1949 : wxNotifyEvent(commandType
, id
)