]> git.saurik.com Git - wxWidgets.git/blame - src/msw/treectrl.cpp
Ensure the tooltip has been created before enabling or setting the delay, or they...
[wxWidgets.git] / src / msw / treectrl.cpp
CommitLineData
b823f5a1 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: src/msw/treectrl.cpp
b823f5a1
JS
3// Purpose: wxTreeCtrl
4// Author: Julian Smart
08b7c251 5// Modified by: Vadim Zeitlin to be less MSW-specific on 10.10.98
b823f5a1
JS
6// Created: 1997
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
b823f5a1 10/////////////////////////////////////////////////////////////////////////////
2bda0e17 11
08b7c251
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
1e6feb95 19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
08b7c251 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
1e6feb95
VZ
27#if wxUSE_TREECTRL
28
e4db172a
WS
29#include "wx/treectrl.h"
30
ad9835c9 31#ifndef WX_PRECOMP
57bd4c60
WS
32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
33 #include "wx/msw/missing.h"
ad9835c9 34 #include "wx/dynarray.h"
e4db172a 35 #include "wx/log.h"
670f9935 36 #include "wx/app.h"
9eddec69 37 #include "wx/settings.h"
ad9835c9
WS
38#endif
39
c27dce18 40#include "wx/dynlib.h"
2f17da8b
WS
41#include "wx/msw/private.h"
42
1e6feb95
VZ
43// Set this to 1 to be _absolutely_ sure that repainting will work for all
44// comctl32.dll versions
f6bcfd97
BP
45#define wxUSE_COMCTL32_SAFELY 0
46
08b7c251 47#include "wx/imaglist.h"
23f681ec
VZ
48#include "wx/msw/dragimag.h"
49
f888d614
VZ
50// macros to hide the cast ugliness
51// --------------------------------
52
14ba002a
VZ
53// get HTREEITEM from wxTreeItemId
54#define HITEM(item) ((HTREEITEM)(((item).m_pItem)))
3f7bc32b 55
5fe302ef
BW
56
57// older SDKs are missing these
58#ifndef TVN_ITEMCHANGINGA
59
60#define TVN_ITEMCHANGINGA (TVN_FIRST-16)
61#define TVN_ITEMCHANGINGW (TVN_FIRST-17)
62
63typedef struct tagNMTVITEMCHANGE
64{
65 NMHDR hdr;
66 UINT uChanged;
67 HTREEITEM hItem;
68 UINT uStateNew;
69 UINT uStateOld;
70 LPARAM lParam;
71} NMTVITEMCHANGE;
72
73#endif
74
75
396f85ba
BW
76// this helper class is used on vista systems for preventing unwanted
77// item state changes in the vista tree control. It is only effective in
5fe302ef
BW
78// multi-select mode on vista systems.
79
396f85ba
BW
80// The vista tree control includes some new code that originally broke the
81// multi-selection tree, causing seemingly spurious item selection state changes
82// during Shift or Ctrl-click item selection. (To witness the original broken
83// behavior, simply make IsLocked() below always return false). This problem was
84// solved by using the following class to 'unlock' an item's selection state.
5fe302ef
BW
85
86class TreeItemUnlocker
87{
88public:
396f85ba
BW
89 // unlock a single item
90 TreeItemUnlocker(HTREEITEM item) { ms_unlockedItem = item; }
91
92 // unlock all items, don't use unless absolutely necessary
93 TreeItemUnlocker() { ms_unlockedItem = (HTREEITEM)-1; }
94
95 // lock everything back
96 ~TreeItemUnlocker() { ms_unlockedItem = NULL; }
97
98
99 // check if the item state is currently locked
100 static bool IsLocked(HTREEITEM item)
101 { return ms_unlockedItem != (HTREEITEM)-1 && item != ms_unlockedItem; }
102
103private:
104 static HTREEITEM ms_unlockedItem;
5fe302ef
BW
105};
106
396f85ba 107HTREEITEM TreeItemUnlocker::ms_unlockedItem = NULL;
5fe302ef 108
7dac12ef
VZ
109// another helper class: set the variable to true during its lifetime and reset
110// it to false when it is destroyed
111//
112// it is currently always used with wxTreeCtrl::m_changingSelection
113class TempSetter
114{
115public:
116 TempSetter(bool& var) : m_var(var)
117 {
118 wxASSERT_MSG( !m_var, "variable shouldn't be already set" );
119 m_var = true;
120 }
121
122 ~TempSetter()
123 {
124 m_var = false;
125 }
126
127private:
128 bool& m_var;
129
130 wxDECLARE_NO_COPY_CLASS(TempSetter);
131};
132
3f7bc32b
VZ
133// ----------------------------------------------------------------------------
134// private functions
135// ----------------------------------------------------------------------------
136
75afdc2d
VZ
137// wrappers for TreeView_GetItem/TreeView_SetItem
138static bool IsItemSelected(HWND hwndTV, HTREEITEM hItem)
139{
75afdc2d
VZ
140 TV_ITEM tvi;
141 tvi.mask = TVIF_STATE | TVIF_HANDLE;
142 tvi.stateMask = TVIS_SELECTED;
143 tvi.hItem = hItem;
144
5fe302ef
BW
145 TreeItemUnlocker unlocker(hItem);
146
75afdc2d
VZ
147 if ( !TreeView_GetItem(hwndTV, &tvi) )
148 {
149 wxLogLastError(wxT("TreeView_GetItem"));
150 }
151
152 return (tvi.state & TVIS_SELECTED) != 0;
153}
154
155static bool SelectItem(HWND hwndTV, HTREEITEM hItem, bool select = true)
156{
157 TV_ITEM tvi;
158 tvi.mask = TVIF_STATE | TVIF_HANDLE;
159 tvi.stateMask = TVIS_SELECTED;
160 tvi.state = select ? TVIS_SELECTED : 0;
161 tvi.hItem = hItem;
162
5fe302ef
BW
163 TreeItemUnlocker unlocker(hItem);
164
75afdc2d
VZ
165 if ( TreeView_SetItem(hwndTV, &tvi) == -1 )
166 {
167 wxLogLastError(wxT("TreeView_SetItem"));
168 return false;
169 }
170
171 return true;
172}
173
174static inline void UnselectItem(HWND hwndTV, HTREEITEM htItem)
175{
176 SelectItem(hwndTV, htItem, false);
177}
178
c7d9c476
VZ
179static inline void ToggleItemSelection(HWND hwndTV, HTREEITEM htItem)
180{
181 SelectItem(hwndTV, htItem, !IsItemSelected(hwndTV, htItem));
182}
183
75afdc2d 184// helper function which selects all items in a range and, optionally,
c7d9c476
VZ
185// deselects all the other ones
186//
187// returns true if the selection changed at all or false if nothing changed
188
189// flags for SelectRange()
190enum
191{
192 SR_SIMULATE = 1, // don't do anything, just return true or false
193 SR_UNSELECT_OTHERS = 2 // deselect the items not in range
194};
195
196static bool SelectRange(HWND hwndTV,
75afdc2d
VZ
197 HTREEITEM htFirst,
198 HTREEITEM htLast,
c7d9c476 199 int flags)
75afdc2d
VZ
200{
201 // find the first (or last) item and select it
c7d9c476 202 bool changed = false;
75afdc2d
VZ
203 bool cont = true;
204 HTREEITEM htItem = (HTREEITEM)TreeView_GetRoot(hwndTV);
c7d9c476 205
75afdc2d
VZ
206 while ( htItem && cont )
207 {
208 if ( (htItem == htFirst) || (htItem == htLast) )
209 {
210 if ( !IsItemSelected(hwndTV, htItem) )
211 {
c7d9c476
VZ
212 if ( !(flags & SR_SIMULATE) )
213 {
214 SelectItem(hwndTV, htItem);
215 }
216
217 changed = true;
75afdc2d
VZ
218 }
219
220 cont = false;
221 }
c7d9c476 222 else // not first or last
75afdc2d 223 {
c7d9c476 224 if ( flags & SR_UNSELECT_OTHERS )
75afdc2d 225 {
c7d9c476
VZ
226 if ( IsItemSelected(hwndTV, htItem) )
227 {
228 if ( !(flags & SR_SIMULATE) )
229 UnselectItem(hwndTV, htItem);
230
231 changed = true;
232 }
75afdc2d
VZ
233 }
234 }
235
236 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
237 }
238
239 // select the items in range
240 cont = htFirst != htLast;
241 while ( htItem && cont )
242 {
243 if ( !IsItemSelected(hwndTV, htItem) )
244 {
c7d9c476
VZ
245 if ( !(flags & SR_SIMULATE) )
246 {
247 SelectItem(hwndTV, htItem);
248 }
249
250 changed = true;
75afdc2d
VZ
251 }
252
253 cont = (htItem != htFirst) && (htItem != htLast);
254
255 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
256 }
257
c7d9c476
VZ
258 // optionally deselect the rest
259 if ( flags & SR_UNSELECT_OTHERS )
75afdc2d
VZ
260 {
261 while ( htItem )
262 {
263 if ( IsItemSelected(hwndTV, htItem) )
264 {
c7d9c476
VZ
265 if ( !(flags & SR_SIMULATE) )
266 {
267 UnselectItem(hwndTV, htItem);
268 }
269
270 changed = true;
75afdc2d
VZ
271 }
272
273 htItem = (HTREEITEM)TreeView_GetNextVisible(hwndTV, htItem);
274 }
275 }
276
277 // seems to be necessary - otherwise the just selected items don't always
278 // appear as selected
c7d9c476
VZ
279 if ( !(flags & SR_SIMULATE) )
280 {
281 UpdateWindow(hwndTV);
282 }
283
284 return changed;
75afdc2d
VZ
285}
286
287// helper function which tricks the standard control into changing the focused
288// item without changing anything else (if someone knows why Microsoft doesn't
289// allow to do it by just setting TVIS_FOCUSED flag, please tell me!)
cc87a04c
VZ
290//
291// returns true if the focus was changed, false if the given item was already
292// the focused one
293static bool SetFocus(HWND hwndTV, HTREEITEM htItem)
75afdc2d
VZ
294{
295 // the current focus
296 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(hwndTV);
297
cc87a04c
VZ
298 if ( htItem == htFocus )
299 return false;
300
75afdc2d
VZ
301 if ( htItem )
302 {
cc87a04c
VZ
303 // remember the selection state of the item
304 bool wasSelected = IsItemSelected(hwndTV, htItem);
75afdc2d 305
cc87a04c
VZ
306 if ( htFocus && IsItemSelected(hwndTV, htFocus) )
307 {
308 // prevent the tree from unselecting the old focus which it
309 // would do by default (TreeView_SelectItem unselects the
310 // focused item)
311 TreeView_SelectItem(hwndTV, 0);
312 SelectItem(hwndTV, htFocus);
313 }
75afdc2d 314
cc87a04c 315 TreeView_SelectItem(hwndTV, htItem);
75afdc2d 316
cc87a04c
VZ
317 if ( !wasSelected )
318 {
319 // need to clear the selection which TreeView_SelectItem() gave
320 // us
321 UnselectItem(hwndTV, htItem);
75afdc2d 322 }
cc87a04c 323 //else: was selected, still selected - ok
75afdc2d 324 }
cc87a04c 325 else // reset focus
75afdc2d 326 {
cc87a04c 327 bool wasFocusSelected = IsItemSelected(hwndTV, htFocus);
75afdc2d 328
cc87a04c
VZ
329 // just clear the focus
330 TreeView_SelectItem(hwndTV, 0);
75afdc2d 331
cc87a04c
VZ
332 if ( wasFocusSelected )
333 {
334 // restore the selection state
335 SelectItem(hwndTV, htFocus);
75afdc2d 336 }
75afdc2d 337 }
cc87a04c
VZ
338
339 return true;
75afdc2d
VZ
340}
341
08b7c251
VZ
342// ----------------------------------------------------------------------------
343// private classes
344// ----------------------------------------------------------------------------
2bda0e17 345
08b7c251 346// a convenient wrapper around TV_ITEM struct which adds a ctor
f3ef286f 347#ifdef __VISUALC__
3f7bc32b 348#pragma warning( disable : 4097 ) // inheriting from typedef
f3ef286f
JS
349#endif
350
08b7c251
VZ
351struct wxTreeViewItem : public TV_ITEM
352{
9dfbf520
VZ
353 wxTreeViewItem(const wxTreeItemId& item, // the item handle
354 UINT mask_, // fields which are valid
355 UINT stateMask_ = 0) // for TVIF_STATE only
08b7c251 356 {
a9c1265f
VZ
357 wxZeroMemory(*this);
358
9dfbf520
VZ
359 // hItem member is always valid
360 mask = mask_ | TVIF_HANDLE;
08b7c251 361 stateMask = stateMask_;
3f7bc32b 362 hItem = HITEM(item);
08b7c251
VZ
363 }
364};
f3ef286f 365
4523ebb3
VZ
366// ----------------------------------------------------------------------------
367// This class is our userdata/lParam for the TV_ITEMs stored in the treeview.
368//
369// We need this for a couple of reasons:
370//
371// 1) This class is needed for support of different images: the Win32 common
372// control natively supports only 2 images (the normal one and another for the
373// selected state). We wish to provide support for 2 more of them for folder
374// items (i.e. those which have children): for expanded state and for expanded
375// selected state. For this we use this structure to store the additional items
376// images.
377//
378// 2) This class is also needed to hold the HITEM so that we can sort
379// it correctly in the MSW sort callback.
380//
381// In addition it makes other workarounds such as this easier and helps
382// simplify the code.
383// ----------------------------------------------------------------------------
384
385class wxTreeItemParam
386{
387public:
388 wxTreeItemParam()
4523ebb3 389 {
20f4b566
VZ
390 m_data = NULL;
391
4523ebb3
VZ
392 for ( size_t n = 0; n < WXSIZEOF(m_images); n++ )
393 {
394 m_images[n] = -1;
395 }
396 }
397
398 // dtor deletes the associated data as well
399 virtual ~wxTreeItemParam() { delete m_data; }
400
401 // accessors
402 // get the real data associated with the item
403 wxTreeItemData *GetData() const { return m_data; }
404 // change it
405 void SetData(wxTreeItemData *data) { m_data = data; }
406
407 // do we have such image?
408 bool HasImage(wxTreeItemIcon which) const { return m_images[which] != -1; }
1b182562
VZ
409 // get image, falling back to the other images if this one is not
410 // specified
411 int GetImage(wxTreeItemIcon which) const
412 {
413 int image = m_images[which];
414 if ( image == -1 )
415 {
416 switch ( which )
417 {
418 case wxTreeItemIcon_SelectedExpanded:
419 image = GetImage(wxTreeItemIcon_Expanded);
420 if ( image != -1 )
421 break;
422 //else: fall through
423
424 case wxTreeItemIcon_Selected:
425 case wxTreeItemIcon_Expanded:
426 image = GetImage(wxTreeItemIcon_Normal);
427 break;
428
429 case wxTreeItemIcon_Normal:
430 // no fallback
431 break;
432
433 default:
434 wxFAIL_MSG( _T("unsupported wxTreeItemIcon value") );
435 }
436 }
437
438 return image;
439 }
440 // change the given image
4523ebb3
VZ
441 void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; }
442
443 // get item
444 const wxTreeItemId& GetItem() const { return m_item; }
445 // set item
446 void SetItem(const wxTreeItemId& item) { m_item = item; }
447
448protected:
449 // all the images associated with the item
450 int m_images[wxTreeItemIcon_Max];
451
452 // item for sort callbacks
453 wxTreeItemId m_item;
454
455 // the real client data
456 wxTreeItemData *m_data;
457
c0c133e1 458 wxDECLARE_NO_COPY_CLASS(wxTreeItemParam);
4523ebb3
VZ
459};
460
a9c1265f
VZ
461// wxVirutalNode is used in place of a single root when 'hidden' root is
462// specified.
efa38350 463class wxVirtualNode : public wxTreeViewItem
a9c1265f
VZ
464{
465public:
4523ebb3 466 wxVirtualNode(wxTreeItemParam *param)
efa38350 467 : wxTreeViewItem(TVI_ROOT, 0)
a9c1265f 468 {
4523ebb3 469 m_param = param;
a9c1265f
VZ
470 }
471
472 ~wxVirtualNode()
473 {
4523ebb3 474 delete m_param;
a9c1265f
VZ
475 }
476
4523ebb3
VZ
477 wxTreeItemParam *GetParam() const { return m_param; }
478 void SetParam(wxTreeItemParam *param) { delete m_param; m_param = param; }
a9c1265f
VZ
479
480private:
4523ebb3 481 wxTreeItemParam *m_param;
22f3361e 482
c0c133e1 483 wxDECLARE_NO_COPY_CLASS(wxVirtualNode);
a9c1265f
VZ
484};
485
f3ef286f 486#ifdef __VISUALC__
197dd9af 487#pragma warning( default : 4097 )
f3ef286f 488#endif
2bda0e17 489
a9c1265f
VZ
490// a macro to get the virtual root, returns NULL if none
491#define GET_VIRTUAL_ROOT() ((wxVirtualNode *)m_pVirtualRoot)
492
04cd30de 493// returns true if the item is the virtual root
a9c1265f
VZ
494#define IS_VIRTUAL_ROOT(item) (HITEM(item) == TVI_ROOT)
495
9dfbf520 496// a class which encapsulates the tree traversal logic: it vists all (unless
04cd30de 497// OnVisit() returns false) items under the given one
9dfbf520
VZ
498class wxTreeTraversal
499{
500public:
501 wxTreeTraversal(const wxTreeCtrl *tree)
502 {
503 m_tree = tree;
504 }
505
cc11ded1
VZ
506 // give it a virtual dtor: not really needed as the class is never used
507 // polymorphically and not even allocated on heap at all, but this is safer
508 // (in case it ever is) and silences the compiler warnings for now
509 virtual ~wxTreeTraversal() { }
510
9dfbf520 511 // do traverse the tree: visit all items (recursively by default) under the
04cd30de
RL
512 // given one; return true if all items were traversed or false if the
513 // traversal was aborted because OnVisit returned false
514 bool DoTraverse(const wxTreeItemId& root, bool recursively = true);
9dfbf520
VZ
515
516 // override this function to do whatever is needed for each item, return
04cd30de 517 // false to stop traversing
9dfbf520
VZ
518 virtual bool OnVisit(const wxTreeItemId& item) = 0;
519
520protected:
521 const wxTreeCtrl *GetTree() const { return m_tree; }
522
523private:
524 bool Traverse(const wxTreeItemId& root, bool recursively);
525
526 const wxTreeCtrl *m_tree;
22f3361e 527
c0c133e1 528 wxDECLARE_NO_COPY_CLASS(wxTreeTraversal);
9dfbf520
VZ
529};
530
74b31181
VZ
531// internal class for getting the selected items
532class TraverseSelections : public wxTreeTraversal
533{
534public:
535 TraverseSelections(const wxTreeCtrl *tree,
536 wxArrayTreeItemIds& selections)
537 : wxTreeTraversal(tree), m_selections(selections)
538 {
539 m_selections.Empty();
540
b9e9b40c
JS
541 if (tree->GetCount() > 0)
542 DoTraverse(tree->GetRootItem());
74b31181
VZ
543 }
544
545 virtual bool OnVisit(const wxTreeItemId& item)
546 {
0228081f
VZ
547 const wxTreeCtrl * const tree = GetTree();
548
a9c1265f 549 // can't visit a virtual node.
0228081f 550 if ( (tree->GetRootItem() == item) && tree->HasFlag(wxTR_HIDE_ROOT) )
a9c1265f 551 {
04cd30de 552 return true;
a9c1265f
VZ
553 }
554
0228081f 555 if ( ::IsItemSelected(GetHwndOf(tree), HITEM(item)) )
74b31181
VZ
556 {
557 m_selections.Add(item);
558 }
559
04cd30de 560 return true;
74b31181
VZ
561 }
562
e47c4d48
VZ
563 size_t GetCount() const { return m_selections.GetCount(); }
564
74b31181
VZ
565private:
566 wxArrayTreeItemIds& m_selections;
fc7a2a60 567
c0c133e1 568 wxDECLARE_NO_COPY_CLASS(TraverseSelections);
74b31181
VZ
569};
570
571// internal class for counting tree items
572class TraverseCounter : public wxTreeTraversal
573{
574public:
575 TraverseCounter(const wxTreeCtrl *tree,
576 const wxTreeItemId& root,
577 bool recursively)
578 : wxTreeTraversal(tree)
579 {
580 m_count = 0;
581
582 DoTraverse(root, recursively);
583 }
584
33ac7e6f 585 virtual bool OnVisit(const wxTreeItemId& WXUNUSED(item))
74b31181
VZ
586 {
587 m_count++;
588
04cd30de 589 return true;
74b31181
VZ
590 }
591
592 size_t GetCount() const { return m_count; }
593
594private:
595 size_t m_count;
fc7a2a60 596
c0c133e1 597 wxDECLARE_NO_COPY_CLASS(TraverseCounter);
74b31181
VZ
598};
599
23f681ec 600// ----------------------------------------------------------------------------
3f7bc32b 601// wxWin macros
08b7c251
VZ
602// ----------------------------------------------------------------------------
603
786a2425 604#if wxUSE_EXTENDED_RTTI
bc9fb572
JS
605WX_DEFINE_FLAGS( wxTreeCtrlStyle )
606
3ff066a4 607wxBEGIN_FLAGS( wxTreeCtrlStyle )
bc9fb572
JS
608 // new style border flags, we put them first to
609 // use them for streaming out
3ff066a4
SC
610 wxFLAGS_MEMBER(wxBORDER_SIMPLE)
611 wxFLAGS_MEMBER(wxBORDER_SUNKEN)
612 wxFLAGS_MEMBER(wxBORDER_DOUBLE)
613 wxFLAGS_MEMBER(wxBORDER_RAISED)
614 wxFLAGS_MEMBER(wxBORDER_STATIC)
615 wxFLAGS_MEMBER(wxBORDER_NONE)
5e7718a2 616
bc9fb572 617 // old style border flags
3ff066a4
SC
618 wxFLAGS_MEMBER(wxSIMPLE_BORDER)
619 wxFLAGS_MEMBER(wxSUNKEN_BORDER)
620 wxFLAGS_MEMBER(wxDOUBLE_BORDER)
621 wxFLAGS_MEMBER(wxRAISED_BORDER)
622 wxFLAGS_MEMBER(wxSTATIC_BORDER)
cb0afb26 623 wxFLAGS_MEMBER(wxBORDER)
bc9fb572
JS
624
625 // standard window styles
3ff066a4
SC
626 wxFLAGS_MEMBER(wxTAB_TRAVERSAL)
627 wxFLAGS_MEMBER(wxCLIP_CHILDREN)
628 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW)
629 wxFLAGS_MEMBER(wxWANTS_CHARS)
cb0afb26 630 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE)
3ff066a4
SC
631 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB )
632 wxFLAGS_MEMBER(wxVSCROLL)
633 wxFLAGS_MEMBER(wxHSCROLL)
634
635 wxFLAGS_MEMBER(wxTR_EDIT_LABELS)
636 wxFLAGS_MEMBER(wxTR_NO_BUTTONS)
637 wxFLAGS_MEMBER(wxTR_HAS_BUTTONS)
638 wxFLAGS_MEMBER(wxTR_TWIST_BUTTONS)
639 wxFLAGS_MEMBER(wxTR_NO_LINES)
640 wxFLAGS_MEMBER(wxTR_FULL_ROW_HIGHLIGHT)
641 wxFLAGS_MEMBER(wxTR_LINES_AT_ROOT)
642 wxFLAGS_MEMBER(wxTR_HIDE_ROOT)
643 wxFLAGS_MEMBER(wxTR_ROW_LINES)
644 wxFLAGS_MEMBER(wxTR_HAS_VARIABLE_ROW_HEIGHT)
645 wxFLAGS_MEMBER(wxTR_SINGLE)
646 wxFLAGS_MEMBER(wxTR_MULTIPLE)
70cab5b7 647#if WXWIN_COMPATIBILITY_2_8
3ff066a4 648 wxFLAGS_MEMBER(wxTR_EXTENDED)
70cab5b7 649#endif
3ff066a4
SC
650 wxFLAGS_MEMBER(wxTR_DEFAULT_STYLE)
651
652wxEND_FLAGS( wxTreeCtrlStyle )
bc9fb572 653
786a2425
SC
654IMPLEMENT_DYNAMIC_CLASS_XTI(wxTreeCtrl, wxControl,"wx/treectrl.h")
655
3ff066a4 656wxBEGIN_PROPERTIES_TABLE(wxTreeCtrl)
5e7718a2 657 wxEVENT_PROPERTY( TextUpdated , wxEVT_COMMAND_TEXT_UPDATED , wxCommandEvent )
3ff066a4 658 wxEVENT_RANGE_PROPERTY( TreeEvent , wxEVT_COMMAND_TREE_BEGIN_DRAG , wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK , wxTreeEvent )
af498247 659 wxPROPERTY_FLAGS( WindowStyle , wxTreeCtrlStyle , long , SetWindowStyleFlag , GetWindowStyleFlag , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
3ff066a4 660wxEND_PROPERTIES_TABLE()
786a2425 661
3ff066a4
SC
662wxBEGIN_HANDLERS_TABLE(wxTreeCtrl)
663wxEND_HANDLERS_TABLE()
786a2425 664
5e7718a2 665wxCONSTRUCTOR_5( wxTreeCtrl , wxWindow* , Parent , wxWindowID , Id , wxPoint , Position , wxSize , Size , long , WindowStyle )
786a2425 666#else
23f681ec 667IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxControl)
786a2425 668#endif
2bda0e17 669
08b7c251 670// ----------------------------------------------------------------------------
deb1de30 671// constants
08b7c251
VZ
672// ----------------------------------------------------------------------------
673
deb1de30
VZ
674// indices in gs_expandEvents table below
675enum
676{
677 IDX_COLLAPSE,
678 IDX_EXPAND,
679 IDX_WHAT_MAX
680};
681
682enum
683{
684 IDX_DONE,
685 IDX_DOING,
686 IDX_HOW_MAX
687};
688
689// handy table for sending events - it has to be initialized during run-time
690// now so can't be const any more
691static /* const */ wxEventType gs_expandEvents[IDX_WHAT_MAX][IDX_HOW_MAX];
692
693/*
694 but logically it's a const table with the following entries:
695=
2bda0e17 696{
08b7c251
VZ
697 { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING },
698 { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING }
699};
deb1de30 700*/
08b7c251
VZ
701
702// ============================================================================
703// implementation
704// ============================================================================
705
9dfbf520
VZ
706// ----------------------------------------------------------------------------
707// tree traversal
708// ----------------------------------------------------------------------------
709
710bool wxTreeTraversal::DoTraverse(const wxTreeItemId& root, bool recursively)
711{
712 if ( !OnVisit(root) )
04cd30de 713 return false;
9dfbf520
VZ
714
715 return Traverse(root, recursively);
716}
717
718bool wxTreeTraversal::Traverse(const wxTreeItemId& root, bool recursively)
719{
ee4b2721 720 wxTreeItemIdValue cookie;
9dfbf520
VZ
721 wxTreeItemId child = m_tree->GetFirstChild(root, cookie);
722 while ( child.IsOk() )
723 {
724 // depth first traversal
04cd30de
RL
725 if ( recursively && !Traverse(child, true) )
726 return false;
9dfbf520
VZ
727
728 if ( !OnVisit(child) )
04cd30de 729 return false;
9dfbf520
VZ
730
731 child = m_tree->GetNextChild(root, cookie);
732 }
733
04cd30de 734 return true;
9dfbf520
VZ
735}
736
08b7c251
VZ
737// ----------------------------------------------------------------------------
738// construction and destruction
739// ----------------------------------------------------------------------------
740
741void wxTreeCtrl::Init()
742{
08b7c251 743 m_textCtrl = NULL;
04cd30de 744 m_hasAnyAttr = false;
68d9be05 745#if wxUSE_DRAGIMAGE
23f681ec 746 m_dragImage = NULL;
68d9be05 747#endif
a9c1265f 748 m_pVirtualRoot = NULL;
c7d9c476
VZ
749 m_dragStarted = false;
750 m_focusLost = true;
7dac12ef 751 m_changingSelection = false;
c7d9c476 752 m_triggerStateImageClick = false;
9ab5ef13 753
deb1de30
VZ
754 // initialize the global array of events now as it can't be done statically
755 // with the wxEVT_XXX values being allocated during run-time only
756 gs_expandEvents[IDX_COLLAPSE][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_COLLAPSED;
757 gs_expandEvents[IDX_COLLAPSE][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_COLLAPSING;
758 gs_expandEvents[IDX_EXPAND][IDX_DONE] = wxEVT_COMMAND_TREE_ITEM_EXPANDED;
759 gs_expandEvents[IDX_EXPAND][IDX_DOING] = wxEVT_COMMAND_TREE_ITEM_EXPANDING;
2bda0e17
KB
760}
761
9dfbf520
VZ
762bool wxTreeCtrl::Create(wxWindow *parent,
763 wxWindowID id,
764 const wxPoint& pos,
765 const wxSize& size,
766 long style,
767 const wxValidator& validator,
08b7c251 768 const wxString& name)
2bda0e17 769{
08b7c251 770 Init();
2bda0e17 771
7699361c
JS
772 if ( (style & wxBORDER_MASK) == wxBORDER_DEFAULT )
773 style |= wxBORDER_SUNKEN;
774
9dfbf520 775 if ( !CreateControl(parent, id, pos, size, style, validator, name) )
04cd30de 776 return false;
2bda0e17 777
823b140b 778 WXDWORD exStyle = 0;
7699361c
JS
779 DWORD wstyle = MSWGetStyle(m_windowStyle, & exStyle);
780 wstyle |= WS_TABSTOP | TVS_SHOWSELALWAYS;
2bda0e17 781
c7d9c476 782 if ( !(m_windowStyle & wxTR_NO_LINES) )
63da7df7 783 wstyle |= TVS_HASLINES;
08b7c251
VZ
784 if ( m_windowStyle & wxTR_HAS_BUTTONS )
785 wstyle |= TVS_HASBUTTONS;
2bda0e17 786
08b7c251
VZ
787 if ( m_windowStyle & wxTR_EDIT_LABELS )
788 wstyle |= TVS_EDITLABELS;
2bda0e17 789
08b7c251
VZ
790 if ( m_windowStyle & wxTR_LINES_AT_ROOT )
791 wstyle |= TVS_LINESATROOT;
deb1de30 792
c6f4913a 793 if ( m_windowStyle & wxTR_FULL_ROW_HIGHLIGHT )
deb1de30 794 {
2a1f999f 795 if ( wxApp::GetComCtl32Version() >= 471 )
c6f4913a
VS
796 wstyle |= TVS_FULLROWSELECT;
797 }
798
f3f71703 799#if !defined(__WXWINCE__) && defined(TVS_INFOTIP)
156194e1
JS
800 // Need so that TVN_GETINFOTIP messages will be sent
801 wstyle |= TVS_INFOTIP;
676d6550 802#endif
5e7718a2 803
08b7c251 804 // Create the tree control.
8779cca3 805 if ( !MSWCreateControl(WC_TREEVIEW, wstyle, pos, size) )
04cd30de 806 return false;
9dfbf520 807
f6bcfd97 808#if wxUSE_COMCTL32_SAFELY
a756f210 809 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
f6bcfd97
BP
810 wxWindow::SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
811#elif 1
a756f210 812 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
f6bcfd97 813 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
fbdcff4a
JS
814#else
815 // This works around a bug in the Windows tree control whereby for some versions
816 // of comctrl32, setting any colour actually draws the background in black.
817 // This will initialise the background to the system colour.
f6bcfd97
BP
818 // THIS FIX NOW REVERTED since it caused problems on _other_ systems.
819 // Assume the user has an updated comctl32.dll.
fbdcff4a 820 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0,-1);
a756f210 821 wxWindow::SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
f6bcfd97 822 SetForegroundColour(wxWindow::GetParent()->GetForegroundColour());
fbdcff4a
JS
823#endif
824
9a63feff
VZ
825 wxSetCCUnicodeFormat(GetHwnd());
826
04cd30de 827 return true;
2bda0e17
KB
828}
829
08b7c251 830wxTreeCtrl::~wxTreeCtrl()
2bda0e17 831{
696e1ea0
VZ
832 // delete any attributes
833 if ( m_hasAnyAttr )
834 {
ee4b2721 835 WX_CLEAR_HASH_MAP(wxMapTreeAttr, m_attrs);
696e1ea0
VZ
836
837 // prevent TVN_DELETEITEM handler from deleting the attributes again!
04cd30de 838 m_hasAnyAttr = false;
696e1ea0
VZ
839 }
840
08b7c251 841 DeleteTextCtrl();
2bda0e17 842
08b7c251 843 // delete user data to prevent memory leaks
a9c1265f 844 // also deletes hidden root node storage.
08b7c251 845 DeleteAllItems();
2bda0e17
KB
846}
847
08b7c251
VZ
848// ----------------------------------------------------------------------------
849// accessors
850// ----------------------------------------------------------------------------
2bda0e17 851
39c7a53c
VZ
852/* static */ wxVisualAttributes
853wxTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant)
854{
855 wxVisualAttributes attrs = GetCompositeControlsDefaultAttributes(variant);
856
857 // common controls have their own default font
858 attrs.font = wxGetCCDefaultFont();
859
860 return attrs;
861}
862
863
08b7c251 864// simple wrappers which add error checking in debug mode
2bda0e17 865
4523ebb3 866bool wxTreeCtrl::DoGetItem(wxTreeViewItem *tvItem) const
2bda0e17 867{
04cd30de 868 wxCHECK_MSG( tvItem->hItem != TVI_ROOT, false,
a9c1265f
VZ
869 _T("can't retrieve virtual root item") );
870
d220ae32 871 if ( !TreeView_GetItem(GetHwnd(), tvItem) )
2bda0e17 872 {
f6bcfd97 873 wxLogLastError(wxT("TreeView_GetItem"));
08b7c251 874
04cd30de 875 return false;
08b7c251
VZ
876 }
877
04cd30de 878 return true;
2bda0e17
KB
879}
880
4523ebb3 881void wxTreeCtrl::DoSetItem(wxTreeViewItem *tvItem)
2bda0e17 882{
5fe302ef
BW
883 TreeItemUnlocker unlocker(tvItem->hItem);
884
d220ae32 885 if ( TreeView_SetItem(GetHwnd(), tvItem) == -1 )
2bda0e17 886 {
f6bcfd97 887 wxLogLastError(wxT("TreeView_SetItem"));
08b7c251 888 }
2bda0e17
KB
889}
890
027d45e8 891unsigned int wxTreeCtrl::GetCount() const
2bda0e17 892{
027d45e8 893 return (unsigned int)TreeView_GetCount(GetHwnd());
2bda0e17
KB
894}
895
08b7c251 896unsigned int wxTreeCtrl::GetIndent() const
2bda0e17 897{
d220ae32 898 return TreeView_GetIndent(GetHwnd());
2bda0e17
KB
899}
900
08b7c251 901void wxTreeCtrl::SetIndent(unsigned int indent)
2bda0e17 902{
d220ae32 903 TreeView_SetIndent(GetHwnd(), indent);
2bda0e17
KB
904}
905
08b7c251 906void wxTreeCtrl::SetAnyImageList(wxImageList *imageList, int which)
2bda0e17 907{
08b7c251 908 // no error return
8ecd5de2
WS
909 (void) TreeView_SetImageList(GetHwnd(),
910 imageList ? imageList->GetHIMAGELIST() : 0,
911 which);
2bda0e17
KB
912}
913
08b7c251 914void wxTreeCtrl::SetImageList(wxImageList *imageList)
2bda0e17 915{
a9c1265f
VZ
916 if (m_ownsImageListNormal)
917 delete m_imageListNormal;
918
08b7c251 919 SetAnyImageList(m_imageListNormal = imageList, TVSIL_NORMAL);
04cd30de 920 m_ownsImageListNormal = false;
2bda0e17
KB
921}
922
08b7c251 923void wxTreeCtrl::SetStateImageList(wxImageList *imageList)
2bda0e17 924{
0377efa2 925 if (m_ownsImageListState) delete m_imageListState;
08b7c251 926 SetAnyImageList(m_imageListState = imageList, TVSIL_STATE);
04cd30de 927 m_ownsImageListState = false;
0377efa2
VS
928}
929
33961d59
RR
930size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item,
931 bool recursively) const
932{
05b2a432 933 wxCHECK_MSG( item.IsOk(), 0u, wxT("invalid tree item") );
23fd5130 934
05b2a432 935 TraverseCounter counter(this, item, recursively);
73974df1 936 return counter.GetCount() - 1;
23fd5130
VZ
937}
938
bb448552
VZ
939// ----------------------------------------------------------------------------
940// control colours
941// ----------------------------------------------------------------------------
942
943bool wxTreeCtrl::SetBackgroundColour(const wxColour &colour)
944{
f6bcfd97 945#if !wxUSE_COMCTL32_SAFELY
bb448552 946 if ( !wxWindowBase::SetBackgroundColour(colour) )
04cd30de 947 return false;
bb448552 948
bfbb0b4c 949 ::SendMessage(GetHwnd(), TVM_SETBKCOLOR, 0, colour.GetPixel());
f6bcfd97 950#endif
bb448552 951
04cd30de 952 return true;
bb448552
VZ
953}
954
955bool wxTreeCtrl::SetForegroundColour(const wxColour &colour)
956{
f6bcfd97 957#if !wxUSE_COMCTL32_SAFELY
bb448552 958 if ( !wxWindowBase::SetForegroundColour(colour) )
04cd30de 959 return false;
bb448552 960
bfbb0b4c 961 ::SendMessage(GetHwnd(), TVM_SETTEXTCOLOR, 0, colour.GetPixel());
f6bcfd97 962#endif
bb448552 963
04cd30de 964 return true;
bb448552
VZ
965}
966
08b7c251
VZ
967// ----------------------------------------------------------------------------
968// Item access
969// ----------------------------------------------------------------------------
970
0228081f
VZ
971bool wxTreeCtrl::IsHiddenRoot(const wxTreeItemId& item) const
972{
973 return HITEM(item) == TVI_ROOT && HasFlag(wxTR_HIDE_ROOT);
974}
975
08b7c251 976wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const
2bda0e17 977{
f31a4098 978 wxCHECK_MSG( item.IsOk(), wxEmptyString, wxT("invalid tree item") );
05b2a432 979
837e5743 980 wxChar buf[512]; // the size is arbitrary...
02ce7b72 981
08b7c251
VZ
982 wxTreeViewItem tvItem(item, TVIF_TEXT);
983 tvItem.pszText = buf;
984 tvItem.cchTextMax = WXSIZEOF(buf);
985 if ( !DoGetItem(&tvItem) )
986 {
987 // don't return some garbage which was on stack, but an empty string
223d09f6 988 buf[0] = wxT('\0');
08b7c251 989 }
2bda0e17 990
08b7c251
VZ
991 return wxString(buf);
992}
2bda0e17 993
08b7c251
VZ
994void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
995{
05b2a432
RD
996 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
997
a9c1265f
VZ
998 if ( IS_VIRTUAL_ROOT(item) )
999 return;
1000
08b7c251 1001 wxTreeViewItem tvItem(item, TVIF_TEXT);
c9f78968 1002 tvItem.pszText = (wxChar *)text.wx_str(); // conversion is ok
08b7c251 1003 DoSetItem(&tvItem);
44fbc477
VZ
1004
1005 // when setting the text of the item being edited, the text control should
1006 // be updated to reflect the new text as well, otherwise calling
1007 // SetItemText() in the OnBeginLabelEdit() handler doesn't have any effect
1008 //
1009 // don't use GetEditControl() here because m_textCtrl is not set yet
1010 HWND hwndEdit = TreeView_GetEditControl(GetHwnd());
1011 if ( hwndEdit )
1012 {
1a4088e1 1013 if ( item == m_idEdited )
44fbc477 1014 {
e0a050e3 1015 ::SetWindowText(hwndEdit, text.wx_str());
44fbc477
VZ
1016 }
1017 }
08b7c251 1018}
2bda0e17 1019
4523ebb3
VZ
1020int wxTreeCtrl::GetItemImage(const wxTreeItemId& item,
1021 wxTreeItemIcon which) const
74b31181 1022{
4523ebb3
VZ
1023 wxCHECK_MSG( item.IsOk(), -1, wxT("invalid tree item") );
1024
0228081f 1025 if ( IsHiddenRoot(item) )
74b31181 1026 {
4523ebb3 1027 // no images for hidden root item
74b31181
VZ
1028 return -1;
1029 }
1030
4523ebb3
VZ
1031 wxTreeItemParam *param = GetItemParam(item);
1032
1b182562 1033 return param && param->HasImage(which) ? param->GetImage(which) : -1;
74b31181
VZ
1034}
1035
4523ebb3
VZ
1036void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image,
1037 wxTreeItemIcon which)
74b31181 1038{
4523ebb3
VZ
1039 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1040 wxCHECK_RET( which >= 0 &&
1041 which < wxTreeItemIcon_Max,
1042 wxT("invalid image index"));
1043
1044
0228081f 1045 if ( IsHiddenRoot(item) )
74b31181 1046 {
4523ebb3 1047 // no images for hidden root item
74b31181
VZ
1048 return;
1049 }
1050
4523ebb3
VZ
1051 wxTreeItemParam *data = GetItemParam(item);
1052 if ( !data )
1053 return;
74b31181
VZ
1054
1055 data->SetImage(image, which);
f5bed7a8
VS
1056
1057 RefreshItem(item);
74b31181
VZ
1058}
1059
4523ebb3 1060wxTreeItemParam *wxTreeCtrl::GetItemParam(const wxTreeItemId& item) const
2bda0e17 1061{
05b2a432
RD
1062 wxCHECK_MSG( item.IsOk(), NULL, wxT("invalid tree item") );
1063
08b7c251 1064 wxTreeViewItem tvItem(item, TVIF_PARAM);
a9c1265f 1065
ae322a48
VZ
1066 // hidden root may still have data.
1067 if ( IS_VIRTUAL_ROOT(item) )
1068 {
1069 return GET_VIRTUAL_ROOT()->GetParam();
1070 }
1071
1072 // visible node.
1073 if ( !DoGetItem(&tvItem) )
08b7c251
VZ
1074 {
1075 return NULL;
1076 }
2bda0e17 1077
4523ebb3 1078 return (wxTreeItemParam *)tvItem.lParam;
2bda0e17
KB
1079}
1080
c7d9c476
VZ
1081bool wxTreeCtrl::HandleTreeEvent(wxTreeEvent& event) const
1082{
1083 if ( event.m_item.IsOk() )
1084 {
1085 event.SetClientObject(GetItemData(event.m_item));
1086 }
1087
1088 return HandleWindowEvent(event);
1089}
1090
4523ebb3 1091wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const
2bda0e17 1092{
4523ebb3 1093 wxTreeItemParam *data = GetItemParam(item);
05b2a432 1094
4523ebb3
VZ
1095 return data ? data->GetData() : NULL;
1096}
a9c1265f 1097
4523ebb3
VZ
1098void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data)
1099{
188781db
VZ
1100 // first, associate this piece of data with this item
1101 if ( data )
1102 {
1103 data->SetId(item);
1104 }
1105
4523ebb3 1106 wxTreeItemParam *param = GetItemParam(item);
74b31181 1107
4523ebb3 1108 wxCHECK_RET( param, wxT("failed to change tree items data") );
74b31181 1109
4523ebb3 1110 param->SetData(data);
08b7c251 1111}
2bda0e17 1112
3a5a2f56
VZ
1113void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has)
1114{
05b2a432
RD
1115 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1116
a9c1265f
VZ
1117 if ( IS_VIRTUAL_ROOT(item) )
1118 return;
1119
3a5a2f56
VZ
1120 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
1121 tvItem.cChildren = (int)has;
1122 DoSetItem(&tvItem);
1123}
1124
add28c55
VZ
1125void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold)
1126{
05b2a432
RD
1127 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1128
a9c1265f
VZ
1129 if ( IS_VIRTUAL_ROOT(item) )
1130 return;
1131
add28c55
VZ
1132 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1133 tvItem.state = bold ? TVIS_BOLD : 0;
1134 DoSetItem(&tvItem);
1135}
1136
58a8ab88
JS
1137void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, bool highlight)
1138{
a9c1265f
VZ
1139 if ( IS_VIRTUAL_ROOT(item) )
1140 return;
1141
58a8ab88
JS
1142 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_DROPHILITED);
1143 tvItem.state = highlight ? TVIS_DROPHILITED : 0;
1144 DoSetItem(&tvItem);
1145}
1146
d00407b2
VZ
1147void wxTreeCtrl::RefreshItem(const wxTreeItemId& item)
1148{
a9c1265f
VZ
1149 if ( IS_VIRTUAL_ROOT(item) )
1150 return;
1151
d00407b2
VZ
1152 wxRect rect;
1153 if ( GetBoundingRect(item, rect) )
1154 {
1155 RefreshRect(rect);
1156 }
1157}
1158
2b5f62a0
VZ
1159wxColour wxTreeCtrl::GetItemTextColour(const wxTreeItemId& item) const
1160{
05b2a432 1161 wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") );
2b5f62a0 1162
05b2a432 1163 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
ee4b2721 1164 return it == m_attrs.end() ? wxNullColour : it->second->GetTextColour();
2b5f62a0
VZ
1165}
1166
1167wxColour wxTreeCtrl::GetItemBackgroundColour(const wxTreeItemId& item) const
1168{
05b2a432 1169 wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") );
2b5f62a0 1170
05b2a432 1171 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
ee4b2721 1172 return it == m_attrs.end() ? wxNullColour : it->second->GetBackgroundColour();
2b5f62a0
VZ
1173}
1174
1175wxFont wxTreeCtrl::GetItemFont(const wxTreeItemId& item) const
1176{
05b2a432 1177 wxCHECK_MSG( item.IsOk(), wxNullFont, wxT("invalid tree item") );
2b5f62a0 1178
05b2a432 1179 wxMapTreeAttr::const_iterator it = m_attrs.find(item.m_pItem);
ee4b2721 1180 return it == m_attrs.end() ? wxNullFont : it->second->GetFont();
2b5f62a0
VZ
1181}
1182
696e1ea0
VZ
1183void wxTreeCtrl::SetItemTextColour(const wxTreeItemId& item,
1184 const wxColour& col)
1185{
05b2a432
RD
1186 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1187
ee4b2721 1188 wxTreeItemAttr *attr;
f888d614 1189 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
ee4b2721 1190 if ( it == m_attrs.end() )
696e1ea0 1191 {
ee4b2721
VZ
1192 m_hasAnyAttr = true;
1193
f888d614 1194 m_attrs[item.m_pItem] =
696e1ea0 1195 attr = new wxTreeItemAttr;
ee4b2721
VZ
1196 }
1197 else
1198 {
1199 attr = it->second;
696e1ea0
VZ
1200 }
1201
1202 attr->SetTextColour(col);
d00407b2
VZ
1203
1204 RefreshItem(item);
696e1ea0
VZ
1205}
1206
1207void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item,
1208 const wxColour& col)
1209{
05b2a432
RD
1210 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1211
ee4b2721 1212 wxTreeItemAttr *attr;
f888d614 1213 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
ee4b2721 1214 if ( it == m_attrs.end() )
696e1ea0 1215 {
ee4b2721
VZ
1216 m_hasAnyAttr = true;
1217
f888d614 1218 m_attrs[item.m_pItem] =
696e1ea0 1219 attr = new wxTreeItemAttr;
ee4b2721
VZ
1220 }
1221 else // already in the hash
1222 {
1223 attr = it->second;
696e1ea0
VZ
1224 }
1225
1226 attr->SetBackgroundColour(col);
d00407b2
VZ
1227
1228 RefreshItem(item);
696e1ea0
VZ
1229}
1230
1231void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font)
1232{
05b2a432
RD
1233 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
1234
ee4b2721 1235 wxTreeItemAttr *attr;
f888d614 1236 wxMapTreeAttr::iterator it = m_attrs.find(item.m_pItem);
ee4b2721 1237 if ( it == m_attrs.end() )
696e1ea0 1238 {
ee4b2721
VZ
1239 m_hasAnyAttr = true;
1240
f888d614 1241 m_attrs[item.m_pItem] =
696e1ea0 1242 attr = new wxTreeItemAttr;
ee4b2721
VZ
1243 }
1244 else // already in the hash
1245 {
1246 attr = it->second;
696e1ea0
VZ
1247 }
1248
1249 attr->SetFont(font);
d00407b2 1250
2bd16277
RD
1251 // Reset the item's text to ensure that the bounding rect will be adjusted
1252 // for the new font.
1253 SetItemText(item, GetItemText(item));
72e61024 1254
d00407b2 1255 RefreshItem(item);
696e1ea0
VZ
1256}
1257
08b7c251
VZ
1258// ----------------------------------------------------------------------------
1259// Item status
1260// ----------------------------------------------------------------------------
2bda0e17 1261
08b7c251
VZ
1262bool wxTreeCtrl::IsVisible(const wxTreeItemId& item) const
1263{
bfbb0b4c 1264 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
05b2a432 1265
2b5f62a0
VZ
1266 if ( item == wxTreeItemId(TVI_ROOT) )
1267 {
1268 // virtual (hidden) root is never visible
04cd30de 1269 return false;
2b5f62a0
VZ
1270 }
1271
add28c55 1272 // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect
08b7c251 1273 RECT rect;
955be36c
VZ
1274
1275 // this ugliness comes directly from MSDN - it *is* the correct way to pass
1276 // the HTREEITEM with TVM_GETITEMRECT
ee4b2721 1277 *(HTREEITEM *)&rect = HITEM(item);
955be36c 1278
caea927d
VZ
1279 // true means to get rect for just the text, not the whole line
1280 if ( !::SendMessage(GetHwnd(), TVM_GETITEMRECT, true, (LPARAM)&rect) )
1281 {
1282 // if TVM_GETITEMRECT returned false, then the item is definitely not
1283 // visible (because its parent is not expanded)
1284 return false;
1285 }
1286
1287 // however if it returned true, the item might still be outside the
1288 // currently visible part of the tree, test for it (notice that partly
1289 // visible means visible here)
1290 return rect.bottom > 0 && rect.top < GetClientSize().y;
2bda0e17
KB
1291}
1292
08b7c251 1293bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const
2bda0e17 1294{
bfbb0b4c 1295 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
05b2a432 1296
fa97ee24
VZ
1297 if ( IS_VIRTUAL_ROOT(item) )
1298 {
1299 wxTreeItemIdValue cookie;
1300 return GetFirstChild(item, cookie).IsOk();
1301 }
1302
08b7c251 1303 wxTreeViewItem tvItem(item, TVIF_CHILDREN);
ae322a48 1304 DoGetItem(&tvItem);
2bda0e17 1305
08b7c251 1306 return tvItem.cChildren != 0;
2bda0e17
KB
1307}
1308
08b7c251 1309bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const
2bda0e17 1310{
bfbb0b4c 1311 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
2bda0e17 1312
08b7c251
VZ
1313 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDED);
1314 DoGetItem(&tvItem);
2bda0e17 1315
08b7c251 1316 return (tvItem.state & TVIS_EXPANDED) != 0;
2bda0e17
KB
1317}
1318
08b7c251 1319bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const
2bda0e17 1320{
bfbb0b4c 1321 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
05b2a432 1322
08b7c251
VZ
1323 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_SELECTED);
1324 DoGetItem(&tvItem);
2bda0e17 1325
08b7c251 1326 return (tvItem.state & TVIS_SELECTED) != 0;
2bda0e17
KB
1327}
1328
add28c55
VZ
1329bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const
1330{
bfbb0b4c 1331 wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") );
05b2a432 1332
add28c55
VZ
1333 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD);
1334 DoGetItem(&tvItem);
1335
1336 return (tvItem.state & TVIS_BOLD) != 0;
1337}
1338
08b7c251
VZ
1339// ----------------------------------------------------------------------------
1340// navigation
1341// ----------------------------------------------------------------------------
2bda0e17 1342
08b7c251
VZ
1343wxTreeItemId wxTreeCtrl::GetRootItem() const
1344{
a9c1265f
VZ
1345 // Root may be real (visible) or virtual (hidden).
1346 if ( GET_VIRTUAL_ROOT() )
1347 return TVI_ROOT;
1348
ee4b2721 1349 return wxTreeItemId(TreeView_GetRoot(GetHwnd()));
08b7c251 1350}
2bda0e17 1351
08b7c251
VZ
1352wxTreeItemId wxTreeCtrl::GetSelection() const
1353{
c7d9c476 1354 wxCHECK_MSG( !HasFlag(wxTR_MULTIPLE), wxTreeItemId(),
223d09f6 1355 wxT("this only works with single selection controls") );
9dfbf520 1356
ee4b2721 1357 return wxTreeItemId(TreeView_GetSelection(GetHwnd()));
2bda0e17
KB
1358}
1359
99006e44 1360wxTreeItemId wxTreeCtrl::GetItemParent(const wxTreeItemId& item) const
2bda0e17 1361{
05b2a432
RD
1362 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1363
c9b142c9
VZ
1364 HTREEITEM hItem;
1365
1366 if ( IS_VIRTUAL_ROOT(item) )
1367 {
1368 // no parent for the virtual root
1369 hItem = 0;
1370 }
1371 else // normal item
a9c1265f 1372 {
c9b142c9
VZ
1373 hItem = TreeView_GetParent(GetHwnd(), HITEM(item));
1374 if ( !hItem && HasFlag(wxTR_HIDE_ROOT) )
1375 {
1376 // the top level items should have the virtual root as their parent
1377 hItem = TVI_ROOT;
1378 }
a9c1265f
VZ
1379 }
1380
ee4b2721 1381 return wxTreeItemId(hItem);
08b7c251 1382}
2bda0e17 1383
08b7c251 1384wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item,
ee4b2721 1385 wxTreeItemIdValue& cookie) const
08b7c251 1386{
05b2a432
RD
1387 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1388
08b7c251 1389 // remember the last child returned in 'cookie'
ee4b2721
VZ
1390 cookie = TreeView_GetChild(GetHwnd(), HITEM(item));
1391
1392 return wxTreeItemId(cookie);
1393}
1394
1395wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item),
1396 wxTreeItemIdValue& cookie) const
1397{
44d60c0b
WS
1398 wxTreeItemId fromCookie(cookie);
1399
1400 HTREEITEM hitem = HITEM(fromCookie);
1401
1402 hitem = TreeView_GetNextSibling(GetHwnd(), hitem);
1403
1404 wxTreeItemId item(hitem);
1405
ee4b2721
VZ
1406 cookie = item.m_pItem;
1407
1408 return item;
1409}
2bda0e17 1410
978f38c2
VZ
1411wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const
1412{
05b2a432
RD
1413 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1414
978f38c2 1415 // can this be done more efficiently?
ee4b2721 1416 wxTreeItemIdValue cookie;
978f38c2
VZ
1417
1418 wxTreeItemId childLast,
2165ad93 1419 child = GetFirstChild(item, cookie);
978f38c2
VZ
1420 while ( child.IsOk() )
1421 {
1422 childLast = child;
2165ad93 1423 child = GetNextChild(item, cookie);
978f38c2
VZ
1424 }
1425
1426 return childLast;
1427}
1428
08b7c251
VZ
1429wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const
1430{
05b2a432 1431 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
ee4b2721 1432 return wxTreeItemId(TreeView_GetNextSibling(GetHwnd(), HITEM(item)));
2bda0e17
KB
1433}
1434
08b7c251 1435wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const
2bda0e17 1436{
05b2a432 1437 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
ee4b2721 1438 return wxTreeItemId(TreeView_GetPrevSibling(GetHwnd(), HITEM(item)));
2bda0e17
KB
1439}
1440
08b7c251 1441wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const
2bda0e17 1442{
ee4b2721 1443 return wxTreeItemId(TreeView_GetFirstVisible(GetHwnd()));
2bda0e17
KB
1444}
1445
08b7c251 1446wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const
2bda0e17 1447{
05b2a432 1448 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
f6bcfd97 1449 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetNextVisible() for must be visible itself!"));
02ce7b72 1450
f73eddd2
VZ
1451 wxTreeItemId next(TreeView_GetNextVisible(GetHwnd(), HITEM(item)));
1452 if ( next.IsOk() && !IsVisible(next) )
1453 {
1454 // Win32 considers that any non-collapsed item is visible while we want
1455 // to return only really visible items
1456 next.Unset();
1457 }
1458
1459 return next;
08b7c251 1460}
02ce7b72 1461
08b7c251
VZ
1462wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const
1463{
05b2a432 1464 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
f6bcfd97 1465 wxASSERT_MSG( IsVisible(item), wxT("The item you call GetPrevVisible() for must be visible itself!"));
02ce7b72 1466
f73eddd2
VZ
1467 wxTreeItemId prev(TreeView_GetPrevVisible(GetHwnd(), HITEM(item)));
1468 if ( prev.IsOk() && !IsVisible(prev) )
1469 {
1470 // just as above, Win32 function will happily return the previous item
1471 // in the tree for the first visible item too
1472 prev.Unset();
1473 }
1474
1475 return prev;
08b7c251 1476}
02ce7b72 1477
9dfbf520
VZ
1478// ----------------------------------------------------------------------------
1479// multiple selections emulation
1480// ----------------------------------------------------------------------------
1481
33961d59
RR
1482size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds& selections) const
1483{
1484 TraverseSelections selector(this, selections);
9dfbf520 1485
e47c4d48 1486 return selector.GetCount();
9dfbf520
VZ
1487}
1488
08b7c251
VZ
1489// ----------------------------------------------------------------------------
1490// Usual operations
1491// ----------------------------------------------------------------------------
02ce7b72 1492
8cee4a30
VZ
1493wxTreeItemId wxTreeCtrl::DoInsertAfter(const wxTreeItemId& parent,
1494 const wxTreeItemId& hInsertAfter,
1495 const wxString& text,
1496 int image, int selectedImage,
1497 wxTreeItemData *data)
08b7c251 1498{
0e935169
VZ
1499 wxCHECK_MSG( parent.IsOk() || !TreeView_GetRoot(GetHwnd()),
1500 wxTreeItemId(),
1501 _T("can't have more than one root in the tree") );
1502
08b7c251 1503 TV_INSERTSTRUCT tvIns;
3f7bc32b
VZ
1504 tvIns.hParent = HITEM(parent);
1505 tvIns.hInsertAfter = HITEM(hInsertAfter);
58a8ab88 1506
74b31181
VZ
1507 // this is how we insert the item as the first child: supply a NULL
1508 // hInsertAfter
1509 if ( !tvIns.hInsertAfter )
58a8ab88
JS
1510 {
1511 tvIns.hInsertAfter = TVI_FIRST;
1512 }
1513
08b7c251 1514 UINT mask = 0;
44d60c0b 1515 if ( !text.empty() )
08b7c251
VZ
1516 {
1517 mask |= TVIF_TEXT;
c9f78968 1518 tvIns.item.pszText = (wxChar *)text.wx_str(); // cast is ok
08b7c251 1519 }
f6bcfd97
BP
1520 else
1521 {
1522 tvIns.item.pszText = NULL;
1523 tvIns.item.cchTextMax = 0;
1524 }
02ce7b72 1525
1b182562
VZ
1526 // create the param which will store the other item parameters
1527 wxTreeItemParam *param = new wxTreeItemParam;
1528
1529 // we return the images on demand as they depend on whether the item is
1530 // expanded or collapsed too in our case
4523ebb3
VZ
1531 mask |= TVIF_IMAGE | TVIF_SELECTEDIMAGE;
1532 tvIns.item.iImage = I_IMAGECALLBACK;
1533 tvIns.item.iSelectedImage = I_IMAGECALLBACK;
3a5a2f56 1534
4523ebb3 1535 param->SetImage(image, wxTreeItemIcon_Normal);
1b182562 1536 param->SetImage(selectedImage, wxTreeItemIcon_Selected);
02ce7b72 1537
4523ebb3
VZ
1538 mask |= TVIF_PARAM;
1539 tvIns.item.lParam = (LPARAM)param;
08b7c251 1540 tvIns.item.mask = mask;
02ce7b72 1541
4a36036e
VZ
1542 // don't use the hack below for the children of hidden root: this results
1543 // in a crash inside comctl32.dll when we call TreeView_GetItemRect()
1544 const bool firstChild = !IsHiddenRoot(parent) &&
1545 !TreeView_GetChild(GetHwnd(), HITEM(parent));
7e45c159 1546
1b182562 1547 HTREEITEM id = TreeView_InsertItem(GetHwnd(), &tvIns);
08b7c251
VZ
1548 if ( id == 0 )
1549 {
f6bcfd97 1550 wxLogLastError(wxT("TreeView_InsertItem"));
08b7c251 1551 }
02ce7b72 1552
7e45c159
VZ
1553 // apparently some Windows versions (2000 and XP are reported to do this)
1554 // sometimes don't refresh the tree after adding the first child and so we
1555 // need this to make the "[+]" appear
1556 if ( firstChild )
1557 {
1558 RECT rect;
1559 TreeView_GetItemRect(GetHwnd(), HITEM(parent), &rect, FALSE);
1560 ::InvalidateRect(GetHwnd(), &rect, FALSE);
1561 }
1562
4523ebb3
VZ
1563 // associate the application tree item with Win32 tree item handle
1564 param->SetItem(id);
1565
1566 // setup wxTreeItemData
fd3f686c
VZ
1567 if ( data != NULL )
1568 {
4523ebb3 1569 param->SetData(data);
ee4b2721 1570 data->SetId(id);
fd3f686c
VZ
1571 }
1572
ee4b2721 1573 return wxTreeItemId(id);
2bda0e17
KB
1574}
1575
08b7c251
VZ
1576wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text,
1577 int image, int selectedImage,
1578 wxTreeItemData *data)
2bda0e17 1579{
0228081f 1580 if ( HasFlag(wxTR_HIDE_ROOT) )
a9c1265f 1581 {
2a69b4e8
VZ
1582 wxASSERT_MSG( !m_pVirtualRoot, _T("tree can have only a single root") );
1583
a9c1265f 1584 // create a virtual root item, the parent for all the others
4523ebb3
VZ
1585 wxTreeItemParam *param = new wxTreeItemParam;
1586 param->SetData(data);
1587
1588 m_pVirtualRoot = new wxVirtualNode(param);
a9c1265f
VZ
1589
1590 return TVI_ROOT;
1591 }
1592
8cee4a30
VZ
1593 return DoInsertAfter(wxTreeItemId(), wxTreeItemId(),
1594 text, image, selectedImage, data);
2bda0e17
KB
1595}
1596
8cee4a30
VZ
1597wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parent,
1598 size_t index,
1599 const wxString& text,
1600 int image, int selectedImage,
1601 wxTreeItemData *data)
2ef31e80 1602{
8cee4a30
VZ
1603 wxTreeItemId idPrev;
1604 if ( index == (size_t)-1 )
2ef31e80 1605 {
8cee4a30
VZ
1606 // special value: append to the end
1607 idPrev = TVI_LAST;
2ef31e80 1608 }
8cee4a30
VZ
1609 else // find the item from index
1610 {
1611 wxTreeItemIdValue cookie;
1612 wxTreeItemId idCur = GetFirstChild(parent, cookie);
1613 while ( index != 0 && idCur.IsOk() )
1614 {
1615 index--;
2ef31e80 1616
8cee4a30
VZ
1617 idPrev = idCur;
1618 idCur = GetNextChild(parent, cookie);
1619 }
2ef31e80 1620
8cee4a30
VZ
1621 // assert, not check: if the index is invalid, we will append the item
1622 // to the end
1623 wxASSERT_MSG( index == 0, _T("bad index in wxTreeCtrl::InsertItem") );
1624 }
2ef31e80 1625
8cee4a30 1626 return DoInsertAfter(parent, idPrev, text, image, selectedImage, data);
2bda0e17
KB
1627}
1628
08b7c251 1629void wxTreeCtrl::Delete(const wxTreeItemId& item)
2bda0e17 1630{
396f85ba
BW
1631 // unlock tree selections on vista, without this the
1632 // tree ctrl will eventually crash after item deletion
1633 TreeItemUnlocker unlock_all;
1634
c7d9c476
VZ
1635 if ( HasFlag(wxTR_MULTIPLE) )
1636 {
1637 bool selected = IsSelected(item);
1638 wxTreeItemId next;
1639
1640 if ( selected )
1641 {
1642 next = TreeView_GetNextVisible(GetHwnd(), HITEM(item));
1643
1644 if ( !next.IsOk() )
1645 {
1646 next = TreeView_GetPrevVisible(GetHwnd(), HITEM(item));
1647 }
1648 }
1649
c7d9c476 1650 {
7dac12ef
VZ
1651 TempSetter set(m_changingSelection);
1652 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item)) )
1653 {
1654 wxLogLastError(wxT("TreeView_DeleteItem"));
1655 return;
1656 }
c7d9c476
VZ
1657 }
1658
1659 if ( !selected )
1660 {
1661 return;
1662 }
1663
1664 if ( next.IsOk() )
1665 {
1666 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, next);
1667
1668 if ( IsTreeEventAllowed(changingEvent) )
1669 {
1670 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this, next);
1671 (void)HandleTreeEvent(changedEvent);
1672 }
1673 else
1674 {
7dac12ef
VZ
1675 DoUnselectItem(next);
1676 ClearFocusedItem();
c7d9c476
VZ
1677 }
1678 }
1679 }
1680 else
bbcdf8bc 1681 {
c7d9c476
VZ
1682 if ( !TreeView_DeleteItem(GetHwnd(), HITEM(item)) )
1683 {
1684 wxLogLastError(wxT("TreeView_DeleteItem"));
1685 }
bbcdf8bc 1686 }
bbcdf8bc
JS
1687}
1688
23fd5130
VZ
1689// delete all children (but don't delete the item itself)
1690void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item)
1691{
396f85ba
BW
1692 // unlock tree selections on vista for the duration of this call
1693 TreeItemUnlocker unlock_all;
1694
ee4b2721 1695 wxTreeItemIdValue cookie;
23fd5130 1696
ee4b2721 1697 wxArrayTreeItemIds children;
23fd5130
VZ
1698 wxTreeItemId child = GetFirstChild(item, cookie);
1699 while ( child.IsOk() )
1700 {
ee4b2721 1701 children.Add(child);
23fd5130
VZ
1702
1703 child = GetNextChild(item, cookie);
1704 }
1705
1706 size_t nCount = children.Count();
1707 for ( size_t n = 0; n < nCount; n++ )
1708 {
c7d9c476 1709 Delete(children[n]);
23fd5130
VZ
1710 }
1711}
1712
08b7c251 1713void wxTreeCtrl::DeleteAllItems()
bbcdf8bc 1714{
396f85ba
BW
1715 // unlock tree selections on vista for the duration of this call
1716 TreeItemUnlocker unlock_all;
1717
bfedf621
VZ
1718 // delete the "virtual" root item.
1719 if ( GET_VIRTUAL_ROOT() )
1720 {
1721 delete GET_VIRTUAL_ROOT();
1722 m_pVirtualRoot = NULL;
1723 }
1724
1725 // and all the real items
a9c1265f 1726
d220ae32 1727 if ( !TreeView_DeleteAllItems(GetHwnd()) )
bbcdf8bc 1728 {
f6bcfd97 1729 wxLogLastError(wxT("TreeView_DeleteAllItems"));
bbcdf8bc 1730 }
2bda0e17
KB
1731}
1732
08b7c251 1733void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag)
2bda0e17 1734{
dd3646fd
VZ
1735 wxASSERT_MSG( flag == TVE_COLLAPSE ||
1736 flag == (TVE_COLLAPSE | TVE_COLLAPSERESET) ||
1737 flag == TVE_EXPAND ||
1738 flag == TVE_TOGGLE,
223d09f6 1739 wxT("Unknown flag in wxTreeCtrl::DoExpand") );
08b7c251 1740
a9c1265f 1741 // A hidden root can be neither expanded nor collapsed.
0228081f 1742 wxCHECK_RET( !IsHiddenRoot(item),
637b7e4f 1743 wxT("Can't expand/collapse hidden root node!") );
a9c1265f 1744
08b7c251 1745 // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must
d220ae32
VZ
1746 // emulate them. This behaviour has changed slightly with comctl32.dll
1747 // v 4.70 - now it does send them but only the first time. To maintain
1748 // compatible behaviour and also in order to not have surprises with the
1749 // future versions, don't rely on this and still do everything ourselves.
1750 // To avoid that the messages be sent twice when the item is expanded for
1751 // the first time we must clear TVIS_EXPANDEDONCE style manually.
1752
1753 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDEDONCE);
1754 tvItem.state = 0;
1755 DoSetItem(&tvItem);
1756
c7d9c476
VZ
1757 if ( IsExpanded(item) )
1758 {
1759 wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING,
1760 this, wxTreeItemId(item));
1761
1762 if ( !IsTreeEventAllowed(event) )
1763 return;
1764 }
1765
1766 if ( TreeView_Expand(GetHwnd(), HITEM(item), flag) )
08b7c251 1767 {
c7d9c476
VZ
1768 if ( IsExpanded(item) )
1769 return;
1770
1771 wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_COLLAPSED, this, item);
1772 (void)HandleTreeEvent(event);
08b7c251 1773 }
d220ae32 1774 //else: change didn't took place, so do nothing at all
2bda0e17
KB
1775}
1776
08b7c251 1777void wxTreeCtrl::Expand(const wxTreeItemId& item)
2bda0e17 1778{
08b7c251 1779 DoExpand(item, TVE_EXPAND);
2bda0e17 1780}
2bda0e17 1781
08b7c251 1782void wxTreeCtrl::Collapse(const wxTreeItemId& item)
2bda0e17 1783{
08b7c251 1784 DoExpand(item, TVE_COLLAPSE);
2bda0e17
KB
1785}
1786
08b7c251 1787void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item)
2bda0e17 1788{
dd3646fd 1789 DoExpand(item, TVE_COLLAPSE | TVE_COLLAPSERESET);
2bda0e17
KB
1790}
1791
08b7c251 1792void wxTreeCtrl::Toggle(const wxTreeItemId& item)
2bda0e17 1793{
08b7c251 1794 DoExpand(item, TVE_TOGGLE);
2bda0e17
KB
1795}
1796
08b7c251 1797void wxTreeCtrl::Unselect()
2bda0e17 1798{
c7d9c476 1799 wxASSERT_MSG( !HasFlag(wxTR_MULTIPLE),
3f7bc32b 1800 wxT("doesn't make sense, may be you want UnselectAll()?") );
9dfbf520 1801
c7d9c476
VZ
1802 // the current focus
1803 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
1804
1805 if ( !htFocus )
1806 {
1807 return;
1808 }
1809
1810 if ( HasFlag(wxTR_MULTIPLE) )
1811 {
1812 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
1813 this, wxTreeItemId());
1814 changingEvent.m_itemOld = htFocus;
1815
1816 if ( IsTreeEventAllowed(changingEvent) )
1817 {
7dac12ef 1818 ClearFocusedItem();
c7d9c476
VZ
1819
1820 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
1821 this, wxTreeItemId());
1822 changedEvent.m_itemOld = htFocus;
1823 (void)HandleTreeEvent(changedEvent);
1824 }
1825 }
1826 else
1827 {
7dac12ef 1828 ClearFocusedItem();
c7d9c476
VZ
1829 }
1830}
1831
1832void wxTreeCtrl::DoUnselectAll()
1833{
1834 wxArrayTreeItemIds selections;
1835 size_t count = GetSelections(selections);
1836
1837 for ( size_t n = 0; n < count; n++ )
1838 {
7dac12ef 1839 DoUnselectItem(selections[n]);
c7d9c476
VZ
1840 }
1841
1842 m_htSelStart.Unset();
08b7c251 1843}
02ce7b72 1844
9dfbf520 1845void wxTreeCtrl::UnselectAll()
08b7c251 1846{
c7d9c476 1847 if ( HasFlag(wxTR_MULTIPLE) )
2bda0e17 1848 {
c7d9c476
VZ
1849 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
1850 if ( !htFocus ) return;
1851
1852 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this);
1853 changingEvent.m_itemOld = htFocus;
1854
1855 if ( IsTreeEventAllowed(changingEvent) )
d220ae32 1856 {
c7d9c476 1857 DoUnselectAll();
ba8a1961 1858
c7d9c476
VZ
1859 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this);
1860 changedEvent.m_itemOld = htFocus;
1861 (void)HandleTreeEvent(changedEvent);
1862 }
9dfbf520 1863 }
75afdc2d 1864 else
9dfbf520 1865 {
9dfbf520
VZ
1866 Unselect();
1867 }
1868}
1869
7dac12ef
VZ
1870void wxTreeCtrl::DoSelectItem(const wxTreeItemId& item, bool select)
1871{
1872 TempSetter set(m_changingSelection);
1873
1874 ::SelectItem(GetHwnd(), HITEM(item), select);
1875}
1876
3e9af289 1877void wxTreeCtrl::SelectItem(const wxTreeItemId& item, bool select)
9dfbf520 1878{
8a536fa3
VZ
1879 wxCHECK_RET( !IsHiddenRoot(item), _T("can't select hidden root item") );
1880
c7d9c476
VZ
1881 if ( IsSelected(item) == select )
1882 {
1883 return;
1884 }
9dfbf520 1885
c7d9c476 1886 if ( HasFlag(wxTR_MULTIPLE) )
cc87a04c 1887 {
c7d9c476
VZ
1888 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, item);
1889
1890 if ( IsTreeEventAllowed(changingEvent) )
d220ae32 1891 {
c7d9c476 1892 HTREEITEM htFocus = (HTREEITEM)TreeView_GetSelection(GetHwnd());
7dac12ef 1893 DoSelectItem(item, select);
c7d9c476
VZ
1894
1895 if ( !htFocus )
7549148b 1896 {
7dac12ef 1897 SetFocusedItem(item);
7549148b 1898 }
c7d9c476
VZ
1899
1900 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
1901 this, item);
1902 (void)HandleTreeEvent(changedEvent);
cc87a04c 1903 }
c7d9c476
VZ
1904 }
1905 else
1906 {
1907 wxASSERT_MSG( select,
1908 _T("SelectItem(false) works only for multiselect") );
1909
1910 // in spite of the docs (MSDN Jan 99 edition), we don't seem to receive
1911 // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so
1912 // send them ourselves
1913
1914 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, item);
1915
1916 if ( IsTreeEventAllowed(changingEvent) )
cc87a04c 1917 {
7549148b
VZ
1918 if ( !TreeView_SelectItem(GetHwnd(), HITEM(item)) )
1919 {
1920 wxLogLastError(wxT("TreeView_SelectItem"));
7549148b 1921 }
c7d9c476
VZ
1922 else // ok
1923 {
7dac12ef 1924 SetFocusedItem(item);
7549148b 1925
c7d9c476
VZ
1926 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
1927 this, item);
1928 (void)HandleTreeEvent(changedEvent);
1929 }
1930 }
1931 //else: program vetoed the change
2bda0e17 1932 }
08b7c251 1933}
2bda0e17 1934
08b7c251
VZ
1935void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item)
1936{
0228081f
VZ
1937 wxCHECK_RET( !IsHiddenRoot(item), _T("can't show hidden root item") );
1938
08b7c251 1939 // no error return
3f7bc32b 1940 TreeView_EnsureVisible(GetHwnd(), HITEM(item));
08b7c251
VZ
1941}
1942
1943void wxTreeCtrl::ScrollTo(const wxTreeItemId& item)
1944{
3f7bc32b 1945 if ( !TreeView_SelectSetFirstVisible(GetHwnd(), HITEM(item)) )
2bda0e17 1946 {
f6bcfd97 1947 wxLogLastError(wxT("TreeView_SelectSetFirstVisible"));
2bda0e17 1948 }
08b7c251
VZ
1949}
1950
44fbc477 1951wxTextCtrl *wxTreeCtrl::GetEditControl() const
08b7c251
VZ
1952{
1953 return m_textCtrl;
1954}
1955
1956void wxTreeCtrl::DeleteTextCtrl()
1957{
1958 if ( m_textCtrl )
2bda0e17 1959 {
b6a3d6ad
VZ
1960 // the HWND corresponding to this control is deleted by the tree
1961 // control itself and we don't know when exactly this happens, so check
1962 // if the window still exists before calling UnsubclassWin()
1963 if ( !::IsWindow(GetHwndOf(m_textCtrl)) )
1964 {
1965 m_textCtrl->SetHWND(0);
1966 }
1967
08b7c251
VZ
1968 m_textCtrl->UnsubclassWin();
1969 m_textCtrl->SetHWND(0);
1970 delete m_textCtrl;
1971 m_textCtrl = NULL;
1a4088e1
VZ
1972
1973 m_idEdited.Unset();
2bda0e17 1974 }
08b7c251 1975}
2bda0e17 1976
4523ebb3
VZ
1977wxTextCtrl *wxTreeCtrl::EditLabel(const wxTreeItemId& item,
1978 wxClassInfo *textControlClass)
08b7c251
VZ
1979{
1980 wxASSERT( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)) );
1981
b94ae1ea
VZ
1982 DeleteTextCtrl();
1983
1a4088e1 1984 m_idEdited = item;
cd6bd270 1985 m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject();
3f7bc32b 1986 HWND hWnd = (HWND) TreeView_EditLabel(GetHwnd(), HITEM(item));
2bda0e17 1987
5ea47806 1988 // this is not an error - the TVN_BEGINLABELEDIT handler might have
04cd30de 1989 // returned false
5ea47806
VZ
1990 if ( !hWnd )
1991 {
cd6bd270
MB
1992 delete m_textCtrl;
1993 m_textCtrl = NULL;
5ea47806
VZ
1994 return NULL;
1995 }
2bda0e17 1996
cd6bd270 1997 // textctrl is subclassed in MSWOnNotify
08b7c251 1998 return m_textCtrl;
2bda0e17
KB
1999}
2000
08b7c251 2001// End label editing, optionally cancelling the edit
d35dce3a 2002void wxTreeCtrl::DoEndEditLabel(bool discardChanges)
2bda0e17 2003{
d220ae32 2004 TreeView_EndEditLabelNow(GetHwnd(), discardChanges);
08b7c251
VZ
2005
2006 DeleteTextCtrl();
2bda0e17
KB
2007}
2008
be0e5d69 2009wxTreeItemId wxTreeCtrl::DoTreeHitTest(const wxPoint& point, int& flags) const
2bda0e17 2010{
08b7c251
VZ
2011 TV_HITTESTINFO hitTestInfo;
2012 hitTestInfo.pt.x = (int)point.x;
2013 hitTestInfo.pt.y = (int)point.y;
2bda0e17 2014
8ecd5de2 2015 (void) TreeView_HitTest(GetHwnd(), &hitTestInfo);
2bda0e17 2016
08b7c251
VZ
2017 flags = 0;
2018
2019 // avoid repetition
2020 #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \
2021 flags |= wxTREE_HITTEST_##flag
2022
2023 TRANSLATE_FLAG(ABOVE);
2024 TRANSLATE_FLAG(BELOW);
2025 TRANSLATE_FLAG(NOWHERE);
2026 TRANSLATE_FLAG(ONITEMBUTTON);
2027 TRANSLATE_FLAG(ONITEMICON);
2028 TRANSLATE_FLAG(ONITEMINDENT);
2029 TRANSLATE_FLAG(ONITEMLABEL);
2030 TRANSLATE_FLAG(ONITEMRIGHT);
2031 TRANSLATE_FLAG(ONITEMSTATEICON);
2032 TRANSLATE_FLAG(TOLEFT);
2033 TRANSLATE_FLAG(TORIGHT);
2bda0e17 2034
08b7c251
VZ
2035 #undef TRANSLATE_FLAG
2036
ee4b2721 2037 return wxTreeItemId(hitTestInfo.hItem);
08b7c251
VZ
2038}
2039
f7c832a7
VZ
2040bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
2041 wxRect& rect,
2042 bool textOnly) const
2043{
2044 RECT rc;
f2c3db9d
RD
2045
2046 // Virtual root items have no bounding rectangle
2047 if ( IS_VIRTUAL_ROOT(item) )
2048 {
2049 return false;
2050 }
2051
3f7bc32b 2052 if ( TreeView_GetItemRect(GetHwnd(), HITEM(item),
f7c832a7
VZ
2053 &rc, textOnly) )
2054 {
2055 rect = wxRect(wxPoint(rc.left, rc.top), wxPoint(rc.right, rc.bottom));
2056
04cd30de 2057 return true;
f7c832a7
VZ
2058 }
2059 else
2060 {
2061 // couldn't retrieve rect: for example, item isn't visible
04cd30de 2062 return false;
f7c832a7
VZ
2063 }
2064}
2065
7dac12ef
VZ
2066void wxTreeCtrl::ClearFocusedItem()
2067{
2068 TempSetter set(m_changingSelection);
2069
2070 if ( !TreeView_SelectItem(GetHwnd(), 0) )
2071 {
2072 wxLogLastError(wxT("TreeView_SelectItem"));
2073 }
2074}
2075
2076void wxTreeCtrl::SetFocusedItem(const wxTreeItemId& item)
2077{
2078 TempSetter set(m_changingSelection);
2079
2080 ::SetFocus(GetHwnd(), HITEM(item));
2081}
2082
2083void wxTreeCtrl::DoUnselectItem(const wxTreeItemId& item)
2084{
2085 TempSetter set(m_changingSelection);
2086
2087 ::UnselectItem(GetHwnd(), HITEM(item));
2088}
2089
2090void wxTreeCtrl::DoToggleItemSelection(const wxTreeItemId& item)
2091{
2092 TempSetter set(m_changingSelection);
2093
2094 ::ToggleItemSelection(GetHwnd(), HITEM(item));
2095}
2096
23fd5130
VZ
2097// ----------------------------------------------------------------------------
2098// sorting stuff
2099// ----------------------------------------------------------------------------
f7c832a7 2100
502a2b18
VZ
2101// this is just a tiny namespace which is friend to wxTreeCtrl and so can use
2102// functions such as IsDataIndirect()
2103class wxTreeSortHelper
2104{
2105public:
2106 static int CALLBACK Compare(LPARAM data1, LPARAM data2, LPARAM tree);
2107
2108private:
4523ebb3 2109 static wxTreeItemId GetIdFromData(LPARAM lParam)
502a2b18 2110 {
4523ebb3 2111 return ((wxTreeItemParam*)lParam)->GetItem();
502a2b18 2112 }
502a2b18
VZ
2113};
2114
2115int CALLBACK wxTreeSortHelper::Compare(LPARAM pItem1,
2116 LPARAM pItem2,
2117 LPARAM htree)
23fd5130 2118{
096c9f9b 2119 wxCHECK_MSG( pItem1 && pItem2, 0,
223d09f6 2120 wxT("sorting tree without data doesn't make sense") );
096c9f9b 2121
502a2b18
VZ
2122 wxTreeCtrl *tree = (wxTreeCtrl *)htree;
2123
4523ebb3
VZ
2124 return tree->OnCompareItems(GetIdFromData(pItem1),
2125 GetIdFromData(pItem2));
23fd5130
VZ
2126}
2127
95aabccc
VZ
2128void wxTreeCtrl::SortChildren(const wxTreeItemId& item)
2129{
05b2a432
RD
2130 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
2131
95aabccc 2132 // rely on the fact that TreeView_SortChildren does the same thing as our
23fd5130
VZ
2133 // default behaviour, i.e. sorts items alphabetically and so call it
2134 // directly if we're not in derived class (much more efficient!)
4523ebb3
VZ
2135 // RN: Note that if you find you're code doesn't sort as expected this
2136 // may be why as if you don't use the DECLARE_CLASS/IMPLEMENT_CLASS
2137 // combo for your derived wxTreeCtrl if will sort without
2138 // OnCompareItems
23fd5130 2139 if ( GetClassInfo() == CLASSINFO(wxTreeCtrl) )
2bda0e17 2140 {
3f7bc32b 2141 TreeView_SortChildren(GetHwnd(), HITEM(item), 0);
2bda0e17 2142 }
08b7c251 2143 else
2bda0e17 2144 {
62448488 2145 TV_SORTCB tvSort;
3f7bc32b 2146 tvSort.hParent = HITEM(item);
502a2b18 2147 tvSort.lpfnCompare = wxTreeSortHelper::Compare;
23fd5130 2148 tvSort.lParam = (LPARAM)this;
d220ae32 2149 TreeView_SortChildrenCB(GetHwnd(), &tvSort, 0 /* reserved */);
2bda0e17 2150 }
08b7c251 2151}
2bda0e17 2152
08b7c251
VZ
2153// ----------------------------------------------------------------------------
2154// implementation
2155// ----------------------------------------------------------------------------
2bda0e17 2156
90c6edd7
VZ
2157bool wxTreeCtrl::MSWShouldPreProcessMessage(WXMSG* msg)
2158{
2159 if ( msg->message == WM_KEYDOWN )
2160 {
6719c06a
VZ
2161 // Only eat VK_RETURN if not being used by the application in
2162 // conjunction with modifiers
2163 if ( (msg->wParam == VK_RETURN) && !wxIsAnyModifierDown() )
90c6edd7
VZ
2164 {
2165 // we need VK_RETURN to generate wxEVT_COMMAND_TREE_ITEM_ACTIVATED
2166 return false;
2167 }
2168 }
2169
2170 return wxTreeCtrlBase::MSWShouldPreProcessMessage(msg);
2171}
2172
0edeeb6d 2173bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id_)
08b7c251 2174{
0edeeb6d
VZ
2175 const int id = (signed short)id_;
2176
08b7c251 2177 if ( cmd == EN_UPDATE )
2bda0e17 2178 {
08b7c251
VZ
2179 wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id);
2180 event.SetEventObject( this );
2181 ProcessCommand(event);
2bda0e17 2182 }
08b7c251 2183 else if ( cmd == EN_KILLFOCUS )
2bda0e17 2184 {
08b7c251
VZ
2185 wxCommandEvent event(wxEVT_KILL_FOCUS, id);
2186 event.SetEventObject( this );
2187 ProcessCommand(event);
2bda0e17 2188 }
08b7c251 2189 else
2bda0e17 2190 {
08b7c251 2191 // nothing done
04cd30de 2192 return false;
2bda0e17 2193 }
08b7c251
VZ
2194
2195 // command processed
04cd30de 2196 return true;
08b7c251
VZ
2197}
2198
25f701e6 2199bool wxTreeCtrl::MSWHandleSelectionKey(unsigned vkey)
c7d9c476
VZ
2200{
2201 const bool bCtrl = wxIsCtrlDown();
2202 const bool bShift = wxIsShiftDown();
2203 const HTREEITEM htSel = (HTREEITEM)TreeView_GetSelection(GetHwnd());
2204
2205 switch ( vkey )
2206 {
2207 case VK_RETURN:
2208 case VK_SPACE:
2209 if ( !htSel )
2210 break;
2211
2212 if ( vkey != VK_RETURN && bCtrl )
2213 {
2214 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2215 this, htSel);
2216 changingEvent.m_itemOld = htSel;
2217
2218 if ( IsTreeEventAllowed(changingEvent) )
2219 {
7dac12ef 2220 DoToggleItemSelection(wxTreeItemId(htSel));
c7d9c476
VZ
2221
2222 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2223 this, htSel);
2224 changedEvent.m_itemOld = htSel;
2225 (void)HandleTreeEvent(changedEvent);
2226 }
2227 }
2228 else
2229 {
2230 wxArrayTreeItemIds selections;
2231 size_t count = GetSelections(selections);
2232
2233 if ( count != 1 || HITEM(selections[0]) != htSel )
2234 {
2235 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2236 this, htSel);
2237 changingEvent.m_itemOld = htSel;
2238
2239 if ( IsTreeEventAllowed(changingEvent) )
2240 {
2241 DoUnselectAll();
7dac12ef 2242 DoSelectItem(wxTreeItemId(htSel));
c7d9c476
VZ
2243
2244 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2245 this, htSel);
2246 changedEvent.m_itemOld = htSel;
2247 (void)HandleTreeEvent(changedEvent);
2248 }
2249 }
2250 }
2251 break;
2252
2253 case VK_UP:
2254 case VK_DOWN:
2255 if ( !bCtrl && !bShift )
2256 {
2257 wxArrayTreeItemIds selections;
c7d9c476
VZ
2258 wxTreeItemId next;
2259
7dac12ef 2260 if ( htSel )
c7d9c476
VZ
2261 {
2262 next = vkey == VK_UP
2263 ? TreeView_GetPrevVisible(GetHwnd(), htSel)
2264 : TreeView_GetNextVisible(GetHwnd(), htSel);
2265 }
2266 else
2267 {
2268 next = GetRootItem();
2269
2270 if ( IsHiddenRoot(next) )
2271 next = TreeView_GetChild(GetHwnd(), HITEM(next));
c7d9c476
VZ
2272 }
2273
2274 if ( !next.IsOk() )
2275 {
2276 break;
2277 }
2278
2279 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2280 this, next);
2281 changingEvent.m_itemOld = htSel;
2282
2283 if ( IsTreeEventAllowed(changingEvent) )
2284 {
2285 DoUnselectAll();
7dac12ef
VZ
2286 DoSelectItem(next);
2287 SetFocusedItem(next);
c7d9c476
VZ
2288
2289 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2290 this, next);
2291 changedEvent.m_itemOld = htSel;
2292 (void)HandleTreeEvent(changedEvent);
2293 }
2294 }
2295 else if ( htSel )
2296 {
2297 wxTreeItemId next = vkey == VK_UP
2298 ? TreeView_GetPrevVisible(GetHwnd(), htSel)
2299 : TreeView_GetNextVisible(GetHwnd(), htSel);
2300
2301 if ( !next.IsOk() )
2302 {
2303 break;
2304 }
2305
2306 if ( !m_htSelStart )
2307 {
2308 m_htSelStart = htSel;
2309 }
2310
2311 if ( bShift && SelectRange(GetHwnd(), HITEM(m_htSelStart), HITEM(next),
2312 SR_UNSELECT_OTHERS | SR_SIMULATE) )
2313 {
2314 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, next);
2315 changingEvent.m_itemOld = htSel;
2316
2317 if ( IsTreeEventAllowed(changingEvent) )
2318 {
2319 SelectRange(GetHwnd(), HITEM(m_htSelStart), HITEM(next),
2320 SR_UNSELECT_OTHERS);
2321
2322 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this, next);
2323 changedEvent.m_itemOld = htSel;
2324 (void)HandleTreeEvent(changedEvent);
2325 }
2326 }
2327
7dac12ef 2328 SetFocusedItem(next);
c7d9c476
VZ
2329 }
2330 break;
2331
2332 case VK_LEFT:
2333 if ( HasChildren(htSel) && IsExpanded(htSel) )
2334 {
2335 Collapse(htSel);
2336 }
2337 else
2338 {
2339 wxTreeItemId next = GetItemParent(htSel);
2340
2341 if ( next.IsOk() && !IsHiddenRoot(next) )
2342 {
2343 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2344 this, next);
2345 changingEvent.m_itemOld = htSel;
2346
2347 if ( IsTreeEventAllowed(changingEvent) )
2348 {
2349 DoUnselectAll();
7dac12ef
VZ
2350 DoSelectItem(next);
2351 SetFocusedItem(next);
c7d9c476
VZ
2352
2353 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2354 this, next);
2355 changedEvent.m_itemOld = htSel;
2356 (void)HandleTreeEvent(changedEvent);
2357 }
2358 }
2359 }
2360 break;
2361
2362 case VK_RIGHT:
2363 if ( !IsVisible(htSel) )
2364 {
2365 EnsureVisible(htSel);
2366 }
2367
2368 if ( !HasChildren(htSel) )
2369 break;
2370
2371 if ( !IsExpanded(htSel) )
2372 {
2373 Expand(htSel);
2374 }
2375 else
2376 {
2377 wxTreeItemId next = TreeView_GetChild(GetHwnd(), htSel);
2378
2379 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING, this, next);
2380 changingEvent.m_itemOld = htSel;
2381
2382 if ( IsTreeEventAllowed(changingEvent) )
2383 {
2384 DoUnselectAll();
7dac12ef
VZ
2385 DoSelectItem(next);
2386 SetFocusedItem(next);
c7d9c476
VZ
2387
2388 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED, this, next);
2389 changedEvent.m_itemOld = htSel;
2390 (void)HandleTreeEvent(changedEvent);
2391 }
2392 }
2393 break;
2394
2395 case VK_HOME:
2396 case VK_END:
2397 {
2398 wxTreeItemId next = GetRootItem();
2399
2400 if ( IsHiddenRoot(next) )
2401 {
2402 next = TreeView_GetChild(GetHwnd(), HITEM(next));
2403 }
2404
2405 if ( !next.IsOk() )
2406 break;
2407
2408 if ( vkey == VK_END )
2409 {
2410 for ( ;; )
2411 {
2412 wxTreeItemId nextTemp = TreeView_GetNextVisible(
2413 GetHwnd(), HITEM(next));
2414
2415 if ( !nextTemp.IsOk() )
2416 break;
2417
2418 next = nextTemp;
2419 }
2420 }
2421
2422 if ( htSel == HITEM(next) )
2423 break;
2424
2425 if ( bShift )
2426 {
2427 if ( !m_htSelStart )
2428 {
2429 m_htSelStart = htSel;
2430 }
2431
2432 if ( SelectRange(GetHwnd(),
2433 HITEM(m_htSelStart), HITEM(next),
2434 SR_UNSELECT_OTHERS | SR_SIMULATE) )
2435 {
2436 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2437 this, next);
2438 changingEvent.m_itemOld = htSel;
2439
2440 if ( IsTreeEventAllowed(changingEvent) )
2441 {
2442 SelectRange(GetHwnd(),
2443 HITEM(m_htSelStart), HITEM(next),
2444 SR_UNSELECT_OTHERS);
7dac12ef 2445 SetFocusedItem(next);
c7d9c476
VZ
2446
2447 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2448 this, next);
2449 changedEvent.m_itemOld = htSel;
2450 (void)HandleTreeEvent(changedEvent);
2451 }
2452 }
2453 }
2454 else // no Shift
2455 {
2456 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2457 this, next);
2458 changingEvent.m_itemOld = htSel;
2459
2460 if ( IsTreeEventAllowed(changingEvent) )
2461 {
2462 DoUnselectAll();
7dac12ef
VZ
2463 DoSelectItem(next);
2464 SetFocusedItem(next);
c7d9c476
VZ
2465
2466 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2467 this, next);
2468 changedEvent.m_itemOld = htSel;
2469 (void)HandleTreeEvent(changedEvent);
2470 }
2471 }
2472 }
2473 break;
2474
2475 case VK_PRIOR:
2476 case VK_NEXT:
2477 if ( bCtrl )
2478 {
2479 wxTreeItemId firstVisible = GetFirstVisibleItem();
2480 size_t visibleCount = TreeView_GetVisibleCount(GetHwnd());
2481 wxTreeItemId nextAdjacent = (vkey == VK_PRIOR) ?
2482 TreeView_GetPrevVisible(GetHwnd(), HITEM(firstVisible)) :
2483 TreeView_GetNextVisible(GetHwnd(), HITEM(firstVisible));
2484
2485 if ( !nextAdjacent )
2486 {
2487 break;
2488 }
2489
2490 wxTreeItemId nextStart = firstVisible;
2491
2492 for ( size_t n = 1; n < visibleCount; n++ )
2493 {
2494 wxTreeItemId nextTemp = (vkey == VK_PRIOR) ?
2495 TreeView_GetPrevVisible(GetHwnd(), HITEM(nextStart)) :
2496 TreeView_GetNextVisible(GetHwnd(), HITEM(nextStart));
2497
2498 if ( nextTemp.IsOk() )
2499 {
2500 nextStart = nextTemp;
2501 }
2502 else
2503 {
2504 break;
2505 }
2506 }
2507
2508 EnsureVisible(nextStart);
2509
2510 if ( vkey == VK_NEXT )
2511 {
2512 wxTreeItemId nextEnd = nextStart;
2513
2514 for ( size_t n = 1; n < visibleCount; n++ )
2515 {
2516 wxTreeItemId nextTemp =
2517 TreeView_GetNextVisible(GetHwnd(), HITEM(nextEnd));
2518
2519 if ( nextTemp.IsOk() )
2520 {
2521 nextEnd = nextTemp;
2522 }
2523 else
2524 {
2525 break;
2526 }
2527 }
2528
2529 EnsureVisible(nextEnd);
2530 }
2531 }
2532 else // no Ctrl
2533 {
2534 size_t visibleCount = TreeView_GetVisibleCount(GetHwnd());
2535 wxTreeItemId nextAdjacent = (vkey == VK_PRIOR) ?
2536 TreeView_GetPrevVisible(GetHwnd(), htSel) :
2537 TreeView_GetNextVisible(GetHwnd(), htSel);
2538
2539 if ( !nextAdjacent )
2540 {
2541 break;
2542 }
2543
2544 wxTreeItemId next(htSel);
2545
2546 for ( size_t n = 1; n < visibleCount; n++ )
2547 {
2548 wxTreeItemId nextTemp = vkey == VK_PRIOR ?
2549 TreeView_GetPrevVisible(GetHwnd(), HITEM(next)) :
2550 TreeView_GetNextVisible(GetHwnd(), HITEM(next));
2551
2552 if ( !nextTemp.IsOk() )
2553 break;
2554
2555 next = nextTemp;
2556 }
2557
2558 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2559 this, next);
2560 changingEvent.m_itemOld = htSel;
2561
2562 if ( IsTreeEventAllowed(changingEvent) )
2563 {
2564 DoUnselectAll();
2565 m_htSelStart.Unset();
7dac12ef
VZ
2566 DoSelectItem(next);
2567 SetFocusedItem(next);
c7d9c476
VZ
2568
2569 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2570 this, next);
2571 changedEvent.m_itemOld = htSel;
2572 (void)HandleTreeEvent(changedEvent);
2573 }
2574 }
2575 break;
2576
2577 default:
2578 return false;
2579 }
2580
2581 return true;
2582}
2583
aa8166dd
VZ
2584bool wxTreeCtrl::MSWHandleTreeKeyDownEvent(WXWPARAM wParam, WXLPARAM lParam)
2585{
2586 wxTreeEvent keyEvent(wxEVT_COMMAND_TREE_KEY_DOWN, this);
2587
2588 int keyCode = wxCharCodeMSWToWX(wParam);
2589
2590 if ( !keyCode )
2591 {
2592 // wxCharCodeMSWToWX() returns 0 to indicate that this is a
2593 // simple ASCII key
2594 keyCode = wParam;
2595 }
2596
2597 keyEvent.m_evtKey = CreateKeyEvent(wxEVT_KEY_DOWN, keyCode,
2598 lParam, wParam);
2599
2600 bool processed = HandleTreeEvent(keyEvent);
2601
2602 // generate a separate event for Space/Return
2603 if ( !wxIsCtrlDown() && !wxIsShiftDown() && !wxIsAltDown() &&
2604 ((wParam == VK_SPACE) || (wParam == VK_RETURN)) )
2605 {
2606 const HTREEITEM htSel = (HTREEITEM)TreeView_GetSelection(GetHwnd());
2607 if ( htSel )
2608 {
2609 wxTreeEvent activatedEvent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED,
2610 this, htSel);
2611 (void)HandleTreeEvent(activatedEvent);
2612 }
2613 }
2614
2615 return processed;
2616}
2617
23f681ec
VZ
2618// we hook into WndProc to process WM_MOUSEMOVE/WM_BUTTONUP messages - as we
2619// only do it during dragging, minimize wxWin overhead (this is important for
2620// WM_MOUSEMOVE as they're a lot of them) by catching Windows messages directly
2621// instead of passing by wxWin events
c7d9c476
VZ
2622WXLRESULT
2623wxTreeCtrl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
23f681ec 2624{
04cd30de 2625 bool processed = false;
c140b7e7 2626 WXLRESULT rc = 0;
2b9a7d4c 2627 bool isMultiple = HasFlag(wxTR_MULTIPLE);
3f7bc32b 2628
499bbaeb 2629 if ( nMsg == WM_CONTEXTMENU )
30f5e34f 2630 {
147964ca
KH
2631 int x = GET_X_LPARAM(lParam),
2632 y = GET_Y_LPARAM(lParam);
8f6dc819
VZ
2633
2634 // the item for which the menu should be shown
2635 wxTreeItemId item;
2636
2637 // the position where the menu should be shown in client coordinates
2638 // (so that it can be passed directly to PopupMenu())
2639 wxPoint pt;
2640
2641 if ( x == -1 || y == -1 )
147964ca 2642 {
8f6dc819
VZ
2643 // this means that the event was generated from keyboard (e.g. with
2644 // Shift-F10 or special Windows menu key)
2645 //
2646 // use the Explorer standard of putting the menu at the left edge
2647 // of the text, in the vertical middle of the text
2648 item = wxTreeItemId(TreeView_GetSelection(GetHwnd()));
2649 if ( item.IsOk() )
2650 {
2651 // Use the bounding rectangle of only the text part
2652 wxRect rect;
2653 GetBoundingRect(item, rect, true);
2654 pt = wxPoint(rect.GetX(), rect.GetY() + rect.GetHeight() / 2);
2655 }
147964ca 2656 }
8f6dc819 2657 else // event from mouse, use mouse position
147964ca 2658 {
8f6dc819
VZ
2659 pt = ScreenToClient(wxPoint(x, y));
2660
2661 TV_HITTESTINFO tvhti;
2662 tvhti.pt.x = pt.x;
2663 tvhti.pt.y = pt.y;
c7d9c476 2664
8f6dc819
VZ
2665 if ( TreeView_HitTest(GetHwnd(), &tvhti) )
2666 item = wxTreeItemId(tvhti.hItem);
147964ca
KH
2667 }
2668
8f6dc819
VZ
2669 // create the event
2670 wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_MENU, this, item);
2671
2672 event.m_pointDrag = pt;
2673
c7d9c476 2674 if ( HandleTreeEvent(event) )
2b9a7d4c 2675 processed = true;
9994e2da 2676 //else: continue with generating wxEVT_CONTEXT_MENU in base class code
30f5e34f 2677 }
2b9a7d4c 2678 else if ( (nMsg >= WM_MOUSEFIRST) && (nMsg <= WM_MOUSELAST) )
23f681ec 2679 {
7bb8798c
VZ
2680 // we only process mouse messages here and these parameters have the
2681 // same meaning for all of them
3f7bc32b
VZ
2682 int x = GET_X_LPARAM(lParam),
2683 y = GET_Y_LPARAM(lParam);
8ecd5de2 2684
e3ad5702
JS
2685 TV_HITTESTINFO tvht;
2686 tvht.pt.x = x;
2687 tvht.pt.y = y;
8ecd5de2 2688
c7d9c476 2689 HTREEITEM htOldItem = TreeView_GetSelection(GetHwnd());
8854a202 2690 HTREEITEM htItem = TreeView_HitTest(GetHwnd(), &tvht);
3f7bc32b 2691
23f681ec
VZ
2692 switch ( nMsg )
2693 {
3f7bc32b 2694 case WM_LBUTTONDOWN:
c7d9c476
VZ
2695 if ( !isMultiple )
2696 break;
2697
c7d9c476
VZ
2698 m_htClickedItem.Unset();
2699
2700 if ( !(tvht.flags & TVHT_ONITEM) )
23f681ec 2701 {
c7d9c476
VZ
2702 if ( !HandleMouseEvent(nMsg, x, y, wParam) )
2703 {
2704 if ( tvht.flags & TVHT_ONITEMBUTTON )
2705 {
2706 if ( !IsExpanded(htItem) )
2707 {
2708 Expand(htItem);
2709 }
2710 else
2711 {
2712 Collapse(htItem);
2713 }
2714 }
7dac12ef
VZ
2715
2716 processed = true;
c7d9c476 2717 }
8ecd5de2 2718
7dac12ef 2719 m_focusLost = false;
c7d9c476
VZ
2720 break;
2721 }
2722
7dac12ef 2723 processed = true;
c7d9c476
VZ
2724 SetFocus();
2725 m_htClickedItem = (WXHTREEITEM) htItem;
2726 m_ptClick = wxPoint(x, y);
2727
2728 if ( wParam & MK_CONTROL )
2729 {
2730 if ( HandleMouseEvent(nMsg, x, y, wParam) )
3f7bc32b 2731 {
c7d9c476
VZ
2732 m_htClickedItem.Unset();
2733 break;
2734 }
23f681ec 2735
c7d9c476
VZ
2736 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2737 this, htItem);
2738 changingEvent.m_itemOld = htOldItem;
2739
2740 if ( IsTreeEventAllowed(changingEvent) )
2741 {
3f7bc32b 2742 // toggle selected state
7dac12ef 2743 DoToggleItemSelection(wxTreeItemId(htItem));
3f7bc32b 2744
7dac12ef 2745 SetFocusedItem(wxTreeItemId(htItem));
3f7bc32b
VZ
2746
2747 // reset on any click without Shift
f888d614 2748 m_htSelStart.Unset();
3f7bc32b 2749
c7d9c476
VZ
2750 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2751 this, htItem);
2752 changedEvent.m_itemOld = htOldItem;
2753 (void)HandleTreeEvent(changedEvent);
3f7bc32b 2754 }
c7d9c476
VZ
2755 }
2756 else if ( wParam & MK_SHIFT )
2757 {
2758 if ( HandleMouseEvent(nMsg, x, y, wParam) )
3f7bc32b 2759 {
c7d9c476
VZ
2760 m_htClickedItem.Unset();
2761 break;
2762 }
3f7bc32b 2763
c7d9c476
VZ
2764 int srFlags = 0;
2765 bool willChange = true;
3f7bc32b 2766
c7d9c476
VZ
2767 if ( !(wParam & MK_CONTROL) )
2768 {
2769 srFlags |= SR_UNSELECT_OTHERS;
2770 }
23f681ec 2771
c7d9c476
VZ
2772 if ( !m_htSelStart )
2773 {
2774 // take the focused item
2775 m_htSelStart = htOldItem;
3f7bc32b 2776 }
c7d9c476 2777 else
3f7bc32b 2778 {
c7d9c476
VZ
2779 willChange = SelectRange(GetHwnd(), HITEM(m_htSelStart),
2780 htItem, srFlags | SR_SIMULATE);
2781 }
8ecd5de2 2782
c7d9c476
VZ
2783 if ( willChange )
2784 {
2785 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2786 this, htItem);
2787 changingEvent.m_itemOld = htOldItem;
5e7718a2 2788
c7d9c476 2789 if ( IsTreeEventAllowed(changingEvent) )
df4ac4c7 2790 {
c7d9c476
VZ
2791 // this selects all items between the starting one
2792 // and the current
2793 if ( m_htSelStart )
2794 {
2795 SelectRange(GetHwnd(), HITEM(m_htSelStart),
2796 htItem, srFlags);
2797 }
2798 else
35cf1ec6 2799 {
7dac12ef 2800 DoSelectItem(wxTreeItemId(htItem));
c7d9c476 2801 }
35cf1ec6 2802
7dac12ef 2803 SetFocusedItem(wxTreeItemId(htItem));
35cf1ec6 2804
c7d9c476
VZ
2805 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2806 this, htItem);
2807 changedEvent.m_itemOld = htOldItem;
2808 (void)HandleTreeEvent(changedEvent);
2809 }
2810 }
2811 }
2812 else // normal click
2813 {
2814 // avoid doing anything if we click on the only
2815 // currently selected item
2816
2817 wxArrayTreeItemIds selections;
2818 size_t count = GetSelections(selections);
2819
2820 if ( count == 0 ||
2821 count > 1 ||
2822 HITEM(selections[0]) != htItem )
2823 {
2824 if ( HandleMouseEvent(nMsg, x, y, wParam) )
2825 {
2826 m_htClickedItem.Unset();
2827 break;
2828 }
2829
2830 // clear the previously selected items, if the user
2831 // clicked outside of the present selection, otherwise,
2832 // perform the deselection on mouse-up, this allows
2833 // multiple drag and drop to work.
c7d9c476
VZ
2834 if ( !IsItemSelected(GetHwnd(), htItem))
2835 {
2836 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2837 this, htItem);
2838 changingEvent.m_itemOld = htOldItem;
2839
2840 if ( IsTreeEventAllowed(changingEvent) )
2841 {
2842 DoUnselectAll();
7dac12ef
VZ
2843 DoSelectItem(wxTreeItemId(htItem));
2844 SetFocusedItem(wxTreeItemId(htItem));
c7d9c476
VZ
2845
2846 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2847 this, htItem);
2848 changedEvent.m_itemOld = htOldItem;
2849 (void)HandleTreeEvent(changedEvent);
35cf1ec6 2850 }
c7d9c476
VZ
2851 }
2852 else
2853 {
7dac12ef 2854 SetFocusedItem(wxTreeItemId(htItem));
df4ac4c7 2855 }
c7d9c476
VZ
2856 }
2857 else // click on a single selected item
2858 {
2859 // don't interfere with the default processing in
2860 // WM_MOUSEMOVE handler below as the default window
2861 // proc will start the drag itself if we let have
2862 // WM_LBUTTONDOWN
2863 m_htClickedItem.Unset();
2864
2865 // prevent in-place editing from starting if focus lost
2866 // since previous click
2867 if ( m_focusLost )
b8e3f1cf 2868 {
7dac12ef
VZ
2869 ClearFocusedItem();
2870 DoSelectItem(wxTreeItemId(htItem));
2871 SetFocusedItem(wxTreeItemId(htItem));
2872 }
2873 else
2874 {
2875 processed = false;
b8e3f1cf 2876 }
c7d9c476
VZ
2877 }
2878
2879 // reset on any click without Shift
2880 m_htSelStart.Unset();
2881 }
2882
2883 m_focusLost = false;
2884
2885 // we consumed the event so we need to trigger state image
2886 // click if needed
2887 if ( processed )
2888 {
2889 int htFlags = 0;
2890 wxTreeItemId item = HitTest(wxPoint(x, y), htFlags);
2891
2892 if ( htFlags & wxTREE_HITTEST_ONITEMSTATEICON )
2893 {
2894 m_triggerStateImageClick = true;
3f7bc32b
VZ
2895 }
2896 }
2897 break;
3f7bc32b 2898
e0bf68d6 2899 case WM_RBUTTONDOWN:
c7d9c476
VZ
2900 if ( !isMultiple )
2901 break;
2902
2903 processed = true;
2904 SetFocus();
2905
2906 if ( HandleMouseEvent(nMsg, x, y, wParam) || !htItem )
2907 {
2908 break;
2909 }
2910
e0bf68d6
VZ
2911 // default handler removes the highlight from the currently
2912 // focused item when right mouse button is pressed on another
2913 // one but keeps the remaining items highlighted, which is
c7d9c476
VZ
2914 // confusing, so override this default behaviour
2915 if ( !IsItemSelected(GetHwnd(), htItem) )
e0bf68d6 2916 {
c7d9c476
VZ
2917 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
2918 this, htItem);
2919 changingEvent.m_itemOld = htOldItem;
2920
2921 if ( IsTreeEventAllowed(changingEvent) )
e0bf68d6 2922 {
c7d9c476 2923 DoUnselectAll();
7dac12ef
VZ
2924 DoSelectItem(wxTreeItemId(htItem));
2925 SetFocusedItem(wxTreeItemId(htItem));
e0bf68d6 2926
c7d9c476
VZ
2927 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
2928 this, htItem);
2929 changedEvent.m_itemOld = htOldItem;
2930 (void)HandleTreeEvent(changedEvent);
2931 }
e0bf68d6 2932 }
c7d9c476 2933
e0bf68d6
VZ
2934 break;
2935
3f7bc32b 2936 case WM_MOUSEMOVE:
68fc69f3 2937#ifndef __WXWINCE__
e3ad5702
JS
2938 if ( m_htClickedItem )
2939 {
2940 int cx = abs(m_ptClick.x - x);
2941 int cy = abs(m_ptClick.y - y);
2942
b8e3f1cf
VZ
2943 if ( cx > ::GetSystemMetrics(SM_CXDRAG) ||
2944 cy > ::GetSystemMetrics(SM_CYDRAG) )
e3ad5702 2945 {
b8e3f1cf
VZ
2946 NM_TREEVIEW tv;
2947 wxZeroMemory(tv);
e3ad5702 2948
b8e3f1cf
VZ
2949 tv.hdr.hwndFrom = GetHwnd();
2950 tv.hdr.idFrom = ::GetWindowLong(GetHwnd(), GWL_ID);
2951 tv.hdr.code = TVN_BEGINDRAG;
8ecd5de2 2952
b8e3f1cf 2953 tv.itemNew.hItem = HITEM(m_htClickedItem);
8ecd5de2 2954
8ecd5de2 2955
b8e3f1cf
VZ
2956 TVITEM tviAux;
2957 wxZeroMemory(tviAux);
8ecd5de2 2958
b8e3f1cf
VZ
2959 tviAux.hItem = HITEM(m_htClickedItem);
2960 tviAux.mask = TVIF_STATE | TVIF_PARAM;
2961 tviAux.stateMask = 0xffffffff;
2962 TreeView_GetItem(GetHwnd(), &tviAux);
8ecd5de2 2963
b8e3f1cf
VZ
2964 tv.itemNew.state = tviAux.state;
2965 tv.itemNew.lParam = tviAux.lParam;
2966
2967 tv.ptDrag.x = x;
2968 tv.ptDrag.y = y;
2969
2970 // do it before SendMessage() call below to avoid
2971 // reentrancies here if there is another WM_MOUSEMOVE
2972 // in the queue already
e3ad5702 2973 m_htClickedItem.Unset();
b8e3f1cf
VZ
2974
2975 ::SendMessage(GetHwndOf(GetParent()), WM_NOTIFY,
2976 tv.hdr.idFrom, (LPARAM)&tv );
2977
2978 // don't pass it to the default window proc, it would
2979 // start dragging again
2980 processed = true;
e3ad5702 2981 }
e3ad5702 2982 }
68fc69f3 2983#endif // __WXWINCE__
8ecd5de2 2984
68d9be05 2985#if wxUSE_DRAGIMAGE
3f7bc32b
VZ
2986 if ( m_dragImage )
2987 {
afff720b 2988 m_dragImage->Move(wxPoint(x, y));
3f7bc32b 2989 if ( htItem )
23f681ec
VZ
2990 {
2991 // highlight the item as target (hiding drag image is
2992 // necessary - otherwise the display will be corrupted)
68be9f09 2993 m_dragImage->Hide();
3f7bc32b 2994 TreeView_SelectDropTarget(GetHwnd(), htItem);
68be9f09 2995 m_dragImage->Show();
23f681ec
VZ
2996 }
2997 }
68d9be05 2998#endif // wxUSE_DRAGIMAGE
23f681ec
VZ
2999 break;
3000
3001 case WM_LBUTTONUP:
c7d9c476 3002 if ( isMultiple )
35cf1ec6 3003 {
c7d9c476
VZ
3004 // deselect other items if multiple items selected
3005 if ( htItem )
35cf1ec6 3006 {
c7d9c476
VZ
3007 wxArrayTreeItemIds selections;
3008 size_t count = GetSelections(selections);
3009
3010 if ( count > 1 &&
3011 !(wParam & MK_CONTROL) &&
3012 !(wParam & MK_SHIFT) )
3013 {
3014 wxTreeEvent changingEvent(wxEVT_COMMAND_TREE_SEL_CHANGING,
3015 this, htItem);
3016 changingEvent.m_itemOld = htOldItem;
3017
3018 if ( IsTreeEventAllowed(changingEvent) )
3019 {
3020 DoUnselectAll();
7dac12ef
VZ
3021 DoSelectItem(wxTreeItemId(htItem));
3022 SetFocusedItem(wxTreeItemId(htItem));
c7d9c476
VZ
3023
3024 wxTreeEvent changedEvent(wxEVT_COMMAND_TREE_SEL_CHANGED,
3025 this, htItem);
3026 changedEvent.m_itemOld = htOldItem;
3027 (void)HandleTreeEvent(changedEvent);
3028 }
3029 }
35cf1ec6 3030 }
c7d9c476 3031
e3ad5702 3032 m_htClickedItem.Unset();
c7d9c476
VZ
3033
3034 if ( m_triggerStateImageClick )
3035 {
3036 if ( tvht.flags & TVHT_ONITEMSTATEICON )
3037 {
3038 wxTreeEvent event(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK,
3039 this, htItem);
3040 (void)HandleTreeEvent(event);
3041
3042 m_triggerStateImageClick = false;
3043 processed = true;
3044 }
3045 }
3046
3047 if ( !m_dragStarted &&
3048 (tvht.flags & TVHT_ONITEMSTATEICON ||
3049 tvht.flags & TVHT_ONITEMICON ||
3050 tvht.flags & TVHT_ONITEM) )
3051 {
3052 processed = true;
3053 }
35cf1ec6
VZ
3054 }
3055
3056 // fall through
3057
23f681ec 3058 case WM_RBUTTONUP:
68d9be05 3059#if wxUSE_DRAGIMAGE
3f7bc32b 3060 if ( m_dragImage )
23f681ec 3061 {
68be9f09 3062 m_dragImage->EndDrag();
23f681ec
VZ
3063 delete m_dragImage;
3064 m_dragImage = NULL;
3065
3066 // generate the drag end event
c7d9c476
VZ
3067 wxTreeEvent event(wxEVT_COMMAND_TREE_END_DRAG,
3068 this, htItem);
72e61024 3069 event.m_pointDrag = wxPoint(x, y);
c7d9c476 3070 (void)HandleTreeEvent(event);
225fe9d6
VZ
3071
3072 // if we don't do it, the tree seems to think that 2 items
3073 // are selected simultaneously which is quite weird
3074 TreeView_SelectDropTarget(GetHwnd(), 0);
23f681ec 3075 }
68d9be05 3076#endif // wxUSE_DRAGIMAGE
c7d9c476
VZ
3077
3078 if ( isMultiple && nMsg == WM_RBUTTONUP )
3079 {
3080 // send NM_RCLICK
3081 NMHDR nmhdr;
3082 nmhdr.hwndFrom = GetHwnd();
3083 nmhdr.idFrom = ::GetWindowLong(GetHwnd(), GWL_ID);
3084 nmhdr.code = NM_RCLICK;
3085 ::SendMessage(::GetParent(GetHwnd()), WM_NOTIFY,
3086 nmhdr.idFrom, (LPARAM)&nmhdr);
3087 processed = true;
3088 }
3089
3090 m_dragStarted = false;
3091
23f681ec
VZ
3092 break;
3093 }
3094 }
c7d9c476 3095 else if ( (nMsg == WM_SETFOCUS || nMsg == WM_KILLFOCUS) )
3f7bc32b 3096 {
c7d9c476 3097 if ( isMultiple )
3f7bc32b 3098 {
c7d9c476
VZ
3099 // the tree control greys out the selected item when it loses focus
3100 // and paints it as selected again when it regains it, but it won't
3101 // do it for the other items itself - help it
3102 wxArrayTreeItemIds selections;
3103 size_t count = GetSelections(selections);
3104 RECT rect;
3105
3106 for ( size_t n = 0; n < count; n++ )
3f7bc32b 3107 {
c7d9c476
VZ
3108 // TreeView_GetItemRect() will return false if item is not
3109 // visible, which may happen perfectly well
3110 if ( TreeView_GetItemRect(GetHwnd(), HITEM(selections[n]),
3111 &rect, TRUE) )
3112 {
3113 ::InvalidateRect(GetHwnd(), &rect, FALSE);
3114 }
3f7bc32b
VZ
3115 }
3116 }
3f7bc32b 3117
c7d9c476 3118 if ( nMsg == WM_KILLFOCUS )
3f7bc32b 3119 {
c7d9c476
VZ
3120 m_focusLost = true;
3121 }
3122 }
3123 else if ( (nMsg == WM_KEYDOWN || nMsg == WM_SYSKEYDOWN) && isMultiple )
3124 {
aa8166dd
VZ
3125 // normally we want to generate wxEVT_KEY_DOWN events from TVN_KEYDOWN
3126 // notification but for the keys which can be used to change selection
3127 // we need to do it from here so as to not apply the default behaviour
3128 // if the events are handled by the user code
3129 switch ( wParam )
c7d9c476 3130 {
aa8166dd
VZ
3131 case VK_RETURN:
3132 case VK_SPACE:
3133 case VK_UP:
3134 case VK_DOWN:
3135 case VK_LEFT:
3136 case VK_RIGHT:
3137 case VK_HOME:
3138 case VK_END:
3139 case VK_PRIOR:
3140 case VK_NEXT:
3141 if ( !MSWHandleTreeKeyDownEvent(wParam, lParam) )
3142 {
3143 // use the key to update the selection if it was left
3144 // unprocessed
3145 MSWHandleSelectionKey(wParam);
aa8166dd 3146 }
ba8a1961 3147
7dac12ef
VZ
3148 // pretend that we did process it in any case as we already
3149 // generated an event for it
3150 processed = true;
3151
aa8166dd
VZ
3152 //default: for all the other keys leave processed as false so that
3153 // the tree control generates a TVN_KEYDOWN for us
c7d9c476 3154 }
3f7bc32b 3155
3f7bc32b 3156 }
d35dce3a
VZ
3157 else if ( nMsg == WM_COMMAND )
3158 {
3159 // if we receive a EN_KILLFOCUS command from the in-place edit control
3160 // used for label editing, make sure to end editing
3161 WORD id, cmd;
3162 WXHWND hwnd;
3163 UnpackCommand(wParam, lParam, &id, &hwnd, &cmd);
3164
3165 if ( cmd == EN_KILLFOCUS )
3166 {
3167 if ( m_textCtrl && m_textCtrl->GetHandle() == hwnd )
3168 {
3169 DoEndEditLabel();
3170
3171 processed = true;
3172 }
3173 }
3174 }
7bb8798c 3175
3f7bc32b
VZ
3176 if ( !processed )
3177 rc = wxControl::MSWWindowProc(nMsg, wParam, lParam);
3178
3179 return rc;
23f681ec
VZ
3180}
3181
fbd8ac52
VZ
3182WXLRESULT
3183wxTreeCtrl::MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
3184{
068b764a
VZ
3185 if ( nMsg == WM_CHAR )
3186 {
df63b2a4 3187 // don't let the control process Space and Return keys because it
068b764a
VZ
3188 // doesn't do anything useful with them anyhow but always beeps
3189 // annoyingly when it receives them and there is no way to turn it off
3190 // simply if you just process TREEITEM_ACTIVATED event to which Space
3191 // and Enter presses are mapped in your code
3192 if ( wParam == VK_SPACE || wParam == VK_RETURN )
3193 return 0;
3194 }
c4cd8712
VZ
3195#if wxUSE_DRAGIMAGE
3196 else if ( nMsg == WM_KEYDOWN )
3197 {
3198 if ( wParam == VK_ESCAPE )
3199 {
3200 if ( m_dragImage )
3201 {
3202 m_dragImage->EndDrag();
3203 delete m_dragImage;
3204 m_dragImage = NULL;
3205
3206 // if we don't do it, the tree seems to think that 2 items
3207 // are selected simultaneously which is quite weird
3208 TreeView_SelectDropTarget(GetHwnd(), 0);
3209 }
3210 }
3211 }
3212#endif // wxUSE_DRAGIMAGE
068b764a 3213
fbd8ac52
VZ
3214 return wxControl::MSWDefWindowProc(nMsg, wParam, lParam);
3215}
3216
08b7c251 3217// process WM_NOTIFY Windows message
a23fd0e1 3218bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
08b7c251 3219{
09f277d6 3220 wxTreeEvent event(wxEVT_NULL, this);
08b7c251
VZ
3221 wxEventType eventType = wxEVT_NULL;
3222 NMHDR *hdr = (NMHDR *)lParam;
3223
3224 switch ( hdr->code )
2bda0e17 3225 {
08b7c251
VZ
3226 case TVN_BEGINDRAG:
3227 eventType = wxEVT_COMMAND_TREE_BEGIN_DRAG;
3228 // fall through
3229
3230 case TVN_BEGINRDRAG:
3231 {
3232 if ( eventType == wxEVT_NULL )
3233 eventType = wxEVT_COMMAND_TREE_BEGIN_RDRAG;
3234 //else: left drag, already set above
3235
3236 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
3237
ee4b2721 3238 event.m_item = tv->itemNew.hItem;
08b7c251 3239 event.m_pointDrag = wxPoint(tv->ptDrag.x, tv->ptDrag.y);
23f681ec
VZ
3240
3241 // don't allow dragging by default: the user code must
3242 // explicitly say that it wants to allow it to avoid breaking
3243 // the old apps
3244 event.Veto();
08b7c251 3245 }
696e1ea0 3246 break;
08b7c251
VZ
3247
3248 case TVN_BEGINLABELEDIT:
3249 {
3250 eventType = wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT;
3251 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3252
646a8a4d
VZ
3253 // although the user event handler may still veto it, it is
3254 // important to set it now so that calls to SetItemText() from
3255 // the event handler would change the text controls contents
3256 m_idEdited =
ee4b2721 3257 event.m_item = info->item.hItem;
5ea47806 3258 event.m_label = info->item.pszText;
04cd30de 3259 event.m_editCancelled = false;
08b7c251 3260 }
696e1ea0 3261 break;
08b7c251
VZ
3262
3263 case TVN_DELETEITEM:
3264 {
3265 eventType = wxEVT_COMMAND_TREE_DELETE_ITEM;
3266 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
3267
ee4b2721 3268 event.m_item = tv->itemOld.hItem;
696e1ea0
VZ
3269
3270 if ( m_hasAnyAttr )
3271 {
ee4b2721
VZ
3272 wxMapTreeAttr::iterator it = m_attrs.find(tv->itemOld.hItem);
3273 if ( it != m_attrs.end() )
3274 {
3275 delete it->second;
3276 m_attrs.erase(it);
3277 }
696e1ea0 3278 }
08b7c251 3279 }
696e1ea0 3280 break;
08b7c251
VZ
3281
3282 case TVN_ENDLABELEDIT:
3283 {
3284 eventType = wxEVT_COMMAND_TREE_END_LABEL_EDIT;
3285 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3286
ee4b2721 3287 event.m_item = info->item.hItem;
5ea47806 3288 event.m_label = info->item.pszText;
06110b00 3289 event.m_editCancelled = info->item.pszText == NULL;
08b7c251
VZ
3290 break;
3291 }
3292
676d6550 3293#ifndef __WXWINCE__
156194e1
JS
3294 // These *must* not be removed or TVN_GETINFOTIP will
3295 // not be processed each time the mouse is moved
3296 // and the tooltip will only ever update once.
3297 case TTN_NEEDTEXTA:
3298 case TTN_NEEDTEXTW:
3299 {
3300 *result = 0;
3301
3302 break;
3303 }
3304
f3f71703 3305#ifdef TVN_GETINFOTIP
156194e1
JS
3306 case TVN_GETINFOTIP:
3307 {
3308 eventType = wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP;
3309 NMTVGETINFOTIP *info = (NMTVGETINFOTIP*)lParam;
3310
3311 // Which item are we trying to get a tooltip for?
bc0aebab 3312 event.m_item = info->hItem;
156194e1
JS
3313
3314 break;
3315 }
df63b2a4
VZ
3316#endif // TVN_GETINFOTIP
3317#endif // !__WXWINCE__
5e7718a2 3318
08b7c251
VZ
3319 case TVN_GETDISPINFO:
3320 eventType = wxEVT_COMMAND_TREE_GET_INFO;
3321 // fall through
3322
3323 case TVN_SETDISPINFO:
3324 {
3325 if ( eventType == wxEVT_NULL )
3326 eventType = wxEVT_COMMAND_TREE_SET_INFO;
3327 //else: get, already set above
3328
3329 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
3330
ee4b2721 3331 event.m_item = info->item.hItem;
08b7c251
VZ
3332 break;
3333 }
3334
3335 case TVN_ITEMEXPANDING:
08b7c251
VZ
3336 case TVN_ITEMEXPANDED:
3337 {
4523ebb3 3338 NM_TREEVIEW *tv = (NM_TREEVIEW*)lParam;
08b7c251 3339
deb1de30 3340 int what;
08b7c251
VZ
3341 switch ( tv->action )
3342 {
deb1de30
VZ
3343 default:
3344 wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND message"), tv->action);
3345 // fall through
3346
08b7c251 3347 case TVE_EXPAND:
deb1de30 3348 what = IDX_EXPAND;
08b7c251
VZ
3349 break;
3350
3351 case TVE_COLLAPSE:
deb1de30 3352 what = IDX_COLLAPSE;
08b7c251 3353 break;
08b7c251
VZ
3354 }
3355
2b5f62a0
VZ
3356 int how = hdr->code == TVN_ITEMEXPANDING ? IDX_DOING
3357 : IDX_DONE;
deb1de30
VZ
3358
3359 eventType = gs_expandEvents[what][how];
08b7c251 3360
ee4b2721 3361 event.m_item = tv->itemNew.hItem;
08b7c251 3362 }
696e1ea0 3363 break;
08b7c251
VZ
3364
3365 case TVN_KEYDOWN:
3366 {
08b7c251
VZ
3367 TV_KEYDOWN *info = (TV_KEYDOWN *)lParam;
3368
1944ad76
VZ
3369 // fabricate the lParam and wParam parameters sufficiently
3370 // similar to the ones from a "real" WM_KEYDOWN so that
3371 // CreateKeyEvent() works correctly
47e10541
VZ
3372 return MSWHandleTreeKeyDownEvent(
3373 info->wVKey, (wxIsAltDown() ? KF_ALTDOWN : 0) << 16);
08b7c251
VZ
3374 }
3375
5fe302ef
BW
3376
3377 // Vista's tree control has introduced some problems with our
3378 // multi-selection tree. When TreeView_SelectItem() is called,
3379 // the wrong items are deselected.
20bdddad 3380
5fe302ef
BW
3381 // Fortunately, Vista provides a new notification, TVN_ITEMCHANGING
3382 // that can be used to regulate this incorrect behavior. The
3383 // following messages will allow only the unlocked item's selection
3384 // state to change
396f85ba 3385
5fe302ef
BW
3386 case TVN_ITEMCHANGINGA:
3387 case TVN_ITEMCHANGINGW:
3388 {
3389 // we only need to handles these in multi-select trees
3390 if ( HasFlag(wxTR_MULTIPLE) )
3391 {
3392 // get info about the item about to be changed
3393 NMTVITEMCHANGE* info = (NMTVITEMCHANGE*)lParam;
396f85ba 3394 if (TreeItemUnlocker::IsLocked(info->hItem))
5fe302ef
BW
3395 {
3396 // item's state is locked, don't allow the change
3397 // returning 1 will disallow the change
20bdddad 3398 *result = 1;
5fe302ef
BW
3399 return true;
3400 }
3401 }
3402
3403 // allow the state change
3404 }
3405 return false;
3406
5e7718a2 3407 // NB: MSLU is broken and sends TVN_SELCHANGEDA instead of
69a8b5b4
VS
3408 // TVN_SELCHANGEDW in Unicode mode under Win98. Therefore
3409 // we have to handle both messages:
3410 case TVN_SELCHANGEDA:
3411 case TVN_SELCHANGEDW:
7dac12ef 3412 if ( !HasFlag(wxTR_MULTIPLE) || !m_changingSelection )
c7d9c476
VZ
3413 {
3414 eventType = wxEVT_COMMAND_TREE_SEL_CHANGED;
3415 }
08b7c251
VZ
3416 // fall through
3417
69a8b5b4
VS
3418 case TVN_SELCHANGINGA:
3419 case TVN_SELCHANGINGW:
7dac12ef 3420 if ( !HasFlag(wxTR_MULTIPLE) || !m_changingSelection )
08b7c251
VZ
3421 {
3422 if ( eventType == wxEVT_NULL )
3423 eventType = wxEVT_COMMAND_TREE_SEL_CHANGING;
3424 //else: already set above
3425
5e7718a2 3426 if (hdr->code == TVN_SELCHANGINGW ||
69a8b5b4
VS
3427 hdr->code == TVN_SELCHANGEDW)
3428 {
4523ebb3 3429 NM_TREEVIEWW *tv = (NM_TREEVIEWW *)lParam;
ee4b2721
VZ
3430 event.m_item = tv->itemNew.hItem;
3431 event.m_itemOld = tv->itemOld.hItem;
69a8b5b4
VS
3432 }
3433 else
3434 {
4523ebb3 3435 NM_TREEVIEWA *tv = (NM_TREEVIEWA *)lParam;
ee4b2721
VZ
3436 event.m_item = tv->itemNew.hItem;
3437 event.m_itemOld = tv->itemOld.hItem;
69a8b5b4 3438 }
08b7c251 3439 }
cb776b66
VZ
3440
3441 // we receive this message from WM_LBUTTONDOWN handler inside
3442 // comctl32.dll and so before the click is passed to
3443 // DefWindowProc() which sets the focus to the window which was
3444 // clicked and this can lead to unexpected event sequences: for
3445 // example, we may get a "selection change" event from the tree
3446 // before getting a "kill focus" event for the text control which
3447 // had the focus previously, thus breaking user code doing input
3448 // validation
3449 //
3450 // to avoid such surprises, we force the generation of focus events
3451 // now, before we generate the selection change ones
3452 SetFocus();
696e1ea0
VZ
3453 break;
3454
c7d9c476
VZ
3455 // instead of explicitly checking for _WIN32_IE, check if the
3456 // required symbols are available in the headers
5b59df83 3457#if defined(CDDS_PREPAINT) && !wxUSE_COMCTL32_SAFELY
696e1ea0
VZ
3458 case NM_CUSTOMDRAW:
3459 {
3460 LPNMTVCUSTOMDRAW lptvcd = (LPNMTVCUSTOMDRAW)lParam;
3461 NMCUSTOMDRAW& nmcd = lptvcd->nmcd;
d7926e0b 3462 switch ( nmcd.dwDrawStage )
696e1ea0
VZ
3463 {
3464 case CDDS_PREPAINT:
3465 // if we've got any items with non standard attributes,
3466 // notify us before painting each item
3467 *result = m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW
3468 : CDRF_DODEFAULT;
4754ab16
RR
3469
3470 // windows in TreeCtrl use one-based index for item state images,
3471 // 0 indexed image is not being used, we're using zero-based index,
3472 // so we have to add temp image (of zero index) to state image list
3473 // before we draw any item, then after items are drawn we have to
3474 // delete it (in POSTPAINT notify)
3475 if (m_imageListState && m_imageListState->GetImageCount() > 0)
3476 {
2ec94d6b 3477 typedef BOOL (wxSTDCALL *ImageList_Copy_t)
c27dce18
VZ
3478 (HIMAGELIST, int, HIMAGELIST, int, UINT);
3479 static ImageList_Copy_t s_pfnImageList_Copy = NULL;
3480 static bool loaded = false;
3481
3482 if ( !loaded )
3483 {
3484 wxLoadedDLL dllComCtl32(_T("comctl32.dll"));
3485 if ( dllComCtl32.IsLoaded() )
3486 wxDL_INIT_FUNC(s_pfn, ImageList_Copy, dllComCtl32);
3487 }
3488
3489 if ( !s_pfnImageList_Copy )
3490 {
3491 // this code is broken with ImageList_Copy()
3492 // but I don't care enough about Win95 support
3493 // to write it now -- if anybody does, please
3494 // do it
3495 wxFAIL_MSG("TODO: implement this for Win95");
3496 break;
3497 }
3498
3499 const HIMAGELIST
3500 hImageList = GetHimagelistOf(m_imageListState);
4754ab16
RR
3501
3502 // add temporary image
3503 int width, height;
3504 m_imageListState->GetSize(0, width, height);
3505
3506 HBITMAP hbmpTemp = ::CreateBitmap(width, height, 1, 1, NULL);
3507 int index = ::ImageList_Add(hImageList, hbmpTemp, hbmpTemp);
3508 ::DeleteObject(hbmpTemp);
3509
3510 if ( index != -1 )
3511 {
3512 // move images to right
3513 for ( int i = index; i > 0; i-- )
c27dce18
VZ
3514 {
3515 (*s_pfnImageList_Copy)(hImageList, i,
3516 hImageList, i-1,
3517 ILCF_MOVE);
3518 }
4754ab16
RR
3519
3520 // we must remove the image in POSTPAINT notify
3521 *result |= CDRF_NOTIFYPOSTPAINT;
3522 }
4754ab16
RR
3523 }
3524 break;
3525
3526 case CDDS_POSTPAINT:
3527 // we are deleting temp image of 0 index, which was
3528 // added before items were drawn (in PREPAINT notify)
3529 if (m_imageListState && m_imageListState->GetImageCount() > 0)
3530 m_imageListState->Remove(0);
d7926e0b 3531 break;
696e1ea0
VZ
3532
3533 case CDDS_ITEMPREPAINT:
3534 {
ee4b2721
VZ
3535 wxMapTreeAttr::iterator
3536 it = m_attrs.find((void *)nmcd.dwItemSpec);
696e1ea0 3537
ee4b2721 3538 if ( it == m_attrs.end() )
696e1ea0
VZ
3539 {
3540 // nothing to do for this item
d7926e0b
VZ
3541 *result = CDRF_DODEFAULT;
3542 break;
696e1ea0
VZ
3543 }
3544
ee4b2721
VZ
3545 wxTreeItemAttr * const attr = it->second;
3546
8b713759
VZ
3547 wxTreeViewItem tvItem((void *)nmcd.dwItemSpec,
3548 TVIF_STATE, TVIS_DROPHILITED);
3549 DoGetItem(&tvItem);
3550 const UINT tvItemState = tvItem.state;
3551
19da49fc 3552 // selection colours should override ours,
8b713759
VZ
3553 // otherwise it is too confusing to the user
3554 if ( !(nmcd.uItemState & CDIS_SELECTED) &&
3555 !(tvItemState & TVIS_DROPHILITED) )
696e1ea0 3556 {
2076893b 3557 wxColour colBack;
696e1ea0
VZ
3558 if ( attr->HasBackgroundColour() )
3559 {
3560 colBack = attr->GetBackgroundColour();
19da49fc 3561 lptvcd->clrTextBk = wxColourToRGB(colBack);
696e1ea0 3562 }
19da49fc
VZ
3563 }
3564
3565 // but we still want to keep the special foreground
3566 // colour when we don't have focus (we can't keep
3567 // it when we do, it would usually be unreadable on
3568 // the almost inverted bg colour...)
8b713759
VZ
3569 if ( ( !(nmcd.uItemState & CDIS_SELECTED) ||
3570 FindFocus() != this ) &&
3571 !(tvItemState & TVIS_DROPHILITED) )
19da49fc
VZ
3572 {
3573 wxColour colText;
3574 if ( attr->HasTextColour() )
696e1ea0 3575 {
19da49fc
VZ
3576 colText = attr->GetTextColour();
3577 lptvcd->clrText = wxColourToRGB(colText);
696e1ea0 3578 }
696e1ea0
VZ
3579 }
3580
19da49fc 3581 if ( attr->HasFont() )
696e1ea0 3582 {
19da49fc
VZ
3583 HFONT hFont = GetHfontOf(attr->GetFont());
3584
696e1ea0
VZ
3585 ::SelectObject(nmcd.hdc, hFont);
3586
3587 *result = CDRF_NEWFONT;
3588 }
19da49fc 3589 else // no specific font
696e1ea0
VZ
3590 {
3591 *result = CDRF_DODEFAULT;
3592 }
696e1ea0 3593 }
d7926e0b 3594 break;
696e1ea0
VZ
3595
3596 default:
3597 *result = CDRF_DODEFAULT;
696e1ea0
VZ
3598 }
3599 }
d7926e0b
VZ
3600
3601 // we always process it
04cd30de 3602 return true;
5b59df83 3603#endif // have owner drawn support in headers
08b7c251 3604
8a000b6b
VZ
3605 case NM_CLICK:
3606 {
3607 DWORD pos = GetMessagePos();
3608 POINT point;
3609 point.x = LOWORD(pos);
3610 point.y = HIWORD(pos);
3611 ::MapWindowPoints(HWND_DESKTOP, GetHwnd(), &point, 1);
c7d9c476
VZ
3612 int htFlags = 0;
3613 wxTreeItemId item = HitTest(wxPoint(point.x, point.y), htFlags);
3614
3615 if ( htFlags & wxTREE_HITTEST_ONITEMSTATEICON )
8a000b6b
VZ
3616 {
3617 event.m_item = item;
3618 eventType = wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK;
3619 }
c7d9c476 3620
8a000b6b
VZ
3621 break;
3622 }
3623
f6bcfd97
BP
3624 case NM_DBLCLK:
3625 case NM_RCLICK:
3626 {
3627 TV_HITTESTINFO tvhti;
3628 ::GetCursorPos(&tvhti.pt);
3629 ::ScreenToClient(GetHwnd(), &tvhti.pt);
3630 if ( TreeView_HitTest(GetHwnd(), &tvhti) )
3631 {
3632 if ( tvhti.flags & TVHT_ONITEM )
3633 {
ee4b2721 3634 event.m_item = tvhti.hItem;
f6bcfd97
BP
3635 eventType = (int)hdr->code == NM_DBLCLK
3636 ? wxEVT_COMMAND_TREE_ITEM_ACTIVATED
3637 : wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK;
8591268f
VZ
3638
3639 event.m_pointDrag.x = tvhti.pt.x;
3640 event.m_pointDrag.y = tvhti.pt.y;
f6bcfd97
BP
3641 }
3642
3643 break;
3644 }
3645 }
3646 // fall through
3647
08b7c251 3648 default:
a23fd0e1 3649 return wxControl::MSWOnNotify(idCtrl, lParam, result);
2bda0e17 3650 }
08b7c251 3651
08b7c251
VZ
3652 event.SetEventType(eventType);
3653
c7d9c476 3654 bool processed = HandleTreeEvent(event);
08b7c251
VZ
3655
3656 // post processing
5ea47806 3657 switch ( hdr->code )
2bda0e17 3658 {
f6bcfd97 3659 case NM_DBLCLK:
0e2ad323
VZ
3660 // we translate NM_DBLCLK into ACTIVATED event and if the user
3661 // handled the activation of the item we shouldn't proceed with
3662 // also using the same double click for toggling the item expanded
3663 // state -- but OTOH do let the user to expand/collapse the item by
3664 // double clicking on it if the activation is not handled specially
3665 *result = processed;
f6bcfd97
BP
3666 break;
3667
df63b2a4
VZ
3668 case NM_RCLICK:
3669 // prevent tree control from sending WM_CONTEXTMENU to our parent
3670 // (which it does if NM_RCLICK is not handled) because we want to
3671 // send it to the control itself
3672 *result =
3673 processed = true;
3674
3675 ::SendMessage(GetHwnd(), WM_CONTEXTMENU,
3676 (WPARAM)GetHwnd(), ::GetMessagePos());
3677 break;
3678
23f681ec
VZ
3679 case TVN_BEGINDRAG:
3680 case TVN_BEGINRDRAG:
68d9be05 3681#if wxUSE_DRAGIMAGE
23f681ec
VZ
3682 if ( event.IsAllowed() )
3683 {
3684 // normally this is impossible because the m_dragImage is
3685 // deleted once the drag operation is over
3686 wxASSERT_MSG( !m_dragImage, _T("starting to drag once again?") );
3687
3688 m_dragImage = new wxDragImage(*this, event.m_item);
c47addef 3689 m_dragImage->BeginDrag(wxPoint(0,0), this);
68be9f09 3690 m_dragImage->Show();
c7d9c476
VZ
3691
3692 m_dragStarted = true;
23f681ec 3693 }
68d9be05 3694#endif // wxUSE_DRAGIMAGE
23f681ec
VZ
3695 break;
3696
5ea47806
VZ
3697 case TVN_DELETEITEM:
3698 {
77ffb593 3699 // NB: we might process this message using wxWidgets event
5ea47806
VZ
3700 // tables, but due to overhead of wxWin event system we
3701 // prefer to do it here ourself (otherwise deleting a tree
3702 // with many items is just too slow)
4523ebb3 3703 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
4523ebb3
VZ
3704
3705 wxTreeItemParam *param =
3706 (wxTreeItemParam *)tv->itemOld.lParam;
3707 delete param;
08b7c251 3708
04cd30de 3709 processed = true; // Make sure we don't get called twice
5ea47806
VZ
3710 }
3711 break;
3712
3713 case TVN_BEGINLABELEDIT:
04cd30de 3714 // return true to cancel label editing
5ea47806 3715 *result = !event.IsAllowed();
646a8a4d 3716
cd6bd270 3717 // set ES_WANTRETURN ( like we do in BeginLabelEdit )
646a8a4d 3718 if ( event.IsAllowed() )
cd6bd270
MB
3719 {
3720 HWND hText = TreeView_GetEditControl(GetHwnd());
4523ebb3 3721 if ( hText )
cd6bd270 3722 {
5e7718a2 3723 // MBN: if m_textCtrl already has an HWND, it is a stale
cd6bd270
MB
3724 // pointer from a previous edit (because the user
3725 // didn't modify the label before dismissing the control,
3726 // and TVN_ENDLABELEDIT was not sent), so delete it
4523ebb3 3727 if ( m_textCtrl && m_textCtrl->GetHWND() )
cd6bd270 3728 DeleteTextCtrl();
4523ebb3 3729 if ( !m_textCtrl )
cd6bd270
MB
3730 m_textCtrl = new wxTextCtrl();
3731 m_textCtrl->SetParent(this);
3732 m_textCtrl->SetHWND((WXHWND)hText);
3733 m_textCtrl->SubclassWin((WXHWND)hText);
3734
3735 // set wxTE_PROCESS_ENTER style for the text control to
3736 // force it to process the Enter presses itself, otherwise
3737 // they could be stolen from it by the dialog
3738 // navigation code
3739 m_textCtrl->SetWindowStyle(m_textCtrl->GetWindowStyle()
3740 | wxTE_PROCESS_ENTER);
3741 }
3742 }
646a8a4d
VZ
3743 else // we had set m_idEdited before
3744 {
3745 m_idEdited.Unset();
3746 }
5ea47806
VZ
3747 break;
3748
3749 case TVN_ENDLABELEDIT:
04cd30de 3750 // return true to set the label to the new string: note that we
188781db 3751 // also must pretend that we did process the message or it is going
04cd30de 3752 // to be passed to DefWindowProc() which will happily return false
188781db 3753 // cancelling the label change
5ea47806 3754 *result = event.IsAllowed();
04cd30de 3755 processed = true;
5ea47806
VZ
3756
3757 // ensure that we don't have the text ctrl which is going to be
3758 // deleted any more
3759 DeleteTextCtrl();
3760 break;
3761
676d6550 3762#ifndef __WXWINCE__
f3f71703 3763#ifdef TVN_GETINFOTIP
156194e1
JS
3764 case TVN_GETINFOTIP:
3765 {
3766 // If the user permitted a tooltip change, change it
3767 if (event.IsAllowed())
3768 {
3769 SetToolTip(event.m_label);
3770 }
3771 }
3772 break;
f3f71703 3773#endif
676d6550 3774#endif
5e7718a2 3775
5ea47806
VZ
3776 case TVN_SELCHANGING:
3777 case TVN_ITEMEXPANDING:
04cd30de 3778 // return true to prevent the action from happening
5ea47806
VZ
3779 *result = !event.IsAllowed();
3780 break;
3781
deb1de30 3782 case TVN_ITEMEXPANDED:
deb1de30 3783 {
4523ebb3 3784 NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam;
5188000b 3785 const wxTreeItemId id(tv->itemNew.hItem);
deb1de30 3786
5188000b 3787 if ( tv->action == TVE_COLLAPSE )
bf43d750 3788 {
5188000b
VZ
3789 if ( wxApp::GetComCtl32Version() >= 600 )
3790 {
3791 // for some reason the item selection rectangle depends
3792 // on whether it is expanded or collapsed (at least
3793 // with comctl32.dll v6): it is wider (by 3 pixels) in
3794 // the expanded state, so when the item collapses and
3795 // then is deselected the rightmost 3 pixels of the
3796 // previously drawn selection are left on the screen
3797 //
3798 // it's not clear if it's a bug in comctl32.dll or in
3799 // our code (because it does not happen in Explorer but
3800 // OTOH we don't do anything which could result in this
3801 // AFAICS) but we do need to work around it to avoid
3802 // ugly artifacts
3803 RefreshItem(id);
3804 }
3805 }
3806 else // expand
3807 {
3808 // the item is also not refreshed properly after expansion when
3809 // it has an image depending on the expanded/collapsed state:
3810 // again, it's not clear if the bug is in comctl32.dll or our
3811 // code...
3812 int image = GetItemImage(id, wxTreeItemIcon_Expanded);
3813 if ( image != -1 )
3814 {
3815 RefreshItem(id);
3816 }
deb1de30
VZ
3817 }
3818 }
3819 break;
3820
74b31181
VZ
3821 case TVN_GETDISPINFO:
3822 // NB: so far the user can't set the image himself anyhow, so do it
3823 // anyway - but this may change later
4523ebb3 3824 //if ( /* !processed && */ )
74b31181
VZ
3825 {
3826 wxTreeItemId item = event.m_item;
3827 TV_DISPINFO *info = (TV_DISPINFO *)lParam;
4523ebb3 3828
1b182562 3829 const wxTreeItemParam * const param = GetItemParam(item);
4523ebb3
VZ
3830 if ( !param )
3831 break;
3832
74b31181
VZ
3833 if ( info->item.mask & TVIF_IMAGE )
3834 {
3835 info->item.iImage =
4523ebb3 3836 param->GetImage
74b31181 3837 (
74b31181
VZ
3838 IsExpanded(item) ? wxTreeItemIcon_Expanded
3839 : wxTreeItemIcon_Normal
3840 );
3841 }
3842 if ( info->item.mask & TVIF_SELECTEDIMAGE )
3843 {
3844 info->item.iSelectedImage =
4523ebb3 3845 param->GetImage
74b31181 3846 (
74b31181
VZ
3847 IsExpanded(item) ? wxTreeItemIcon_SelectedExpanded
3848 : wxTreeItemIcon_Selected
3849 );
3850 }
deb1de30 3851 }
74b31181
VZ
3852 break;
3853
5ea47806
VZ
3854 //default:
3855 // for the other messages the return value is ignored and there is
3856 // nothing special to do
3857 }
fd3f686c 3858 return processed;
2bda0e17
KB
3859}
3860
8a000b6b
VZ
3861// ----------------------------------------------------------------------------
3862// State control.
3863// ----------------------------------------------------------------------------
3864
3865// why do they define INDEXTOSTATEIMAGEMASK but not the inverse?
3866#define STATEIMAGEMASKTOINDEX(state) (((state) & TVIS_STATEIMAGEMASK) >> 12)
3867
03966fcb 3868int wxTreeCtrl::DoGetItemState(const wxTreeItemId& item) const
8a000b6b 3869{
03966fcb 3870 wxCHECK_MSG( item.IsOk(), wxTREE_ITEMSTATE_NONE, wxT("invalid tree item") );
8a000b6b 3871
03966fcb
RR
3872 // receive the desired information
3873 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
3874 DoGetItem(&tvItem);
8a000b6b 3875
03966fcb
RR
3876 // state images are one-based
3877 return STATEIMAGEMASKTOINDEX(tvItem.state) - 1;
8a000b6b
VZ
3878}
3879
03966fcb 3880void wxTreeCtrl::DoSetItemState(const wxTreeItemId& item, int state)
8a000b6b 3881{
03966fcb
RR
3882 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
3883
3884 wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK);
8a000b6b 3885
03966fcb
RR
3886 // state images are one-based
3887 // 0 if no state image display (wxTREE_ITEMSTATE_NONE = -1)
3888 tvItem.state = INDEXTOSTATEIMAGEMASK(state + 1);
3889
3890 DoSetItem(&tvItem);
8a000b6b
VZ
3891}
3892
1e6feb95 3893#endif // wxUSE_TREECTRL