]>
Commit | Line | Data |
---|---|---|
b823f5a1 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treectrl.cpp | |
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 | |
08b7c251 | 9 | // Licence: wxWindows licence |
b823f5a1 | 10 | ///////////////////////////////////////////////////////////////////////////// |
2bda0e17 | 11 | |
08b7c251 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 19 | #ifdef __GNUG__ |
08b7c251 | 20 | #pragma implementation "treectrl.h" |
2bda0e17 KB |
21 | #endif |
22 | ||
23 | // For compilers that support precompilation, includes "wx.h". | |
24 | #include "wx/wxprec.h" | |
25 | ||
26 | #ifdef __BORLANDC__ | |
08b7c251 | 27 | #pragma hdrstop |
2bda0e17 KB |
28 | #endif |
29 | ||
0c589ad0 BM |
30 | #include "wx/window.h" |
31 | #include "wx/msw/private.h" | |
32 | ||
2bda0e17 | 33 | #ifndef WX_PRECOMP |
0c589ad0 BM |
34 | #include "wx/settings.h" |
35 | #endif | |
36 | ||
37 | // Mingw32 is a bit mental even though this is done in winundef | |
38 | #ifdef GetFirstChild | |
d220ae32 | 39 | #undef GetFirstChild |
0c589ad0 | 40 | #endif |
d220ae32 | 41 | |
0c589ad0 | 42 | #ifdef GetNextSibling |
d220ae32 | 43 | #undef GetNextSibling |
2bda0e17 KB |
44 | #endif |
45 | ||
2bda0e17 KB |
46 | #if defined(__WIN95__) |
47 | ||
08b7c251 | 48 | #include "wx/log.h" |
ce3ed50d | 49 | #include "wx/dynarray.h" |
08b7c251 | 50 | #include "wx/imaglist.h" |
ce3ed50d | 51 | #include "wx/msw/treectrl.h" |
08b7c251 | 52 | |
9a05fd8d JS |
53 | #ifdef __GNUWIN32__ |
54 | #include "wx/msw/gnuwin32/extra.h" | |
55 | #endif | |
56 | ||
57c208c5 | 57 | #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) |
08b7c251 | 58 | #include <commctrl.h> |
2bda0e17 KB |
59 | #endif |
60 | ||
61 | // Bug in headers, sometimes | |
62 | #ifndef TVIS_FOCUSED | |
08b7c251 | 63 | #define TVIS_FOCUSED 0x0001 |
2bda0e17 KB |
64 | #endif |
65 | ||
08b7c251 VZ |
66 | // ---------------------------------------------------------------------------- |
67 | // private classes | |
68 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 69 | |
08b7c251 VZ |
70 | // a convenient wrapper around TV_ITEM struct which adds a ctor |
71 | struct wxTreeViewItem : public TV_ITEM | |
72 | { | |
73 | wxTreeViewItem(const wxTreeItemId& item, | |
74 | UINT mask_, UINT stateMask_ = 0) | |
75 | { | |
76 | mask = mask_; | |
77 | stateMask = stateMask_; | |
06e38c8e | 78 | hItem = (HTREEITEM) (WXHTREEITEM) item; |
08b7c251 VZ |
79 | } |
80 | }; | |
2bda0e17 | 81 | |
08b7c251 VZ |
82 | // ---------------------------------------------------------------------------- |
83 | // macros | |
84 | // ---------------------------------------------------------------------------- | |
85 | ||
86 | #if !USE_SHARED_LIBRARY | |
87 | IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxControl) | |
2bda0e17 KB |
88 | #endif |
89 | ||
08b7c251 VZ |
90 | // ---------------------------------------------------------------------------- |
91 | // variables | |
92 | // ---------------------------------------------------------------------------- | |
93 | ||
94 | // handy table for sending events | |
95 | static const wxEventType g_events[2][2] = | |
2bda0e17 | 96 | { |
08b7c251 VZ |
97 | { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING }, |
98 | { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING } | |
99 | }; | |
100 | ||
101 | // ============================================================================ | |
102 | // implementation | |
103 | // ============================================================================ | |
104 | ||
105 | // ---------------------------------------------------------------------------- | |
106 | // construction and destruction | |
107 | // ---------------------------------------------------------------------------- | |
108 | ||
109 | void wxTreeCtrl::Init() | |
110 | { | |
111 | m_imageListNormal = NULL; | |
112 | m_imageListState = NULL; | |
113 | m_textCtrl = NULL; | |
2bda0e17 KB |
114 | } |
115 | ||
08b7c251 VZ |
116 | bool wxTreeCtrl::Create(wxWindow *parent, wxWindowID id, |
117 | const wxPoint& pos, const wxSize& size, | |
118 | long style, const wxValidator& validator, | |
119 | const wxString& name) | |
2bda0e17 | 120 | { |
08b7c251 | 121 | Init(); |
2bda0e17 | 122 | |
08b7c251 | 123 | wxSystemSettings settings; |
2bda0e17 | 124 | |
08b7c251 VZ |
125 | SetName(name); |
126 | SetValidator(validator); | |
2bda0e17 | 127 | |
08b7c251 | 128 | m_windowStyle = style; |
2bda0e17 | 129 | |
08b7c251 | 130 | SetParent(parent); |
2bda0e17 | 131 | |
08b7c251 | 132 | m_windowId = (id == -1) ? NewControlId() : id; |
2bda0e17 | 133 | |
f5ee2e5f JS |
134 | DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | TVS_HASLINES | TVS_SHOWSELALWAYS ; |
135 | ||
2bda0e17 | 136 | |
08b7c251 VZ |
137 | bool want3D; |
138 | WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ; | |
2bda0e17 | 139 | |
08b7c251 VZ |
140 | // Even with extended styles, need to combine with WS_BORDER |
141 | // for them to look right. | |
142 | if ( want3D || wxStyleHasBorder(m_windowStyle) ) | |
143 | { | |
144 | wstyle |= WS_BORDER; | |
145 | } | |
2bda0e17 | 146 | |
08b7c251 VZ |
147 | if ( m_windowStyle & wxTR_HAS_BUTTONS ) |
148 | wstyle |= TVS_HASBUTTONS; | |
2bda0e17 | 149 | |
08b7c251 VZ |
150 | if ( m_windowStyle & wxTR_EDIT_LABELS ) |
151 | wstyle |= TVS_EDITLABELS; | |
2bda0e17 | 152 | |
08b7c251 VZ |
153 | if ( m_windowStyle & wxTR_LINES_AT_ROOT ) |
154 | wstyle |= TVS_LINESATROOT; | |
2bda0e17 | 155 | |
08b7c251 VZ |
156 | // Create the tree control. |
157 | m_hWnd = (WXHWND)::CreateWindowEx | |
158 | ( | |
159 | exStyle, | |
160 | WC_TREEVIEW, | |
837e5743 | 161 | _T(""), |
08b7c251 VZ |
162 | wstyle, |
163 | pos.x, pos.y, size.x, size.y, | |
164 | (HWND)parent->GetHWND(), | |
165 | (HMENU)m_windowId, | |
166 | wxGetInstance(), | |
167 | NULL | |
168 | ); | |
7798a18e | 169 | |
837e5743 | 170 | wxCHECK_MSG( m_hWnd, FALSE, _T("Failed to create tree ctrl") ); |
2bda0e17 | 171 | |
08b7c251 VZ |
172 | if ( parent ) |
173 | parent->AddChild(this); | |
2bda0e17 | 174 | |
08b7c251 | 175 | SubclassWin(m_hWnd); |
2bda0e17 | 176 | |
08b7c251 | 177 | return TRUE; |
2bda0e17 KB |
178 | } |
179 | ||
08b7c251 | 180 | wxTreeCtrl::~wxTreeCtrl() |
2bda0e17 | 181 | { |
08b7c251 | 182 | DeleteTextCtrl(); |
2bda0e17 | 183 | |
08b7c251 VZ |
184 | // delete user data to prevent memory leaks |
185 | DeleteAllItems(); | |
2bda0e17 KB |
186 | } |
187 | ||
08b7c251 VZ |
188 | // ---------------------------------------------------------------------------- |
189 | // accessors | |
190 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 191 | |
08b7c251 | 192 | // simple wrappers which add error checking in debug mode |
2bda0e17 | 193 | |
08b7c251 | 194 | bool wxTreeCtrl::DoGetItem(wxTreeViewItem* tvItem) const |
2bda0e17 | 195 | { |
d220ae32 | 196 | if ( !TreeView_GetItem(GetHwnd(), tvItem) ) |
2bda0e17 | 197 | { |
08b7c251 VZ |
198 | wxLogLastError("TreeView_GetItem"); |
199 | ||
200 | return FALSE; | |
201 | } | |
202 | ||
203 | return TRUE; | |
2bda0e17 KB |
204 | } |
205 | ||
08b7c251 | 206 | void wxTreeCtrl::DoSetItem(wxTreeViewItem* tvItem) |
2bda0e17 | 207 | { |
d220ae32 | 208 | if ( TreeView_SetItem(GetHwnd(), tvItem) == -1 ) |
2bda0e17 | 209 | { |
08b7c251 VZ |
210 | wxLogLastError("TreeView_SetItem"); |
211 | } | |
2bda0e17 KB |
212 | } |
213 | ||
08b7c251 | 214 | size_t wxTreeCtrl::GetCount() const |
2bda0e17 | 215 | { |
d220ae32 | 216 | return (size_t)TreeView_GetCount(GetHwnd()); |
2bda0e17 KB |
217 | } |
218 | ||
08b7c251 | 219 | unsigned int wxTreeCtrl::GetIndent() const |
2bda0e17 | 220 | { |
d220ae32 | 221 | return TreeView_GetIndent(GetHwnd()); |
2bda0e17 KB |
222 | } |
223 | ||
08b7c251 | 224 | void wxTreeCtrl::SetIndent(unsigned int indent) |
2bda0e17 | 225 | { |
d220ae32 | 226 | TreeView_SetIndent(GetHwnd(), indent); |
2bda0e17 KB |
227 | } |
228 | ||
08b7c251 | 229 | wxImageList *wxTreeCtrl::GetImageList() const |
2bda0e17 | 230 | { |
08b7c251 | 231 | return m_imageListNormal; |
2bda0e17 KB |
232 | } |
233 | ||
08b7c251 | 234 | wxImageList *wxTreeCtrl::GetStateImageList() const |
2bda0e17 | 235 | { |
08b7c251 | 236 | return m_imageListNormal; |
2bda0e17 KB |
237 | } |
238 | ||
08b7c251 | 239 | void wxTreeCtrl::SetAnyImageList(wxImageList *imageList, int which) |
2bda0e17 | 240 | { |
08b7c251 | 241 | // no error return |
d220ae32 | 242 | TreeView_SetImageList(GetHwnd(), |
08b7c251 VZ |
243 | imageList ? imageList->GetHIMAGELIST() : 0, |
244 | which); | |
2bda0e17 KB |
245 | } |
246 | ||
08b7c251 | 247 | void wxTreeCtrl::SetImageList(wxImageList *imageList) |
2bda0e17 | 248 | { |
08b7c251 | 249 | SetAnyImageList(m_imageListNormal = imageList, TVSIL_NORMAL); |
2bda0e17 KB |
250 | } |
251 | ||
08b7c251 | 252 | void wxTreeCtrl::SetStateImageList(wxImageList *imageList) |
2bda0e17 | 253 | { |
08b7c251 | 254 | SetAnyImageList(m_imageListState = imageList, TVSIL_STATE); |
2bda0e17 KB |
255 | } |
256 | ||
23fd5130 VZ |
257 | size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item, bool recursively) |
258 | { | |
259 | long cookie; | |
260 | ||
261 | size_t result = 0; | |
262 | ||
263 | wxArrayLong children; | |
264 | wxTreeItemId child = GetFirstChild(item, cookie); | |
265 | while ( child.IsOk() ) | |
266 | { | |
267 | if ( recursively ) | |
268 | { | |
269 | // recursive call | |
270 | result += GetChildrenCount(child, TRUE); | |
271 | } | |
272 | ||
273 | // add the child to the result in any case | |
274 | result++; | |
275 | ||
276 | child = GetNextChild(item, cookie); | |
277 | } | |
278 | ||
279 | return result; | |
280 | } | |
281 | ||
08b7c251 VZ |
282 | // ---------------------------------------------------------------------------- |
283 | // Item access | |
284 | // ---------------------------------------------------------------------------- | |
285 | ||
286 | wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const | |
2bda0e17 | 287 | { |
837e5743 | 288 | wxChar buf[512]; // the size is arbitrary... |
02ce7b72 | 289 | |
08b7c251 VZ |
290 | wxTreeViewItem tvItem(item, TVIF_TEXT); |
291 | tvItem.pszText = buf; | |
292 | tvItem.cchTextMax = WXSIZEOF(buf); | |
293 | if ( !DoGetItem(&tvItem) ) | |
294 | { | |
295 | // don't return some garbage which was on stack, but an empty string | |
837e5743 | 296 | buf[0] = _T('\0'); |
08b7c251 | 297 | } |
2bda0e17 | 298 | |
08b7c251 VZ |
299 | return wxString(buf); |
300 | } | |
2bda0e17 | 301 | |
08b7c251 VZ |
302 | void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text) |
303 | { | |
304 | wxTreeViewItem tvItem(item, TVIF_TEXT); | |
837e5743 | 305 | tvItem.pszText = (wxChar *)text.c_str(); // conversion is ok |
08b7c251 VZ |
306 | DoSetItem(&tvItem); |
307 | } | |
2bda0e17 | 308 | |
08b7c251 VZ |
309 | int wxTreeCtrl::GetItemImage(const wxTreeItemId& item) const |
310 | { | |
311 | wxTreeViewItem tvItem(item, TVIF_IMAGE); | |
312 | DoGetItem(&tvItem); | |
2bda0e17 | 313 | |
08b7c251 VZ |
314 | return tvItem.iImage; |
315 | } | |
2bda0e17 | 316 | |
08b7c251 VZ |
317 | void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image) |
318 | { | |
319 | wxTreeViewItem tvItem(item, TVIF_IMAGE); | |
320 | tvItem.iImage = image; | |
321 | DoSetItem(&tvItem); | |
322 | } | |
2bda0e17 | 323 | |
08b7c251 VZ |
324 | int wxTreeCtrl::GetItemSelectedImage(const wxTreeItemId& item) const |
325 | { | |
326 | wxTreeViewItem tvItem(item, TVIF_SELECTEDIMAGE); | |
327 | DoGetItem(&tvItem); | |
2bda0e17 | 328 | |
08b7c251 | 329 | return tvItem.iSelectedImage; |
2bda0e17 KB |
330 | } |
331 | ||
08b7c251 | 332 | void wxTreeCtrl::SetItemSelectedImage(const wxTreeItemId& item, int image) |
2bda0e17 | 333 | { |
08b7c251 VZ |
334 | wxTreeViewItem tvItem(item, TVIF_SELECTEDIMAGE); |
335 | tvItem.iSelectedImage = image; | |
336 | DoSetItem(&tvItem); | |
2bda0e17 KB |
337 | } |
338 | ||
08b7c251 | 339 | wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const |
2bda0e17 | 340 | { |
08b7c251 VZ |
341 | wxTreeViewItem tvItem(item, TVIF_PARAM); |
342 | if ( !DoGetItem(&tvItem) ) | |
343 | { | |
344 | return NULL; | |
345 | } | |
2bda0e17 | 346 | |
3a5a2f56 | 347 | return (wxTreeItemData *)tvItem.lParam; |
2bda0e17 KB |
348 | } |
349 | ||
08b7c251 | 350 | void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data) |
2bda0e17 | 351 | { |
08b7c251 VZ |
352 | wxTreeViewItem tvItem(item, TVIF_PARAM); |
353 | tvItem.lParam = (LPARAM)data; | |
354 | DoSetItem(&tvItem); | |
355 | } | |
2bda0e17 | 356 | |
3a5a2f56 VZ |
357 | void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has) |
358 | { | |
359 | wxTreeViewItem tvItem(item, TVIF_CHILDREN); | |
360 | tvItem.cChildren = (int)has; | |
361 | DoSetItem(&tvItem); | |
362 | } | |
363 | ||
add28c55 VZ |
364 | void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold) |
365 | { | |
366 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD); | |
367 | tvItem.state = bold ? TVIS_BOLD : 0; | |
368 | DoSetItem(&tvItem); | |
369 | } | |
370 | ||
58a8ab88 JS |
371 | void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, bool highlight) |
372 | { | |
373 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_DROPHILITED); | |
374 | tvItem.state = highlight ? TVIS_DROPHILITED : 0; | |
375 | DoSetItem(&tvItem); | |
376 | } | |
377 | ||
08b7c251 VZ |
378 | // ---------------------------------------------------------------------------- |
379 | // Item status | |
380 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 381 | |
08b7c251 VZ |
382 | bool wxTreeCtrl::IsVisible(const wxTreeItemId& item) const |
383 | { | |
add28c55 | 384 | // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect |
08b7c251 | 385 | RECT rect; |
d220ae32 | 386 | return SendMessage(GetHwnd(), TVM_GETITEMRECT, FALSE, (LPARAM)&rect) != 0; |
06e38c8e | 387 | |
2bda0e17 KB |
388 | } |
389 | ||
08b7c251 | 390 | bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const |
2bda0e17 | 391 | { |
08b7c251 VZ |
392 | wxTreeViewItem tvItem(item, TVIF_CHILDREN); |
393 | DoGetItem(&tvItem); | |
2bda0e17 | 394 | |
08b7c251 | 395 | return tvItem.cChildren != 0; |
2bda0e17 KB |
396 | } |
397 | ||
08b7c251 | 398 | bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const |
2bda0e17 | 399 | { |
08b7c251 VZ |
400 | // probably not a good idea to put it here |
401 | //wxASSERT( ItemHasChildren(item) ); | |
2bda0e17 | 402 | |
08b7c251 VZ |
403 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDED); |
404 | DoGetItem(&tvItem); | |
2bda0e17 | 405 | |
08b7c251 | 406 | return (tvItem.state & TVIS_EXPANDED) != 0; |
2bda0e17 KB |
407 | } |
408 | ||
08b7c251 | 409 | bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const |
2bda0e17 | 410 | { |
08b7c251 VZ |
411 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_SELECTED); |
412 | DoGetItem(&tvItem); | |
2bda0e17 | 413 | |
08b7c251 | 414 | return (tvItem.state & TVIS_SELECTED) != 0; |
2bda0e17 KB |
415 | } |
416 | ||
add28c55 VZ |
417 | bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const |
418 | { | |
419 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD); | |
420 | DoGetItem(&tvItem); | |
421 | ||
422 | return (tvItem.state & TVIS_BOLD) != 0; | |
423 | } | |
424 | ||
08b7c251 VZ |
425 | // ---------------------------------------------------------------------------- |
426 | // navigation | |
427 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 428 | |
08b7c251 VZ |
429 | wxTreeItemId wxTreeCtrl::GetRootItem() const |
430 | { | |
d220ae32 | 431 | return wxTreeItemId((WXHTREEITEM) TreeView_GetRoot(GetHwnd())); |
08b7c251 | 432 | } |
2bda0e17 | 433 | |
08b7c251 VZ |
434 | wxTreeItemId wxTreeCtrl::GetSelection() const |
435 | { | |
d220ae32 | 436 | return wxTreeItemId((WXHTREEITEM) TreeView_GetSelection(GetHwnd())); |
2bda0e17 KB |
437 | } |
438 | ||
08b7c251 | 439 | wxTreeItemId wxTreeCtrl::GetParent(const wxTreeItemId& item) const |
2bda0e17 | 440 | { |
d220ae32 | 441 | return wxTreeItemId((WXHTREEITEM) TreeView_GetParent(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
08b7c251 | 442 | } |
2bda0e17 | 443 | |
08b7c251 | 444 | wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item, |
06e38c8e | 445 | long& _cookie) const |
08b7c251 VZ |
446 | { |
447 | // remember the last child returned in 'cookie' | |
d220ae32 | 448 | _cookie = (long)TreeView_GetChild(GetHwnd(), (HTREEITEM) (WXHTREEITEM)item); |
2bda0e17 | 449 | |
06e38c8e | 450 | return wxTreeItemId((WXHTREEITEM)_cookie); |
2bda0e17 KB |
451 | } |
452 | ||
08b7c251 | 453 | wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item), |
06e38c8e | 454 | long& _cookie) const |
2bda0e17 | 455 | { |
d220ae32 | 456 | wxTreeItemId l = wxTreeItemId((WXHTREEITEM)TreeView_GetNextSibling(GetHwnd(), |
23fd5130 VZ |
457 | (HTREEITEM)(WXHTREEITEM)_cookie)); |
458 | _cookie = (long)l; | |
459 | ||
2e5dddb0 | 460 | return l; |
08b7c251 | 461 | } |
2bda0e17 | 462 | |
978f38c2 VZ |
463 | wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const |
464 | { | |
465 | // can this be done more efficiently? | |
466 | long cookie; | |
467 | ||
468 | wxTreeItemId childLast, | |
2165ad93 | 469 | child = GetFirstChild(item, cookie); |
978f38c2 VZ |
470 | while ( child.IsOk() ) |
471 | { | |
472 | childLast = child; | |
2165ad93 | 473 | child = GetNextChild(item, cookie); |
978f38c2 VZ |
474 | } |
475 | ||
476 | return childLast; | |
477 | } | |
478 | ||
08b7c251 VZ |
479 | wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const |
480 | { | |
d220ae32 | 481 | return wxTreeItemId((WXHTREEITEM) TreeView_GetNextSibling(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
2bda0e17 KB |
482 | } |
483 | ||
08b7c251 | 484 | wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const |
2bda0e17 | 485 | { |
d220ae32 | 486 | return wxTreeItemId((WXHTREEITEM) TreeView_GetPrevSibling(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
2bda0e17 KB |
487 | } |
488 | ||
08b7c251 | 489 | wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const |
2bda0e17 | 490 | { |
d220ae32 | 491 | return wxTreeItemId((WXHTREEITEM) TreeView_GetFirstVisible(GetHwnd())); |
2bda0e17 KB |
492 | } |
493 | ||
08b7c251 | 494 | wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const |
2bda0e17 | 495 | { |
837e5743 OK |
496 | wxASSERT_MSG( IsVisible(item), _T("The item you call GetNextVisible() " |
497 | "for must be visible itself!")); | |
02ce7b72 | 498 | |
d220ae32 | 499 | return wxTreeItemId((WXHTREEITEM) TreeView_GetNextVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
08b7c251 | 500 | } |
02ce7b72 | 501 | |
08b7c251 VZ |
502 | wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const |
503 | { | |
837e5743 OK |
504 | wxASSERT_MSG( IsVisible(item), _T("The item you call GetPrevVisible() " |
505 | "for must be visible itself!")); | |
02ce7b72 | 506 | |
d220ae32 | 507 | return wxTreeItemId((WXHTREEITEM) TreeView_GetPrevVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
08b7c251 | 508 | } |
02ce7b72 | 509 | |
08b7c251 VZ |
510 | // ---------------------------------------------------------------------------- |
511 | // Usual operations | |
512 | // ---------------------------------------------------------------------------- | |
02ce7b72 | 513 | |
08b7c251 VZ |
514 | wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parent, |
515 | wxTreeItemId hInsertAfter, | |
516 | const wxString& text, | |
517 | int image, int selectedImage, | |
518 | wxTreeItemData *data) | |
519 | { | |
520 | TV_INSERTSTRUCT tvIns; | |
06e38c8e JS |
521 | tvIns.hParent = (HTREEITEM) (WXHTREEITEM)parent; |
522 | tvIns.hInsertAfter = (HTREEITEM) (WXHTREEITEM) hInsertAfter; | |
58a8ab88 JS |
523 | |
524 | // This is how we insert the item as the first child: supply a NULL hInsertAfter | |
525 | if (tvIns.hInsertAfter == (HTREEITEM) 0) | |
526 | { | |
527 | tvIns.hInsertAfter = TVI_FIRST; | |
528 | } | |
529 | ||
08b7c251 VZ |
530 | UINT mask = 0; |
531 | if ( !text.IsEmpty() ) | |
532 | { | |
533 | mask |= TVIF_TEXT; | |
837e5743 | 534 | tvIns.item.pszText = (wxChar *)text.c_str(); // cast is ok |
08b7c251 | 535 | } |
02ce7b72 | 536 | |
08b7c251 VZ |
537 | if ( image != -1 ) |
538 | { | |
539 | mask |= TVIF_IMAGE; | |
540 | tvIns.item.iImage = image; | |
3a5a2f56 | 541 | |
6b037754 | 542 | if ( selectedImage == -1 ) |
3a5a2f56 VZ |
543 | { |
544 | // take the same image for selected icon if not specified | |
545 | selectedImage = image; | |
546 | } | |
08b7c251 | 547 | } |
02ce7b72 | 548 | |
08b7c251 VZ |
549 | if ( selectedImage != -1 ) |
550 | { | |
551 | mask |= TVIF_SELECTEDIMAGE; | |
552 | tvIns.item.iSelectedImage = selectedImage; | |
553 | } | |
02ce7b72 | 554 | |
08b7c251 VZ |
555 | if ( data != NULL ) |
556 | { | |
557 | mask |= TVIF_PARAM; | |
558 | tvIns.item.lParam = (LPARAM)data; | |
559 | } | |
02ce7b72 | 560 | |
08b7c251 | 561 | tvIns.item.mask = mask; |
02ce7b72 | 562 | |
d220ae32 | 563 | HTREEITEM id = (HTREEITEM) TreeView_InsertItem(GetHwnd(), &tvIns); |
08b7c251 VZ |
564 | if ( id == 0 ) |
565 | { | |
566 | wxLogLastError("TreeView_InsertItem"); | |
567 | } | |
02ce7b72 | 568 | |
fd3f686c VZ |
569 | if ( data != NULL ) |
570 | { | |
571 | // associate the application tree item with Win32 tree item handle | |
572 | data->SetId((WXHTREEITEM)id); | |
573 | } | |
574 | ||
06e38c8e | 575 | return wxTreeItemId((WXHTREEITEM)id); |
2bda0e17 KB |
576 | } |
577 | ||
08b7c251 VZ |
578 | // for compatibility only |
579 | wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent, | |
580 | const wxString& text, | |
581 | int image, int selImage, | |
582 | long insertAfter) | |
2bda0e17 | 583 | { |
06e38c8e | 584 | return DoInsertItem(parent, (WXHTREEITEM)insertAfter, text, |
08b7c251 | 585 | image, selImage, NULL); |
2bda0e17 KB |
586 | } |
587 | ||
08b7c251 VZ |
588 | wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text, |
589 | int image, int selectedImage, | |
590 | wxTreeItemData *data) | |
2bda0e17 | 591 | { |
06e38c8e | 592 | return DoInsertItem(wxTreeItemId((WXHTREEITEM) 0), (WXHTREEITEM) 0, |
08b7c251 | 593 | text, image, selectedImage, data); |
2bda0e17 KB |
594 | } |
595 | ||
08b7c251 VZ |
596 | wxTreeItemId wxTreeCtrl::PrependItem(const wxTreeItemId& parent, |
597 | const wxString& text, | |
598 | int image, int selectedImage, | |
599 | wxTreeItemData *data) | |
2bda0e17 | 600 | { |
06e38c8e | 601 | return DoInsertItem(parent, (WXHTREEITEM) TVI_FIRST, |
08b7c251 | 602 | text, image, selectedImage, data); |
2bda0e17 KB |
603 | } |
604 | ||
08b7c251 VZ |
605 | wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent, |
606 | const wxTreeItemId& idPrevious, | |
607 | const wxString& text, | |
608 | int image, int selectedImage, | |
609 | wxTreeItemData *data) | |
2bda0e17 | 610 | { |
08b7c251 | 611 | return DoInsertItem(parent, idPrevious, text, image, selectedImage, data); |
2bda0e17 KB |
612 | } |
613 | ||
08b7c251 VZ |
614 | wxTreeItemId wxTreeCtrl::AppendItem(const wxTreeItemId& parent, |
615 | const wxString& text, | |
616 | int image, int selectedImage, | |
617 | wxTreeItemData *data) | |
2bda0e17 | 618 | { |
06e38c8e | 619 | return DoInsertItem(parent, (WXHTREEITEM) TVI_LAST, |
08b7c251 | 620 | text, image, selectedImage, data); |
2bda0e17 KB |
621 | } |
622 | ||
08b7c251 | 623 | void wxTreeCtrl::Delete(const wxTreeItemId& item) |
2bda0e17 | 624 | { |
d220ae32 | 625 | if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM)(WXHTREEITEM)item) ) |
bbcdf8bc | 626 | { |
08b7c251 | 627 | wxLogLastError("TreeView_DeleteItem"); |
bbcdf8bc | 628 | } |
bbcdf8bc JS |
629 | } |
630 | ||
23fd5130 VZ |
631 | // delete all children (but don't delete the item itself) |
632 | void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item) | |
633 | { | |
634 | long cookie; | |
635 | ||
636 | wxArrayLong children; | |
637 | wxTreeItemId child = GetFirstChild(item, cookie); | |
638 | while ( child.IsOk() ) | |
639 | { | |
640 | children.Add((long)(WXHTREEITEM)child); | |
641 | ||
642 | child = GetNextChild(item, cookie); | |
643 | } | |
644 | ||
645 | size_t nCount = children.Count(); | |
646 | for ( size_t n = 0; n < nCount; n++ ) | |
647 | { | |
d220ae32 | 648 | if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM)children[n]) ) |
23fd5130 VZ |
649 | { |
650 | wxLogLastError("TreeView_DeleteItem"); | |
651 | } | |
652 | } | |
653 | } | |
654 | ||
08b7c251 | 655 | void wxTreeCtrl::DeleteAllItems() |
bbcdf8bc | 656 | { |
d220ae32 | 657 | if ( !TreeView_DeleteAllItems(GetHwnd()) ) |
bbcdf8bc | 658 | { |
08b7c251 | 659 | wxLogLastError("TreeView_DeleteAllItems"); |
bbcdf8bc | 660 | } |
2bda0e17 KB |
661 | } |
662 | ||
08b7c251 | 663 | void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag) |
2bda0e17 | 664 | { |
dd3646fd VZ |
665 | wxASSERT_MSG( flag == TVE_COLLAPSE || |
666 | flag == (TVE_COLLAPSE | TVE_COLLAPSERESET) || | |
667 | flag == TVE_EXPAND || | |
668 | flag == TVE_TOGGLE, | |
837e5743 | 669 | _T("Unknown flag in wxTreeCtrl::DoExpand") ); |
08b7c251 VZ |
670 | |
671 | // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must | |
d220ae32 VZ |
672 | // emulate them. This behaviour has changed slightly with comctl32.dll |
673 | // v 4.70 - now it does send them but only the first time. To maintain | |
674 | // compatible behaviour and also in order to not have surprises with the | |
675 | // future versions, don't rely on this and still do everything ourselves. | |
676 | // To avoid that the messages be sent twice when the item is expanded for | |
677 | // the first time we must clear TVIS_EXPANDEDONCE style manually. | |
678 | ||
679 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDEDONCE); | |
680 | tvItem.state = 0; | |
681 | DoSetItem(&tvItem); | |
682 | ||
683 | if ( TreeView_Expand(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item, flag) != 0 ) | |
08b7c251 VZ |
684 | { |
685 | wxTreeEvent event(wxEVT_NULL, m_windowId); | |
686 | event.m_item = item; | |
687 | ||
688 | bool isExpanded = IsExpanded(item); | |
2bda0e17 | 689 | |
08b7c251 | 690 | event.SetEventObject(this); |
2bda0e17 | 691 | |
d220ae32 | 692 | // FIXME return value of {EXPAND|COLLAPS}ING event handler is discarded |
08b7c251 VZ |
693 | event.SetEventType(g_events[isExpanded][TRUE]); |
694 | GetEventHandler()->ProcessEvent(event); | |
2bda0e17 | 695 | |
08b7c251 VZ |
696 | event.SetEventType(g_events[isExpanded][FALSE]); |
697 | GetEventHandler()->ProcessEvent(event); | |
698 | } | |
d220ae32 | 699 | //else: change didn't took place, so do nothing at all |
2bda0e17 KB |
700 | } |
701 | ||
08b7c251 | 702 | void wxTreeCtrl::Expand(const wxTreeItemId& item) |
2bda0e17 | 703 | { |
08b7c251 | 704 | DoExpand(item, TVE_EXPAND); |
2bda0e17 | 705 | } |
2bda0e17 | 706 | |
08b7c251 | 707 | void wxTreeCtrl::Collapse(const wxTreeItemId& item) |
2bda0e17 | 708 | { |
08b7c251 | 709 | DoExpand(item, TVE_COLLAPSE); |
2bda0e17 KB |
710 | } |
711 | ||
08b7c251 | 712 | void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item) |
2bda0e17 | 713 | { |
dd3646fd | 714 | DoExpand(item, TVE_COLLAPSE | TVE_COLLAPSERESET); |
2bda0e17 KB |
715 | } |
716 | ||
08b7c251 | 717 | void wxTreeCtrl::Toggle(const wxTreeItemId& item) |
2bda0e17 | 718 | { |
08b7c251 | 719 | DoExpand(item, TVE_TOGGLE); |
2bda0e17 KB |
720 | } |
721 | ||
42c5812d UU |
722 | void wxTreeCtrl::ExpandItem(const wxTreeItemId& item, int action) |
723 | { | |
724 | DoExpand(item, action); | |
725 | } | |
726 | ||
08b7c251 | 727 | void wxTreeCtrl::Unselect() |
2bda0e17 | 728 | { |
06e38c8e | 729 | SelectItem(wxTreeItemId((WXHTREEITEM) 0)); |
08b7c251 | 730 | } |
02ce7b72 | 731 | |
08b7c251 VZ |
732 | void wxTreeCtrl::SelectItem(const wxTreeItemId& item) |
733 | { | |
d220ae32 VZ |
734 | // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive |
735 | // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so | |
736 | // send them ourselves | |
737 | ||
738 | wxTreeEvent event(wxEVT_NULL, m_windowId); | |
739 | event.m_item = item; | |
740 | event.SetEventObject(this); | |
741 | ||
742 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING); | |
743 | if ( !GetEventHandler()->ProcessEvent(event) || event.IsAllowed() ) | |
2bda0e17 | 744 | { |
d220ae32 VZ |
745 | if ( !TreeView_SelectItem(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item) ) |
746 | { | |
747 | wxLogLastError("TreeView_SelectItem"); | |
748 | } | |
749 | else | |
750 | { | |
751 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED); | |
752 | (void)GetEventHandler()->ProcessEvent(event); | |
753 | } | |
2bda0e17 | 754 | } |
d220ae32 | 755 | //else: program vetoed the change |
08b7c251 | 756 | } |
2bda0e17 | 757 | |
08b7c251 VZ |
758 | void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item) |
759 | { | |
760 | // no error return | |
d220ae32 | 761 | TreeView_EnsureVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item); |
08b7c251 VZ |
762 | } |
763 | ||
764 | void wxTreeCtrl::ScrollTo(const wxTreeItemId& item) | |
765 | { | |
d220ae32 | 766 | if ( !TreeView_SelectSetFirstVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item) ) |
2bda0e17 | 767 | { |
08b7c251 | 768 | wxLogLastError("TreeView_SelectSetFirstVisible"); |
2bda0e17 | 769 | } |
08b7c251 VZ |
770 | } |
771 | ||
772 | wxTextCtrl* wxTreeCtrl::GetEditControl() const | |
773 | { | |
774 | return m_textCtrl; | |
775 | } | |
776 | ||
777 | void wxTreeCtrl::DeleteTextCtrl() | |
778 | { | |
779 | if ( m_textCtrl ) | |
2bda0e17 | 780 | { |
08b7c251 VZ |
781 | m_textCtrl->UnsubclassWin(); |
782 | m_textCtrl->SetHWND(0); | |
783 | delete m_textCtrl; | |
784 | m_textCtrl = NULL; | |
2bda0e17 | 785 | } |
08b7c251 | 786 | } |
2bda0e17 | 787 | |
08b7c251 VZ |
788 | wxTextCtrl* wxTreeCtrl::EditLabel(const wxTreeItemId& item, |
789 | wxClassInfo* textControlClass) | |
790 | { | |
791 | wxASSERT( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)) ); | |
792 | ||
d220ae32 | 793 | HWND hWnd = (HWND) TreeView_EditLabel(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item); |
2bda0e17 | 794 | |
837e5743 | 795 | wxCHECK_MSG( hWnd, NULL, _T("Can't edit tree ctrl label") ); |
2bda0e17 | 796 | |
08b7c251 | 797 | DeleteTextCtrl(); |
2bda0e17 | 798 | |
08b7c251 VZ |
799 | m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject(); |
800 | m_textCtrl->SetHWND((WXHWND)hWnd); | |
801 | m_textCtrl->SubclassWin((WXHWND)hWnd); | |
2bda0e17 | 802 | |
08b7c251 | 803 | return m_textCtrl; |
2bda0e17 KB |
804 | } |
805 | ||
08b7c251 VZ |
806 | // End label editing, optionally cancelling the edit |
807 | void wxTreeCtrl::EndEditLabel(const wxTreeItemId& item, bool discardChanges) | |
2bda0e17 | 808 | { |
d220ae32 | 809 | TreeView_EndEditLabelNow(GetHwnd(), discardChanges); |
08b7c251 VZ |
810 | |
811 | DeleteTextCtrl(); | |
2bda0e17 KB |
812 | } |
813 | ||
08b7c251 | 814 | wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& flags) |
2bda0e17 | 815 | { |
08b7c251 VZ |
816 | TV_HITTESTINFO hitTestInfo; |
817 | hitTestInfo.pt.x = (int)point.x; | |
818 | hitTestInfo.pt.y = (int)point.y; | |
2bda0e17 | 819 | |
d220ae32 | 820 | TreeView_HitTest(GetHwnd(), &hitTestInfo); |
2bda0e17 | 821 | |
08b7c251 VZ |
822 | flags = 0; |
823 | ||
824 | // avoid repetition | |
825 | #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \ | |
826 | flags |= wxTREE_HITTEST_##flag | |
827 | ||
828 | TRANSLATE_FLAG(ABOVE); | |
829 | TRANSLATE_FLAG(BELOW); | |
830 | TRANSLATE_FLAG(NOWHERE); | |
831 | TRANSLATE_FLAG(ONITEMBUTTON); | |
832 | TRANSLATE_FLAG(ONITEMICON); | |
833 | TRANSLATE_FLAG(ONITEMINDENT); | |
834 | TRANSLATE_FLAG(ONITEMLABEL); | |
835 | TRANSLATE_FLAG(ONITEMRIGHT); | |
836 | TRANSLATE_FLAG(ONITEMSTATEICON); | |
837 | TRANSLATE_FLAG(TOLEFT); | |
838 | TRANSLATE_FLAG(TORIGHT); | |
2bda0e17 | 839 | |
08b7c251 VZ |
840 | #undef TRANSLATE_FLAG |
841 | ||
06e38c8e | 842 | return wxTreeItemId((WXHTREEITEM) hitTestInfo.hItem); |
08b7c251 VZ |
843 | } |
844 | ||
f7c832a7 VZ |
845 | bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item, |
846 | wxRect& rect, | |
847 | bool textOnly) const | |
848 | { | |
849 | RECT rc; | |
d220ae32 | 850 | if ( TreeView_GetItemRect(GetHwnd(), (HTREEITEM)(WXHTREEITEM)item, |
f7c832a7 VZ |
851 | &rc, textOnly) ) |
852 | { | |
853 | rect = wxRect(wxPoint(rc.left, rc.top), wxPoint(rc.right, rc.bottom)); | |
854 | ||
855 | return TRUE; | |
856 | } | |
857 | else | |
858 | { | |
859 | // couldn't retrieve rect: for example, item isn't visible | |
860 | return FALSE; | |
861 | } | |
862 | } | |
863 | ||
23fd5130 VZ |
864 | // ---------------------------------------------------------------------------- |
865 | // sorting stuff | |
866 | // ---------------------------------------------------------------------------- | |
f7c832a7 | 867 | |
23fd5130 VZ |
868 | static int CALLBACK TreeView_CompareCallback(wxTreeItemData *pItem1, |
869 | wxTreeItemData *pItem2, | |
870 | wxTreeCtrl *tree) | |
871 | { | |
096c9f9b VZ |
872 | wxCHECK_MSG( pItem1 && pItem2, 0, |
873 | _T("sorting tree without data doesn't make sense") ); | |
874 | ||
23fd5130 VZ |
875 | return tree->OnCompareItems(pItem1->GetId(), pItem2->GetId()); |
876 | } | |
877 | ||
95aabccc VZ |
878 | int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1, |
879 | const wxTreeItemId& item2) | |
08b7c251 | 880 | { |
837e5743 | 881 | return wxStrcmp(GetItemText(item1), GetItemText(item2)); |
95aabccc VZ |
882 | } |
883 | ||
884 | void wxTreeCtrl::SortChildren(const wxTreeItemId& item) | |
885 | { | |
886 | // rely on the fact that TreeView_SortChildren does the same thing as our | |
23fd5130 VZ |
887 | // default behaviour, i.e. sorts items alphabetically and so call it |
888 | // directly if we're not in derived class (much more efficient!) | |
889 | if ( GetClassInfo() == CLASSINFO(wxTreeCtrl) ) | |
2bda0e17 | 890 | { |
d220ae32 | 891 | TreeView_SortChildren(GetHwnd(), (HTREEITEM)(WXHTREEITEM)item, 0); |
2bda0e17 | 892 | } |
08b7c251 | 893 | else |
2bda0e17 | 894 | { |
62448488 | 895 | TV_SORTCB tvSort; |
23fd5130 VZ |
896 | tvSort.hParent = (HTREEITEM)(WXHTREEITEM)item; |
897 | tvSort.lpfnCompare = (PFNTVCOMPARE)TreeView_CompareCallback; | |
898 | tvSort.lParam = (LPARAM)this; | |
d220ae32 | 899 | TreeView_SortChildrenCB(GetHwnd(), &tvSort, 0 /* reserved */); |
2bda0e17 | 900 | } |
08b7c251 | 901 | } |
2bda0e17 | 902 | |
08b7c251 VZ |
903 | // ---------------------------------------------------------------------------- |
904 | // implementation | |
905 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 906 | |
08b7c251 VZ |
907 | bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id) |
908 | { | |
909 | if ( cmd == EN_UPDATE ) | |
2bda0e17 | 910 | { |
08b7c251 VZ |
911 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id); |
912 | event.SetEventObject( this ); | |
913 | ProcessCommand(event); | |
2bda0e17 | 914 | } |
08b7c251 | 915 | else if ( cmd == EN_KILLFOCUS ) |
2bda0e17 | 916 | { |
08b7c251 VZ |
917 | wxCommandEvent event(wxEVT_KILL_FOCUS, id); |
918 | event.SetEventObject( this ); | |
919 | ProcessCommand(event); | |
2bda0e17 | 920 | } |
08b7c251 | 921 | else |
2bda0e17 | 922 | { |
08b7c251 VZ |
923 | // nothing done |
924 | return FALSE; | |
2bda0e17 | 925 | } |
08b7c251 VZ |
926 | |
927 | // command processed | |
928 | return TRUE; | |
929 | } | |
930 | ||
931 | // process WM_NOTIFY Windows message | |
a23fd0e1 | 932 | bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
08b7c251 VZ |
933 | { |
934 | wxTreeEvent event(wxEVT_NULL, m_windowId); | |
935 | wxEventType eventType = wxEVT_NULL; | |
936 | NMHDR *hdr = (NMHDR *)lParam; | |
937 | ||
938 | switch ( hdr->code ) | |
2bda0e17 | 939 | { |
08b7c251 VZ |
940 | case TVN_BEGINDRAG: |
941 | eventType = wxEVT_COMMAND_TREE_BEGIN_DRAG; | |
942 | // fall through | |
943 | ||
944 | case TVN_BEGINRDRAG: | |
945 | { | |
946 | if ( eventType == wxEVT_NULL ) | |
947 | eventType = wxEVT_COMMAND_TREE_BEGIN_RDRAG; | |
948 | //else: left drag, already set above | |
949 | ||
950 | NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam; | |
951 | ||
06e38c8e | 952 | event.m_item = (WXHTREEITEM) tv->itemNew.hItem; |
08b7c251 VZ |
953 | event.m_pointDrag = wxPoint(tv->ptDrag.x, tv->ptDrag.y); |
954 | break; | |
955 | } | |
956 | ||
957 | case TVN_BEGINLABELEDIT: | |
958 | { | |
959 | eventType = wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT; | |
960 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
961 | ||
06e38c8e | 962 | event.m_item = (WXHTREEITEM) info->item.hItem; |
08b7c251 VZ |
963 | break; |
964 | } | |
965 | ||
966 | case TVN_DELETEITEM: | |
967 | { | |
968 | eventType = wxEVT_COMMAND_TREE_DELETE_ITEM; | |
969 | NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam; | |
970 | ||
06e38c8e | 971 | event.m_item = (WXHTREEITEM) tv->itemOld.hItem; |
08b7c251 VZ |
972 | break; |
973 | } | |
974 | ||
975 | case TVN_ENDLABELEDIT: | |
976 | { | |
977 | eventType = wxEVT_COMMAND_TREE_END_LABEL_EDIT; | |
978 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
979 | ||
06e38c8e | 980 | event.m_item = (WXHTREEITEM) info->item.hItem; |
08b7c251 VZ |
981 | break; |
982 | } | |
983 | ||
984 | case TVN_GETDISPINFO: | |
985 | eventType = wxEVT_COMMAND_TREE_GET_INFO; | |
986 | // fall through | |
987 | ||
988 | case TVN_SETDISPINFO: | |
989 | { | |
990 | if ( eventType == wxEVT_NULL ) | |
991 | eventType = wxEVT_COMMAND_TREE_SET_INFO; | |
992 | //else: get, already set above | |
993 | ||
994 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
995 | ||
06e38c8e | 996 | event.m_item = (WXHTREEITEM) info->item.hItem; |
08b7c251 VZ |
997 | break; |
998 | } | |
999 | ||
1000 | case TVN_ITEMEXPANDING: | |
1001 | event.m_code = FALSE; | |
1002 | // fall through | |
1003 | ||
1004 | case TVN_ITEMEXPANDED: | |
1005 | { | |
1006 | NM_TREEVIEW* tv = (NM_TREEVIEW*)lParam; | |
1007 | ||
1008 | bool expand = FALSE; | |
1009 | switch ( tv->action ) | |
1010 | { | |
1011 | case TVE_EXPAND: | |
1012 | expand = TRUE; | |
1013 | break; | |
1014 | ||
1015 | case TVE_COLLAPSE: | |
1016 | expand = FALSE; | |
1017 | break; | |
1018 | ||
1019 | default: | |
837e5743 OK |
1020 | wxLogDebug(_T("unexpected code %d in TVN_ITEMEXPAND " |
1021 | "message"), tv->action); | |
08b7c251 VZ |
1022 | } |
1023 | ||
06e38c8e | 1024 | bool ing = (hdr->code == TVN_ITEMEXPANDING); |
08b7c251 VZ |
1025 | eventType = g_events[expand][ing]; |
1026 | ||
06e38c8e | 1027 | event.m_item = (WXHTREEITEM) tv->itemNew.hItem; |
08b7c251 VZ |
1028 | break; |
1029 | } | |
1030 | ||
1031 | case TVN_KEYDOWN: | |
1032 | { | |
1033 | eventType = wxEVT_COMMAND_TREE_KEY_DOWN; | |
1034 | TV_KEYDOWN *info = (TV_KEYDOWN *)lParam; | |
1035 | ||
1036 | event.m_code = wxCharCodeMSWToWX(info->wVKey); | |
23fd5130 VZ |
1037 | |
1038 | // a separate event for this case | |
1039 | if ( info->wVKey == VK_SPACE || info->wVKey == VK_RETURN ) | |
1040 | { | |
1041 | wxTreeEvent event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, | |
1042 | m_windowId); | |
1043 | event2.SetEventObject(this); | |
1044 | ||
1045 | GetEventHandler()->ProcessEvent(event2); | |
1046 | } | |
08b7c251 VZ |
1047 | break; |
1048 | } | |
1049 | ||
1050 | case TVN_SELCHANGED: | |
1051 | eventType = wxEVT_COMMAND_TREE_SEL_CHANGED; | |
1052 | // fall through | |
1053 | ||
1054 | case TVN_SELCHANGING: | |
1055 | { | |
1056 | if ( eventType == wxEVT_NULL ) | |
1057 | eventType = wxEVT_COMMAND_TREE_SEL_CHANGING; | |
1058 | //else: already set above | |
1059 | ||
1060 | NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam; | |
1061 | ||
06e38c8e JS |
1062 | event.m_item = (WXHTREEITEM) tv->itemNew.hItem; |
1063 | event.m_itemOld = (WXHTREEITEM) tv->itemOld.hItem; | |
08b7c251 VZ |
1064 | break; |
1065 | } | |
1066 | ||
1067 | default: | |
a23fd0e1 | 1068 | return wxControl::MSWOnNotify(idCtrl, lParam, result); |
2bda0e17 | 1069 | } |
08b7c251 VZ |
1070 | |
1071 | event.SetEventObject(this); | |
1072 | event.SetEventType(eventType); | |
1073 | ||
fd3f686c | 1074 | bool processed = GetEventHandler()->ProcessEvent(event); |
08b7c251 VZ |
1075 | |
1076 | // post processing | |
fd3f686c | 1077 | if ( hdr->code == TVN_DELETEITEM ) |
2bda0e17 | 1078 | { |
08b7c251 VZ |
1079 | // NB: we might process this message using wxWindows event tables, but |
1080 | // due to overhead of wxWin event system we prefer to do it here | |
1081 | // (otherwise deleting a tree with many items is just too slow) | |
fd3f686c VZ |
1082 | NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam; |
1083 | wxTreeItemData *data = (wxTreeItemData *)tv->itemOld.lParam; | |
1084 | delete data; // may be NULL, ok | |
8162b848 | 1085 | processed = TRUE; // Make sure we don't get called twice |
2bda0e17 | 1086 | } |
08b7c251 | 1087 | |
fd3f686c VZ |
1088 | *result = !event.IsAllowed(); |
1089 | ||
1090 | return processed; | |
2bda0e17 KB |
1091 | } |
1092 | ||
08b7c251 | 1093 | // ---------------------------------------------------------------------------- |
2bda0e17 | 1094 | // Tree event |
08b7c251 VZ |
1095 | // ---------------------------------------------------------------------------- |
1096 | ||
92976ab6 | 1097 | IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent, wxNotifyEvent) |
2bda0e17 | 1098 | |
08b7c251 | 1099 | wxTreeEvent::wxTreeEvent(wxEventType commandType, int id) |
fd3f686c | 1100 | : wxNotifyEvent(commandType, id) |
2bda0e17 | 1101 | { |
08b7c251 VZ |
1102 | m_code = 0; |
1103 | m_itemOld = 0; | |
2bda0e17 KB |
1104 | } |
1105 | ||
08b7c251 | 1106 | #endif // __WIN95__ |
2bda0e17 | 1107 |