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/window.h"
31 #include "wx/msw/private.h"
33 // Mingw32 is a bit mental even though this is done in winundef
42 #if defined(__WIN95__)
45 #include "wx/dynarray.h"
46 #include "wx/imaglist.h"
47 #include "wx/treectrl.h"
48 #include "wx/settings.h"
51 #ifndef wxUSE_NORLANDER_HEADERS
52 #include "wx/msw/gnuwin32/extra.h"
56 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS)
60 // Bug in headers, sometimes
62 #define TVIS_FOCUSED 0x0001
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 // a convenient wrapper around TV_ITEM struct which adds a ctor
71 #pragma warning( disable : 4097 )
74 struct wxTreeViewItem
: public TV_ITEM
76 wxTreeViewItem(const wxTreeItemId
& item
, // the item handle
77 UINT mask_
, // fields which are valid
78 UINT stateMask_
= 0) // for TVIF_STATE only
80 // hItem member is always valid
81 mask
= mask_
| TVIF_HANDLE
;
82 stateMask
= stateMask_
;
83 hItem
= (HTREEITEM
) (WXHTREEITEM
) item
;
88 #pragma warning( default : 4097 )
91 // a class which encapsulates the tree traversal logic: it vists all (unless
92 // OnVisit() returns FALSE) items under the given one
96 wxTreeTraversal(const wxTreeCtrl
*tree
)
101 // do traverse the tree: visit all items (recursively by default) under the
102 // given one; return TRUE if all items were traversed or FALSE if the
103 // traversal was aborted because OnVisit returned FALSE
104 bool DoTraverse(const wxTreeItemId
& root
, bool recursively
= TRUE
);
106 // override this function to do whatever is needed for each item, return
107 // FALSE to stop traversing
108 virtual bool OnVisit(const wxTreeItemId
& item
) = 0;
111 const wxTreeCtrl
*GetTree() const { return m_tree
; }
114 bool Traverse(const wxTreeItemId
& root
, bool recursively
);
116 const wxTreeCtrl
*m_tree
;
119 // internal class for getting the selected items
120 class TraverseSelections
: public wxTreeTraversal
123 TraverseSelections(const wxTreeCtrl
*tree
,
124 wxArrayTreeItemIds
& selections
)
125 : wxTreeTraversal(tree
), m_selections(selections
)
127 m_selections
.Empty();
129 DoTraverse(tree
->GetRootItem());
132 virtual bool OnVisit(const wxTreeItemId
& item
)
134 if ( GetTree()->IsItemChecked(item
) )
136 m_selections
.Add(item
);
143 wxArrayTreeItemIds
& m_selections
;
146 // internal class for counting tree items
147 class TraverseCounter
: public wxTreeTraversal
150 TraverseCounter(const wxTreeCtrl
*tree
,
151 const wxTreeItemId
& root
,
153 : wxTreeTraversal(tree
)
157 DoTraverse(root
, recursively
);
160 virtual bool OnVisit(const wxTreeItemId
& item
)
167 size_t GetCount() const { return m_count
; }
173 // ----------------------------------------------------------------------------
174 // This class is needed for support of different images: the Win32 common
175 // control natively supports only 2 images (the normal one and another for the
176 // selected state). We wish to provide support for 2 more of them for folder
177 // items (i.e. those which have children): for expanded state and for expanded
178 // selected state. For this we use this structure to store the additional items
181 // There is only one problem with this: when we retrieve the item's data, we
182 // don't know whether we get a pointer to wxTreeItemData or
183 // wxTreeItemIndirectData. So we have to maintain a list of all items which
184 // have indirect data inside the listctrl itself.
185 // ----------------------------------------------------------------------------
187 class wxTreeItemIndirectData
190 // ctor associates this data with the item and the real item data becomes
191 // available through our GetData() method
192 wxTreeItemIndirectData(wxTreeCtrl
*tree
, const wxTreeItemId
& item
)
194 for ( size_t n
= 0; n
< WXSIZEOF(m_images
); n
++ )
200 m_data
= tree
->GetItemData(item
);
202 // and set ourselves as the new one
203 tree
->SetIndirectItemData(item
, this);
206 // dtor deletes the associated data as well
207 ~wxTreeItemIndirectData() { delete m_data
; }
210 // get the real data associated with the item
211 wxTreeItemData
*GetData() const { return m_data
; }
213 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
215 // do we have such image?
216 bool HasImage(wxTreeItemIcon which
) const { return m_images
[which
] != -1; }
218 int GetImage(wxTreeItemIcon which
) const { return m_images
[which
]; }
220 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
223 // all the images associated with the item
224 int m_images
[wxTreeItemIcon_Max
];
226 wxTreeItemData
*m_data
;
229 // ----------------------------------------------------------------------------
231 // ----------------------------------------------------------------------------
233 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxControl
)
235 // ----------------------------------------------------------------------------
237 // ----------------------------------------------------------------------------
239 // handy table for sending events
240 static const wxEventType g_events
[2][2] =
242 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, wxEVT_COMMAND_TREE_ITEM_COLLAPSING
},
243 { wxEVT_COMMAND_TREE_ITEM_EXPANDED
, wxEVT_COMMAND_TREE_ITEM_EXPANDING
}
246 // ============================================================================
248 // ============================================================================
250 // ----------------------------------------------------------------------------
252 // ----------------------------------------------------------------------------
254 bool wxTreeTraversal::DoTraverse(const wxTreeItemId
& root
, bool recursively
)
256 if ( !OnVisit(root
) )
259 return Traverse(root
, recursively
);
262 bool wxTreeTraversal::Traverse(const wxTreeItemId
& root
, bool recursively
)
265 wxTreeItemId child
= m_tree
->GetFirstChild(root
, cookie
);
266 while ( child
.IsOk() )
268 // depth first traversal
269 if ( recursively
&& !Traverse(child
, TRUE
) )
272 if ( !OnVisit(child
) )
275 child
= m_tree
->GetNextChild(root
, cookie
);
281 // ----------------------------------------------------------------------------
282 // construction and destruction
283 // ----------------------------------------------------------------------------
285 void wxTreeCtrl::Init()
287 m_imageListNormal
= NULL
;
288 m_imageListState
= NULL
;
290 m_hasAnyAttr
= FALSE
;
293 bool wxTreeCtrl::Create(wxWindow
*parent
,
298 const wxValidator
& validator
,
299 const wxString
& name
)
303 if ( !CreateControl(parent
, id
, pos
, size
, style
, validator
, name
) )
306 DWORD wstyle
= WS_VISIBLE
| WS_CHILD
| WS_TABSTOP
|
307 TVS_HASLINES
| TVS_SHOWSELALWAYS
;
309 if ( m_windowStyle
& wxTR_HAS_BUTTONS
)
310 wstyle
|= TVS_HASBUTTONS
;
312 if ( m_windowStyle
& wxTR_EDIT_LABELS
)
313 wstyle
|= TVS_EDITLABELS
;
315 if ( m_windowStyle
& wxTR_LINES_AT_ROOT
)
316 wstyle
|= TVS_LINESATROOT
;
318 #if !defined( __GNUWIN32__ ) && !defined( __BORLANDC__ ) && !defined( __WATCOMC__ ) && !defined(wxUSE_NORLANDER_HEADERS)
319 // we emulate the multiple selection tree controls by using checkboxes: set
320 // up the image list we need for this if we do have multiple selections
321 #if !defined(__VISUALC__) || (__VISUALC__ > 1010)
322 if ( m_windowStyle
& wxTR_MULTIPLE
)
323 wstyle
|= TVS_CHECKBOXES
;
327 // Create the tree control.
328 if ( !MSWCreateControl(WC_TREEVIEW
, wstyle
) )
331 SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW
));
332 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
334 // VZ: this is some experimental code which may be used to get the
335 // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71.
336 // AFAIK, the standard DLL does about the same thing anyhow.
338 if ( m_windowStyle
& wxTR_MULTIPLE
)
342 // create the DC compatible with the current screen
343 HDC hdcMem
= CreateCompatibleDC(NULL
);
345 // create a mono bitmap of the standard size
346 int x
= GetSystemMetrics(SM_CXMENUCHECK
);
347 int y
= GetSystemMetrics(SM_CYMENUCHECK
);
348 wxImageList
imagelistCheckboxes(x
, y
, FALSE
, 2);
349 HBITMAP hbmpCheck
= CreateBitmap(x
, y
, // bitmap size
350 1, // # of color planes
351 1, // # bits needed for one pixel
352 0); // array containing colour data
353 SelectObject(hdcMem
, hbmpCheck
);
355 // then draw a check mark into it
356 RECT rect
= { 0, 0, x
, y
};
357 if ( !::DrawFrameControl(hdcMem
, &rect
,
359 DFCS_BUTTONCHECK
| DFCS_CHECKED
) )
361 wxLogLastError(wxT("DrawFrameControl(check)"));
364 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
365 imagelistCheckboxes
.Add(bmp
);
367 if ( !::DrawFrameControl(hdcMem
, &rect
,
371 wxLogLastError(wxT("DrawFrameControl(uncheck)"));
374 bmp
.SetHBITMAP((WXHBITMAP
)hbmpCheck
);
375 imagelistCheckboxes
.Add(bmp
);
381 SetStateImageList(&imagelistCheckboxes
);
385 SetSize(pos
.x
, pos
.y
, size
.x
, size
.y
);
390 wxTreeCtrl::~wxTreeCtrl()
392 // delete any attributes
395 for ( wxNode
*node
= m_attrs
.Next(); node
; node
= m_attrs
.Next() )
397 delete (wxTreeItemAttr
*)node
->Data();
400 // prevent TVN_DELETEITEM handler from deleting the attributes again!
401 m_hasAnyAttr
= FALSE
;
406 // delete user data to prevent memory leaks
410 // ----------------------------------------------------------------------------
412 // ----------------------------------------------------------------------------
414 // simple wrappers which add error checking in debug mode
416 bool wxTreeCtrl::DoGetItem(wxTreeViewItem
* tvItem
) const
418 if ( !TreeView_GetItem(GetHwnd(), tvItem
) )
420 wxLogLastError("TreeView_GetItem");
428 void wxTreeCtrl::DoSetItem(wxTreeViewItem
* tvItem
)
430 if ( TreeView_SetItem(GetHwnd(), tvItem
) == -1 )
432 wxLogLastError("TreeView_SetItem");
436 size_t wxTreeCtrl::GetCount() const
438 return (size_t)TreeView_GetCount(GetHwnd());
441 unsigned int wxTreeCtrl::GetIndent() const
443 return TreeView_GetIndent(GetHwnd());
446 void wxTreeCtrl::SetIndent(unsigned int indent
)
448 TreeView_SetIndent(GetHwnd(), indent
);
451 wxImageList
*wxTreeCtrl::GetImageList() const
453 return m_imageListNormal
;
456 wxImageList
*wxTreeCtrl::GetStateImageList() const
458 return m_imageListNormal
;
461 void wxTreeCtrl::SetAnyImageList(wxImageList
*imageList
, int which
)
464 TreeView_SetImageList(GetHwnd(),
465 imageList
? imageList
->GetHIMAGELIST() : 0,
469 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
471 SetAnyImageList(m_imageListNormal
= imageList
, TVSIL_NORMAL
);
474 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
476 SetAnyImageList(m_imageListState
= imageList
, TVSIL_STATE
);
479 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
480 bool recursively
) const
482 TraverseCounter
counter(this, item
, recursively
);
484 return counter
.GetCount() - 1;
487 // ----------------------------------------------------------------------------
489 // ----------------------------------------------------------------------------
491 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
493 wxChar buf
[512]; // the size is arbitrary...
495 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
496 tvItem
.pszText
= buf
;
497 tvItem
.cchTextMax
= WXSIZEOF(buf
);
498 if ( !DoGetItem(&tvItem
) )
500 // don't return some garbage which was on stack, but an empty string
504 return wxString(buf
);
507 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
509 wxTreeViewItem
tvItem(item
, TVIF_TEXT
);
510 tvItem
.pszText
= (wxChar
*)text
.c_str(); // conversion is ok
514 int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId
& item
,
515 wxTreeItemIcon which
) const
517 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
518 if ( !DoGetItem(&tvItem
) )
523 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetImage(which
);
526 void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId
& item
,
528 wxTreeItemIcon which
) const
530 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
531 if ( !DoGetItem(&tvItem
) )
536 wxTreeItemIndirectData
*data
= ((wxTreeItemIndirectData
*)tvItem
.lParam
);
538 data
->SetImage(image
, which
);
540 // make sure that we have selected images as well
541 if ( which
== wxTreeItemIcon_Normal
&&
542 !data
->HasImage(wxTreeItemIcon_Selected
) )
544 data
->SetImage(image
, wxTreeItemIcon_Selected
);
547 if ( which
== wxTreeItemIcon_Expanded
&&
548 !data
->HasImage(wxTreeItemIcon_SelectedExpanded
) )
550 data
->SetImage(image
, wxTreeItemIcon_SelectedExpanded
);
554 void wxTreeCtrl::DoSetItemImages(const wxTreeItemId
& item
,
558 wxTreeViewItem
tvItem(item
, TVIF_IMAGE
| TVIF_SELECTEDIMAGE
);
559 tvItem
.iSelectedImage
= imageSel
;
560 tvItem
.iImage
= image
;
564 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
565 wxTreeItemIcon which
) const
567 if ( HasIndirectData(item
) )
569 return DoGetItemImageFromData(item
, which
);
576 wxFAIL_MSG( wxT("unknown tree item image type") );
578 case wxTreeItemIcon_Normal
:
582 case wxTreeItemIcon_Selected
:
583 mask
= TVIF_SELECTEDIMAGE
;
586 case wxTreeItemIcon_Expanded
:
587 case wxTreeItemIcon_SelectedExpanded
:
591 wxTreeViewItem
tvItem(item
, mask
);
594 return mask
== TVIF_IMAGE
? tvItem
.iImage
: tvItem
.iSelectedImage
;
597 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
, int image
,
598 wxTreeItemIcon which
)
600 int imageNormal
, imageSel
;
604 wxFAIL_MSG( wxT("unknown tree item image type") );
606 case wxTreeItemIcon_Normal
:
608 imageSel
= GetItemSelectedImage(item
);
611 case wxTreeItemIcon_Selected
:
612 imageNormal
= GetItemImage(item
);
616 case wxTreeItemIcon_Expanded
:
617 case wxTreeItemIcon_SelectedExpanded
:
618 if ( !HasIndirectData(item
) )
620 // we need to get the old images first, because after we create
621 // the wxTreeItemIndirectData GetItemXXXImage() will use it to
623 imageNormal
= GetItemImage(item
);
624 imageSel
= GetItemSelectedImage(item
);
626 // if it doesn't have it yet, add it
627 wxTreeItemIndirectData
*data
= new
628 wxTreeItemIndirectData(this, item
);
630 // copy the data to the new location
631 data
->SetImage(imageNormal
, wxTreeItemIcon_Normal
);
632 data
->SetImage(imageSel
, wxTreeItemIcon_Selected
);
635 DoSetItemImageFromData(item
, image
, which
);
637 // reset the normal/selected images because we won't use them any
638 // more - now they're stored inside the indirect data
640 imageSel
= I_IMAGECALLBACK
;
644 // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always
645 // change both normal and selected image - otherwise the change simply
646 // doesn't take place!
647 DoSetItemImages(item
, imageNormal
, imageSel
);
650 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
652 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
653 if ( !DoGetItem(&tvItem
) )
658 if ( HasIndirectData(item
) )
660 return ((wxTreeItemIndirectData
*)tvItem
.lParam
)->GetData();
664 return (wxTreeItemData
*)tvItem
.lParam
;
668 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
670 wxTreeViewItem
tvItem(item
, TVIF_PARAM
);
672 if ( HasIndirectData(item
) )
674 if ( DoGetItem(&tvItem
) )
676 ((wxTreeItemIndirectData
*)tvItem
.lParam
)->SetData(data
);
680 wxFAIL_MSG( wxT("failed to change tree items data") );
685 tvItem
.lParam
= (LPARAM
)data
;
690 void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId
& item
,
691 wxTreeItemIndirectData
*data
)
693 // this should never happen because it's unnecessary and will probably lead
694 // to crash too because the code elsewhere supposes that the pointer the
695 // wxTreeItemIndirectData has is a real wxItemData and not
696 // wxTreeItemIndirectData as well
697 wxASSERT_MSG( !HasIndirectData(item
), wxT("setting indirect data twice?") );
699 SetItemData(item
, (wxTreeItemData
*)data
);
701 m_itemsWithIndirectData
.Add(item
);
704 bool wxTreeCtrl::HasIndirectData(const wxTreeItemId
& item
) const
706 return m_itemsWithIndirectData
.Index(item
) != wxNOT_FOUND
;
709 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
711 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
712 tvItem
.cChildren
= (int)has
;
716 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
718 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
719 tvItem
.state
= bold
? TVIS_BOLD
: 0;
723 void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
, bool highlight
)
725 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_DROPHILITED
);
726 tvItem
.state
= highlight
? TVIS_DROPHILITED
: 0;
730 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
735 long id
= (long)(WXHTREEITEM
)item
;
736 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
739 attr
= new wxTreeItemAttr
;
740 m_attrs
.Put(id
, (wxObject
*)attr
);
743 attr
->SetTextColour(col
);
746 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
751 long id
= (long)(WXHTREEITEM
)item
;
752 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
755 attr
= new wxTreeItemAttr
;
756 m_attrs
.Put(id
, (wxObject
*)attr
);
759 attr
->SetBackgroundColour(col
);
762 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
766 long id
= (long)(WXHTREEITEM
)item
;
767 wxTreeItemAttr
*attr
= (wxTreeItemAttr
*)m_attrs
.Get(id
);
770 attr
= new wxTreeItemAttr
;
771 m_attrs
.Put(id
, (wxObject
*)attr
);
777 // ----------------------------------------------------------------------------
779 // ----------------------------------------------------------------------------
781 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
783 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
786 // this ugliness comes directly from MSDN - it *is* the correct way to pass
787 // the HTREEITEM with TVM_GETITEMRECT
788 *(WXHTREEITEM
*)&rect
= (WXHTREEITEM
)item
;
790 // FALSE means get item rect for the whole item, not only text
791 return SendMessage(GetHwnd(), TVM_GETITEMRECT
, FALSE
, (LPARAM
)&rect
) != 0;
795 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
797 wxTreeViewItem
tvItem(item
, TVIF_CHILDREN
);
800 return tvItem
.cChildren
!= 0;
803 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
805 // probably not a good idea to put it here
806 //wxASSERT( ItemHasChildren(item) );
808 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDED
);
811 return (tvItem
.state
& TVIS_EXPANDED
) != 0;
814 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
816 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_SELECTED
);
819 return (tvItem
.state
& TVIS_SELECTED
) != 0;
822 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
824 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_BOLD
);
827 return (tvItem
.state
& TVIS_BOLD
) != 0;
830 // ----------------------------------------------------------------------------
832 // ----------------------------------------------------------------------------
834 wxTreeItemId
wxTreeCtrl::GetRootItem() const
836 return wxTreeItemId((WXHTREEITEM
) TreeView_GetRoot(GetHwnd()));
839 wxTreeItemId
wxTreeCtrl::GetSelection() const
841 wxCHECK_MSG( !(m_windowStyle
& wxTR_MULTIPLE
), (WXHTREEITEM
)0,
842 wxT("this only works with single selection controls") );
844 return wxTreeItemId((WXHTREEITEM
) TreeView_GetSelection(GetHwnd()));
847 wxTreeItemId
wxTreeCtrl::GetParent(const wxTreeItemId
& item
) const
849 return wxTreeItemId((WXHTREEITEM
) TreeView_GetParent(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
852 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
855 // remember the last child returned in 'cookie'
856 _cookie
= (long)TreeView_GetChild(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
)item
);
858 return wxTreeItemId((WXHTREEITEM
)_cookie
);
861 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& WXUNUSED(item
),
864 wxTreeItemId l
= wxTreeItemId((WXHTREEITEM
)TreeView_GetNextSibling(GetHwnd(),
865 (HTREEITEM
)(WXHTREEITEM
)_cookie
));
871 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
873 // can this be done more efficiently?
876 wxTreeItemId childLast
,
877 child
= GetFirstChild(item
, cookie
);
878 while ( child
.IsOk() )
881 child
= GetNextChild(item
, cookie
);
887 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
889 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextSibling(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
892 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
894 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevSibling(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
897 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
899 return wxTreeItemId((WXHTREEITEM
) TreeView_GetFirstVisible(GetHwnd()));
902 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
904 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetNextVisible() "
905 "for must be visible itself!"));
907 return wxTreeItemId((WXHTREEITEM
) TreeView_GetNextVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
910 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
912 wxASSERT_MSG( IsVisible(item
), wxT("The item you call GetPrevVisible() "
913 "for must be visible itself!"));
915 return wxTreeItemId((WXHTREEITEM
) TreeView_GetPrevVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
));
918 // ----------------------------------------------------------------------------
919 // multiple selections emulation
920 // ----------------------------------------------------------------------------
922 bool wxTreeCtrl::IsItemChecked(const wxTreeItemId
& item
) const
924 // receive the desired information.
925 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
928 // state image indices are 1 based
929 return ((tvItem
.state
>> 12) - 1) == 1;
932 void wxTreeCtrl::SetItemCheck(const wxTreeItemId
& item
, bool check
)
934 // receive the desired information.
935 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_STATEIMAGEMASK
);
937 // state images are one-based
938 tvItem
.state
= (check
? 2 : 1) << 12;
943 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
& selections
) const
945 TraverseSelections
selector(this, selections
);
947 return selections
.GetCount();
950 // ----------------------------------------------------------------------------
952 // ----------------------------------------------------------------------------
954 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parent
,
955 wxTreeItemId hInsertAfter
,
956 const wxString
& text
,
957 int image
, int selectedImage
,
958 wxTreeItemData
*data
)
960 TV_INSERTSTRUCT tvIns
;
961 tvIns
.hParent
= (HTREEITEM
) (WXHTREEITEM
)parent
;
962 tvIns
.hInsertAfter
= (HTREEITEM
) (WXHTREEITEM
) hInsertAfter
;
964 // this is how we insert the item as the first child: supply a NULL
966 if ( !tvIns
.hInsertAfter
)
968 tvIns
.hInsertAfter
= TVI_FIRST
;
972 if ( !text
.IsEmpty() )
975 tvIns
.item
.pszText
= (wxChar
*)text
.c_str(); // cast is ok
981 tvIns
.item
.iImage
= image
;
983 if ( selectedImage
== -1 )
985 // take the same image for selected icon if not specified
986 selectedImage
= image
;
990 if ( selectedImage
!= -1 )
992 mask
|= TVIF_SELECTEDIMAGE
;
993 tvIns
.item
.iSelectedImage
= selectedImage
;
999 tvIns
.item
.lParam
= (LPARAM
)data
;
1002 tvIns
.item
.mask
= mask
;
1004 HTREEITEM id
= (HTREEITEM
) TreeView_InsertItem(GetHwnd(), &tvIns
);
1007 wxLogLastError("TreeView_InsertItem");
1012 // associate the application tree item with Win32 tree item handle
1013 data
->SetId((WXHTREEITEM
)id
);
1016 return wxTreeItemId((WXHTREEITEM
)id
);
1019 // for compatibility only
1020 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1021 const wxString
& text
,
1022 int image
, int selImage
,
1025 return DoInsertItem(parent
, (WXHTREEITEM
)insertAfter
, text
,
1026 image
, selImage
, NULL
);
1029 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
1030 int image
, int selectedImage
,
1031 wxTreeItemData
*data
)
1033 return DoInsertItem(wxTreeItemId((WXHTREEITEM
) 0), (WXHTREEITEM
) 0,
1034 text
, image
, selectedImage
, data
);
1037 wxTreeItemId
wxTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1038 const wxString
& text
,
1039 int image
, int selectedImage
,
1040 wxTreeItemData
*data
)
1042 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_FIRST
,
1043 text
, image
, selectedImage
, data
);
1046 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1047 const wxTreeItemId
& idPrevious
,
1048 const wxString
& text
,
1049 int image
, int selectedImage
,
1050 wxTreeItemData
*data
)
1052 return DoInsertItem(parent
, idPrevious
, text
, image
, selectedImage
, data
);
1055 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parent
,
1057 const wxString
& text
,
1058 int image
, int selectedImage
,
1059 wxTreeItemData
*data
)
1061 // find the item from index
1063 wxTreeItemId idPrev
, idCur
= GetFirstChild(parent
, cookie
);
1064 while ( index
!= 0 && idCur
.IsOk() )
1069 idCur
= GetNextChild(parent
, cookie
);
1072 // assert, not check: if the index is invalid, we will append the item
1074 wxASSERT_MSG( index
== 0, _T("bad index in wxTreeCtrl::InsertItem") );
1076 return DoInsertItem(parent
, idPrev
, text
, image
, selectedImage
, data
);
1079 wxTreeItemId
wxTreeCtrl::AppendItem(const wxTreeItemId
& parent
,
1080 const wxString
& text
,
1081 int image
, int selectedImage
,
1082 wxTreeItemData
*data
)
1084 return DoInsertItem(parent
, (WXHTREEITEM
) TVI_LAST
,
1085 text
, image
, selectedImage
, data
);
1088 void wxTreeCtrl::Delete(const wxTreeItemId
& item
)
1090 if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM
)(WXHTREEITEM
)item
) )
1092 wxLogLastError("TreeView_DeleteItem");
1096 // delete all children (but don't delete the item itself)
1097 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& item
)
1101 wxArrayLong children
;
1102 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1103 while ( child
.IsOk() )
1105 children
.Add((long)(WXHTREEITEM
)child
);
1107 child
= GetNextChild(item
, cookie
);
1110 size_t nCount
= children
.Count();
1111 for ( size_t n
= 0; n
< nCount
; n
++ )
1113 if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM
)children
[n
]) )
1115 wxLogLastError("TreeView_DeleteItem");
1120 void wxTreeCtrl::DeleteAllItems()
1122 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1124 wxLogLastError("TreeView_DeleteAllItems");
1128 void wxTreeCtrl::DoExpand(const wxTreeItemId
& item
, int flag
)
1130 wxASSERT_MSG( flag
== TVE_COLLAPSE
||
1131 flag
== (TVE_COLLAPSE
| TVE_COLLAPSERESET
) ||
1132 flag
== TVE_EXPAND
||
1134 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1136 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1137 // emulate them. This behaviour has changed slightly with comctl32.dll
1138 // v 4.70 - now it does send them but only the first time. To maintain
1139 // compatible behaviour and also in order to not have surprises with the
1140 // future versions, don't rely on this and still do everything ourselves.
1141 // To avoid that the messages be sent twice when the item is expanded for
1142 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1144 wxTreeViewItem
tvItem(item
, TVIF_STATE
, TVIS_EXPANDEDONCE
);
1148 if ( TreeView_Expand(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
, flag
) != 0 )
1150 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1151 event
.m_item
= item
;
1153 bool isExpanded
= IsExpanded(item
);
1155 event
.SetEventObject(this);
1157 // FIXME return value of {EXPAND|COLLAPS}ING event handler is discarded
1158 event
.SetEventType(g_events
[isExpanded
][TRUE
]);
1159 GetEventHandler()->ProcessEvent(event
);
1161 event
.SetEventType(g_events
[isExpanded
][FALSE
]);
1162 GetEventHandler()->ProcessEvent(event
);
1164 //else: change didn't took place, so do nothing at all
1167 void wxTreeCtrl::Expand(const wxTreeItemId
& item
)
1169 DoExpand(item
, TVE_EXPAND
);
1172 void wxTreeCtrl::Collapse(const wxTreeItemId
& item
)
1174 DoExpand(item
, TVE_COLLAPSE
);
1177 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1179 DoExpand(item
, TVE_COLLAPSE
| TVE_COLLAPSERESET
);
1182 void wxTreeCtrl::Toggle(const wxTreeItemId
& item
)
1184 DoExpand(item
, TVE_TOGGLE
);
1187 void wxTreeCtrl::ExpandItem(const wxTreeItemId
& item
, int action
)
1189 DoExpand(item
, action
);
1192 void wxTreeCtrl::Unselect()
1194 wxASSERT_MSG( !(m_windowStyle
& wxTR_MULTIPLE
), wxT("doesn't make sense") );
1196 // just remove the selection
1197 SelectItem(wxTreeItemId((WXHTREEITEM
) 0));
1200 void wxTreeCtrl::UnselectAll()
1202 if ( m_windowStyle
& wxTR_MULTIPLE
)
1204 wxArrayTreeItemIds selections
;
1205 size_t count
= GetSelections(selections
);
1206 for ( size_t n
= 0; n
< count
; n
++ )
1208 SetItemCheck(selections
[n
], FALSE
);
1213 // just remove the selection
1218 void wxTreeCtrl::SelectItem(const wxTreeItemId
& item
)
1220 if ( m_windowStyle
& wxTR_MULTIPLE
)
1222 // selecting the item means checking it
1227 // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive
1228 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1229 // send them ourselves
1231 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1232 event
.m_item
= item
;
1233 event
.SetEventObject(this);
1235 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING
);
1236 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
1238 if ( !TreeView_SelectItem(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
) )
1240 wxLogLastError("TreeView_SelectItem");
1244 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1245 (void)GetEventHandler()->ProcessEvent(event
);
1248 //else: program vetoed the change
1252 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1255 TreeView_EnsureVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
);
1258 void wxTreeCtrl::ScrollTo(const wxTreeItemId
& item
)
1260 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
) )
1262 wxLogLastError("TreeView_SelectSetFirstVisible");
1266 wxTextCtrl
* wxTreeCtrl::GetEditControl() const
1271 void wxTreeCtrl::DeleteTextCtrl()
1275 m_textCtrl
->UnsubclassWin();
1276 m_textCtrl
->SetHWND(0);
1282 wxTextCtrl
* wxTreeCtrl::EditLabel(const wxTreeItemId
& item
,
1283 wxClassInfo
* textControlClass
)
1285 wxASSERT( textControlClass
->IsKindOf(CLASSINFO(wxTextCtrl
)) );
1287 HWND hWnd
= (HWND
) TreeView_EditLabel(GetHwnd(), (HTREEITEM
) (WXHTREEITEM
) item
);
1289 // this is not an error - the TVN_BEGINLABELEDIT handler might have
1298 m_textCtrl
= (wxTextCtrl
*)textControlClass
->CreateObject();
1299 m_textCtrl
->SetHWND((WXHWND
)hWnd
);
1300 m_textCtrl
->SubclassWin((WXHWND
)hWnd
);
1305 // End label editing, optionally cancelling the edit
1306 void wxTreeCtrl::EndEditLabel(const wxTreeItemId
& item
, bool discardChanges
)
1308 TreeView_EndEditLabelNow(GetHwnd(), discardChanges
);
1313 wxTreeItemId
wxTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
1315 TV_HITTESTINFO hitTestInfo
;
1316 hitTestInfo
.pt
.x
= (int)point
.x
;
1317 hitTestInfo
.pt
.y
= (int)point
.y
;
1319 TreeView_HitTest(GetHwnd(), &hitTestInfo
);
1324 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
1325 flags |= wxTREE_HITTEST_##flag
1327 TRANSLATE_FLAG(ABOVE
);
1328 TRANSLATE_FLAG(BELOW
);
1329 TRANSLATE_FLAG(NOWHERE
);
1330 TRANSLATE_FLAG(ONITEMBUTTON
);
1331 TRANSLATE_FLAG(ONITEMICON
);
1332 TRANSLATE_FLAG(ONITEMINDENT
);
1333 TRANSLATE_FLAG(ONITEMLABEL
);
1334 TRANSLATE_FLAG(ONITEMRIGHT
);
1335 TRANSLATE_FLAG(ONITEMSTATEICON
);
1336 TRANSLATE_FLAG(TOLEFT
);
1337 TRANSLATE_FLAG(TORIGHT
);
1339 #undef TRANSLATE_FLAG
1341 return wxTreeItemId((WXHTREEITEM
) hitTestInfo
.hItem
);
1344 bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
1346 bool textOnly
) const
1349 if ( TreeView_GetItemRect(GetHwnd(), (HTREEITEM
)(WXHTREEITEM
)item
,
1352 rect
= wxRect(wxPoint(rc
.left
, rc
.top
), wxPoint(rc
.right
, rc
.bottom
));
1358 // couldn't retrieve rect: for example, item isn't visible
1363 // ----------------------------------------------------------------------------
1365 // ----------------------------------------------------------------------------
1367 static int CALLBACK
TreeView_CompareCallback(wxTreeItemData
*pItem1
,
1368 wxTreeItemData
*pItem2
,
1371 wxCHECK_MSG( pItem1
&& pItem2
, 0,
1372 wxT("sorting tree without data doesn't make sense") );
1374 return tree
->OnCompareItems(pItem1
->GetId(), pItem2
->GetId());
1377 int wxTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1378 const wxTreeItemId
& item2
)
1380 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1383 void wxTreeCtrl::SortChildren(const wxTreeItemId
& item
)
1385 // rely on the fact that TreeView_SortChildren does the same thing as our
1386 // default behaviour, i.e. sorts items alphabetically and so call it
1387 // directly if we're not in derived class (much more efficient!)
1388 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl
) )
1390 TreeView_SortChildren(GetHwnd(), (HTREEITEM
)(WXHTREEITEM
)item
, 0);
1395 tvSort
.hParent
= (HTREEITEM
)(WXHTREEITEM
)item
;
1396 tvSort
.lpfnCompare
= (PFNTVCOMPARE
)TreeView_CompareCallback
;
1397 tvSort
.lParam
= (LPARAM
)this;
1398 TreeView_SortChildrenCB(GetHwnd(), &tvSort
, 0 /* reserved */);
1402 // ----------------------------------------------------------------------------
1404 // ----------------------------------------------------------------------------
1406 bool wxTreeCtrl::MSWCommand(WXUINT cmd
, WXWORD id
)
1408 if ( cmd
== EN_UPDATE
)
1410 wxCommandEvent
event(wxEVT_COMMAND_TEXT_UPDATED
, id
);
1411 event
.SetEventObject( this );
1412 ProcessCommand(event
);
1414 else if ( cmd
== EN_KILLFOCUS
)
1416 wxCommandEvent
event(wxEVT_KILL_FOCUS
, id
);
1417 event
.SetEventObject( this );
1418 ProcessCommand(event
);
1426 // command processed
1430 // process WM_NOTIFY Windows message
1431 bool wxTreeCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
1433 wxTreeEvent
event(wxEVT_NULL
, m_windowId
);
1434 wxEventType eventType
= wxEVT_NULL
;
1435 NMHDR
*hdr
= (NMHDR
*)lParam
;
1437 switch ( hdr
->code
)
1441 if ( wxControl::MSWOnNotify(idCtrl
, lParam
, result
) )
1444 TV_HITTESTINFO tvhti
;
1445 ::GetCursorPos(&(tvhti
.pt
));
1446 ::ScreenToClient(GetHwnd(),&(tvhti
.pt
));
1447 if ( TreeView_HitTest(GetHwnd(),&tvhti
) )
1449 if( tvhti
.flags
& TVHT_ONITEM
)
1451 event
.m_item
= (WXHTREEITEM
) tvhti
.hItem
;
1452 eventType
= wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
;
1459 eventType
= wxEVT_COMMAND_TREE_BEGIN_DRAG
;
1462 case TVN_BEGINRDRAG
:
1464 if ( eventType
== wxEVT_NULL
)
1465 eventType
= wxEVT_COMMAND_TREE_BEGIN_RDRAG
;
1466 //else: left drag, already set above
1468 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
1470 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1471 event
.m_pointDrag
= wxPoint(tv
->ptDrag
.x
, tv
->ptDrag
.y
);
1475 case TVN_BEGINLABELEDIT
:
1477 eventType
= wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
;
1478 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1480 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
1481 event
.m_label
= info
->item
.pszText
;
1485 case TVN_DELETEITEM
:
1487 eventType
= wxEVT_COMMAND_TREE_DELETE_ITEM
;
1488 NM_TREEVIEW
*tv
= (NM_TREEVIEW
*)lParam
;
1490 event
.m_item
= (WXHTREEITEM
)tv
->itemOld
.hItem
;
1494 delete (wxTreeItemAttr
*)m_attrs
.
1495 Delete((long)tv
->itemOld
.hItem
);
1500 case TVN_ENDLABELEDIT
:
1502 eventType
= wxEVT_COMMAND_TREE_END_LABEL_EDIT
;
1503 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1505 event
.m_item
= (WXHTREEITEM
)info
->item
.hItem
;
1506 event
.m_label
= info
->item
.pszText
;
1507 if (info
->item
.pszText
== NULL
)
1512 case TVN_GETDISPINFO
:
1513 eventType
= wxEVT_COMMAND_TREE_GET_INFO
;
1516 case TVN_SETDISPINFO
:
1518 if ( eventType
== wxEVT_NULL
)
1519 eventType
= wxEVT_COMMAND_TREE_SET_INFO
;
1520 //else: get, already set above
1522 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1524 event
.m_item
= (WXHTREEITEM
) info
->item
.hItem
;
1528 case TVN_ITEMEXPANDING
:
1529 event
.m_code
= FALSE
;
1532 case TVN_ITEMEXPANDED
:
1534 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
1536 bool expand
= FALSE
;
1537 switch ( tv
->action
)
1548 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND "
1549 "message"), tv
->action
);
1552 bool ing
= ((int)hdr
->code
== TVN_ITEMEXPANDING
);
1553 eventType
= g_events
[expand
][ing
];
1555 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1561 eventType
= wxEVT_COMMAND_TREE_KEY_DOWN
;
1562 TV_KEYDOWN
*info
= (TV_KEYDOWN
*)lParam
;
1564 event
.m_code
= wxCharCodeMSWToWX(info
->wVKey
);
1566 // a separate event for this case
1567 if ( info
->wVKey
== VK_SPACE
|| info
->wVKey
== VK_RETURN
)
1569 wxTreeEvent
event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
,
1571 event2
.SetEventObject(this);
1573 GetEventHandler()->ProcessEvent(event2
);
1578 case TVN_SELCHANGED
:
1579 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGED
;
1582 case TVN_SELCHANGING
:
1584 if ( eventType
== wxEVT_NULL
)
1585 eventType
= wxEVT_COMMAND_TREE_SEL_CHANGING
;
1586 //else: already set above
1588 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
1590 event
.m_item
= (WXHTREEITEM
) tv
->itemNew
.hItem
;
1591 event
.m_itemOld
= (WXHTREEITEM
) tv
->itemOld
.hItem
;
1595 #if defined(_WIN32_IE) && _WIN32_IE >= 0x300
1598 LPNMTVCUSTOMDRAW lptvcd
= (LPNMTVCUSTOMDRAW
)lParam
;
1599 NMCUSTOMDRAW
& nmcd
= lptvcd
->nmcd
;
1600 switch( nmcd
.dwDrawStage
)
1603 // if we've got any items with non standard attributes,
1604 // notify us before painting each item
1605 *result
= m_hasAnyAttr
? CDRF_NOTIFYITEMDRAW
1609 case CDDS_ITEMPREPAINT
:
1611 wxTreeItemAttr
*attr
=
1612 (wxTreeItemAttr
*)m_attrs
.Get(nmcd
.dwItemSpec
);
1616 // nothing to do for this item
1617 return CDRF_DODEFAULT
;
1621 wxColour colText
, colBack
;
1622 if ( attr
->HasFont() )
1624 wxFont font
= attr
->GetFont();
1625 hFont
= (HFONT
)font
.GetResourceHandle();
1632 if ( attr
->HasTextColour() )
1634 colText
= attr
->GetTextColour();
1638 colText
= GetForegroundColour();
1641 // selection colours should override ours
1642 if ( nmcd
.uItemState
& CDIS_SELECTED
)
1644 DWORD clrBk
= ::GetSysColor(COLOR_HIGHLIGHT
);
1645 lptvcd
->clrTextBk
= clrBk
;
1647 // try to make the text visible
1648 lptvcd
->clrText
= wxColourToRGB(colText
);
1649 lptvcd
->clrText
|= ~clrBk
;
1650 lptvcd
->clrText
&= 0x00ffffff;
1654 if ( attr
->HasBackgroundColour() )
1656 colBack
= attr
->GetBackgroundColour();
1660 colBack
= GetBackgroundColour();
1663 lptvcd
->clrText
= wxColourToRGB(colText
);
1664 lptvcd
->clrTextBk
= wxColourToRGB(colBack
);
1667 // note that if we wanted to set colours for
1668 // individual columns (subitems), we would have
1669 // returned CDRF_NOTIFYSUBITEMREDRAW from here
1672 ::SelectObject(nmcd
.hdc
, hFont
);
1674 *result
= CDRF_NEWFONT
;
1678 *result
= CDRF_DODEFAULT
;
1685 *result
= CDRF_DODEFAULT
;
1690 #endif // _WIN32_IE >= 0x300
1693 return wxControl::MSWOnNotify(idCtrl
, lParam
, result
);
1696 event
.SetEventObject(this);
1697 event
.SetEventType(eventType
);
1699 bool processed
= GetEventHandler()->ProcessEvent(event
);
1702 switch ( hdr
->code
)
1704 case TVN_DELETEITEM
:
1706 // NB: we might process this message using wxWindows event
1707 // tables, but due to overhead of wxWin event system we
1708 // prefer to do it here ourself (otherwise deleting a tree
1709 // with many items is just too slow)
1710 NM_TREEVIEW
* tv
= (NM_TREEVIEW
*)lParam
;
1712 wxTreeItemId item
= event
.m_item
;
1713 if ( HasIndirectData(item
) )
1715 wxTreeItemIndirectData
*data
= (wxTreeItemIndirectData
*)
1717 delete data
; // can't be NULL here
1719 m_itemsWithIndirectData
.Remove(item
);
1723 wxTreeItemData
*data
= (wxTreeItemData
*)tv
->itemOld
.lParam
;
1724 delete data
; // may be NULL, ok
1727 processed
= TRUE
; // Make sure we don't get called twice
1731 case TVN_BEGINLABELEDIT
:
1732 // return TRUE to cancel label editing
1733 *result
= !event
.IsAllowed();
1736 case TVN_ENDLABELEDIT
:
1737 // return TRUE to set the label to the new string
1738 *result
= event
.IsAllowed();
1740 // ensure that we don't have the text ctrl which is going to be
1745 case TVN_SELCHANGING
:
1746 case TVN_ITEMEXPANDING
:
1747 // return TRUE to prevent the action from happening
1748 *result
= !event
.IsAllowed();
1751 case TVN_GETDISPINFO
:
1752 // NB: so far the user can't set the image himself anyhow, so do it
1753 // anyway - but this may change later
1754 if ( /* !processed && */ 1 )
1756 wxTreeItemId item
= event
.m_item
;
1757 TV_DISPINFO
*info
= (TV_DISPINFO
*)lParam
;
1758 if ( info
->item
.mask
& TVIF_IMAGE
)
1761 DoGetItemImageFromData
1764 IsExpanded(item
) ? wxTreeItemIcon_Expanded
1765 : wxTreeItemIcon_Normal
1768 if ( info
->item
.mask
& TVIF_SELECTEDIMAGE
)
1770 info
->item
.iSelectedImage
=
1771 DoGetItemImageFromData
1774 IsExpanded(item
) ? wxTreeItemIcon_SelectedExpanded
1775 : wxTreeItemIcon_Selected
1782 // for the other messages the return value is ignored and there is
1783 // nothing special to do
1789 // ----------------------------------------------------------------------------
1791 // ----------------------------------------------------------------------------
1793 IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent
, wxNotifyEvent
)
1795 wxTreeEvent::wxTreeEvent(wxEventType commandType
, int id
)
1796 : wxNotifyEvent(commandType
, id
)