]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/msw/treectrl.cpp
inform the IM context about focus changes
[wxWidgets.git] / src / msw / treectrl.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/msw/treectrl.cpp
3// Purpose: wxTreeCtrl
4// Author: Julian Smart
5// Modified by: Vadim Zeitlin to be less MSW-specific on 10.10.98
6// Created: 1997
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "treectrl.h"
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
28 #pragma hdrstop
29#endif
30
31#if wxUSE_TREECTRL
32
33#include "wx/msw/private.h"
34
35// Set this to 1 to be _absolutely_ sure that repainting will work for all
36// comctl32.dll versions
37#define wxUSE_COMCTL32_SAFELY 0
38
39#include "wx/app.h"
40#include "wx/log.h"
41#include "wx/dynarray.h"
42#include "wx/imaglist.h"
43#include "wx/settings.h"
44#include "wx/msw/treectrl.h"
45#include "wx/msw/dragimag.h"
46
47// include <commctrl.h> "properly"
48#include "wx/msw/wrapcctl.h"
49
50// macros to hide the cast ugliness
51// --------------------------------
52
53// ptr is the real item id, i.e. wxTreeItemId::m_pItem
54#define HITEM_PTR(ptr) (HTREEITEM)(ptr)
55
56// item here is a wxTreeItemId
57#define HITEM(item) HITEM_PTR((item).m_pItem)
58
59// the native control doesn't support multiple selections under MSW and we
60// have 2 ways to emulate them: either using TVS_CHECKBOXES style and let
61// checkboxes be the selection status (checked == selected) or by really
62// emulating everything, i.e. intercepting mouse and key events &c. The first
63// approach is much easier but doesn't work with comctl32.dll < 4.71 and also
64// looks quite ugly.
65#define wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE 0
66
67// ----------------------------------------------------------------------------
68// private functions
69// ----------------------------------------------------------------------------
70
71// wrapper for TreeView_HitTest
72static HTREEITEM GetItemFromPoint(HWND hwndTV, int x, int y)
73{
74 TV_HITTESTINFO tvht;
75 tvht.pt.x = x;
76 tvht.pt.y = y;
77
78 return (HTREEITEM)TreeView_HitTest(hwndTV, &tvht);
79}
80
81#if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
82
83// wrappers for TreeView_GetItem/TreeView_SetItem
84static bool IsItemSelected(HWND hwndTV, HTREEITEM hItem)
85{
86
87 TV_ITEM tvi;
88 tvi.mask = TVIF_STATE | TVIF_HANDLE;
89 tvi.stateMask = TVIS_SELECTED;
90 tvi.hItem = hItem;
91
92 if ( !TreeView_GetItem(hwndTV, &tvi) )
93 {
94 wxLogLastError(wxT("TreeView_GetItem"));
95 }
96
97 return (tvi.state & TVIS_SELECTED) != 0;
98}
99
100static bool SelectItem(HWND hwndTV, HTREEITEM hItem, bool select = true)
101{
102 TV_ITEM tvi;
103 tvi.mask = TVIF_STATE | TVIF_HANDLE;
104 tvi.stateMask = TVIS_SELECTED;
105 tvi.state = select ? TVIS_SELECTED : 0;
106 tvi.hItem = hItem;
107
108 if ( TreeView_SetItem(hwndTV, &tvi) == -1 )
109 {
110 wxLogLastError(wxT("TreeView_SetItem"));
111 return false;
112 }
113
114 return true;
115}
116
117static inline void UnselectItem(HWND hwndTV, HTREEITEM htItem)
118{
119 SelectItem(hwndTV, htItem, false);
120}
121
122static inline void ToggleItemSelection(HWND hwndTV, HTREEITEM htItem)
123{
124 SelectItem(hwndTV, htItem, !IsItemSelected(hwndTV, htItem));
125}
126
127// helper function which selects all items in a range and, optionally,
128// unselects all others
129static void SelectRange(HWND hwndTV,
130 HTREEITEM htFirst,
131 HTREEITEM htLast,
132 bool unselectOthers = true)
133{
134 // find the first (or last) item and select it
135 bool cont = true;
136 HTREEITEM htItem = (HTREEITEM)TreeView_GetRoot(hwndTV);
137 while ( htItem && cont )
138 {
139 if ( (htItem == htFirst) || (htItem == htLast) )
140 {
141 if ( !IsItemSelected(hwndTV, htItem) )
142 {
143 SelectItem(hwndTV, htItem);
144 }
145
146 cont = false;
147 }
148 else
149 {
150 if ( unselectOthers && IsItemSelected(hwndTV, htItem) )
151 {
152 UnselectItem(hwndTV, htItem);
153 }
154 }
155
156 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
157 }
158
159 // select the items in range
160 cont = htFirst != htLast;
161 while ( htItem && cont )
162 {
163 if ( !IsItemSelected(hwndTV, htItem) )
164 {
165 SelectItem(hwndTV, htItem);
166 }
167
168 cont = (htItem != htFirst) && (htItem != htLast);
169
170 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
171 }
172
173 // unselect the rest
174 if ( unselectOthers )
175 {
176 while ( htItem )
177 {
178 if ( IsItemSelected(hwndTV, htItem) )
179 {
180 UnselectItem(hwndTV, htItem);
181 }
182
183 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
184 }
185 }
186
187 // seems to be necessary - otherwise the just selected items don't always
188 // appear as selected
189 UpdateWindow(hwndTV);
190}
191
192// helper function which tricks the standard control into changing the focused
193// item without changing anything else (if someone knows why Microsoft doesn't
194// allow to do it by just setting TVIS_FOCUSED flag, please tell me!)
195static void SetFocus(HWND hwndTV, HTREEITEM htItem)
196{
197 // the current focus
198 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(hwndTV);
199
200 if ( htItem )
201 {
202 // set the focus
203 if ( htItem != htFocus )
204 {
205 // remember the selection state of the item
206 bool wasSelected = IsItemSelected(hwndTV, htItem);
207
208 if ( htFocus && IsItemSelected(hwndTV, htFocus) )
209 {
210 // prevent the tree from unselecting the old focus which it
211 // would do by default (TreeView_SelectItem unselects the
212 // focused item)
213 TreeView_SelectItem(hwndTV, 0);
214 SelectItem(hwndTV, htFocus);
215 }
216
217 TreeView_SelectItem(hwndTV, htItem);
218
219 if ( !wasSelected )
220 {
221 // need to clear the selection which TreeView_SelectItem() gave
222 // us
223 UnselectItem(hwndTV, htItem);
224 }
225 //else: was selected, still selected - ok
226 }
227 //else: nothing to do, focus already there
228 }
229 else
230 {
231 if ( htFocus )
232 {
233 bool wasFocusSelected = IsItemSelected(hwndTV, htFocus);
234
235 // just clear the focus
236 TreeView_SelectItem(hwndTV, 0);
237
238 if ( wasFocusSelected )
239 {
240 // restore the selection state
241 SelectItem(hwndTV, htFocus);
242 }
243 }
244 //else: nothing to do, no focus already
245 }
246}
247
248#endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
249
250// ----------------------------------------------------------------------------
251// private classes
252// ----------------------------------------------------------------------------
253
254// a convenient wrapper around TV_ITEM struct which adds a ctor
255#ifdef __VISUALC__
256#pragma warning( disable : 4097 ) // inheriting from typedef
257#endif
258
259struct wxTreeViewItem : public TV_ITEM
260{
261 wxTreeViewItem(const wxTreeItemId& item, // the item handle
262 UINT mask_, // fields which are valid
263 UINT stateMask_ = 0) // for TVIF_STATE only
264 {
265 wxZeroMemory(*this);
266
267 // hItem member is always valid
268 mask = mask_ | TVIF_HANDLE;
269 stateMask = stateMask_;
270 hItem = HITEM(item);
271 }
272};
273
274// wxVirutalNode is used in place of a single root when 'hidden' root is
275// specified.
276class wxVirtualNode : public wxTreeViewItem
277{
278public:
279 wxVirtualNode(wxTreeItemData *data)
280 : wxTreeViewItem(TVI_ROOT, 0)
281 {
282 m_data = data;
283 }
284
285 ~wxVirtualNode()
286 {
287 delete m_data;
288 }
289
290 wxTreeItemData *GetData() const { return m_data; }
291 void SetData(wxTreeItemData *data) { delete m_data; m_data = data; }
292
293private:
294 wxTreeItemData *m_data;
295
296 DECLARE_NO_COPY_CLASS(wxVirtualNode)
297};
298
299#ifdef __VISUALC__
300#pragma warning( default : 4097 )
301#endif
302
303// a macro to get the virtual root, returns NULL if none
304#define GET_VIRTUAL_ROOT() ((wxVirtualNode *)m_pVirtualRoot)
305
306// returns true if the item is the virtual root
307#define IS_VIRTUAL_ROOT(item) (HITEM(item) == TVI_ROOT)
308
309// a class which encapsulates the tree traversal logic: it vists all (unless
310// OnVisit() returns false) items under the given one
311class wxTreeTraversal
312{
313public:
314 wxTreeTraversal(const wxTreeCtrl *tree)
315 {
316 m_tree = tree;
317 }
318
319 // do traverse the tree: visit all items (recursively by default) under the
320 // given one; return true if all items were traversed or false if the
321 // traversal was aborted because OnVisit returned false
322 bool DoTraverse(const wxTreeItemId& root, bool recursively = true);
323
324 // override this function to do whatever is needed for each item, return
325 // false to stop traversing
326 virtual bool OnVisit(const wxTreeItemId& item) = 0;
327
328protected:
329 const wxTreeCtrl *GetTree() const { return m_tree; }
330
331private:
332 bool Traverse(const wxTreeItemId& root, bool recursively);
333
334 const wxTreeCtrl *m_tree;
335
336 DECLARE_NO_COPY_CLASS(wxTreeTraversal)
337};
338
339// internal class for getting the selected items
340class TraverseSelections : public wxTreeTraversal
341{
342public:
343 TraverseSelections(const wxTreeCtrl *tree,
344 wxArrayTreeItemIds& selections)
345 : wxTreeTraversal(tree), m_selections(selections)
346 {
347 m_selections.Empty();
348
349 DoTraverse(tree->GetRootItem());
350 }
351
352 virtual bool OnVisit(const wxTreeItemId& item)
353 {
354 // can't visit a virtual node.
355 if ( (GetTree()->GetRootItem() == item) && (GetTree()->GetWindowStyle() & wxTR_HIDE_ROOT))
356 {
357 return true;
358 }
359
360#if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
361 if ( GetTree()->IsItemChecked(item) )
362#else
363 if ( ::IsItemSelected(GetHwndOf(GetTree()), HITEM(item)) )
364#endif
365 {
366 m_selections.Add(item);
367 }
368
369 return true;
370 }
371
372 size_t GetCount() const { return m_selections.GetCount(); }
373
374private:
375 wxArrayTreeItemIds& m_selections;
376
377 DECLARE_NO_COPY_CLASS(TraverseSelections)
378};
379
380// internal class for counting tree items
381class TraverseCounter : public wxTreeTraversal
382{
383public:
384 TraverseCounter(const wxTreeCtrl *tree,
385 const wxTreeItemId& root,
386 bool recursively)
387 : wxTreeTraversal(tree)
388 {
389 m_count = 0;
390
391 DoTraverse(root, recursively);
392 }
393
394 virtual bool OnVisit(const wxTreeItemId& WXUNUSED(item))
395 {
396 m_count++;
397
398 return true;
399 }
400
401 size_t GetCount() const { return m_count; }
402
403private:
404 size_t m_count;
405
406 DECLARE_NO_COPY_CLASS(TraverseCounter)
407};
408
409// ----------------------------------------------------------------------------
410// This class is needed for support of different images: the Win32 common
411// control natively supports only 2 images (the normal one and another for the
412// selected state). We wish to provide support for 2 more of them for folder
413// items (i.e. those which have children): for expanded state and for expanded
414// selected state. For this we use this structure to store the additional items
415// images.
416//
417// There is only one problem with this: when we retrieve the item's data, we
418// don't know whether we get a pointer to wxTreeItemData or
419// wxTreeItemIndirectData. So we always set the item id to an invalid value
420// in this class and the code using the client data checks for it and retrieves
421// the real client data in this case.
422// ----------------------------------------------------------------------------
423
424class wxTreeItemIndirectData : public wxTreeItemData
425{
426public:
427 // ctor associates this data with the item and the real item data becomes
428 // available through our GetData() method
429 wxTreeItemIndirectData(wxTreeCtrl *tree, const wxTreeItemId& item)
430 {
431 for ( size_t n = 0; n < WXSIZEOF(m_images); n++ )
432 {
433 m_images[n] = -1;
434 }
435
436 // save the old data
437 m_data = tree->GetItemData(item);
438
439 // and set ourselves as the new one
440 tree->SetIndirectItemData(item, this);
441
442 // we must have the invalid value for the item
443 m_pItem = 0l;
444 }
445
446 // dtor deletes the associated data as well
447 virtual ~wxTreeItemIndirectData() { delete m_data; }
448
449 // accessors
450 // get the real data associated with the item
451 wxTreeItemData *GetData() const { return m_data; }
452 // change it
453 void SetData(wxTreeItemData *data) { m_data = data; }
454
455 // do we have such image?
456 bool HasImage(wxTreeItemIcon which) const { return m_images[which] != -1; }
457 // get image
458 int GetImage(wxTreeItemIcon which) const { return m_images[which]; }
459 // change it
460 void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; }
461
462private:
463 // all the images associated with the item
464 int m_images[wxTreeItemIcon_Max];
465
466 // the real client data
467 wxTreeItemData *m_data;
468
469 DECLARE_NO_COPY_CLASS(wxTreeItemIndirectData)
470};
471
472// ----------------------------------------------------------------------------
473// wxWin macros
474// ----------------------------------------------------------------------------
475
476#if wxUSE_EXTENDED_RTTI
477WX_DEFINE_FLAGS( wxTreeCtrlStyle )
478
479wxBEGIN_FLAGS( wxTreeCtrlStyle )
480 // new style border flags, we put them first to
481 // use them for streaming out
482 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
483 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
484 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
485 wxFLAGS_MEMBER(wxBORDER_RAISED)
486 wxFLAGS_MEMBER(wxBORDER_STATIC)
487 wxFLAGS_MEMBER(wxBORDER_NONE)
488
489 // old style border flags
490 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
491 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
492 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
493 wxFLAGS_MEMBER(wxRAISED_BORDER)
494 wxFLAGS_MEMBER(wxSTATIC_BORDER)
495 wxFLAGS_MEMBER(wxBORDER)
496
497 // standard window styles
498 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
499 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
500 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
501 wxFLAGS_MEMBER(wxWANTS_CHARS)
502 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
503 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
504 wxFLAGS_MEMBER(wxVSCROLL)
505 wxFLAGS_MEMBER(wxHSCROLL)
506
507 wxFLAGS_MEMBER(wxTR_EDIT_LABELS)
508 wxFLAGS_MEMBER(wxTR_NO_BUTTONS)
509 wxFLAGS_MEMBER(wxTR_HAS_BUTTONS)
510 wxFLAGS_MEMBER(wxTR_TWIST_BUTTONS)
511 wxFLAGS_MEMBER(wxTR_NO_LINES)
512 wxFLAGS_MEMBER(wxTR_FULL_ROW_HIGHLIGHT)
513 wxFLAGS_MEMBER(wxTR_LINES_AT_ROOT)
514 wxFLAGS_MEMBER(wxTR_HIDE_ROOT)
515 wxFLAGS_MEMBER(wxTR_ROW_LINES)
516 wxFLAGS_MEMBER(wxTR_HAS_VARIABLE_ROW_HEIGHT)
517 wxFLAGS_MEMBER(wxTR_SINGLE)
518 wxFLAGS_MEMBER(wxTR_MULTIPLE)
519 wxFLAGS_MEMBER(wxTR_EXTENDED)
520 wxFLAGS_MEMBER(wxTR_DEFAULT_STYLE)
521
522wxEND_FLAGS( wxTreeCtrlStyle )
523
524IMPLEMENT_DYNAMIC_CLASS_XTI(wxTreeCtrl, wxControl,"wx/treectrl.h")
525
526wxBEGIN_PROPERTIES_TABLE(wxTreeCtrl)
527 wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent )
528 wxEVENT_RANGE_PROPERTY( TreeEvent , wxEVT_COMMAND_TREE_BEGIN_DRAG , wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK , wxTreeEvent )
529 wxPROPERTY_FLAGS( WindowStyle , wxTreeCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
530wxEND_PROPERTIES_TABLE()
531
532wxBEGIN_HANDLERS_TABLE(wxTreeCtrl)
533wxEND_HANDLERS_TABLE()
534
535wxCONSTRUCTOR_5( wxTreeCtrl , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
536#else
537IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxControl)
538#endif
539
540// ----------------------------------------------------------------------------
541// constants
542// ----------------------------------------------------------------------------
543
544// indices in gs_expandEvents table below
545enum
546{
547 IDX_COLLAPSE,
548 IDX_EXPAND,
549 IDX_WHAT_MAX
550};
551
552enum
553{
554 IDX_DONE,
555 IDX_DOING,
556 IDX_HOW_MAX
557};
558
559// handy table for sending events - it has to be initialized during run-time
560// now so can't be const any more
561static /* const */ wxEventType gs_expandEvents[IDX_WHAT_MAX][IDX_HOW_MAX];
562
563/*
564 but logically it's a const table with the following entries:
565=
566{
567 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING },
568 { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING }
569};
570*/
571
572// ============================================================================
573// implementation
574// ============================================================================
575
576// ----------------------------------------------------------------------------
577// tree traversal
578// ----------------------------------------------------------------------------
579
580bool wxTreeTraversal::DoTraverse(const wxTreeItemId& root, bool recursively)
581{
582 if ( !OnVisit(root) )
583 return false;
584
585 return Traverse(root, recursively);
586}
587
588bool wxTreeTraversal::Traverse(const wxTreeItemId& root, bool recursively)
589{
590 wxTreeItemIdValue cookie;
591 wxTreeItemId child = m_tree->GetFirstChild(root, cookie);
592 while ( child.IsOk() )
593 {
594 // depth first traversal
595 if ( recursively && !Traverse(child, true) )
596 return false;
597
598 if ( !OnVisit(child) )
599 return false;
600
601 child = m_tree->GetNextChild(root, cookie);
602 }
603
604 return true;
605}
606
607// ----------------------------------------------------------------------------
608// construction and destruction
609// ----------------------------------------------------------------------------
610
611void wxTreeCtrl::Init()
612{
613 m_imageListNormal = NULL;
614 m_imageListState = NULL;
615 m_ownsImageListNormal = m_ownsImageListState = false;
616 m_textCtrl = NULL;
617 m_hasAnyAttr = false;
618 m_dragImage = NULL;
619 m_pVirtualRoot = NULL;
620
621 // initialize the global array of events now as it can't be done statically
622 // with the wxEVT_XXX values being allocated during run-time only
623 gs_expandEvents[IDX_COLLAPSE][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_COLLAPSED;
624 gs_expandEvents[IDX_COLLAPSE][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_COLLAPSING;
625 gs_expandEvents[IDX_EXPAND][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_EXPANDED;
626 gs_expandEvents[IDX_EXPAND][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_EXPANDING;
627}
628
629bool wxTreeCtrl::Create(wxWindow *parent,
630 wxWindowID id,
631 const wxPoint& pos,
632 const wxSize& size,
633 long style,
634 const wxValidator& validator,
635 const wxString& name)
636{
637 Init();
638
639 if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
640 style |= wxBORDER_SUNKEN;
641
642 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
643 return false;
644
645 DWORD exStyle = 0;
646 DWORD wstyle = MSWGetStyle(m_windowStyle, & exStyle);
647 wstyle |= WS_TABSTOP | TVS_SHOWSELALWAYS;
648
649 if ((m_windowStyle & wxTR_NO_LINES) == 0)
650 wstyle |= TVS_HASLINES;
651 if ( m_windowStyle & wxTR_HAS_BUTTONS )
652 wstyle |= TVS_HASBUTTONS;
653
654 if ( m_windowStyle & wxTR_EDIT_LABELS )
655 wstyle |= TVS_EDITLABELS;
656
657 if ( m_windowStyle & wxTR_LINES_AT_ROOT )
658 wstyle |= TVS_LINESATROOT;
659
660 if ( m_windowStyle & wxTR_FULL_ROW_HIGHLIGHT )
661 {
662 if ( wxTheApp->GetComCtl32Version() >= 471 )
663 wstyle |= TVS_FULLROWSELECT;
664 }
665
666 // using TVS_CHECKBOXES for emulation of a multiselection tree control
667 // doesn't work without the new enough headers
668#if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE && \
669 !defined( __GNUWIN32_OLD__ ) && \
670 !defined( __BORLANDC__ ) && \
671 !defined( __WATCOMC__ ) && \
672 (!defined(__VISUALC__) || (__VISUALC__ > 1010))
673
674 // we emulate the multiple selection tree controls by using checkboxes: set
675 // up the image list we need for this if we do have multiple selections
676 if ( m_windowStyle & wxTR_MULTIPLE )
677 wstyle |= TVS_CHECKBOXES;
678#endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
679
680#ifndef __WXWINCE__
681 // Need so that TVN_GETINFOTIP messages will be sent
682 wstyle |= TVS_INFOTIP;
683#endif
684
685 // Create the tree control.
686 if ( !MSWCreateControl(WC_TREEVIEW, wstyle) )
687 return false;
688
689#if wxUSE_COMCTL32_SAFELY
690 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
691 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
692#elif 1
693 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
694 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
695#else
696 // This works around a bug in the Windows tree control whereby for some versions
697 // of comctrl32, setting any colour actually draws the background in black.
698 // This will initialise the background to the system colour.
699 // THIS FIX NOW REVERTED since it caused problems on _other_ systems.
700 // Assume the user has an updated comctl32.dll.
701 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0,-1);
702 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
703 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
704#endif
705
706
707 // VZ: this is some experimental code which may be used to get the
708 // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71.
709 // AFAIK, the standard DLL does about the same thing anyhow.
710#if 0
711 if ( m_windowStyle & wxTR_MULTIPLE )
712 {
713 wxBitmap bmp;
714
715 // create the DC compatible with the current screen
716 HDC hdcMem = CreateCompatibleDC(NULL);
717
718 // create a mono bitmap of the standard size
719 int x = GetSystemMetrics(SM_CXMENUCHECK);
720 int y = GetSystemMetrics(SM_CYMENUCHECK);
721 wxImageList imagelistCheckboxes(x, y, false, 2);
722 HBITMAP hbmpCheck = CreateBitmap(x, y, // bitmap size
723 1, // # of color planes
724 1, // # bits needed for one pixel
725 0); // array containing colour data
726 SelectObject(hdcMem, hbmpCheck);
727
728 // then draw a check mark into it
729 RECT rect = { 0, 0, x, y };
730 if ( !::DrawFrameControl(hdcMem, &rect,
731 DFC_BUTTON,
732 DFCS_BUTTONCHECK | DFCS_CHECKED) )
733 {
734 wxLogLastError(wxT("DrawFrameControl(check)"));
735 }
736
737 bmp.SetHBITMAP((WXHBITMAP)hbmpCheck);
738 imagelistCheckboxes.Add(bmp);
739
740 if ( !::DrawFrameControl(hdcMem, &rect,
741 DFC_BUTTON,
742 DFCS_BUTTONCHECK) )
743 {
744 wxLogLastError(wxT("DrawFrameControl(uncheck)"));
745 }
746
747 bmp.SetHBITMAP((WXHBITMAP)hbmpCheck);
748 imagelistCheckboxes.Add(bmp);
749
750 // clean up
751 ::DeleteDC(hdcMem);
752
753 // set the imagelist
754 SetStateImageList(&imagelistCheckboxes);
755 }
756#endif // 0
757
758 SetSize(pos.x, pos.y, size.x, size.y);
759
760 wxSetCCUnicodeFormat(GetHwnd());
761
762 return true;
763}
764
765wxTreeCtrl::~wxTreeCtrl()
766{
767 // delete any attributes
768 if ( m_hasAnyAttr )
769 {
770 WX_CLEAR_HASH_MAP(wxMapTreeAttr, m_attrs);
771
772 // prevent TVN_DELETEITEM handler from deleting the attributes again!
773 m_hasAnyAttr = false;
774 }
775
776 DeleteTextCtrl();
777
778 // delete user data to prevent memory leaks
779 // also deletes hidden root node storage.
780 DeleteAllItems();
781
782 if (m_ownsImageListNormal) delete m_imageListNormal;
783 if (m_ownsImageListState) delete m_imageListState;
784}
785
786// ----------------------------------------------------------------------------
787// accessors
788// ----------------------------------------------------------------------------
789
790/* static */ wxVisualAttributes
791wxTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
792{
793 wxVisualAttributes attrs = GetCompositeControlsDefaultAttributes(variant);
794
795 // common controls have their own default font
796 attrs.font = wxGetCCDefaultFont();
797
798 return attrs;
799}
800
801
802// simple wrappers which add error checking in debug mode
803
804bool wxTreeCtrl::DoGetItem(wxTreeViewItem* tvItem) const
805{
806 wxCHECK_MSG( tvItem->hItem != TVI_ROOT, false,
807 _T("can't retrieve virtual root item") );
808
809 if ( !TreeView_GetItem(GetHwnd(), tvItem) )
810 {
811 wxLogLastError(wxT("TreeView_GetItem"));
812
813 return false;
814 }
815
816 return true;
817}
818
819void wxTreeCtrl::DoSetItem(wxTreeViewItem* tvItem)
820{
821 if ( TreeView_SetItem(GetHwnd(), tvItem) == -1 )
822 {
823 wxLogLastError(wxT("TreeView_SetItem"));
824 }
825}
826
827size_t wxTreeCtrl::GetCount() const
828{
829 return (size_t)TreeView_GetCount(GetHwnd());
830}
831
832unsigned int wxTreeCtrl::GetIndent() const
833{
834 return TreeView_GetIndent(GetHwnd());
835}
836
837void wxTreeCtrl::SetIndent(unsigned int indent)
838{
839 TreeView_SetIndent(GetHwnd(), indent);
840}
841
842wxImageList *wxTreeCtrl::GetImageList() const
843{
844 return m_imageListNormal;
845}
846
847wxImageList *wxTreeCtrl::GetStateImageList() const
848{
849 return m_imageListState;
850}
851
852void wxTreeCtrl::SetAnyImageList(wxImageList *imageList, int which)
853{
854 // no error return
855 TreeView_SetImageList(GetHwnd(),
856 imageList ? imageList->GetHIMAGELIST() : 0,
857 which);
858}
859
860void wxTreeCtrl::SetImageList(wxImageList *imageList)
861{
862 if (m_ownsImageListNormal)
863 delete m_imageListNormal;
864
865 SetAnyImageList(m_imageListNormal = imageList, TVSIL_NORMAL);
866 m_ownsImageListNormal = false;
867}
868
869void wxTreeCtrl::SetStateImageList(wxImageList *imageList)
870{
871 if (m_ownsImageListState) delete m_imageListState;
872 SetAnyImageList(m_imageListState = imageList, TVSIL_STATE);
873 m_ownsImageListState = false;
874}
875
876void wxTreeCtrl::AssignImageList(wxImageList *imageList)
877{
878 SetImageList(imageList);
879 m_ownsImageListNormal = true;
880}
881
882void wxTreeCtrl::AssignStateImageList(wxImageList *imageList)
883{
884 SetStateImageList(imageList);
885 m_ownsImageListState = true;
886}
887
888size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item,
889 bool recursively) const
890{
891 wxCHECK_MSG( item.IsOk(), 0u, wxT("invalid tree item") );
892
893 TraverseCounter counter(this, item, recursively);
894 return counter.GetCount() - 1;
895}
896
897// ----------------------------------------------------------------------------
898// control colours
899// ----------------------------------------------------------------------------
900
901bool wxTreeCtrl::SetBackgroundColour(const wxColour &colour)
902{
903#if !wxUSE_COMCTL32_SAFELY
904 if ( !wxWindowBase::SetBackgroundColour(colour) )
905 return false;
906
907 SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0, colour.GetPixel());
908#endif
909
910 return true;
911}
912
913bool wxTreeCtrl::SetForegroundColour(const wxColour &colour)
914{
915#if !wxUSE_COMCTL32_SAFELY
916 if ( !wxWindowBase::SetForegroundColour(colour) )
917 return false;
918
919 SendMessage(GetHwnd(), TVM_SETTEXTCOLOR, 0, colour.GetPixel());
920#endif
921
922 return true;
923}
924
925// ----------------------------------------------------------------------------
926// Item access
927// ----------------------------------------------------------------------------
928
929wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const
930{
931 wxCHECK_MSG( item.IsOk(), wxT(""), wxT("invalid tree item") );
932
933 wxChar buf[512]; // the size is arbitrary...
934
935 wxTreeViewItem tvItem(item, TVIF_TEXT);
936 tvItem.pszText = buf;
937 tvItem.cchTextMax = WXSIZEOF(buf);
938 if ( !DoGetItem(&tvItem) )
939 {
940 // don't return some garbage which was on stack, but an empty string
941 buf[0] = wxT('\0');
942 }
943
944 return wxString(buf);
945}
946
947void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
948{
949 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
950
951 if ( IS_VIRTUAL_ROOT(item) )
952 return;
953
954 wxTreeViewItem tvItem(item, TVIF_TEXT);
955 tvItem.pszText = (wxChar *)text.c_str(); // conversion is ok
956 DoSetItem(&tvItem);
957
958 // when setting the text of the item being edited, the text control should
959 // be updated to reflect the new text as well, otherwise calling
960 // SetItemText() in the OnBeginLabelEdit() handler doesn't have any effect
961 //
962 // don't use GetEditControl() here because m_textCtrl is not set yet
963 HWND hwndEdit = TreeView_GetEditControl(GetHwnd());
964 if ( hwndEdit )
965 {
966 if ( item == m_idEdited )
967 {
968 ::SetWindowText(hwndEdit, text);
969 }
970 }
971}
972
973int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId& item,
974 wxTreeItemIcon which) const
975{
976 wxTreeViewItem tvItem(item, TVIF_PARAM);
977 if ( !DoGetItem(&tvItem) )
978 {
979 return -1;
980 }
981
982 return ((wxTreeItemIndirectData *)tvItem.lParam)->GetImage(which);
983}
984
985void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId& item,
986 int image,
987 wxTreeItemIcon which) const
988{
989 wxTreeViewItem tvItem(item, TVIF_PARAM);
990 if ( !DoGetItem(&tvItem) )
991 {
992 return;
993 }
994
995 wxTreeItemIndirectData *data = ((wxTreeItemIndirectData *)tvItem.lParam);
996
997 data->SetImage(image, which);
998
999 // make sure that we have selected images as well
1000 if ( which == wxTreeItemIcon_Normal &&
1001 !data->HasImage(wxTreeItemIcon_Selected) )
1002 {
1003 data->SetImage(image, wxTreeItemIcon_Selected);
1004 }
1005
1006 if ( which == wxTreeItemIcon_Expanded &&
1007 !data->HasImage(wxTreeItemIcon_SelectedExpanded) )
1008 {
1009 data->SetImage(image, wxTreeItemIcon_SelectedExpanded);
1010 }
1011}
1012
1013void wxTreeCtrl::DoSetItemImages(const wxTreeItemId& item,
1014 int image,
1015 int imageSel)
1016{
1017 wxTreeViewItem tvItem(item, TVIF_IMAGE | TVIF_SELECTEDIMAGE);
1018 tvItem.iSelectedImage = imageSel;
1019 tvItem.iImage = image;
1020 DoSetItem(&tvItem);
1021}
1022
1023int wxTreeCtrl::GetItemImage(const wxTreeItemId& item,
1024 wxTreeItemIcon which) const
1025{
1026 wxCHECK_MSG( item.IsOk(), -1, wxT("invalid tree item") );
1027
1028 if ( (HITEM(item) == TVI_ROOT) && (m_windowStyle & wxTR_HIDE_ROOT) )
1029 {
1030 // TODO: Maybe a hidden root can still provide images?
1031 return -1;
1032 }
1033
1034 if ( HasIndirectData(item) )
1035 {
1036 return DoGetItemImageFromData(item, which);
1037 }
1038
1039 UINT mask;
1040 switch ( which )
1041 {
1042 default:
1043 wxFAIL_MSG( wxT("unknown tree item image type") );
1044
1045 case wxTreeItemIcon_Normal:
1046 mask = TVIF_IMAGE;
1047 break;
1048
1049 case wxTreeItemIcon_Selected:
1050 mask = TVIF_SELECTEDIMAGE;
1051 break;
1052
1053 case wxTreeItemIcon_Expanded:
1054 case wxTreeItemIcon_SelectedExpanded:
1055 return -1;
1056 }
1057
1058 wxTreeViewItem tvItem(item, mask);
1059 DoGetItem(&tvItem);
1060
1061 return mask == TVIF_IMAGE ? tvItem.iImage : tvItem.iSelectedImage;
1062}
1063
1064void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image,
1065 wxTreeItemIcon which)
1066{
1067 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1068
1069 if ( IS_VIRTUAL_ROOT(item) )
1070 {
1071 // TODO: Maybe a hidden root can still store images?
1072 return;
1073 }
1074
1075 int imageNormal,
1076 imageSel;
1077
1078 switch ( which )
1079 {
1080 default:
1081 wxFAIL_MSG( wxT("unknown tree item image type") );
1082 // fall through
1083
1084 case wxTreeItemIcon_Normal:
1085 {
1086 const int imageNormalOld = GetItemImage(item);
1087 const int imageSelOld =
1088 GetItemImage(item, wxTreeItemIcon_Selected);
1089
1090 // always set the normal image
1091 imageNormal = image;
1092
1093 // if the selected and normal images were the same, they should
1094 // be the same after the update, otherwise leave the selected
1095 // image as it was
1096 imageSel = imageNormalOld == imageSelOld ? image : imageSelOld;
1097 }
1098 break;
1099
1100 case wxTreeItemIcon_Selected:
1101 imageNormal = GetItemImage(item);
1102 imageSel = image;
1103 break;
1104
1105 case wxTreeItemIcon_Expanded:
1106 case wxTreeItemIcon_SelectedExpanded:
1107 if ( !HasIndirectData(item) )
1108 {
1109 // we need to get the old images first, because after we create
1110 // the wxTreeItemIndirectData GetItemXXXImage() will use it to
1111 // get the images
1112 imageNormal = GetItemImage(item);
1113 imageSel = GetItemImage(item, wxTreeItemIcon_Selected);
1114
1115 // if it doesn't have it yet, add it
1116 wxTreeItemIndirectData *data = new
1117 wxTreeItemIndirectData(this, item);
1118
1119 // copy the data to the new location
1120 data->SetImage(imageNormal, wxTreeItemIcon_Normal);
1121 data->SetImage(imageSel, wxTreeItemIcon_Selected);
1122 }
1123
1124 DoSetItemImageFromData(item, image, which);
1125
1126 // reset the normal/selected images because we won't use them any
1127 // more - now they're stored inside the indirect data
1128 imageNormal =
1129 imageSel = I_IMAGECALLBACK;
1130 break;
1131 }
1132
1133 // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always
1134 // change both normal and selected image - otherwise the change simply
1135 // doesn't take place!
1136 DoSetItemImages(item, imageNormal, imageSel);
1137}
1138
1139wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const
1140{
1141 wxCHECK_MSG( item.IsOk(), NULL, wxT("invalid tree item") );
1142
1143 wxTreeViewItem tvItem(item, TVIF_PARAM);
1144
1145 // Hidden root may have data.
1146 if ( IS_VIRTUAL_ROOT(item) )
1147 {
1148 return GET_VIRTUAL_ROOT()->GetData();
1149 }
1150
1151 // Visible node.
1152 if ( !DoGetItem(&tvItem) )
1153 {
1154 return NULL;
1155 }
1156
1157 wxTreeItemData *data = (wxTreeItemData *)tvItem.lParam;
1158 if ( IsDataIndirect(data) )
1159 {
1160 data = ((wxTreeItemIndirectData *)data)->GetData();
1161 }
1162
1163 return data;
1164}
1165
1166void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data)
1167{
1168 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1169
1170 if ( IS_VIRTUAL_ROOT(item) )
1171 {
1172 GET_VIRTUAL_ROOT()->SetData(data);
1173 }
1174
1175 // first, associate this piece of data with this item
1176 if ( data )
1177 {
1178 data->SetId(item);
1179 }
1180
1181 wxTreeViewItem tvItem(item, TVIF_PARAM);
1182
1183 if ( HasIndirectData(item) )
1184 {
1185 if ( DoGetItem(&tvItem) )
1186 {
1187 ((wxTreeItemIndirectData *)tvItem.lParam)->SetData(data);
1188 }
1189 else
1190 {
1191 wxFAIL_MSG( wxT("failed to change tree items data") );
1192 }
1193 }
1194 else
1195 {
1196 tvItem.lParam = (LPARAM)data;
1197 DoSetItem(&tvItem);
1198 }
1199}
1200
1201void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId& item,
1202 wxTreeItemIndirectData *data)
1203{
1204 // this should never happen because it's unnecessary and will probably lead
1205 // to crash too because the code elsewhere supposes that the pointer the
1206 // wxTreeItemIndirectData has is a real wxItemData and not
1207 // wxTreeItemIndirectData as well
1208 wxASSERT_MSG( !HasIndirectData(item), wxT("setting indirect data twice?") );
1209
1210 SetItemData(item, data);
1211}
1212
1213bool wxTreeCtrl::HasIndirectData(const wxTreeItemId& item) const
1214{
1215 // query the item itself
1216 wxTreeViewItem tvItem(item, TVIF_PARAM);
1217 if ( !DoGetItem(&tvItem) )
1218 {
1219 return false;
1220 }
1221
1222 wxTreeItemData *data = (wxTreeItemData *)tvItem.lParam;
1223
1224 return data && IsDataIndirect(data);
1225}
1226
1227void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has)
1228{
1229 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1230
1231 if ( IS_VIRTUAL_ROOT(item) )
1232 return;
1233
1234 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1235 tvItem.cChildren = (int)has;
1236 DoSetItem(&tvItem);
1237}
1238
1239void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold)
1240{
1241 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1242
1243 if ( IS_VIRTUAL_ROOT(item) )
1244 return;
1245
1246 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1247 tvItem.state = bold ? TVIS_BOLD : 0;
1248 DoSetItem(&tvItem);
1249}
1250
1251void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, bool highlight)
1252{
1253 if ( IS_VIRTUAL_ROOT(item) )
1254 return;
1255
1256 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_DROPHILITED);
1257 tvItem.state = highlight ? TVIS_DROPHILITED : 0;
1258 DoSetItem(&tvItem);
1259}
1260
1261void wxTreeCtrl::RefreshItem(const wxTreeItemId& item)
1262{
1263 if ( IS_VIRTUAL_ROOT(item) )
1264 return;
1265
1266 wxRect rect;
1267 if ( GetBoundingRect(item, rect) )
1268 {
1269 RefreshRect(rect);
1270 }
1271}
1272
1273wxColour wxTreeCtrl::GetItemTextColour(const wxTreeItemId& item) const
1274{
1275 wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") );
1276
1277 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1278 return it == m_attrs.end() ? wxNullColour : it->second->GetTextColour();
1279}
1280
1281wxColour wxTreeCtrl::GetItemBackgroundColour(const wxTreeItemId& item) const
1282{
1283 wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") );
1284
1285 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1286 return it == m_attrs.end() ? wxNullColour : it->second->GetBackgroundColour();
1287}
1288
1289wxFont wxTreeCtrl::GetItemFont(const wxTreeItemId& item) const
1290{
1291 wxCHECK_MSG( item.IsOk(), wxNullFont, wxT("invalid tree item") );
1292
1293 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
1294 return it == m_attrs.end() ? wxNullFont : it->second->GetFont();
1295}
1296
1297void wxTreeCtrl::SetItemTextColour(const wxTreeItemId& item,
1298 const wxColour& col)
1299{
1300 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1301
1302 wxTreeItemAttr *attr;
1303 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1304 if ( it == m_attrs.end() )
1305 {
1306 m_hasAnyAttr = true;
1307
1308 m_attrs[item.m_pItem] =
1309 attr = new wxTreeItemAttr;
1310 }
1311 else
1312 {
1313 attr = it->second;
1314 }
1315
1316 attr->SetTextColour(col);
1317
1318 RefreshItem(item);
1319}
1320
1321void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item,
1322 const wxColour& col)
1323{
1324 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1325
1326 wxTreeItemAttr *attr;
1327 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1328 if ( it == m_attrs.end() )
1329 {
1330 m_hasAnyAttr = true;
1331
1332 m_attrs[item.m_pItem] =
1333 attr = new wxTreeItemAttr;
1334 }
1335 else // already in the hash
1336 {
1337 attr = it->second;
1338 }
1339
1340 attr->SetBackgroundColour(col);
1341
1342 RefreshItem(item);
1343}
1344
1345void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font)
1346{
1347 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1348
1349 wxTreeItemAttr *attr;
1350 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
1351 if ( it == m_attrs.end() )
1352 {
1353 m_hasAnyAttr = true;
1354
1355 m_attrs[item.m_pItem] =
1356 attr = new wxTreeItemAttr;
1357 }
1358 else // already in the hash
1359 {
1360 attr = it->second;
1361 }
1362
1363 attr->SetFont(font);
1364
1365 RefreshItem(item);
1366}
1367
1368// ----------------------------------------------------------------------------
1369// Item status
1370// ----------------------------------------------------------------------------
1371
1372bool wxTreeCtrl::IsVisible(const wxTreeItemId& item) const
1373{
1374 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
1375
1376 if ( item == wxTreeItemId(TVI_ROOT) )
1377 {
1378 // virtual (hidden) root is never visible
1379 return false;
1380 }
1381
1382 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
1383 RECT rect;
1384
1385 // this ugliness comes directly from MSDN - it *is* the correct way to pass
1386 // the HTREEITEM with TVM_GETITEMRECT
1387 *(HTREEITEM *)&rect = HITEM(item);
1388
1389 // true means to get rect for just the text, not the whole line
1390 if ( !::SendMessage(GetHwnd(), TVM_GETITEMRECT, true, (LPARAM)&rect) )
1391 {
1392 // if TVM_GETITEMRECT returned false, then the item is definitely not
1393 // visible (because its parent is not expanded)
1394 return false;
1395 }
1396
1397 // however if it returned true, the item might still be outside the
1398 // currently visible part of the tree, test for it (notice that partly
1399 // visible means visible here)
1400 return rect.bottom > 0 && rect.top < GetClientSize().y;
1401}
1402
1403bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const
1404{
1405 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
1406
1407 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1408 DoGetItem(&tvItem);
1409
1410 return tvItem.cChildren != 0;
1411}
1412
1413bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const
1414{
1415 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
1416
1417 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDED);
1418 DoGetItem(&tvItem);
1419
1420 return (tvItem.state & TVIS_EXPANDED) != 0;
1421}
1422
1423bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const
1424{
1425 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
1426
1427 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_SELECTED);
1428 DoGetItem(&tvItem);
1429
1430 return (tvItem.state & TVIS_SELECTED) != 0;
1431}
1432
1433bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const
1434{
1435 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
1436
1437 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1438 DoGetItem(&tvItem);
1439
1440 return (tvItem.state & TVIS_BOLD) != 0;
1441}
1442
1443// ----------------------------------------------------------------------------
1444// navigation
1445// ----------------------------------------------------------------------------
1446
1447wxTreeItemId wxTreeCtrl::GetRootItem() const
1448{
1449 // Root may be real (visible) or virtual (hidden).
1450 if ( GET_VIRTUAL_ROOT() )
1451 return TVI_ROOT;
1452
1453 return wxTreeItemId(TreeView_GetRoot(GetHwnd()));
1454}
1455
1456wxTreeItemId wxTreeCtrl::GetSelection() const
1457{
1458 wxCHECK_MSG( !(m_windowStyle & wxTR_MULTIPLE), wxTreeItemId(),
1459 wxT("this only works with single selection controls") );
1460
1461 return wxTreeItemId(TreeView_GetSelection(GetHwnd()));
1462}
1463
1464wxTreeItemId wxTreeCtrl::GetItemParent(const wxTreeItemId& item) const
1465{
1466 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1467
1468 HTREEITEM hItem;
1469
1470 if ( IS_VIRTUAL_ROOT(item) )
1471 {
1472 // no parent for the virtual root
1473 hItem = 0;
1474 }
1475 else // normal item
1476 {
1477 hItem = TreeView_GetParent(GetHwnd(), HITEM(item));
1478 if ( !hItem && HasFlag(wxTR_HIDE_ROOT) )
1479 {
1480 // the top level items should have the virtual root as their parent
1481 hItem = TVI_ROOT;
1482 }
1483 }
1484
1485 return wxTreeItemId(hItem);
1486}
1487
1488wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item,
1489 wxTreeItemIdValue& cookie) const
1490{
1491 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1492
1493 // remember the last child returned in 'cookie'
1494 cookie = TreeView_GetChild(GetHwnd(), HITEM(item));
1495
1496 return wxTreeItemId(cookie);
1497}
1498
1499wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item),
1500 wxTreeItemIdValue& cookie) const
1501{
1502 wxTreeItemId item(TreeView_GetNextSibling(GetHwnd(),
1503 HITEM(wxTreeItemId(cookie))));
1504 cookie = item.m_pItem;
1505
1506 return item;
1507}
1508
1509#if WXWIN_COMPATIBILITY_2_4
1510
1511wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item,
1512 long& cookie) const
1513{
1514 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1515
1516 cookie = (long)TreeView_GetChild(GetHwnd(), HITEM(item));
1517
1518 return wxTreeItemId((void *)cookie);
1519}
1520
1521wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item),
1522 long& cookie) const
1523{
1524 wxTreeItemId item(TreeView_GetNextSibling
1525 (
1526 GetHwnd(),
1527 HITEM(wxTreeItemId((void *)cookie)
1528 )));
1529 cookie = (long)item.m_pItem;
1530
1531 return item;
1532}
1533
1534#endif // WXWIN_COMPATIBILITY_2_4
1535
1536wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const
1537{
1538 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1539
1540 // can this be done more efficiently?
1541 wxTreeItemIdValue cookie;
1542
1543 wxTreeItemId childLast,
1544 child = GetFirstChild(item, cookie);
1545 while ( child.IsOk() )
1546 {
1547 childLast = child;
1548 child = GetNextChild(item, cookie);
1549 }
1550
1551 return childLast;
1552}
1553
1554wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const
1555{
1556 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1557 return wxTreeItemId(TreeView_GetNextSibling(GetHwnd(), HITEM(item)));
1558}
1559
1560wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const
1561{
1562 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1563 return wxTreeItemId(TreeView_GetPrevSibling(GetHwnd(), HITEM(item)));
1564}
1565
1566wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const
1567{
1568 return wxTreeItemId(TreeView_GetFirstVisible(GetHwnd()));
1569}
1570
1571wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const
1572{
1573 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1574 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetNextVisible() for must be visible itself!"));
1575
1576 return wxTreeItemId(TreeView_GetNextVisible(GetHwnd(), HITEM(item)));
1577}
1578
1579wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const
1580{
1581 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1582 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetPrevVisible() for must be visible itself!"));
1583
1584 return wxTreeItemId(TreeView_GetPrevVisible(GetHwnd(), HITEM(item)));
1585}
1586
1587// ----------------------------------------------------------------------------
1588// multiple selections emulation
1589// ----------------------------------------------------------------------------
1590
1591bool wxTreeCtrl::IsItemChecked(const wxTreeItemId& item) const
1592{
1593 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
1594
1595 // receive the desired information.
1596 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
1597 DoGetItem(&tvItem);
1598
1599 // state image indices are 1 based
1600 return ((tvItem.state >> 12) - 1) == 1;
1601}
1602
1603void wxTreeCtrl::SetItemCheck(const wxTreeItemId& item, bool check)
1604{
1605 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1606
1607 // receive the desired information.
1608 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
1609
1610 DoGetItem(&tvItem);
1611
1612 // state images are one-based
1613 tvItem.state = (check ? 2 : 1) << 12;
1614
1615 DoSetItem(&tvItem);
1616}
1617
1618size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds& selections) const
1619{
1620 TraverseSelections selector(this, selections);
1621
1622 return selector.GetCount();
1623}
1624
1625// ----------------------------------------------------------------------------
1626// Usual operations
1627// ----------------------------------------------------------------------------
1628
1629wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parent,
1630 wxTreeItemId hInsertAfter,
1631 const wxString& text,
1632 int image, int selectedImage,
1633 wxTreeItemData *data)
1634{
1635 wxCHECK_MSG( parent.IsOk() || !TreeView_GetRoot(GetHwnd()),
1636 wxTreeItemId(),
1637 _T("can't have more than one root in the tree") );
1638
1639 TV_INSERTSTRUCT tvIns;
1640 tvIns.hParent = HITEM(parent);
1641 tvIns.hInsertAfter = HITEM(hInsertAfter);
1642
1643 // this is how we insert the item as the first child: supply a NULL
1644 // hInsertAfter
1645 if ( !tvIns.hInsertAfter )
1646 {
1647 tvIns.hInsertAfter = TVI_FIRST;
1648 }
1649
1650 UINT mask = 0;
1651 if ( !text.IsEmpty() )
1652 {
1653 mask |= TVIF_TEXT;
1654 tvIns.item.pszText = (wxChar *)text.c_str(); // cast is ok
1655 }
1656 else
1657 {
1658 tvIns.item.pszText = NULL;
1659 tvIns.item.cchTextMax = 0;
1660 }
1661
1662 if ( image != -1 )
1663 {
1664 mask |= TVIF_IMAGE;
1665 tvIns.item.iImage = image;
1666
1667 if ( selectedImage == -1 )
1668 {
1669 // take the same image for selected icon if not specified
1670 selectedImage = image;
1671 }
1672 }
1673
1674 if ( selectedImage != -1 )
1675 {
1676 mask |= TVIF_SELECTEDIMAGE;
1677 tvIns.item.iSelectedImage = selectedImage;
1678 }
1679
1680 if ( data != NULL )
1681 {
1682 mask |= TVIF_PARAM;
1683 tvIns.item.lParam = (LPARAM)data;
1684 }
1685
1686 tvIns.item.mask = mask;
1687
1688 HTREEITEM id = (HTREEITEM) TreeView_InsertItem(GetHwnd(), &tvIns);
1689 if ( id == 0 )
1690 {
1691 wxLogLastError(wxT("TreeView_InsertItem"));
1692 }
1693
1694 if ( data != NULL )
1695 {
1696 // associate the application tree item with Win32 tree item handle
1697 data->SetId(id);
1698 }
1699
1700 return wxTreeItemId(id);
1701}
1702
1703// for compatibility only
1704#if WXWIN_COMPATIBILITY_2_4
1705
1706wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent,
1707 const wxString& text,
1708 int image, int selImage,
1709 long insertAfter)
1710{
1711 return DoInsertItem(parent, wxTreeItemId((void *)insertAfter), text,
1712 image, selImage, NULL);
1713}
1714
1715#endif // WXWIN_COMPATIBILITY_2_4
1716
1717wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text,
1718 int image, int selectedImage,
1719 wxTreeItemData *data)
1720{
1721
1722 if ( m_windowStyle & wxTR_HIDE_ROOT )
1723 {
1724 // create a virtual root item, the parent for all the others
1725 m_pVirtualRoot = new wxVirtualNode(data);
1726
1727 return TVI_ROOT;
1728 }
1729
1730 return DoInsertItem(wxTreeItemId(), wxTreeItemId(),
1731 text, image, selectedImage, data);
1732}
1733
1734wxTreeItemId wxTreeCtrl::PrependItem(const wxTreeItemId& parent,
1735 const wxString& text,
1736 int image, int selectedImage,
1737 wxTreeItemData *data)
1738{
1739 return DoInsertItem(parent, TVI_FIRST,
1740 text, image, selectedImage, data);
1741}
1742
1743wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent,
1744 const wxTreeItemId& idPrevious,
1745 const wxString& text,
1746 int image, int selectedImage,
1747 wxTreeItemData *data)
1748{
1749 return DoInsertItem(parent, idPrevious, text, image, selectedImage, data);
1750}
1751
1752wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent,
1753 size_t index,
1754 const wxString& text,
1755 int image, int selectedImage,
1756 wxTreeItemData *data)
1757{
1758 // find the item from index
1759 wxTreeItemIdValue cookie;
1760 wxTreeItemId idPrev, idCur = GetFirstChild(parent, cookie);
1761 while ( index != 0 && idCur.IsOk() )
1762 {
1763 index--;
1764
1765 idPrev = idCur;
1766 idCur = GetNextChild(parent, cookie);
1767 }
1768
1769 // assert, not check: if the index is invalid, we will append the item
1770 // to the end
1771 wxASSERT_MSG( index == 0, _T("bad index in wxTreeCtrl::InsertItem") );
1772
1773 return DoInsertItem(parent, idPrev, text, image, selectedImage, data);
1774}
1775
1776wxTreeItemId wxTreeCtrl::AppendItem(const wxTreeItemId& parent,
1777 const wxString& text,
1778 int image, int selectedImage,
1779 wxTreeItemData *data)
1780{
1781 return DoInsertItem(parent, TVI_LAST,
1782 text, image, selectedImage, data);
1783}
1784
1785void wxTreeCtrl::Delete(const wxTreeItemId& item)
1786{
1787 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item)) )
1788 {
1789 wxLogLastError(wxT("TreeView_DeleteItem"));
1790 }
1791}
1792
1793// delete all children (but don't delete the item itself)
1794void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item)
1795{
1796 wxTreeItemIdValue cookie;
1797
1798 wxArrayTreeItemIds children;
1799 wxTreeItemId child = GetFirstChild(item, cookie);
1800 while ( child.IsOk() )
1801 {
1802 children.Add(child);
1803
1804 child = GetNextChild(item, cookie);
1805 }
1806
1807 size_t nCount = children.Count();
1808 for ( size_t n = 0; n < nCount; n++ )
1809 {
1810 if ( !TreeView_DeleteItem(GetHwnd(), HITEM_PTR(children[n])) )
1811 {
1812 wxLogLastError(wxT("TreeView_DeleteItem"));
1813 }
1814 }
1815}
1816
1817void wxTreeCtrl::DeleteAllItems()
1818{
1819 // delete the "virtual" root item.
1820 if ( GET_VIRTUAL_ROOT() )
1821 {
1822 delete GET_VIRTUAL_ROOT();
1823 m_pVirtualRoot = NULL;
1824 }
1825
1826 // and all the real items
1827
1828 if ( !TreeView_DeleteAllItems(GetHwnd()) )
1829 {
1830 wxLogLastError(wxT("TreeView_DeleteAllItems"));
1831 }
1832}
1833
1834void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag)
1835{
1836 wxASSERT_MSG( flag == TVE_COLLAPSE ||
1837 flag == (TVE_COLLAPSE | TVE_COLLAPSERESET) ||
1838 flag == TVE_EXPAND ||
1839 flag == TVE_TOGGLE,
1840 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
1841
1842 // A hidden root can be neither expanded nor collapsed.
1843 wxCHECK_RET( !(m_windowStyle & wxTR_HIDE_ROOT) || (HITEM(item) != TVI_ROOT),
1844 wxT("Can't expand/collapse hidden root node!") )
1845
1846 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
1847 // emulate them. This behaviour has changed slightly with comctl32.dll
1848 // v 4.70 - now it does send them but only the first time. To maintain
1849 // compatible behaviour and also in order to not have surprises with the
1850 // future versions, don't rely on this and still do everything ourselves.
1851 // To avoid that the messages be sent twice when the item is expanded for
1852 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1853
1854 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDEDONCE);
1855 tvItem.state = 0;
1856 DoSetItem(&tvItem);
1857
1858 if ( TreeView_Expand(GetHwnd(), HITEM(item), flag) != 0 )
1859 {
1860 wxTreeEvent event(wxEVT_NULL, m_windowId);
1861 event.m_item = item;
1862 event.SetEventObject(this);
1863
1864 // note that the {EXPAND|COLLAPS}ING event is sent by TreeView_Expand()
1865 // itself
1866 event.SetEventType(gs_expandEvents[IsExpanded(item) ? IDX_EXPAND
1867 : IDX_COLLAPSE]
1868 [IDX_DONE]);
1869
1870 (void)GetEventHandler()->ProcessEvent(event);
1871 }
1872 //else: change didn't took place, so do nothing at all
1873}
1874
1875void wxTreeCtrl::Expand(const wxTreeItemId& item)
1876{
1877 DoExpand(item, TVE_EXPAND);
1878}
1879
1880void wxTreeCtrl::Collapse(const wxTreeItemId& item)
1881{
1882 DoExpand(item, TVE_COLLAPSE);
1883}
1884
1885void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item)
1886{
1887 DoExpand(item, TVE_COLLAPSE | TVE_COLLAPSERESET);
1888}
1889
1890void wxTreeCtrl::Toggle(const wxTreeItemId& item)
1891{
1892 DoExpand(item, TVE_TOGGLE);
1893}
1894
1895#if WXWIN_COMPATIBILITY_2_4
1896void wxTreeCtrl::ExpandItem(const wxTreeItemId& item, int action)
1897{
1898 DoExpand(item, action);
1899}
1900#endif
1901
1902void wxTreeCtrl::Unselect()
1903{
1904 wxASSERT_MSG( !(m_windowStyle & wxTR_MULTIPLE),
1905 wxT("doesn't make sense, may be you want UnselectAll()?") );
1906
1907 // just remove the selection
1908 SelectItem(wxTreeItemId());
1909}
1910
1911void wxTreeCtrl::UnselectAll()
1912{
1913 if ( m_windowStyle & wxTR_MULTIPLE )
1914 {
1915 wxArrayTreeItemIds selections;
1916 size_t count = GetSelections(selections);
1917 for ( size_t n = 0; n < count; n++ )
1918 {
1919#if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1920 SetItemCheck(HITEM_PTR(selections[n]), false);
1921#else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1922 ::UnselectItem(GetHwnd(), HITEM_PTR(selections[n]));
1923#endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1924 }
1925 }
1926 else
1927 {
1928 // just remove the selection
1929 Unselect();
1930 }
1931}
1932
1933void wxTreeCtrl::SelectItem(const wxTreeItemId& item, bool select)
1934{
1935 if ( m_windowStyle & wxTR_MULTIPLE )
1936 {
1937#if wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1938 // selecting the item means checking it
1939 SetItemCheck(item, select);
1940#else // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1941 ::SelectItem(GetHwnd(), HITEM(item), select);
1942#endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE/!wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
1943 }
1944 else
1945 {
1946 wxASSERT_MSG( select,
1947 _T("SelectItem(false) works only for multiselect") );
1948
1949 // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive
1950 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1951 // send them ourselves
1952
1953 wxTreeEvent event(wxEVT_NULL, m_windowId);
1954 event.m_item = item;
1955 event.SetEventObject(this);
1956
1957 event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING);
1958 if ( !GetEventHandler()->ProcessEvent(event) || event.IsAllowed() )
1959 {
1960 if ( !TreeView_SelectItem(GetHwnd(), HITEM(item)) )
1961 {
1962 wxLogLastError(wxT("TreeView_SelectItem"));
1963 }
1964 else // ok
1965 {
1966 event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED);
1967 (void)GetEventHandler()->ProcessEvent(event);
1968 }
1969 }
1970 //else: program vetoed the change
1971 }
1972}
1973
1974void wxTreeCtrl::UnselectItem(const wxTreeItemId& item)
1975{
1976 SelectItem(item, false);
1977}
1978
1979void wxTreeCtrl::ToggleItemSelection(const wxTreeItemId& item)
1980{
1981 SelectItem(item, !IsSelected(item));
1982}
1983
1984void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item)
1985{
1986 // no error return
1987 TreeView_EnsureVisible(GetHwnd(), HITEM(item));
1988}
1989
1990void wxTreeCtrl::ScrollTo(const wxTreeItemId& item)
1991{
1992 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item)) )
1993 {
1994 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
1995 }
1996}
1997
1998wxTextCtrl *wxTreeCtrl::GetEditControl() const
1999{
2000 return m_textCtrl;
2001}
2002
2003void wxTreeCtrl::DeleteTextCtrl()
2004{
2005 if ( m_textCtrl )
2006 {
2007 // the HWND corresponding to this control is deleted by the tree
2008 // control itself and we don't know when exactly this happens, so check
2009 // if the window still exists before calling UnsubclassWin()
2010 if ( !::IsWindow(GetHwndOf(m_textCtrl)) )
2011 {
2012 m_textCtrl->SetHWND(0);
2013 }
2014
2015 m_textCtrl->UnsubclassWin();
2016 m_textCtrl->SetHWND(0);
2017 delete m_textCtrl;
2018 m_textCtrl = NULL;
2019
2020 m_idEdited.Unset();
2021 }
2022}
2023
2024wxTextCtrl* wxTreeCtrl::EditLabel(const wxTreeItemId& item,
2025 wxClassInfo* textControlClass)
2026{
2027 wxASSERT( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)) );
2028
2029 DeleteTextCtrl();
2030
2031 m_idEdited = item;
2032 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
2033 HWND hWnd = (HWND) TreeView_EditLabel(GetHwnd(), HITEM(item));
2034
2035 // this is not an error - the TVN_BEGINLABELEDIT handler might have
2036 // returned false
2037 if ( !hWnd )
2038 {
2039 delete m_textCtrl;
2040 m_textCtrl = NULL;
2041 return NULL;
2042 }
2043
2044 // textctrl is subclassed in MSWOnNotify
2045 return m_textCtrl;
2046}
2047
2048// End label editing, optionally cancelling the edit
2049void wxTreeCtrl::EndEditLabel(const wxTreeItemId& WXUNUSED(item), bool discardChanges)
2050{
2051 TreeView_EndEditLabelNow(GetHwnd(), discardChanges);
2052
2053 DeleteTextCtrl();
2054}
2055
2056wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& flags)
2057{
2058 TV_HITTESTINFO hitTestInfo;
2059 hitTestInfo.pt.x = (int)point.x;
2060 hitTestInfo.pt.y = (int)point.y;
2061
2062 TreeView_HitTest(GetHwnd(), &hitTestInfo);
2063
2064 flags = 0;
2065
2066 // avoid repetition
2067 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
2068 flags |= wxTREE_HITTEST_##flag
2069
2070 TRANSLATE_FLAG(ABOVE);
2071 TRANSLATE_FLAG(BELOW);
2072 TRANSLATE_FLAG(NOWHERE);
2073 TRANSLATE_FLAG(ONITEMBUTTON);
2074 TRANSLATE_FLAG(ONITEMICON);
2075 TRANSLATE_FLAG(ONITEMINDENT);
2076 TRANSLATE_FLAG(ONITEMLABEL);
2077 TRANSLATE_FLAG(ONITEMRIGHT);
2078 TRANSLATE_FLAG(ONITEMSTATEICON);
2079 TRANSLATE_FLAG(TOLEFT);
2080 TRANSLATE_FLAG(TORIGHT);
2081
2082 #undef TRANSLATE_FLAG
2083
2084 return wxTreeItemId(hitTestInfo.hItem);
2085}
2086
2087bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
2088 wxRect& rect,
2089 bool textOnly) const
2090{
2091 RECT rc;
2092
2093 // Virtual root items have no bounding rectangle
2094 if ( IS_VIRTUAL_ROOT(item) )
2095 {
2096 return false;
2097 }
2098
2099 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item),
2100 &rc, textOnly) )
2101 {
2102 rect = wxRect(wxPoint(rc.left, rc.top), wxPoint(rc.right, rc.bottom));
2103
2104 return true;
2105 }
2106 else
2107 {
2108 // couldn't retrieve rect: for example, item isn't visible
2109 return false;
2110 }
2111}
2112
2113// ----------------------------------------------------------------------------
2114// sorting stuff
2115// ----------------------------------------------------------------------------
2116
2117// this is just a tiny namespace which is friend to wxTreeCtrl and so can use
2118// functions such as IsDataIndirect()
2119class wxTreeSortHelper
2120{
2121public:
2122 static int CALLBACK Compare(LPARAM data1, LPARAM data2, LPARAM tree);
2123
2124private:
2125 static wxTreeItemId GetIdFromData(wxTreeCtrl *tree, LPARAM item)
2126 {
2127 wxTreeItemData *data = (wxTreeItemData *)item;
2128 if ( tree->IsDataIndirect(data) )
2129 {
2130 data = ((wxTreeItemIndirectData *)data)->GetData();
2131 }
2132
2133 return data->GetId();
2134 }
2135};
2136
2137int CALLBACK wxTreeSortHelper::Compare(LPARAM pItem1,
2138 LPARAM pItem2,
2139 LPARAM htree)
2140{
2141 wxCHECK_MSG( pItem1 && pItem2, 0,
2142 wxT("sorting tree without data doesn't make sense") );
2143
2144 wxTreeCtrl *tree = (wxTreeCtrl *)htree;
2145
2146 return tree->OnCompareItems(GetIdFromData(tree, pItem1),
2147 GetIdFromData(tree, pItem2));
2148}
2149
2150int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1,
2151 const wxTreeItemId& item2)
2152{
2153 return wxStrcmp(GetItemText(item1), GetItemText(item2));
2154}
2155
2156void wxTreeCtrl::SortChildren(const wxTreeItemId& item)
2157{
2158 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
2159
2160 // rely on the fact that TreeView_SortChildren does the same thing as our
2161 // default behaviour, i.e. sorts items alphabetically and so call it
2162 // directly if we're not in derived class (much more efficient!)
2163 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl) )
2164 {
2165 TreeView_SortChildren(GetHwnd(), HITEM(item), 0);
2166 }
2167 else
2168 {
2169 TV_SORTCB tvSort;
2170 tvSort.hParent = HITEM(item);
2171 tvSort.lpfnCompare = wxTreeSortHelper::Compare;
2172 tvSort.lParam = (LPARAM)this;
2173 TreeView_SortChildrenCB(GetHwnd(), &tvSort, 0 /* reserved */);
2174 }
2175}
2176
2177// ----------------------------------------------------------------------------
2178// implementation
2179// ----------------------------------------------------------------------------
2180
2181bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id)
2182{
2183 if ( cmd == EN_UPDATE )
2184 {
2185 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
2186 event.SetEventObject( this );
2187 ProcessCommand(event);
2188 }
2189 else if ( cmd == EN_KILLFOCUS )
2190 {
2191 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
2192 event.SetEventObject( this );
2193 ProcessCommand(event);
2194 }
2195 else
2196 {
2197 // nothing done
2198 return false;
2199 }
2200
2201 // command processed
2202 return true;
2203}
2204
2205// we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
2206// only do it during dragging, minimize wxWin overhead (this is important for
2207// WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
2208// instead of passing by wxWin events
2209WXLRESULT wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
2210{
2211 bool processed = false;
2212 WXLRESULT rc = 0;
2213 bool isMultiple = (GetWindowStyle() & wxTR_MULTIPLE) != 0;
2214
2215 if ( (nMsg >= WM_MOUSEFIRST) && (nMsg <= WM_MOUSELAST) )
2216 {
2217 // we only process mouse messages here and these parameters have the
2218 // same meaning for all of them
2219 int x = GET_X_LPARAM(lParam),
2220 y = GET_Y_LPARAM(lParam);
2221 HTREEITEM htItem = GetItemFromPoint(GetHwnd(), x, y);
2222
2223 switch ( nMsg )
2224 {
2225 case WM_RBUTTONDOWN:
2226 // if the item we are about to right click on is not already
2227 // selected or if we click outside of any item, remove the
2228 // entire previous selection
2229 if ( !htItem || !::IsItemSelected(GetHwnd(), htItem) )
2230 {
2231 UnselectAll();
2232 }
2233
2234 // select item and set the focus to the
2235 // newly selected item
2236 ::SelectItem(GetHwnd(), htItem);
2237 ::SetFocus(GetHwnd(), htItem);
2238 break;
2239
2240#if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2241 case WM_LBUTTONDOWN:
2242 if ( htItem && isMultiple )
2243 {
2244 if ( wParam & MK_CONTROL )
2245 {
2246 SetFocus();
2247
2248 // toggle selected state
2249 ::ToggleItemSelection(GetHwnd(), htItem);
2250
2251 ::SetFocus(GetHwnd(), htItem);
2252
2253 // reset on any click without Shift
2254 m_htSelStart.Unset();
2255
2256 processed = true;
2257 }
2258 else if ( wParam & MK_SHIFT )
2259 {
2260 // this selects all items between the starting one and
2261 // the current
2262
2263 if ( !m_htSelStart )
2264 {
2265 // take the focused item
2266 m_htSelStart = TreeView_GetSelection(GetHwnd());
2267 }
2268
2269 SelectRange(GetHwnd(), HITEM(m_htSelStart), htItem,
2270 !(wParam & MK_CONTROL));
2271
2272 ::SetFocus(GetHwnd(), htItem);
2273
2274 processed = true;
2275 }
2276 else // normal click
2277 {
2278 // avoid doing anything if we click on the only
2279 // currently selected item
2280
2281 wxArrayTreeItemIds selections;
2282 size_t count = GetSelections(selections);
2283 if ( count == 0 ||
2284 count > 1 ||
2285 HITEM_PTR(selections[0]) != htItem )
2286 {
2287 // clear the previously selected items, if the
2288 // user clicked outside of the present selection.
2289 // otherwise, perform the deselection on mouse-up.
2290 // this allows multiple drag and drop to work.
2291
2292 if (IsItemSelected(GetHwnd(), htItem))
2293 {
2294 ::SetFocus(GetHwnd(), htItem);
2295 }
2296 else
2297 {
2298 UnselectAll();
2299
2300 // prevent the click from starting in-place editing
2301 // which should only happen if we click on the
2302 // already selected item (and nothing else is
2303 // selected)
2304
2305 TreeView_SelectItem(GetHwnd(), 0);
2306 ::SelectItem(GetHwnd(), htItem);
2307 }
2308 }
2309
2310 // reset on any click without Shift
2311 m_htSelStart.Unset();
2312 }
2313 }
2314 break;
2315#endif // wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2316
2317 case WM_MOUSEMOVE:
2318 if ( m_dragImage )
2319 {
2320 m_dragImage->Move(wxPoint(x, y));
2321 if ( htItem )
2322 {
2323 // highlight the item as target (hiding drag image is
2324 // necessary - otherwise the display will be corrupted)
2325 m_dragImage->Hide();
2326 TreeView_SelectDropTarget(GetHwnd(), htItem);
2327 m_dragImage->Show();
2328 }
2329 }
2330 break;
2331
2332 case WM_LBUTTONUP:
2333
2334 // facilitates multiple drag-and-drop
2335 if (htItem && isMultiple)
2336 {
2337 wxArrayTreeItemIds selections;
2338 size_t count = GetSelections(selections);
2339
2340 if (count > 1 &&
2341 !(wParam & MK_CONTROL) &&
2342 !(wParam & MK_SHIFT))
2343 {
2344 UnselectAll();
2345 TreeView_SelectItem(GetHwnd(), htItem);
2346 }
2347 }
2348
2349 // fall through
2350
2351 case WM_RBUTTONUP:
2352 if ( m_dragImage )
2353 {
2354 m_dragImage->EndDrag();
2355 delete m_dragImage;
2356 m_dragImage = NULL;
2357
2358 // generate the drag end event
2359 wxTreeEvent event(wxEVT_COMMAND_TREE_END_DRAG, m_windowId);
2360
2361 event.m_item = htItem;
2362 event.m_pointDrag = wxPoint(x, y);
2363 event.SetEventObject(this);
2364
2365 (void)GetEventHandler()->ProcessEvent(event);
2366
2367 // if we don't do it, the tree seems to think that 2 items
2368 // are selected simultaneously which is quite weird
2369 TreeView_SelectDropTarget(GetHwnd(), 0);
2370 }
2371 break;
2372 }
2373 }
2374#if !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2375 else if ( (nMsg == WM_SETFOCUS || nMsg == WM_KILLFOCUS) && isMultiple )
2376 {
2377 // the tree control greys out the selected item when it loses focus and
2378 // paints it as selected again when it regains it, but it won't do it
2379 // for the other items itself - help it
2380 wxArrayTreeItemIds selections;
2381 size_t count = GetSelections(selections);
2382 RECT rect;
2383 for ( size_t n = 0; n < count; n++ )
2384 {
2385 // TreeView_GetItemRect() will return false if item is not visible,
2386 // which may happen perfectly well
2387 if ( TreeView_GetItemRect(GetHwnd(), HITEM_PTR(selections[n]),
2388 &rect, true) )
2389 {
2390 ::InvalidateRect(GetHwnd(), &rect, false);
2391 }
2392 }
2393 }
2394 else if ( nMsg == WM_KEYDOWN && isMultiple )
2395 {
2396 bool bCtrl = wxIsCtrlDown(),
2397 bShift = wxIsShiftDown();
2398
2399 // we handle.arrows and space, but not page up/down and home/end: the
2400 // latter should be easy, but not the former
2401
2402 HTREEITEM htSel = (HTREEITEM)TreeView_GetSelection(GetHwnd());
2403 if ( !m_htSelStart )
2404 {
2405 m_htSelStart = htSel;
2406 }
2407
2408 if ( wParam == VK_SPACE )
2409 {
2410 if ( bCtrl )
2411 {
2412 ::ToggleItemSelection(GetHwnd(), htSel);
2413 }
2414 else
2415 {
2416 UnselectAll();
2417
2418 ::SelectItem(GetHwnd(), htSel);
2419 }
2420
2421 processed = true;
2422 }
2423 else if ( wParam == VK_UP || wParam == VK_DOWN )
2424 {
2425 if ( !bCtrl && !bShift )
2426 {
2427 // no modifiers, just clear selection and then let the default
2428 // processing to take place
2429 UnselectAll();
2430 }
2431 else if ( htSel )
2432 {
2433 (void)wxControl::MSWWindowProc(nMsg, wParam, lParam);
2434
2435 HTREEITEM htNext = (HTREEITEM)(wParam == VK_UP
2436 ? TreeView_GetPrevVisible(GetHwnd(), htSel)
2437 : TreeView_GetNextVisible(GetHwnd(), htSel));
2438
2439 if ( !htNext )
2440 {
2441 // at the top/bottom
2442 htNext = htSel;
2443 }
2444
2445 if ( bShift )
2446 {
2447 SelectRange(GetHwnd(), HITEM(m_htSelStart), htNext);
2448 }
2449 else // bCtrl
2450 {
2451 // without changing selection
2452 ::SetFocus(GetHwnd(), htNext);
2453 }
2454
2455 processed = true;
2456 }
2457 }
2458 }
2459#endif // !wxUSE_CHECKBOXES_IN_MULTI_SEL_TREE
2460 else if ( nMsg == WM_CHAR )
2461 {
2462 // don't let the control process Space and Return keys because it
2463 // doesn't do anything useful with them anyhow but always beeps
2464 // annoyingly when it receives them and there is no way to turn it off
2465 // simply if you just process TREEITEM_ACTIVATED event to which Space
2466 // and Enter presses are mapped in your code
2467 if ( wParam == VK_SPACE || wParam == VK_RETURN )
2468 {
2469 processed = true;
2470 }
2471 }
2472
2473 if ( !processed )
2474 rc = wxControl::MSWWindowProc(nMsg, wParam, lParam);
2475
2476 return rc;
2477}
2478
2479// process WM_NOTIFY Windows message
2480bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
2481{
2482 wxTreeEvent event(wxEVT_NULL, m_windowId);
2483 wxEventType eventType = wxEVT_NULL;
2484 NMHDR *hdr = (NMHDR *)lParam;
2485
2486 switch ( hdr->code )
2487 {
2488 case TVN_BEGINDRAG:
2489 eventType = wxEVT_COMMAND_TREE_BEGIN_DRAG;
2490 // fall through
2491
2492 case TVN_BEGINRDRAG:
2493 {
2494 if ( eventType == wxEVT_NULL )
2495 eventType = wxEVT_COMMAND_TREE_BEGIN_RDRAG;
2496 //else: left drag, already set above
2497
2498 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
2499
2500 event.m_item = tv->itemNew.hItem;
2501 event.m_pointDrag = wxPoint(tv->ptDrag.x, tv->ptDrag.y);
2502
2503 // don't allow dragging by default: the user code must
2504 // explicitly say that it wants to allow it to avoid breaking
2505 // the old apps
2506 event.Veto();
2507 }
2508 break;
2509
2510 case TVN_BEGINLABELEDIT:
2511 {
2512 eventType = wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT;
2513 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2514
2515 event.m_item = info->item.hItem;
2516 event.m_label = info->item.pszText;
2517 event.m_editCancelled = false;
2518 }
2519 break;
2520
2521 case TVN_DELETEITEM:
2522 {
2523 eventType = wxEVT_COMMAND_TREE_DELETE_ITEM;
2524 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
2525
2526 event.m_item = tv->itemOld.hItem;
2527
2528 if ( m_hasAnyAttr )
2529 {
2530 wxMapTreeAttr::iterator it = m_attrs.find(tv->itemOld.hItem);
2531 if ( it != m_attrs.end() )
2532 {
2533 delete it->second;
2534 m_attrs.erase(it);
2535 }
2536 }
2537 }
2538 break;
2539
2540 case TVN_ENDLABELEDIT:
2541 {
2542 eventType = wxEVT_COMMAND_TREE_END_LABEL_EDIT;
2543 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2544
2545 event.m_item = info->item.hItem;
2546 event.m_label = info->item.pszText;
2547 event.m_editCancelled = info->item.pszText == NULL;
2548 break;
2549 }
2550
2551#ifndef __WXWINCE__
2552 // These *must* not be removed or TVN_GETINFOTIP will
2553 // not be processed each time the mouse is moved
2554 // and the tooltip will only ever update once.
2555 case TTN_NEEDTEXTA:
2556 case TTN_NEEDTEXTW:
2557 {
2558 *result = 0;
2559
2560 break;
2561 }
2562
2563 case TVN_GETINFOTIP:
2564 {
2565 eventType = wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP;
2566 NMTVGETINFOTIP *info = (NMTVGETINFOTIP*)lParam;
2567
2568 // Which item are we trying to get a tooltip for?
2569 event.m_item = info->hItem;
2570
2571 break;
2572 }
2573#endif
2574
2575 case TVN_GETDISPINFO:
2576 eventType = wxEVT_COMMAND_TREE_GET_INFO;
2577 // fall through
2578
2579 case TVN_SETDISPINFO:
2580 {
2581 if ( eventType == wxEVT_NULL )
2582 eventType = wxEVT_COMMAND_TREE_SET_INFO;
2583 //else: get, already set above
2584
2585 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2586
2587 event.m_item = info->item.hItem;
2588 break;
2589 }
2590
2591 case TVN_ITEMEXPANDING:
2592 case TVN_ITEMEXPANDED:
2593 {
2594 NM_TREEVIEW* tv = (NM_TREEVIEW*)lParam;
2595
2596 int what;
2597 switch ( tv->action )
2598 {
2599 default:
2600 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv->action);
2601 // fall through
2602
2603 case TVE_EXPAND:
2604 what = IDX_EXPAND;
2605 break;
2606
2607 case TVE_COLLAPSE:
2608 what = IDX_COLLAPSE;
2609 break;
2610 }
2611
2612 int how = hdr->code == TVN_ITEMEXPANDING ? IDX_DOING
2613 : IDX_DONE;
2614
2615 eventType = gs_expandEvents[what][how];
2616
2617 event.m_item = tv->itemNew.hItem;
2618 }
2619 break;
2620
2621 case TVN_KEYDOWN:
2622 {
2623 eventType = wxEVT_COMMAND_TREE_KEY_DOWN;
2624 TV_KEYDOWN *info = (TV_KEYDOWN *)lParam;
2625
2626 // fabricate the lParam and wParam parameters sufficiently
2627 // similar to the ones from a "real" WM_KEYDOWN so that
2628 // CreateKeyEvent() works correctly
2629 WXLPARAM lParam =
2630 (::GetKeyState(VK_MENU) < 0 ? KF_ALTDOWN : 0) << 16;
2631
2632 WXWPARAM wParam = info->wVKey;
2633
2634 int keyCode = wxCharCodeMSWToWX(info->wVKey);
2635 if ( !keyCode )
2636 {
2637 // wxCharCodeMSWToWX() returns 0 to indicate that this is a
2638 // simple ASCII key
2639 keyCode = wParam;
2640 }
2641
2642 event.m_evtKey = CreateKeyEvent(wxEVT_KEY_DOWN,
2643 keyCode,
2644 lParam,
2645 wParam);
2646
2647 // a separate event for Space/Return
2648 if ( !wxIsCtrlDown() && !wxIsShiftDown() &&
2649 ((info->wVKey == VK_SPACE) || (info->wVKey == VK_RETURN)) )
2650 {
2651 wxTreeEvent event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED,
2652 m_windowId);
2653 event2.SetEventObject(this);
2654 if ( !(GetWindowStyle() & wxTR_MULTIPLE) )
2655 {
2656 event2.m_item = GetSelection();
2657 }
2658 //else: don't know how to get it
2659
2660 (void)GetEventHandler()->ProcessEvent(event2);
2661 }
2662 }
2663 break;
2664
2665 // NB: MSLU is broken and sends TVN_SELCHANGEDA instead of
2666 // TVN_SELCHANGEDW in Unicode mode under Win98. Therefore
2667 // we have to handle both messages:
2668 case TVN_SELCHANGEDA:
2669 case TVN_SELCHANGEDW:
2670 eventType = wxEVT_COMMAND_TREE_SEL_CHANGED;
2671 // fall through
2672
2673 case TVN_SELCHANGINGA:
2674 case TVN_SELCHANGINGW:
2675 {
2676 if ( eventType == wxEVT_NULL )
2677 eventType = wxEVT_COMMAND_TREE_SEL_CHANGING;
2678 //else: already set above
2679
2680 if (hdr->code == TVN_SELCHANGINGW ||
2681 hdr->code == TVN_SELCHANGEDW)
2682 {
2683 NM_TREEVIEWW* tv = (NM_TREEVIEWW *)lParam;
2684 event.m_item = tv->itemNew.hItem;
2685 event.m_itemOld = tv->itemOld.hItem;
2686 }
2687 else
2688 {
2689 NM_TREEVIEWA* tv = (NM_TREEVIEWA *)lParam;
2690 event.m_item = tv->itemNew.hItem;
2691 event.m_itemOld = tv->itemOld.hItem;
2692 }
2693 }
2694 break;
2695
2696 // instead of explicitly checking for _WIN32_IE, check if the
2697 // required symbols are available in the headers
2698#if defined(CDDS_PREPAINT) && !wxUSE_COMCTL32_SAFELY
2699 case NM_CUSTOMDRAW:
2700 {
2701 LPNMTVCUSTOMDRAW lptvcd = (LPNMTVCUSTOMDRAW)lParam;
2702 NMCUSTOMDRAW& nmcd = lptvcd->nmcd;
2703 switch ( nmcd.dwDrawStage )
2704 {
2705 case CDDS_PREPAINT:
2706 // if we've got any items with non standard attributes,
2707 // notify us before painting each item
2708 *result = m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
2709 : CDRF_DODEFAULT;
2710 break;
2711
2712 case CDDS_ITEMPREPAINT:
2713 {
2714 wxMapTreeAttr::iterator
2715 it = m_attrs.find((void *)nmcd.dwItemSpec);
2716
2717 if ( it == m_attrs.end() )
2718 {
2719 // nothing to do for this item
2720 *result = CDRF_DODEFAULT;
2721 break;
2722 }
2723
2724 wxTreeItemAttr * const attr = it->second;
2725
2726 // selection colours should override ours,
2727 // otherwise it is too confusing ot the user
2728 if ( !(nmcd.uItemState & CDIS_SELECTED) )
2729 {
2730 wxColour colBack;
2731 if ( attr->HasBackgroundColour() )
2732 {
2733 colBack = attr->GetBackgroundColour();
2734 lptvcd->clrTextBk = wxColourToRGB(colBack);
2735 }
2736 }
2737
2738 // but we still want to keep the special foreground
2739 // colour when we don't have focus (we can't keep
2740 // it when we do, it would usually be unreadable on
2741 // the almost inverted bg colour...)
2742 if ( !(nmcd.uItemState & CDIS_SELECTED) ||
2743 FindFocus() != this )
2744 {
2745 wxColour colText;
2746 if ( attr->HasTextColour() )
2747 {
2748 colText = attr->GetTextColour();
2749 lptvcd->clrText = wxColourToRGB(colText);
2750 }
2751 }
2752
2753 if ( attr->HasFont() )
2754 {
2755 HFONT hFont = GetHfontOf(attr->GetFont());
2756
2757 ::SelectObject(nmcd.hdc, hFont);
2758
2759 *result = CDRF_NEWFONT;
2760 }
2761 else // no specific font
2762 {
2763 *result = CDRF_DODEFAULT;
2764 }
2765 }
2766 break;
2767
2768 default:
2769 *result = CDRF_DODEFAULT;
2770 }
2771 }
2772
2773 // we always process it
2774 return true;
2775#endif // have owner drawn support in headers
2776
2777 case NM_CLICK:
2778 {
2779 DWORD pos = GetMessagePos();
2780 POINT point;
2781 point.x = LOWORD(pos);
2782 point.y = HIWORD(pos);
2783 ::MapWindowPoints(HWND_DESKTOP, GetHwnd(), &point, 1);
2784 int flags = 0;
2785 wxTreeItemId item = HitTest(wxPoint(point.x, point.y), flags);
2786 if (flags & wxTREE_HITTEST_ONITEMSTATEICON)
2787 {
2788 event.m_item = item;
2789 eventType = wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK;
2790 }
2791 break;
2792 }
2793
2794 case NM_DBLCLK:
2795 case NM_RCLICK:
2796 {
2797 TV_HITTESTINFO tvhti;
2798 ::GetCursorPos(&tvhti.pt);
2799 ::ScreenToClient(GetHwnd(), &tvhti.pt);
2800 if ( TreeView_HitTest(GetHwnd(), &tvhti) )
2801 {
2802 if ( tvhti.flags & TVHT_ONITEM )
2803 {
2804 event.m_item = tvhti.hItem;
2805 eventType = (int)hdr->code == NM_DBLCLK
2806 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2807 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK;
2808
2809 event.m_pointDrag.x = tvhti.pt.x;
2810 event.m_pointDrag.y = tvhti.pt.y;
2811 }
2812
2813 break;
2814 }
2815 }
2816 // fall through
2817
2818 default:
2819 return wxControl::MSWOnNotify(idCtrl, lParam, result);
2820 }
2821
2822 event.SetEventObject(this);
2823 event.SetEventType(eventType);
2824
2825 bool processed = GetEventHandler()->ProcessEvent(event);
2826
2827 // post processing
2828 switch ( hdr->code )
2829 {
2830 case NM_DBLCLK:
2831 // we translate NM_DBLCLK into ACTIVATED event, so don't interpret
2832 // the return code of this event handler as the return value for
2833 // NM_DBLCLK - otherwise, double clicking the item to toggle its
2834 // expanded status would never work
2835 *result = false;
2836 break;
2837
2838 case TVN_BEGINDRAG:
2839 case TVN_BEGINRDRAG:
2840 if ( event.IsAllowed() )
2841 {
2842 // normally this is impossible because the m_dragImage is
2843 // deleted once the drag operation is over
2844 wxASSERT_MSG( !m_dragImage, _T("starting to drag once again?") );
2845
2846 m_dragImage = new wxDragImage(*this, event.m_item);
2847 m_dragImage->BeginDrag(wxPoint(0, 0), this);
2848 m_dragImage->Show();
2849 }
2850 break;
2851
2852 case TVN_DELETEITEM:
2853 {
2854 // NB: we might process this message using wxWidgets event
2855 // tables, but due to overhead of wxWin event system we
2856 // prefer to do it here ourself (otherwise deleting a tree
2857 // with many items is just too slow)
2858 NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam;
2859
2860 wxTreeItemId item = event.m_item;
2861 if ( HasIndirectData(item) )
2862 {
2863 wxTreeItemIndirectData *data = (wxTreeItemIndirectData *)
2864 tv->itemOld.lParam;
2865 delete data; // can't be NULL here
2866 }
2867 else
2868 {
2869 wxTreeItemData *data = (wxTreeItemData *)tv->itemOld.lParam;
2870 delete data; // may be NULL, ok
2871 }
2872
2873 processed = true; // Make sure we don't get called twice
2874 }
2875 break;
2876
2877 case TVN_BEGINLABELEDIT:
2878 // return true to cancel label editing
2879 *result = !event.IsAllowed();
2880 // set ES_WANTRETURN ( like we do in BeginLabelEdit )
2881 if(event.IsAllowed())
2882 {
2883 HWND hText = TreeView_GetEditControl(GetHwnd());
2884 if(hText != NULL)
2885 {
2886 // MBN: if m_textCtrl already has an HWND, it is a stale
2887 // pointer from a previous edit (because the user
2888 // didn't modify the label before dismissing the control,
2889 // and TVN_ENDLABELEDIT was not sent), so delete it
2890 if(m_textCtrl && m_textCtrl->GetHWND() != 0)
2891 DeleteTextCtrl();
2892 if(!m_textCtrl)
2893 m_textCtrl = new wxTextCtrl();
2894 m_textCtrl->SetParent(this);
2895 m_textCtrl->SetHWND((WXHWND)hText);
2896 m_textCtrl->SubclassWin((WXHWND)hText);
2897
2898 // set wxTE_PROCESS_ENTER style for the text control to
2899 // force it to process the Enter presses itself, otherwise
2900 // they could be stolen from it by the dialog
2901 // navigation code
2902 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle()
2903 | wxTE_PROCESS_ENTER);
2904 }
2905 }
2906 break;
2907
2908 case TVN_ENDLABELEDIT:
2909 // return true to set the label to the new string: note that we
2910 // also must pretend that we did process the message or it is going
2911 // to be passed to DefWindowProc() which will happily return false
2912 // cancelling the label change
2913 *result = event.IsAllowed();
2914 processed = true;
2915
2916 // ensure that we don't have the text ctrl which is going to be
2917 // deleted any more
2918 DeleteTextCtrl();
2919 break;
2920
2921#ifndef __WXWINCE__
2922 case TVN_GETINFOTIP:
2923 {
2924 // If the user permitted a tooltip change, change it
2925 if (event.IsAllowed())
2926 {
2927 SetToolTip(event.m_label);
2928 }
2929 }
2930 break;
2931#endif
2932
2933 case TVN_SELCHANGING:
2934 case TVN_ITEMEXPANDING:
2935 // return true to prevent the action from happening
2936 *result = !event.IsAllowed();
2937 break;
2938
2939 case TVN_ITEMEXPANDED:
2940 // the item is not refreshed properly after expansion when it has
2941 // an image depending on the expanded/collapsed state - bug in
2942 // comctl32.dll or our code?
2943 {
2944 NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam;
2945 wxTreeItemId id(tv->itemNew.hItem);
2946
2947 int image = GetItemImage(id, wxTreeItemIcon_Expanded);
2948 if ( image != -1 )
2949 {
2950 RefreshItem(id);
2951 }
2952 }
2953 break;
2954
2955 case TVN_GETDISPINFO:
2956 // NB: so far the user can't set the image himself anyhow, so do it
2957 // anyway - but this may change later
2958 //if ( /* !processed && */ 1 )
2959 {
2960 wxTreeItemId item = event.m_item;
2961 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
2962 if ( info->item.mask & TVIF_IMAGE )
2963 {
2964 info->item.iImage =
2965 DoGetItemImageFromData
2966 (
2967 item,
2968 IsExpanded(item) ? wxTreeItemIcon_Expanded
2969 : wxTreeItemIcon_Normal
2970 );
2971 }
2972 if ( info->item.mask & TVIF_SELECTEDIMAGE )
2973 {
2974 info->item.iSelectedImage =
2975 DoGetItemImageFromData
2976 (
2977 item,
2978 IsExpanded(item) ? wxTreeItemIcon_SelectedExpanded
2979 : wxTreeItemIcon_Selected
2980 );
2981 }
2982 }
2983 break;
2984
2985 //default:
2986 // for the other messages the return value is ignored and there is
2987 // nothing special to do
2988 }
2989 return processed;
2990}
2991
2992// ----------------------------------------------------------------------------
2993// State control.
2994// ----------------------------------------------------------------------------
2995
2996// why do they define INDEXTOSTATEIMAGEMASK but not the inverse?
2997#define STATEIMAGEMASKTOINDEX(state) (((state) & TVIS_STATEIMAGEMASK) >> 12)
2998
2999void wxTreeCtrl::SetState(const wxTreeItemId& node, int state)
3000{
3001 TV_ITEM tvi;
3002 tvi.hItem = (HTREEITEM)node.m_pItem;
3003 tvi.mask = TVIF_STATE;
3004 tvi.stateMask = TVIS_STATEIMAGEMASK;
3005
3006 // Select the specified state, or -1 == cycle to the next one.
3007 if ( state == -1 )
3008 {
3009 TreeView_GetItem(GetHwnd(), &tvi);
3010
3011 state = STATEIMAGEMASKTOINDEX(tvi.state) + 1;
3012 if ( state == m_imageListState->GetImageCount() )
3013 state = 1;
3014 }
3015
3016 wxCHECK_RET( state < m_imageListState->GetImageCount(),
3017 _T("wxTreeCtrl::SetState(): item index out of bounds") );
3018
3019 tvi.state = INDEXTOSTATEIMAGEMASK(state);
3020
3021 TreeView_SetItem(GetHwnd(), &tvi);
3022}
3023
3024int wxTreeCtrl::GetState(const wxTreeItemId& node)
3025{
3026 TV_ITEM tvi;
3027 tvi.hItem = (HTREEITEM)node.m_pItem;
3028 tvi.mask = TVIF_STATE;
3029 tvi.stateMask = TVIS_STATEIMAGEMASK;
3030 TreeView_GetItem(GetHwnd(), &tvi);
3031
3032 return STATEIMAGEMASKTOINDEX(tvi.state);
3033}
3034
3035#endif // wxUSE_TREECTRL
3036