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