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