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