]>
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 | ||
0c589ad0 BM |
33 | // Mingw32 is a bit mental even though this is done in winundef |
34 | #ifdef GetFirstChild | |
d220ae32 | 35 | #undef GetFirstChild |
0c589ad0 | 36 | #endif |
d220ae32 | 37 | |
0c589ad0 | 38 | #ifdef GetNextSibling |
d220ae32 | 39 | #undef GetNextSibling |
2bda0e17 KB |
40 | #endif |
41 | ||
2bda0e17 KB |
42 | #if defined(__WIN95__) |
43 | ||
08b7c251 | 44 | #include "wx/log.h" |
ce3ed50d | 45 | #include "wx/dynarray.h" |
08b7c251 | 46 | #include "wx/imaglist.h" |
53f69f7a | 47 | #include "wx/treectrl.h" |
77cff606 | 48 | #include "wx/settings.h" |
08b7c251 | 49 | |
9a05fd8d | 50 | #ifdef __GNUWIN32__ |
65fd5cb0 | 51 | #ifndef wxUSE_NORLANDER_HEADERS |
9a05fd8d JS |
52 | #include "wx/msw/gnuwin32/extra.h" |
53 | #endif | |
65fd5cb0 | 54 | #endif |
9a05fd8d | 55 | |
65fd5cb0 | 56 | #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS) |
08b7c251 | 57 | #include <commctrl.h> |
2bda0e17 KB |
58 | #endif |
59 | ||
60 | // Bug in headers, sometimes | |
61 | #ifndef TVIS_FOCUSED | |
08b7c251 | 62 | #define TVIS_FOCUSED 0x0001 |
2bda0e17 KB |
63 | #endif |
64 | ||
08b7c251 VZ |
65 | // ---------------------------------------------------------------------------- |
66 | // private classes | |
67 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 68 | |
08b7c251 | 69 | // a convenient wrapper around TV_ITEM struct which adds a ctor |
f3ef286f | 70 | #ifdef __VISUALC__ |
197dd9af | 71 | #pragma warning( disable : 4097 ) |
f3ef286f JS |
72 | #endif |
73 | ||
08b7c251 VZ |
74 | struct wxTreeViewItem : public TV_ITEM |
75 | { | |
9dfbf520 VZ |
76 | wxTreeViewItem(const wxTreeItemId& item, // the item handle |
77 | UINT mask_, // fields which are valid | |
78 | UINT stateMask_ = 0) // for TVIF_STATE only | |
08b7c251 | 79 | { |
9dfbf520 VZ |
80 | // hItem member is always valid |
81 | mask = mask_ | TVIF_HANDLE; | |
08b7c251 | 82 | stateMask = stateMask_; |
06e38c8e | 83 | hItem = (HTREEITEM) (WXHTREEITEM) item; |
08b7c251 VZ |
84 | } |
85 | }; | |
f3ef286f JS |
86 | |
87 | #ifdef __VISUALC__ | |
197dd9af | 88 | #pragma warning( default : 4097 ) |
f3ef286f | 89 | #endif |
2bda0e17 | 90 | |
9dfbf520 VZ |
91 | // a class which encapsulates the tree traversal logic: it vists all (unless |
92 | // OnVisit() returns FALSE) items under the given one | |
93 | class wxTreeTraversal | |
94 | { | |
95 | public: | |
96 | wxTreeTraversal(const wxTreeCtrl *tree) | |
97 | { | |
98 | m_tree = tree; | |
99 | } | |
100 | ||
101 | // do traverse the tree: visit all items (recursively by default) under the | |
102 | // given one; return TRUE if all items were traversed or FALSE if the | |
103 | // traversal was aborted because OnVisit returned FALSE | |
104 | bool DoTraverse(const wxTreeItemId& root, bool recursively = TRUE); | |
105 | ||
106 | // override this function to do whatever is needed for each item, return | |
107 | // FALSE to stop traversing | |
108 | virtual bool OnVisit(const wxTreeItemId& item) = 0; | |
109 | ||
110 | protected: | |
111 | const wxTreeCtrl *GetTree() const { return m_tree; } | |
112 | ||
113 | private: | |
114 | bool Traverse(const wxTreeItemId& root, bool recursively); | |
115 | ||
116 | const wxTreeCtrl *m_tree; | |
117 | }; | |
118 | ||
74b31181 VZ |
119 | // internal class for getting the selected items |
120 | class TraverseSelections : public wxTreeTraversal | |
121 | { | |
122 | public: | |
123 | TraverseSelections(const wxTreeCtrl *tree, | |
124 | wxArrayTreeItemIds& selections) | |
125 | : wxTreeTraversal(tree), m_selections(selections) | |
126 | { | |
127 | m_selections.Empty(); | |
128 | ||
129 | DoTraverse(tree->GetRootItem()); | |
130 | } | |
131 | ||
132 | virtual bool OnVisit(const wxTreeItemId& item) | |
133 | { | |
134 | if ( GetTree()->IsItemChecked(item) ) | |
135 | { | |
136 | m_selections.Add(item); | |
137 | } | |
138 | ||
139 | return TRUE; | |
140 | } | |
141 | ||
142 | private: | |
143 | wxArrayTreeItemIds& m_selections; | |
144 | }; | |
145 | ||
146 | // internal class for counting tree items | |
147 | class TraverseCounter : public wxTreeTraversal | |
148 | { | |
149 | public: | |
150 | TraverseCounter(const wxTreeCtrl *tree, | |
151 | const wxTreeItemId& root, | |
152 | bool recursively) | |
153 | : wxTreeTraversal(tree) | |
154 | { | |
155 | m_count = 0; | |
156 | ||
157 | DoTraverse(root, recursively); | |
158 | } | |
159 | ||
160 | virtual bool OnVisit(const wxTreeItemId& item) | |
161 | { | |
162 | m_count++; | |
163 | ||
164 | return TRUE; | |
165 | } | |
166 | ||
167 | size_t GetCount() const { return m_count; } | |
168 | ||
169 | private: | |
170 | size_t m_count; | |
171 | }; | |
172 | ||
173 | // ---------------------------------------------------------------------------- | |
174 | // This class is needed for support of different images: the Win32 common | |
175 | // control natively supports only 2 images (the normal one and another for the | |
176 | // selected state). We wish to provide support for 2 more of them for folder | |
177 | // items (i.e. those which have children): for expanded state and for expanded | |
178 | // selected state. For this we use this structure to store the additional items | |
179 | // images. | |
180 | // | |
181 | // There is only one problem with this: when we retrieve the item's data, we | |
182 | // don't know whether we get a pointer to wxTreeItemData or | |
183 | // wxTreeItemIndirectData. So we have to maintain a list of all items which | |
184 | // have indirect data inside the listctrl itself. | |
185 | // ---------------------------------------------------------------------------- | |
696e1ea0 | 186 | |
74b31181 VZ |
187 | class wxTreeItemIndirectData |
188 | { | |
189 | public: | |
190 | // ctor associates this data with the item and the real item data becomes | |
191 | // available through our GetData() method | |
192 | wxTreeItemIndirectData(wxTreeCtrl *tree, const wxTreeItemId& item) | |
193 | { | |
194 | for ( size_t n = 0; n < WXSIZEOF(m_images); n++ ) | |
195 | { | |
196 | m_images[n] = -1; | |
197 | } | |
198 | ||
199 | // save the old data | |
200 | m_data = tree->GetItemData(item); | |
201 | ||
202 | // and set ourselves as the new one | |
203 | tree->SetIndirectItemData(item, this); | |
204 | } | |
205 | ||
206 | // dtor deletes the associated data as well | |
207 | ~wxTreeItemIndirectData() { delete m_data; } | |
208 | ||
209 | // accessors | |
210 | // get the real data associated with the item | |
211 | wxTreeItemData *GetData() const { return m_data; } | |
212 | // change it | |
213 | void SetData(wxTreeItemData *data) { m_data = data; } | |
214 | ||
215 | // do we have such image? | |
216 | bool HasImage(wxTreeItemIcon which) const { return m_images[which] != -1; } | |
217 | // get image | |
218 | int GetImage(wxTreeItemIcon which) const { return m_images[which]; } | |
219 | // change it | |
220 | void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; } | |
221 | ||
222 | private: | |
223 | // all the images associated with the item | |
224 | int m_images[wxTreeItemIcon_Max]; | |
225 | ||
226 | wxTreeItemData *m_data; | |
227 | }; | |
228 | ||
08b7c251 VZ |
229 | // ---------------------------------------------------------------------------- |
230 | // macros | |
231 | // ---------------------------------------------------------------------------- | |
232 | ||
08b7c251 | 233 | IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxControl) |
2bda0e17 | 234 | |
08b7c251 VZ |
235 | // ---------------------------------------------------------------------------- |
236 | // variables | |
237 | // ---------------------------------------------------------------------------- | |
238 | ||
239 | // handy table for sending events | |
240 | static const wxEventType g_events[2][2] = | |
2bda0e17 | 241 | { |
08b7c251 VZ |
242 | { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxEVT_COMMAND_TREE_ITEM_COLLAPSING }, |
243 | { wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxEVT_COMMAND_TREE_ITEM_EXPANDING } | |
244 | }; | |
245 | ||
246 | // ============================================================================ | |
247 | // implementation | |
248 | // ============================================================================ | |
249 | ||
9dfbf520 VZ |
250 | // ---------------------------------------------------------------------------- |
251 | // tree traversal | |
252 | // ---------------------------------------------------------------------------- | |
253 | ||
254 | bool wxTreeTraversal::DoTraverse(const wxTreeItemId& root, bool recursively) | |
255 | { | |
256 | if ( !OnVisit(root) ) | |
257 | return FALSE; | |
258 | ||
259 | return Traverse(root, recursively); | |
260 | } | |
261 | ||
262 | bool wxTreeTraversal::Traverse(const wxTreeItemId& root, bool recursively) | |
263 | { | |
264 | long cookie; | |
265 | wxTreeItemId child = m_tree->GetFirstChild(root, cookie); | |
266 | while ( child.IsOk() ) | |
267 | { | |
268 | // depth first traversal | |
269 | if ( recursively && !Traverse(child, TRUE) ) | |
270 | return FALSE; | |
271 | ||
272 | if ( !OnVisit(child) ) | |
273 | return FALSE; | |
274 | ||
275 | child = m_tree->GetNextChild(root, cookie); | |
276 | } | |
277 | ||
278 | return TRUE; | |
279 | } | |
280 | ||
08b7c251 VZ |
281 | // ---------------------------------------------------------------------------- |
282 | // construction and destruction | |
283 | // ---------------------------------------------------------------------------- | |
284 | ||
285 | void wxTreeCtrl::Init() | |
286 | { | |
287 | m_imageListNormal = NULL; | |
288 | m_imageListState = NULL; | |
289 | m_textCtrl = NULL; | |
696e1ea0 | 290 | m_hasAnyAttr = FALSE; |
2bda0e17 KB |
291 | } |
292 | ||
9dfbf520 VZ |
293 | bool wxTreeCtrl::Create(wxWindow *parent, |
294 | wxWindowID id, | |
295 | const wxPoint& pos, | |
296 | const wxSize& size, | |
297 | long style, | |
298 | const wxValidator& validator, | |
08b7c251 | 299 | const wxString& name) |
2bda0e17 | 300 | { |
08b7c251 | 301 | Init(); |
2bda0e17 | 302 | |
9dfbf520 VZ |
303 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) |
304 | return FALSE; | |
2bda0e17 | 305 | |
5ea47806 VZ |
306 | DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | |
307 | TVS_HASLINES | TVS_SHOWSELALWAYS; | |
2bda0e17 | 308 | |
08b7c251 VZ |
309 | if ( m_windowStyle & wxTR_HAS_BUTTONS ) |
310 | wstyle |= TVS_HASBUTTONS; | |
2bda0e17 | 311 | |
08b7c251 VZ |
312 | if ( m_windowStyle & wxTR_EDIT_LABELS ) |
313 | wstyle |= TVS_EDITLABELS; | |
2bda0e17 | 314 | |
08b7c251 VZ |
315 | if ( m_windowStyle & wxTR_LINES_AT_ROOT ) |
316 | wstyle |= TVS_LINESATROOT; | |
2bda0e17 | 317 | |
a925b006 | 318 | #if !defined( __GNUWIN32__ ) && !defined( __BORLANDC__ ) && !defined( __WATCOMC__ ) && !defined(wxUSE_NORLANDER_HEADERS) |
9dfbf520 VZ |
319 | // we emulate the multiple selection tree controls by using checkboxes: set |
320 | // up the image list we need for this if we do have multiple selections | |
6474416b | 321 | #if !defined(__VISUALC__) || (__VISUALC__ > 1010) |
9dfbf520 | 322 | if ( m_windowStyle & wxTR_MULTIPLE ) |
10fcf31a | 323 | wstyle |= TVS_CHECKBOXES; |
2996bcde | 324 | #endif |
2899e223 | 325 | #endif |
9dfbf520 | 326 | |
08b7c251 | 327 | // Create the tree control. |
9dfbf520 VZ |
328 | if ( !MSWCreateControl(WC_TREEVIEW, wstyle) ) |
329 | return FALSE; | |
330 | ||
5aeeab14 RD |
331 | SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOW)); |
332 | SetForegroundColour(wxWindow::GetParent()->GetForegroundColour()); | |
333 | ||
9dfbf520 VZ |
334 | // VZ: this is some experimental code which may be used to get the |
335 | // TVS_CHECKBOXES style functionality for comctl32.dll < 4.71. | |
336 | // AFAIK, the standard DLL does about the same thing anyhow. | |
337 | #if 0 | |
338 | if ( m_windowStyle & wxTR_MULTIPLE ) | |
339 | { | |
340 | wxBitmap bmp; | |
341 | ||
342 | // create the DC compatible with the current screen | |
343 | HDC hdcMem = CreateCompatibleDC(NULL); | |
344 | ||
345 | // create a mono bitmap of the standard size | |
346 | int x = GetSystemMetrics(SM_CXMENUCHECK); | |
347 | int y = GetSystemMetrics(SM_CYMENUCHECK); | |
348 | wxImageList imagelistCheckboxes(x, y, FALSE, 2); | |
349 | HBITMAP hbmpCheck = CreateBitmap(x, y, // bitmap size | |
350 | 1, // # of color planes | |
351 | 1, // # bits needed for one pixel | |
352 | 0); // array containing colour data | |
353 | SelectObject(hdcMem, hbmpCheck); | |
354 | ||
355 | // then draw a check mark into it | |
356 | RECT rect = { 0, 0, x, y }; | |
357 | if ( !::DrawFrameControl(hdcMem, &rect, | |
358 | DFC_BUTTON, | |
359 | DFCS_BUTTONCHECK | DFCS_CHECKED) ) | |
360 | { | |
223d09f6 | 361 | wxLogLastError(wxT("DrawFrameControl(check)")); |
9dfbf520 VZ |
362 | } |
363 | ||
364 | bmp.SetHBITMAP((WXHBITMAP)hbmpCheck); | |
365 | imagelistCheckboxes.Add(bmp); | |
366 | ||
367 | if ( !::DrawFrameControl(hdcMem, &rect, | |
368 | DFC_BUTTON, | |
369 | DFCS_BUTTONCHECK) ) | |
370 | { | |
223d09f6 | 371 | wxLogLastError(wxT("DrawFrameControl(uncheck)")); |
9dfbf520 VZ |
372 | } |
373 | ||
374 | bmp.SetHBITMAP((WXHBITMAP)hbmpCheck); | |
375 | imagelistCheckboxes.Add(bmp); | |
376 | ||
377 | // clean up | |
378 | ::DeleteDC(hdcMem); | |
379 | ||
380 | // set the imagelist | |
381 | SetStateImageList(&imagelistCheckboxes); | |
382 | } | |
383 | #endif // 0 | |
384 | ||
385 | SetSize(pos.x, pos.y, size.x, size.y); | |
2bda0e17 | 386 | |
08b7c251 | 387 | return TRUE; |
2bda0e17 KB |
388 | } |
389 | ||
08b7c251 | 390 | wxTreeCtrl::~wxTreeCtrl() |
2bda0e17 | 391 | { |
696e1ea0 VZ |
392 | // delete any attributes |
393 | if ( m_hasAnyAttr ) | |
394 | { | |
395 | for ( wxNode *node = m_attrs.Next(); node; node = m_attrs.Next() ) | |
396 | { | |
397 | delete (wxTreeItemAttr *)node->Data(); | |
398 | } | |
399 | ||
400 | // prevent TVN_DELETEITEM handler from deleting the attributes again! | |
401 | m_hasAnyAttr = FALSE; | |
402 | } | |
403 | ||
08b7c251 | 404 | DeleteTextCtrl(); |
2bda0e17 | 405 | |
08b7c251 VZ |
406 | // delete user data to prevent memory leaks |
407 | DeleteAllItems(); | |
2bda0e17 KB |
408 | } |
409 | ||
08b7c251 VZ |
410 | // ---------------------------------------------------------------------------- |
411 | // accessors | |
412 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 413 | |
08b7c251 | 414 | // simple wrappers which add error checking in debug mode |
2bda0e17 | 415 | |
08b7c251 | 416 | bool wxTreeCtrl::DoGetItem(wxTreeViewItem* tvItem) const |
2bda0e17 | 417 | { |
d220ae32 | 418 | if ( !TreeView_GetItem(GetHwnd(), tvItem) ) |
2bda0e17 | 419 | { |
08b7c251 VZ |
420 | wxLogLastError("TreeView_GetItem"); |
421 | ||
422 | return FALSE; | |
423 | } | |
424 | ||
425 | return TRUE; | |
2bda0e17 KB |
426 | } |
427 | ||
08b7c251 | 428 | void wxTreeCtrl::DoSetItem(wxTreeViewItem* tvItem) |
2bda0e17 | 429 | { |
d220ae32 | 430 | if ( TreeView_SetItem(GetHwnd(), tvItem) == -1 ) |
2bda0e17 | 431 | { |
08b7c251 VZ |
432 | wxLogLastError("TreeView_SetItem"); |
433 | } | |
2bda0e17 KB |
434 | } |
435 | ||
08b7c251 | 436 | size_t wxTreeCtrl::GetCount() const |
2bda0e17 | 437 | { |
d220ae32 | 438 | return (size_t)TreeView_GetCount(GetHwnd()); |
2bda0e17 KB |
439 | } |
440 | ||
08b7c251 | 441 | unsigned int wxTreeCtrl::GetIndent() const |
2bda0e17 | 442 | { |
d220ae32 | 443 | return TreeView_GetIndent(GetHwnd()); |
2bda0e17 KB |
444 | } |
445 | ||
08b7c251 | 446 | void wxTreeCtrl::SetIndent(unsigned int indent) |
2bda0e17 | 447 | { |
d220ae32 | 448 | TreeView_SetIndent(GetHwnd(), indent); |
2bda0e17 KB |
449 | } |
450 | ||
08b7c251 | 451 | wxImageList *wxTreeCtrl::GetImageList() const |
2bda0e17 | 452 | { |
08b7c251 | 453 | return m_imageListNormal; |
2bda0e17 KB |
454 | } |
455 | ||
08b7c251 | 456 | wxImageList *wxTreeCtrl::GetStateImageList() const |
2bda0e17 | 457 | { |
08b7c251 | 458 | return m_imageListNormal; |
2bda0e17 KB |
459 | } |
460 | ||
08b7c251 | 461 | void wxTreeCtrl::SetAnyImageList(wxImageList *imageList, int which) |
2bda0e17 | 462 | { |
08b7c251 | 463 | // no error return |
d220ae32 | 464 | TreeView_SetImageList(GetHwnd(), |
08b7c251 VZ |
465 | imageList ? imageList->GetHIMAGELIST() : 0, |
466 | which); | |
2bda0e17 KB |
467 | } |
468 | ||
08b7c251 | 469 | void wxTreeCtrl::SetImageList(wxImageList *imageList) |
2bda0e17 | 470 | { |
08b7c251 | 471 | SetAnyImageList(m_imageListNormal = imageList, TVSIL_NORMAL); |
2bda0e17 KB |
472 | } |
473 | ||
08b7c251 | 474 | void wxTreeCtrl::SetStateImageList(wxImageList *imageList) |
2bda0e17 | 475 | { |
08b7c251 | 476 | SetAnyImageList(m_imageListState = imageList, TVSIL_STATE); |
2bda0e17 KB |
477 | } |
478 | ||
33961d59 RR |
479 | size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item, |
480 | bool recursively) const | |
481 | { | |
482 | TraverseCounter counter(this, item, recursively); | |
23fd5130 | 483 | |
73974df1 | 484 | return counter.GetCount() - 1; |
23fd5130 VZ |
485 | } |
486 | ||
08b7c251 VZ |
487 | // ---------------------------------------------------------------------------- |
488 | // Item access | |
489 | // ---------------------------------------------------------------------------- | |
490 | ||
491 | wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const | |
2bda0e17 | 492 | { |
837e5743 | 493 | wxChar buf[512]; // the size is arbitrary... |
02ce7b72 | 494 | |
08b7c251 VZ |
495 | wxTreeViewItem tvItem(item, TVIF_TEXT); |
496 | tvItem.pszText = buf; | |
497 | tvItem.cchTextMax = WXSIZEOF(buf); | |
498 | if ( !DoGetItem(&tvItem) ) | |
499 | { | |
500 | // don't return some garbage which was on stack, but an empty string | |
223d09f6 | 501 | buf[0] = wxT('\0'); |
08b7c251 | 502 | } |
2bda0e17 | 503 | |
08b7c251 VZ |
504 | return wxString(buf); |
505 | } | |
2bda0e17 | 506 | |
08b7c251 VZ |
507 | void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text) |
508 | { | |
509 | wxTreeViewItem tvItem(item, TVIF_TEXT); | |
837e5743 | 510 | tvItem.pszText = (wxChar *)text.c_str(); // conversion is ok |
08b7c251 VZ |
511 | DoSetItem(&tvItem); |
512 | } | |
2bda0e17 | 513 | |
74b31181 VZ |
514 | int wxTreeCtrl::DoGetItemImageFromData(const wxTreeItemId& item, |
515 | wxTreeItemIcon which) const | |
516 | { | |
517 | wxTreeViewItem tvItem(item, TVIF_PARAM); | |
518 | if ( !DoGetItem(&tvItem) ) | |
519 | { | |
520 | return -1; | |
521 | } | |
522 | ||
523 | return ((wxTreeItemIndirectData *)tvItem.lParam)->GetImage(which); | |
524 | } | |
525 | ||
526 | void wxTreeCtrl::DoSetItemImageFromData(const wxTreeItemId& item, | |
527 | int image, | |
528 | wxTreeItemIcon which) const | |
529 | { | |
530 | wxTreeViewItem tvItem(item, TVIF_PARAM); | |
531 | if ( !DoGetItem(&tvItem) ) | |
532 | { | |
533 | return; | |
534 | } | |
535 | ||
536 | wxTreeItemIndirectData *data = ((wxTreeItemIndirectData *)tvItem.lParam); | |
537 | ||
538 | data->SetImage(image, which); | |
539 | ||
540 | // make sure that we have selected images as well | |
541 | if ( which == wxTreeItemIcon_Normal && | |
542 | !data->HasImage(wxTreeItemIcon_Selected) ) | |
543 | { | |
544 | data->SetImage(image, wxTreeItemIcon_Selected); | |
545 | } | |
546 | ||
547 | if ( which == wxTreeItemIcon_Expanded && | |
548 | !data->HasImage(wxTreeItemIcon_SelectedExpanded) ) | |
549 | { | |
550 | data->SetImage(image, wxTreeItemIcon_SelectedExpanded); | |
551 | } | |
552 | } | |
553 | ||
9dfbf520 VZ |
554 | void wxTreeCtrl::DoSetItemImages(const wxTreeItemId& item, |
555 | int image, | |
556 | int imageSel) | |
557 | { | |
558 | wxTreeViewItem tvItem(item, TVIF_IMAGE | TVIF_SELECTEDIMAGE); | |
559 | tvItem.iSelectedImage = imageSel; | |
560 | tvItem.iImage = image; | |
561 | DoSetItem(&tvItem); | |
562 | } | |
563 | ||
74b31181 VZ |
564 | int wxTreeCtrl::GetItemImage(const wxTreeItemId& item, |
565 | wxTreeItemIcon which) const | |
08b7c251 | 566 | { |
74b31181 VZ |
567 | if ( HasIndirectData(item) ) |
568 | { | |
569 | return DoGetItemImageFromData(item, which); | |
570 | } | |
2bda0e17 | 571 | |
74b31181 VZ |
572 | UINT mask; |
573 | switch ( which ) | |
574 | { | |
575 | default: | |
223d09f6 | 576 | wxFAIL_MSG( wxT("unknown tree item image type") ); |
2bda0e17 | 577 | |
74b31181 VZ |
578 | case wxTreeItemIcon_Normal: |
579 | mask = TVIF_IMAGE; | |
580 | break; | |
2bda0e17 | 581 | |
74b31181 VZ |
582 | case wxTreeItemIcon_Selected: |
583 | mask = TVIF_SELECTEDIMAGE; | |
584 | break; | |
585 | ||
586 | case wxTreeItemIcon_Expanded: | |
587 | case wxTreeItemIcon_SelectedExpanded: | |
588 | return -1; | |
589 | } | |
590 | ||
591 | wxTreeViewItem tvItem(item, mask); | |
08b7c251 | 592 | DoGetItem(&tvItem); |
2bda0e17 | 593 | |
74b31181 | 594 | return mask == TVIF_IMAGE ? tvItem.iImage : tvItem.iSelectedImage; |
2bda0e17 KB |
595 | } |
596 | ||
74b31181 VZ |
597 | void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image, |
598 | wxTreeItemIcon which) | |
2bda0e17 | 599 | { |
74b31181 VZ |
600 | int imageNormal, imageSel; |
601 | switch ( which ) | |
602 | { | |
603 | default: | |
223d09f6 | 604 | wxFAIL_MSG( wxT("unknown tree item image type") ); |
74b31181 VZ |
605 | |
606 | case wxTreeItemIcon_Normal: | |
607 | imageNormal = image; | |
608 | imageSel = GetItemSelectedImage(item); | |
609 | break; | |
610 | ||
611 | case wxTreeItemIcon_Selected: | |
612 | imageNormal = GetItemImage(item); | |
613 | imageSel = image; | |
614 | break; | |
615 | ||
616 | case wxTreeItemIcon_Expanded: | |
617 | case wxTreeItemIcon_SelectedExpanded: | |
618 | if ( !HasIndirectData(item) ) | |
619 | { | |
620 | // we need to get the old images first, because after we create | |
621 | // the wxTreeItemIndirectData GetItemXXXImage() will use it to | |
622 | // get the images | |
623 | imageNormal = GetItemImage(item); | |
624 | imageSel = GetItemSelectedImage(item); | |
625 | ||
626 | // if it doesn't have it yet, add it | |
627 | wxTreeItemIndirectData *data = new | |
628 | wxTreeItemIndirectData(this, item); | |
629 | ||
630 | // copy the data to the new location | |
631 | data->SetImage(imageNormal, wxTreeItemIcon_Normal); | |
632 | data->SetImage(imageSel, wxTreeItemIcon_Selected); | |
633 | } | |
634 | ||
635 | DoSetItemImageFromData(item, image, which); | |
636 | ||
637 | // reset the normal/selected images because we won't use them any | |
638 | // more - now they're stored inside the indirect data | |
639 | imageNormal = | |
640 | imageSel = I_IMAGECALLBACK; | |
641 | break; | |
642 | } | |
643 | ||
9dfbf520 VZ |
644 | // NB: at least in version 5.00.0518.9 of comctl32.dll we need to always |
645 | // change both normal and selected image - otherwise the change simply | |
646 | // doesn't take place! | |
74b31181 | 647 | DoSetItemImages(item, imageNormal, imageSel); |
2bda0e17 KB |
648 | } |
649 | ||
08b7c251 | 650 | wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const |
2bda0e17 | 651 | { |
08b7c251 VZ |
652 | wxTreeViewItem tvItem(item, TVIF_PARAM); |
653 | if ( !DoGetItem(&tvItem) ) | |
654 | { | |
655 | return NULL; | |
656 | } | |
2bda0e17 | 657 | |
74b31181 VZ |
658 | if ( HasIndirectData(item) ) |
659 | { | |
660 | return ((wxTreeItemIndirectData *)tvItem.lParam)->GetData(); | |
661 | } | |
662 | else | |
663 | { | |
664 | return (wxTreeItemData *)tvItem.lParam; | |
665 | } | |
2bda0e17 KB |
666 | } |
667 | ||
08b7c251 | 668 | void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data) |
2bda0e17 | 669 | { |
08b7c251 | 670 | wxTreeViewItem tvItem(item, TVIF_PARAM); |
74b31181 VZ |
671 | |
672 | if ( HasIndirectData(item) ) | |
673 | { | |
674 | if ( DoGetItem(&tvItem) ) | |
675 | { | |
676 | ((wxTreeItemIndirectData *)tvItem.lParam)->SetData(data); | |
677 | } | |
678 | else | |
679 | { | |
223d09f6 | 680 | wxFAIL_MSG( wxT("failed to change tree items data") ); |
74b31181 VZ |
681 | } |
682 | } | |
683 | else | |
684 | { | |
685 | tvItem.lParam = (LPARAM)data; | |
686 | DoSetItem(&tvItem); | |
687 | } | |
688 | } | |
689 | ||
690 | void wxTreeCtrl::SetIndirectItemData(const wxTreeItemId& item, | |
691 | wxTreeItemIndirectData *data) | |
692 | { | |
693 | // this should never happen because it's unnecessary and will probably lead | |
694 | // to crash too because the code elsewhere supposes that the pointer the | |
695 | // wxTreeItemIndirectData has is a real wxItemData and not | |
696 | // wxTreeItemIndirectData as well | |
223d09f6 | 697 | wxASSERT_MSG( !HasIndirectData(item), wxT("setting indirect data twice?") ); |
74b31181 VZ |
698 | |
699 | SetItemData(item, (wxTreeItemData *)data); | |
700 | ||
701 | m_itemsWithIndirectData.Add(item); | |
702 | } | |
703 | ||
704 | bool wxTreeCtrl::HasIndirectData(const wxTreeItemId& item) const | |
705 | { | |
706 | return m_itemsWithIndirectData.Index(item) != wxNOT_FOUND; | |
08b7c251 | 707 | } |
2bda0e17 | 708 | |
3a5a2f56 VZ |
709 | void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has) |
710 | { | |
711 | wxTreeViewItem tvItem(item, TVIF_CHILDREN); | |
712 | tvItem.cChildren = (int)has; | |
713 | DoSetItem(&tvItem); | |
714 | } | |
715 | ||
add28c55 VZ |
716 | void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold) |
717 | { | |
718 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD); | |
719 | tvItem.state = bold ? TVIS_BOLD : 0; | |
720 | DoSetItem(&tvItem); | |
721 | } | |
722 | ||
58a8ab88 JS |
723 | void wxTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, bool highlight) |
724 | { | |
725 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_DROPHILITED); | |
726 | tvItem.state = highlight ? TVIS_DROPHILITED : 0; | |
727 | DoSetItem(&tvItem); | |
728 | } | |
729 | ||
696e1ea0 VZ |
730 | void wxTreeCtrl::SetItemTextColour(const wxTreeItemId& item, |
731 | const wxColour& col) | |
732 | { | |
733 | m_hasAnyAttr = TRUE; | |
734 | ||
735 | long id = (long)(WXHTREEITEM)item; | |
736 | wxTreeItemAttr *attr = (wxTreeItemAttr *)m_attrs.Get(id); | |
737 | if ( !attr ) | |
738 | { | |
739 | attr = new wxTreeItemAttr; | |
740 | m_attrs.Put(id, (wxObject *)attr); | |
741 | } | |
742 | ||
743 | attr->SetTextColour(col); | |
744 | } | |
745 | ||
746 | void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item, | |
747 | const wxColour& col) | |
748 | { | |
749 | m_hasAnyAttr = TRUE; | |
750 | ||
751 | long id = (long)(WXHTREEITEM)item; | |
752 | wxTreeItemAttr *attr = (wxTreeItemAttr *)m_attrs.Get(id); | |
753 | if ( !attr ) | |
754 | { | |
755 | attr = new wxTreeItemAttr; | |
756 | m_attrs.Put(id, (wxObject *)attr); | |
757 | } | |
758 | ||
759 | attr->SetBackgroundColour(col); | |
760 | } | |
761 | ||
762 | void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font) | |
763 | { | |
764 | m_hasAnyAttr = TRUE; | |
765 | ||
766 | long id = (long)(WXHTREEITEM)item; | |
767 | wxTreeItemAttr *attr = (wxTreeItemAttr *)m_attrs.Get(id); | |
768 | if ( !attr ) | |
769 | { | |
770 | attr = new wxTreeItemAttr; | |
771 | m_attrs.Put(id, (wxObject *)attr); | |
772 | } | |
773 | ||
774 | attr->SetFont(font); | |
775 | } | |
776 | ||
08b7c251 VZ |
777 | // ---------------------------------------------------------------------------- |
778 | // Item status | |
779 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 780 | |
08b7c251 VZ |
781 | bool wxTreeCtrl::IsVisible(const wxTreeItemId& item) const |
782 | { | |
add28c55 | 783 | // Bug in Gnu-Win32 headers, so don't use the macro TreeView_GetItemRect |
08b7c251 | 784 | RECT rect; |
955be36c VZ |
785 | |
786 | // this ugliness comes directly from MSDN - it *is* the correct way to pass | |
787 | // the HTREEITEM with TVM_GETITEMRECT | |
788 | *(WXHTREEITEM *)&rect = (WXHTREEITEM)item; | |
789 | ||
790 | // FALSE means get item rect for the whole item, not only text | |
1c74a900 | 791 | return SendMessage(GetHwnd(), TVM_GETITEMRECT, FALSE, (LPARAM)&rect) != 0; |
06e38c8e | 792 | |
2bda0e17 KB |
793 | } |
794 | ||
08b7c251 | 795 | bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const |
2bda0e17 | 796 | { |
08b7c251 VZ |
797 | wxTreeViewItem tvItem(item, TVIF_CHILDREN); |
798 | DoGetItem(&tvItem); | |
2bda0e17 | 799 | |
08b7c251 | 800 | return tvItem.cChildren != 0; |
2bda0e17 KB |
801 | } |
802 | ||
08b7c251 | 803 | bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const |
2bda0e17 | 804 | { |
08b7c251 VZ |
805 | // probably not a good idea to put it here |
806 | //wxASSERT( ItemHasChildren(item) ); | |
2bda0e17 | 807 | |
08b7c251 VZ |
808 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDED); |
809 | DoGetItem(&tvItem); | |
2bda0e17 | 810 | |
08b7c251 | 811 | return (tvItem.state & TVIS_EXPANDED) != 0; |
2bda0e17 KB |
812 | } |
813 | ||
08b7c251 | 814 | bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const |
2bda0e17 | 815 | { |
08b7c251 VZ |
816 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_SELECTED); |
817 | DoGetItem(&tvItem); | |
2bda0e17 | 818 | |
08b7c251 | 819 | return (tvItem.state & TVIS_SELECTED) != 0; |
2bda0e17 KB |
820 | } |
821 | ||
add28c55 VZ |
822 | bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const |
823 | { | |
824 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_BOLD); | |
825 | DoGetItem(&tvItem); | |
826 | ||
827 | return (tvItem.state & TVIS_BOLD) != 0; | |
828 | } | |
829 | ||
08b7c251 VZ |
830 | // ---------------------------------------------------------------------------- |
831 | // navigation | |
832 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 833 | |
08b7c251 VZ |
834 | wxTreeItemId wxTreeCtrl::GetRootItem() const |
835 | { | |
d220ae32 | 836 | return wxTreeItemId((WXHTREEITEM) TreeView_GetRoot(GetHwnd())); |
08b7c251 | 837 | } |
2bda0e17 | 838 | |
08b7c251 VZ |
839 | wxTreeItemId wxTreeCtrl::GetSelection() const |
840 | { | |
9dfbf520 | 841 | wxCHECK_MSG( !(m_windowStyle & wxTR_MULTIPLE), (WXHTREEITEM)0, |
223d09f6 | 842 | wxT("this only works with single selection controls") ); |
9dfbf520 | 843 | |
d220ae32 | 844 | return wxTreeItemId((WXHTREEITEM) TreeView_GetSelection(GetHwnd())); |
2bda0e17 KB |
845 | } |
846 | ||
08b7c251 | 847 | wxTreeItemId wxTreeCtrl::GetParent(const wxTreeItemId& item) const |
2bda0e17 | 848 | { |
d220ae32 | 849 | return wxTreeItemId((WXHTREEITEM) TreeView_GetParent(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
08b7c251 | 850 | } |
2bda0e17 | 851 | |
08b7c251 | 852 | wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item, |
06e38c8e | 853 | long& _cookie) const |
08b7c251 VZ |
854 | { |
855 | // remember the last child returned in 'cookie' | |
d220ae32 | 856 | _cookie = (long)TreeView_GetChild(GetHwnd(), (HTREEITEM) (WXHTREEITEM)item); |
2bda0e17 | 857 | |
06e38c8e | 858 | return wxTreeItemId((WXHTREEITEM)_cookie); |
2bda0e17 KB |
859 | } |
860 | ||
08b7c251 | 861 | wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& WXUNUSED(item), |
06e38c8e | 862 | long& _cookie) const |
2bda0e17 | 863 | { |
d220ae32 | 864 | wxTreeItemId l = wxTreeItemId((WXHTREEITEM)TreeView_GetNextSibling(GetHwnd(), |
23fd5130 VZ |
865 | (HTREEITEM)(WXHTREEITEM)_cookie)); |
866 | _cookie = (long)l; | |
867 | ||
2e5dddb0 | 868 | return l; |
08b7c251 | 869 | } |
2bda0e17 | 870 | |
978f38c2 VZ |
871 | wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const |
872 | { | |
873 | // can this be done more efficiently? | |
874 | long cookie; | |
875 | ||
876 | wxTreeItemId childLast, | |
2165ad93 | 877 | child = GetFirstChild(item, cookie); |
978f38c2 VZ |
878 | while ( child.IsOk() ) |
879 | { | |
880 | childLast = child; | |
2165ad93 | 881 | child = GetNextChild(item, cookie); |
978f38c2 VZ |
882 | } |
883 | ||
884 | return childLast; | |
885 | } | |
886 | ||
08b7c251 VZ |
887 | wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const |
888 | { | |
d220ae32 | 889 | return wxTreeItemId((WXHTREEITEM) TreeView_GetNextSibling(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
2bda0e17 KB |
890 | } |
891 | ||
08b7c251 | 892 | wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const |
2bda0e17 | 893 | { |
d220ae32 | 894 | return wxTreeItemId((WXHTREEITEM) TreeView_GetPrevSibling(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
2bda0e17 KB |
895 | } |
896 | ||
08b7c251 | 897 | wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const |
2bda0e17 | 898 | { |
d220ae32 | 899 | return wxTreeItemId((WXHTREEITEM) TreeView_GetFirstVisible(GetHwnd())); |
2bda0e17 KB |
900 | } |
901 | ||
08b7c251 | 902 | wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const |
2bda0e17 | 903 | { |
223d09f6 | 904 | wxASSERT_MSG( IsVisible(item), wxT("The item you call GetNextVisible() " |
837e5743 | 905 | "for must be visible itself!")); |
02ce7b72 | 906 | |
d220ae32 | 907 | return wxTreeItemId((WXHTREEITEM) TreeView_GetNextVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
08b7c251 | 908 | } |
02ce7b72 | 909 | |
08b7c251 VZ |
910 | wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const |
911 | { | |
223d09f6 | 912 | wxASSERT_MSG( IsVisible(item), wxT("The item you call GetPrevVisible() " |
837e5743 | 913 | "for must be visible itself!")); |
02ce7b72 | 914 | |
d220ae32 | 915 | return wxTreeItemId((WXHTREEITEM) TreeView_GetPrevVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item)); |
08b7c251 | 916 | } |
02ce7b72 | 917 | |
9dfbf520 VZ |
918 | // ---------------------------------------------------------------------------- |
919 | // multiple selections emulation | |
920 | // ---------------------------------------------------------------------------- | |
921 | ||
922 | bool wxTreeCtrl::IsItemChecked(const wxTreeItemId& item) const | |
923 | { | |
924 | // receive the desired information. | |
925 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK); | |
926 | DoGetItem(&tvItem); | |
927 | ||
928 | // state image indices are 1 based | |
929 | return ((tvItem.state >> 12) - 1) == 1; | |
930 | } | |
931 | ||
932 | void wxTreeCtrl::SetItemCheck(const wxTreeItemId& item, bool check) | |
933 | { | |
934 | // receive the desired information. | |
935 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_STATEIMAGEMASK); | |
936 | ||
937 | // state images are one-based | |
938 | tvItem.state = (check ? 2 : 1) << 12; | |
939 | ||
940 | DoSetItem(&tvItem); | |
941 | } | |
942 | ||
33961d59 RR |
943 | size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds& selections) const |
944 | { | |
945 | TraverseSelections selector(this, selections); | |
9dfbf520 VZ |
946 | |
947 | return selections.GetCount(); | |
948 | } | |
949 | ||
08b7c251 VZ |
950 | // ---------------------------------------------------------------------------- |
951 | // Usual operations | |
952 | // ---------------------------------------------------------------------------- | |
02ce7b72 | 953 | |
08b7c251 VZ |
954 | wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parent, |
955 | wxTreeItemId hInsertAfter, | |
956 | const wxString& text, | |
957 | int image, int selectedImage, | |
958 | wxTreeItemData *data) | |
959 | { | |
960 | TV_INSERTSTRUCT tvIns; | |
06e38c8e JS |
961 | tvIns.hParent = (HTREEITEM) (WXHTREEITEM)parent; |
962 | tvIns.hInsertAfter = (HTREEITEM) (WXHTREEITEM) hInsertAfter; | |
58a8ab88 | 963 | |
74b31181 VZ |
964 | // this is how we insert the item as the first child: supply a NULL |
965 | // hInsertAfter | |
966 | if ( !tvIns.hInsertAfter ) | |
58a8ab88 JS |
967 | { |
968 | tvIns.hInsertAfter = TVI_FIRST; | |
969 | } | |
970 | ||
08b7c251 VZ |
971 | UINT mask = 0; |
972 | if ( !text.IsEmpty() ) | |
973 | { | |
974 | mask |= TVIF_TEXT; | |
837e5743 | 975 | tvIns.item.pszText = (wxChar *)text.c_str(); // cast is ok |
08b7c251 | 976 | } |
02ce7b72 | 977 | |
08b7c251 VZ |
978 | if ( image != -1 ) |
979 | { | |
980 | mask |= TVIF_IMAGE; | |
981 | tvIns.item.iImage = image; | |
3a5a2f56 | 982 | |
6b037754 | 983 | if ( selectedImage == -1 ) |
3a5a2f56 VZ |
984 | { |
985 | // take the same image for selected icon if not specified | |
986 | selectedImage = image; | |
987 | } | |
08b7c251 | 988 | } |
02ce7b72 | 989 | |
08b7c251 VZ |
990 | if ( selectedImage != -1 ) |
991 | { | |
992 | mask |= TVIF_SELECTEDIMAGE; | |
993 | tvIns.item.iSelectedImage = selectedImage; | |
994 | } | |
02ce7b72 | 995 | |
08b7c251 VZ |
996 | if ( data != NULL ) |
997 | { | |
998 | mask |= TVIF_PARAM; | |
999 | tvIns.item.lParam = (LPARAM)data; | |
1000 | } | |
02ce7b72 | 1001 | |
08b7c251 | 1002 | tvIns.item.mask = mask; |
02ce7b72 | 1003 | |
d220ae32 | 1004 | HTREEITEM id = (HTREEITEM) TreeView_InsertItem(GetHwnd(), &tvIns); |
08b7c251 VZ |
1005 | if ( id == 0 ) |
1006 | { | |
1007 | wxLogLastError("TreeView_InsertItem"); | |
1008 | } | |
02ce7b72 | 1009 | |
fd3f686c VZ |
1010 | if ( data != NULL ) |
1011 | { | |
1012 | // associate the application tree item with Win32 tree item handle | |
1013 | data->SetId((WXHTREEITEM)id); | |
1014 | } | |
1015 | ||
06e38c8e | 1016 | return wxTreeItemId((WXHTREEITEM)id); |
2bda0e17 KB |
1017 | } |
1018 | ||
08b7c251 VZ |
1019 | // for compatibility only |
1020 | wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent, | |
1021 | const wxString& text, | |
1022 | int image, int selImage, | |
1023 | long insertAfter) | |
2bda0e17 | 1024 | { |
06e38c8e | 1025 | return DoInsertItem(parent, (WXHTREEITEM)insertAfter, text, |
08b7c251 | 1026 | image, selImage, NULL); |
2bda0e17 KB |
1027 | } |
1028 | ||
08b7c251 VZ |
1029 | wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text, |
1030 | int image, int selectedImage, | |
1031 | wxTreeItemData *data) | |
2bda0e17 | 1032 | { |
06e38c8e | 1033 | return DoInsertItem(wxTreeItemId((WXHTREEITEM) 0), (WXHTREEITEM) 0, |
08b7c251 | 1034 | text, image, selectedImage, data); |
2bda0e17 KB |
1035 | } |
1036 | ||
08b7c251 VZ |
1037 | wxTreeItemId wxTreeCtrl::PrependItem(const wxTreeItemId& parent, |
1038 | const wxString& text, | |
1039 | int image, int selectedImage, | |
1040 | wxTreeItemData *data) | |
2bda0e17 | 1041 | { |
06e38c8e | 1042 | return DoInsertItem(parent, (WXHTREEITEM) TVI_FIRST, |
08b7c251 | 1043 | text, image, selectedImage, data); |
2bda0e17 KB |
1044 | } |
1045 | ||
08b7c251 VZ |
1046 | wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parent, |
1047 | const wxTreeItemId& idPrevious, | |
1048 | const wxString& text, | |
1049 | int image, int selectedImage, | |
1050 | wxTreeItemData *data) | |
2bda0e17 | 1051 | { |
08b7c251 | 1052 | return DoInsertItem(parent, idPrevious, text, image, selectedImage, data); |
2bda0e17 KB |
1053 | } |
1054 | ||
08b7c251 VZ |
1055 | wxTreeItemId wxTreeCtrl::AppendItem(const wxTreeItemId& parent, |
1056 | const wxString& text, | |
1057 | int image, int selectedImage, | |
1058 | wxTreeItemData *data) | |
2bda0e17 | 1059 | { |
06e38c8e | 1060 | return DoInsertItem(parent, (WXHTREEITEM) TVI_LAST, |
08b7c251 | 1061 | text, image, selectedImage, data); |
2bda0e17 KB |
1062 | } |
1063 | ||
08b7c251 | 1064 | void wxTreeCtrl::Delete(const wxTreeItemId& item) |
2bda0e17 | 1065 | { |
d220ae32 | 1066 | if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM)(WXHTREEITEM)item) ) |
bbcdf8bc | 1067 | { |
08b7c251 | 1068 | wxLogLastError("TreeView_DeleteItem"); |
bbcdf8bc | 1069 | } |
bbcdf8bc JS |
1070 | } |
1071 | ||
23fd5130 VZ |
1072 | // delete all children (but don't delete the item itself) |
1073 | void wxTreeCtrl::DeleteChildren(const wxTreeItemId& item) | |
1074 | { | |
1075 | long cookie; | |
1076 | ||
1077 | wxArrayLong children; | |
1078 | wxTreeItemId child = GetFirstChild(item, cookie); | |
1079 | while ( child.IsOk() ) | |
1080 | { | |
1081 | children.Add((long)(WXHTREEITEM)child); | |
1082 | ||
1083 | child = GetNextChild(item, cookie); | |
1084 | } | |
1085 | ||
1086 | size_t nCount = children.Count(); | |
1087 | for ( size_t n = 0; n < nCount; n++ ) | |
1088 | { | |
d220ae32 | 1089 | if ( !TreeView_DeleteItem(GetHwnd(), (HTREEITEM)children[n]) ) |
23fd5130 VZ |
1090 | { |
1091 | wxLogLastError("TreeView_DeleteItem"); | |
1092 | } | |
1093 | } | |
1094 | } | |
1095 | ||
08b7c251 | 1096 | void wxTreeCtrl::DeleteAllItems() |
bbcdf8bc | 1097 | { |
d220ae32 | 1098 | if ( !TreeView_DeleteAllItems(GetHwnd()) ) |
bbcdf8bc | 1099 | { |
08b7c251 | 1100 | wxLogLastError("TreeView_DeleteAllItems"); |
bbcdf8bc | 1101 | } |
2bda0e17 KB |
1102 | } |
1103 | ||
08b7c251 | 1104 | void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag) |
2bda0e17 | 1105 | { |
dd3646fd VZ |
1106 | wxASSERT_MSG( flag == TVE_COLLAPSE || |
1107 | flag == (TVE_COLLAPSE | TVE_COLLAPSERESET) || | |
1108 | flag == TVE_EXPAND || | |
1109 | flag == TVE_TOGGLE, | |
223d09f6 | 1110 | wxT("Unknown flag in wxTreeCtrl::DoExpand") ); |
08b7c251 VZ |
1111 | |
1112 | // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must | |
d220ae32 VZ |
1113 | // emulate them. This behaviour has changed slightly with comctl32.dll |
1114 | // v 4.70 - now it does send them but only the first time. To maintain | |
1115 | // compatible behaviour and also in order to not have surprises with the | |
1116 | // future versions, don't rely on this and still do everything ourselves. | |
1117 | // To avoid that the messages be sent twice when the item is expanded for | |
1118 | // the first time we must clear TVIS_EXPANDEDONCE style manually. | |
1119 | ||
1120 | wxTreeViewItem tvItem(item, TVIF_STATE, TVIS_EXPANDEDONCE); | |
1121 | tvItem.state = 0; | |
1122 | DoSetItem(&tvItem); | |
1123 | ||
1124 | if ( TreeView_Expand(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item, flag) != 0 ) | |
08b7c251 VZ |
1125 | { |
1126 | wxTreeEvent event(wxEVT_NULL, m_windowId); | |
1127 | event.m_item = item; | |
1128 | ||
1129 | bool isExpanded = IsExpanded(item); | |
2bda0e17 | 1130 | |
08b7c251 | 1131 | event.SetEventObject(this); |
2bda0e17 | 1132 | |
d220ae32 | 1133 | // FIXME return value of {EXPAND|COLLAPS}ING event handler is discarded |
08b7c251 VZ |
1134 | event.SetEventType(g_events[isExpanded][TRUE]); |
1135 | GetEventHandler()->ProcessEvent(event); | |
2bda0e17 | 1136 | |
08b7c251 VZ |
1137 | event.SetEventType(g_events[isExpanded][FALSE]); |
1138 | GetEventHandler()->ProcessEvent(event); | |
1139 | } | |
d220ae32 | 1140 | //else: change didn't took place, so do nothing at all |
2bda0e17 KB |
1141 | } |
1142 | ||
08b7c251 | 1143 | void wxTreeCtrl::Expand(const wxTreeItemId& item) |
2bda0e17 | 1144 | { |
08b7c251 | 1145 | DoExpand(item, TVE_EXPAND); |
2bda0e17 | 1146 | } |
2bda0e17 | 1147 | |
08b7c251 | 1148 | void wxTreeCtrl::Collapse(const wxTreeItemId& item) |
2bda0e17 | 1149 | { |
08b7c251 | 1150 | DoExpand(item, TVE_COLLAPSE); |
2bda0e17 KB |
1151 | } |
1152 | ||
08b7c251 | 1153 | void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item) |
2bda0e17 | 1154 | { |
dd3646fd | 1155 | DoExpand(item, TVE_COLLAPSE | TVE_COLLAPSERESET); |
2bda0e17 KB |
1156 | } |
1157 | ||
08b7c251 | 1158 | void wxTreeCtrl::Toggle(const wxTreeItemId& item) |
2bda0e17 | 1159 | { |
08b7c251 | 1160 | DoExpand(item, TVE_TOGGLE); |
2bda0e17 KB |
1161 | } |
1162 | ||
42c5812d UU |
1163 | void wxTreeCtrl::ExpandItem(const wxTreeItemId& item, int action) |
1164 | { | |
9dfbf520 | 1165 | DoExpand(item, action); |
42c5812d UU |
1166 | } |
1167 | ||
08b7c251 | 1168 | void wxTreeCtrl::Unselect() |
2bda0e17 | 1169 | { |
223d09f6 | 1170 | wxASSERT_MSG( !(m_windowStyle & wxTR_MULTIPLE), wxT("doesn't make sense") ); |
9dfbf520 VZ |
1171 | |
1172 | // just remove the selection | |
06e38c8e | 1173 | SelectItem(wxTreeItemId((WXHTREEITEM) 0)); |
08b7c251 | 1174 | } |
02ce7b72 | 1175 | |
9dfbf520 | 1176 | void wxTreeCtrl::UnselectAll() |
08b7c251 | 1177 | { |
9dfbf520 | 1178 | if ( m_windowStyle & wxTR_MULTIPLE ) |
2bda0e17 | 1179 | { |
9dfbf520 VZ |
1180 | wxArrayTreeItemIds selections; |
1181 | size_t count = GetSelections(selections); | |
1182 | for ( size_t n = 0; n < count; n++ ) | |
d220ae32 | 1183 | { |
9dfbf520 | 1184 | SetItemCheck(selections[n], FALSE); |
d220ae32 | 1185 | } |
9dfbf520 VZ |
1186 | } |
1187 | else | |
1188 | { | |
1189 | // just remove the selection | |
1190 | Unselect(); | |
1191 | } | |
1192 | } | |
1193 | ||
1194 | void wxTreeCtrl::SelectItem(const wxTreeItemId& item) | |
1195 | { | |
1196 | if ( m_windowStyle & wxTR_MULTIPLE ) | |
1197 | { | |
1198 | // selecting the item means checking it | |
1199 | SetItemCheck(item); | |
1200 | } | |
1201 | else | |
1202 | { | |
1203 | // inspite of the docs (MSDN Jan 99 edition), we don't seem to receive | |
1204 | // the notification from the control (i.e. TVN_SELCHANG{ED|ING}), so | |
1205 | // send them ourselves | |
1206 | ||
1207 | wxTreeEvent event(wxEVT_NULL, m_windowId); | |
1208 | event.m_item = item; | |
1209 | event.SetEventObject(this); | |
1210 | ||
1211 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGING); | |
1212 | if ( !GetEventHandler()->ProcessEvent(event) || event.IsAllowed() ) | |
d220ae32 | 1213 | { |
9dfbf520 VZ |
1214 | if ( !TreeView_SelectItem(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item) ) |
1215 | { | |
1216 | wxLogLastError("TreeView_SelectItem"); | |
1217 | } | |
1218 | else | |
1219 | { | |
1220 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED); | |
1221 | (void)GetEventHandler()->ProcessEvent(event); | |
1222 | } | |
d220ae32 | 1223 | } |
9dfbf520 | 1224 | //else: program vetoed the change |
2bda0e17 | 1225 | } |
08b7c251 | 1226 | } |
2bda0e17 | 1227 | |
08b7c251 VZ |
1228 | void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item) |
1229 | { | |
1230 | // no error return | |
d220ae32 | 1231 | TreeView_EnsureVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item); |
08b7c251 VZ |
1232 | } |
1233 | ||
1234 | void wxTreeCtrl::ScrollTo(const wxTreeItemId& item) | |
1235 | { | |
d220ae32 | 1236 | if ( !TreeView_SelectSetFirstVisible(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item) ) |
2bda0e17 | 1237 | { |
08b7c251 | 1238 | wxLogLastError("TreeView_SelectSetFirstVisible"); |
2bda0e17 | 1239 | } |
08b7c251 VZ |
1240 | } |
1241 | ||
1242 | wxTextCtrl* wxTreeCtrl::GetEditControl() const | |
1243 | { | |
1244 | return m_textCtrl; | |
1245 | } | |
1246 | ||
1247 | void wxTreeCtrl::DeleteTextCtrl() | |
1248 | { | |
1249 | if ( m_textCtrl ) | |
2bda0e17 | 1250 | { |
08b7c251 VZ |
1251 | m_textCtrl->UnsubclassWin(); |
1252 | m_textCtrl->SetHWND(0); | |
1253 | delete m_textCtrl; | |
1254 | m_textCtrl = NULL; | |
2bda0e17 | 1255 | } |
08b7c251 | 1256 | } |
2bda0e17 | 1257 | |
08b7c251 VZ |
1258 | wxTextCtrl* wxTreeCtrl::EditLabel(const wxTreeItemId& item, |
1259 | wxClassInfo* textControlClass) | |
1260 | { | |
1261 | wxASSERT( textControlClass->IsKindOf(CLASSINFO(wxTextCtrl)) ); | |
1262 | ||
d220ae32 | 1263 | HWND hWnd = (HWND) TreeView_EditLabel(GetHwnd(), (HTREEITEM) (WXHTREEITEM) item); |
2bda0e17 | 1264 | |
5ea47806 VZ |
1265 | // this is not an error - the TVN_BEGINLABELEDIT handler might have |
1266 | // returned FALSE | |
1267 | if ( !hWnd ) | |
1268 | { | |
1269 | return NULL; | |
1270 | } | |
2bda0e17 | 1271 | |
08b7c251 | 1272 | DeleteTextCtrl(); |
2bda0e17 | 1273 | |
08b7c251 VZ |
1274 | m_textCtrl = (wxTextCtrl *)textControlClass->CreateObject(); |
1275 | m_textCtrl->SetHWND((WXHWND)hWnd); | |
1276 | m_textCtrl->SubclassWin((WXHWND)hWnd); | |
2bda0e17 | 1277 | |
08b7c251 | 1278 | return m_textCtrl; |
2bda0e17 KB |
1279 | } |
1280 | ||
08b7c251 VZ |
1281 | // End label editing, optionally cancelling the edit |
1282 | void wxTreeCtrl::EndEditLabel(const wxTreeItemId& item, bool discardChanges) | |
2bda0e17 | 1283 | { |
d220ae32 | 1284 | TreeView_EndEditLabelNow(GetHwnd(), discardChanges); |
08b7c251 VZ |
1285 | |
1286 | DeleteTextCtrl(); | |
2bda0e17 KB |
1287 | } |
1288 | ||
08b7c251 | 1289 | wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& flags) |
2bda0e17 | 1290 | { |
08b7c251 VZ |
1291 | TV_HITTESTINFO hitTestInfo; |
1292 | hitTestInfo.pt.x = (int)point.x; | |
1293 | hitTestInfo.pt.y = (int)point.y; | |
2bda0e17 | 1294 | |
d220ae32 | 1295 | TreeView_HitTest(GetHwnd(), &hitTestInfo); |
2bda0e17 | 1296 | |
08b7c251 VZ |
1297 | flags = 0; |
1298 | ||
1299 | // avoid repetition | |
1300 | #define TRANSLATE_FLAG(flag) if ( hitTestInfo.flags & TVHT_##flag ) \ | |
1301 | flags |= wxTREE_HITTEST_##flag | |
1302 | ||
1303 | TRANSLATE_FLAG(ABOVE); | |
1304 | TRANSLATE_FLAG(BELOW); | |
1305 | TRANSLATE_FLAG(NOWHERE); | |
1306 | TRANSLATE_FLAG(ONITEMBUTTON); | |
1307 | TRANSLATE_FLAG(ONITEMICON); | |
1308 | TRANSLATE_FLAG(ONITEMINDENT); | |
1309 | TRANSLATE_FLAG(ONITEMLABEL); | |
1310 | TRANSLATE_FLAG(ONITEMRIGHT); | |
1311 | TRANSLATE_FLAG(ONITEMSTATEICON); | |
1312 | TRANSLATE_FLAG(TOLEFT); | |
1313 | TRANSLATE_FLAG(TORIGHT); | |
2bda0e17 | 1314 | |
08b7c251 VZ |
1315 | #undef TRANSLATE_FLAG |
1316 | ||
06e38c8e | 1317 | return wxTreeItemId((WXHTREEITEM) hitTestInfo.hItem); |
08b7c251 VZ |
1318 | } |
1319 | ||
f7c832a7 VZ |
1320 | bool wxTreeCtrl::GetBoundingRect(const wxTreeItemId& item, |
1321 | wxRect& rect, | |
1322 | bool textOnly) const | |
1323 | { | |
1324 | RECT rc; | |
d220ae32 | 1325 | if ( TreeView_GetItemRect(GetHwnd(), (HTREEITEM)(WXHTREEITEM)item, |
f7c832a7 VZ |
1326 | &rc, textOnly) ) |
1327 | { | |
1328 | rect = wxRect(wxPoint(rc.left, rc.top), wxPoint(rc.right, rc.bottom)); | |
1329 | ||
1330 | return TRUE; | |
1331 | } | |
1332 | else | |
1333 | { | |
1334 | // couldn't retrieve rect: for example, item isn't visible | |
1335 | return FALSE; | |
1336 | } | |
1337 | } | |
1338 | ||
23fd5130 VZ |
1339 | // ---------------------------------------------------------------------------- |
1340 | // sorting stuff | |
1341 | // ---------------------------------------------------------------------------- | |
f7c832a7 | 1342 | |
23fd5130 VZ |
1343 | static int CALLBACK TreeView_CompareCallback(wxTreeItemData *pItem1, |
1344 | wxTreeItemData *pItem2, | |
1345 | wxTreeCtrl *tree) | |
1346 | { | |
096c9f9b | 1347 | wxCHECK_MSG( pItem1 && pItem2, 0, |
223d09f6 | 1348 | wxT("sorting tree without data doesn't make sense") ); |
096c9f9b | 1349 | |
23fd5130 VZ |
1350 | return tree->OnCompareItems(pItem1->GetId(), pItem2->GetId()); |
1351 | } | |
1352 | ||
95aabccc VZ |
1353 | int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1, |
1354 | const wxTreeItemId& item2) | |
08b7c251 | 1355 | { |
837e5743 | 1356 | return wxStrcmp(GetItemText(item1), GetItemText(item2)); |
95aabccc VZ |
1357 | } |
1358 | ||
1359 | void wxTreeCtrl::SortChildren(const wxTreeItemId& item) | |
1360 | { | |
1361 | // rely on the fact that TreeView_SortChildren does the same thing as our | |
23fd5130 VZ |
1362 | // default behaviour, i.e. sorts items alphabetically and so call it |
1363 | // directly if we're not in derived class (much more efficient!) | |
1364 | if ( GetClassInfo() == CLASSINFO(wxTreeCtrl) ) | |
2bda0e17 | 1365 | { |
d220ae32 | 1366 | TreeView_SortChildren(GetHwnd(), (HTREEITEM)(WXHTREEITEM)item, 0); |
2bda0e17 | 1367 | } |
08b7c251 | 1368 | else |
2bda0e17 | 1369 | { |
62448488 | 1370 | TV_SORTCB tvSort; |
23fd5130 VZ |
1371 | tvSort.hParent = (HTREEITEM)(WXHTREEITEM)item; |
1372 | tvSort.lpfnCompare = (PFNTVCOMPARE)TreeView_CompareCallback; | |
1373 | tvSort.lParam = (LPARAM)this; | |
d220ae32 | 1374 | TreeView_SortChildrenCB(GetHwnd(), &tvSort, 0 /* reserved */); |
2bda0e17 | 1375 | } |
08b7c251 | 1376 | } |
2bda0e17 | 1377 | |
08b7c251 VZ |
1378 | // ---------------------------------------------------------------------------- |
1379 | // implementation | |
1380 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 1381 | |
08b7c251 VZ |
1382 | bool wxTreeCtrl::MSWCommand(WXUINT cmd, WXWORD id) |
1383 | { | |
1384 | if ( cmd == EN_UPDATE ) | |
2bda0e17 | 1385 | { |
08b7c251 VZ |
1386 | wxCommandEvent event(wxEVT_COMMAND_TEXT_UPDATED, id); |
1387 | event.SetEventObject( this ); | |
1388 | ProcessCommand(event); | |
2bda0e17 | 1389 | } |
08b7c251 | 1390 | else if ( cmd == EN_KILLFOCUS ) |
2bda0e17 | 1391 | { |
08b7c251 VZ |
1392 | wxCommandEvent event(wxEVT_KILL_FOCUS, id); |
1393 | event.SetEventObject( this ); | |
1394 | ProcessCommand(event); | |
2bda0e17 | 1395 | } |
08b7c251 | 1396 | else |
2bda0e17 | 1397 | { |
08b7c251 VZ |
1398 | // nothing done |
1399 | return FALSE; | |
2bda0e17 | 1400 | } |
08b7c251 VZ |
1401 | |
1402 | // command processed | |
1403 | return TRUE; | |
1404 | } | |
1405 | ||
1406 | // process WM_NOTIFY Windows message | |
a23fd0e1 | 1407 | bool wxTreeCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) |
08b7c251 VZ |
1408 | { |
1409 | wxTreeEvent event(wxEVT_NULL, m_windowId); | |
1410 | wxEventType eventType = wxEVT_NULL; | |
1411 | NMHDR *hdr = (NMHDR *)lParam; | |
1412 | ||
1413 | switch ( hdr->code ) | |
2bda0e17 | 1414 | { |
84a6b859 | 1415 | case NM_RCLICK: |
52f13e49 | 1416 | { |
696e1ea0 VZ |
1417 | if ( wxControl::MSWOnNotify(idCtrl, lParam, result) ) |
1418 | return TRUE; | |
1419 | ||
1420 | TV_HITTESTINFO tvhti; | |
1421 | ::GetCursorPos(&(tvhti.pt)); | |
1422 | ::ScreenToClient(GetHwnd(),&(tvhti.pt)); | |
1423 | if ( TreeView_HitTest(GetHwnd(),&tvhti) ) | |
52f13e49 | 1424 | { |
696e1ea0 VZ |
1425 | if( tvhti.flags & TVHT_ONITEM ) |
1426 | { | |
1427 | event.m_item = (WXHTREEITEM) tvhti.hItem; | |
1428 | eventType = wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK; | |
1429 | } | |
52f13e49 VZ |
1430 | } |
1431 | } | |
1432 | break; | |
52f13e49 | 1433 | |
08b7c251 VZ |
1434 | case TVN_BEGINDRAG: |
1435 | eventType = wxEVT_COMMAND_TREE_BEGIN_DRAG; | |
1436 | // fall through | |
1437 | ||
1438 | case TVN_BEGINRDRAG: | |
1439 | { | |
1440 | if ( eventType == wxEVT_NULL ) | |
1441 | eventType = wxEVT_COMMAND_TREE_BEGIN_RDRAG; | |
1442 | //else: left drag, already set above | |
1443 | ||
1444 | NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam; | |
1445 | ||
06e38c8e | 1446 | event.m_item = (WXHTREEITEM) tv->itemNew.hItem; |
08b7c251 | 1447 | event.m_pointDrag = wxPoint(tv->ptDrag.x, tv->ptDrag.y); |
08b7c251 | 1448 | } |
696e1ea0 | 1449 | break; |
08b7c251 VZ |
1450 | |
1451 | case TVN_BEGINLABELEDIT: | |
1452 | { | |
1453 | eventType = wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT; | |
1454 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
1455 | ||
06e38c8e | 1456 | event.m_item = (WXHTREEITEM) info->item.hItem; |
5ea47806 | 1457 | event.m_label = info->item.pszText; |
08b7c251 | 1458 | } |
696e1ea0 | 1459 | break; |
08b7c251 VZ |
1460 | |
1461 | case TVN_DELETEITEM: | |
1462 | { | |
1463 | eventType = wxEVT_COMMAND_TREE_DELETE_ITEM; | |
1464 | NM_TREEVIEW *tv = (NM_TREEVIEW *)lParam; | |
1465 | ||
696e1ea0 VZ |
1466 | event.m_item = (WXHTREEITEM)tv->itemOld.hItem; |
1467 | ||
1468 | if ( m_hasAnyAttr ) | |
1469 | { | |
1470 | delete (wxTreeItemAttr *)m_attrs. | |
1471 | Delete((long)tv->itemOld.hItem); | |
1472 | } | |
08b7c251 | 1473 | } |
696e1ea0 | 1474 | break; |
08b7c251 VZ |
1475 | |
1476 | case TVN_ENDLABELEDIT: | |
1477 | { | |
1478 | eventType = wxEVT_COMMAND_TREE_END_LABEL_EDIT; | |
1479 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
1480 | ||
5ea47806 VZ |
1481 | event.m_item = (WXHTREEITEM)info->item.hItem; |
1482 | event.m_label = info->item.pszText; | |
1ee4ead5 VZ |
1483 | if (info->item.pszText == NULL) |
1484 | return FALSE; | |
08b7c251 VZ |
1485 | break; |
1486 | } | |
1487 | ||
1488 | case TVN_GETDISPINFO: | |
1489 | eventType = wxEVT_COMMAND_TREE_GET_INFO; | |
1490 | // fall through | |
1491 | ||
1492 | case TVN_SETDISPINFO: | |
1493 | { | |
1494 | if ( eventType == wxEVT_NULL ) | |
1495 | eventType = wxEVT_COMMAND_TREE_SET_INFO; | |
1496 | //else: get, already set above | |
1497 | ||
1498 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
1499 | ||
06e38c8e | 1500 | event.m_item = (WXHTREEITEM) info->item.hItem; |
08b7c251 VZ |
1501 | break; |
1502 | } | |
1503 | ||
1504 | case TVN_ITEMEXPANDING: | |
1505 | event.m_code = FALSE; | |
1506 | // fall through | |
1507 | ||
1508 | case TVN_ITEMEXPANDED: | |
1509 | { | |
1510 | NM_TREEVIEW* tv = (NM_TREEVIEW*)lParam; | |
1511 | ||
1512 | bool expand = FALSE; | |
1513 | switch ( tv->action ) | |
1514 | { | |
1515 | case TVE_EXPAND: | |
1516 | expand = TRUE; | |
1517 | break; | |
1518 | ||
1519 | case TVE_COLLAPSE: | |
1520 | expand = FALSE; | |
1521 | break; | |
1522 | ||
1523 | default: | |
223d09f6 | 1524 | wxLogDebug(wxT("unexpected code %d in TVN_ITEMEXPAND " |
837e5743 | 1525 | "message"), tv->action); |
08b7c251 VZ |
1526 | } |
1527 | ||
a17e237f | 1528 | bool ing = ((int)hdr->code == TVN_ITEMEXPANDING); |
08b7c251 VZ |
1529 | eventType = g_events[expand][ing]; |
1530 | ||
06e38c8e | 1531 | event.m_item = (WXHTREEITEM) tv->itemNew.hItem; |
08b7c251 | 1532 | } |
696e1ea0 | 1533 | break; |
08b7c251 VZ |
1534 | |
1535 | case TVN_KEYDOWN: | |
1536 | { | |
1537 | eventType = wxEVT_COMMAND_TREE_KEY_DOWN; | |
1538 | TV_KEYDOWN *info = (TV_KEYDOWN *)lParam; | |
1539 | ||
1540 | event.m_code = wxCharCodeMSWToWX(info->wVKey); | |
23fd5130 VZ |
1541 | |
1542 | // a separate event for this case | |
1543 | if ( info->wVKey == VK_SPACE || info->wVKey == VK_RETURN ) | |
1544 | { | |
1545 | wxTreeEvent event2(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, | |
1546 | m_windowId); | |
1547 | event2.SetEventObject(this); | |
1548 | ||
1549 | GetEventHandler()->ProcessEvent(event2); | |
1550 | } | |
08b7c251 | 1551 | } |
696e1ea0 | 1552 | break; |
08b7c251 VZ |
1553 | |
1554 | case TVN_SELCHANGED: | |
1555 | eventType = wxEVT_COMMAND_TREE_SEL_CHANGED; | |
1556 | // fall through | |
1557 | ||
1558 | case TVN_SELCHANGING: | |
1559 | { | |
1560 | if ( eventType == wxEVT_NULL ) | |
1561 | eventType = wxEVT_COMMAND_TREE_SEL_CHANGING; | |
1562 | //else: already set above | |
1563 | ||
1564 | NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam; | |
1565 | ||
06e38c8e JS |
1566 | event.m_item = (WXHTREEITEM) tv->itemNew.hItem; |
1567 | event.m_itemOld = (WXHTREEITEM) tv->itemOld.hItem; | |
08b7c251 | 1568 | } |
696e1ea0 VZ |
1569 | break; |
1570 | ||
6ecfe2ac | 1571 | #if defined(_WIN32_IE) && _WIN32_IE >= 0x300 |
696e1ea0 VZ |
1572 | case NM_CUSTOMDRAW: |
1573 | { | |
1574 | LPNMTVCUSTOMDRAW lptvcd = (LPNMTVCUSTOMDRAW)lParam; | |
1575 | NMCUSTOMDRAW& nmcd = lptvcd->nmcd; | |
1576 | switch( nmcd.dwDrawStage ) | |
1577 | { | |
1578 | case CDDS_PREPAINT: | |
1579 | // if we've got any items with non standard attributes, | |
1580 | // notify us before painting each item | |
1581 | *result = m_hasAnyAttr ? CDRF_NOTIFYITEMDRAW | |
1582 | : CDRF_DODEFAULT; | |
1583 | return TRUE; | |
1584 | ||
1585 | case CDDS_ITEMPREPAINT: | |
1586 | { | |
1587 | wxTreeItemAttr *attr = | |
1588 | (wxTreeItemAttr *)m_attrs.Get(nmcd.dwItemSpec); | |
1589 | ||
1590 | if ( !attr ) | |
1591 | { | |
1592 | // nothing to do for this item | |
1593 | return CDRF_DODEFAULT; | |
1594 | } | |
1595 | ||
1596 | HFONT hFont; | |
1597 | wxColour colText, colBack; | |
1598 | if ( attr->HasFont() ) | |
1599 | { | |
1600 | wxFont font = attr->GetFont(); | |
1601 | hFont = (HFONT)font.GetResourceHandle(); | |
1602 | } | |
1603 | else | |
1604 | { | |
1605 | hFont = 0; | |
1606 | } | |
1607 | ||
1608 | if ( attr->HasTextColour() ) | |
1609 | { | |
1610 | colText = attr->GetTextColour(); | |
1611 | } | |
1612 | else | |
1613 | { | |
1614 | colText = GetForegroundColour(); | |
1615 | } | |
1616 | ||
1617 | // selection colours should override ours | |
1618 | if ( nmcd.uItemState & CDIS_SELECTED ) | |
1619 | { | |
1620 | DWORD clrBk = ::GetSysColor(COLOR_HIGHLIGHT); | |
1621 | lptvcd->clrTextBk = clrBk; | |
1622 | ||
1623 | // try to make the text visible | |
1624 | lptvcd->clrText = wxColourToRGB(colText); | |
1625 | lptvcd->clrText |= ~clrBk; | |
1626 | lptvcd->clrText &= 0x00ffffff; | |
1627 | } | |
1628 | else | |
1629 | { | |
1630 | if ( attr->HasBackgroundColour() ) | |
1631 | { | |
1632 | colBack = attr->GetBackgroundColour(); | |
1633 | } | |
1634 | else | |
1635 | { | |
1636 | colBack = GetBackgroundColour(); | |
1637 | } | |
1638 | ||
1639 | lptvcd->clrText = wxColourToRGB(colText); | |
1640 | lptvcd->clrTextBk = wxColourToRGB(colBack); | |
1641 | } | |
1642 | ||
1643 | // note that if we wanted to set colours for | |
1644 | // individual columns (subitems), we would have | |
1645 | // returned CDRF_NOTIFYSUBITEMREDRAW from here | |
1646 | if ( hFont ) | |
1647 | { | |
1648 | ::SelectObject(nmcd.hdc, hFont); | |
1649 | ||
1650 | *result = CDRF_NEWFONT; | |
1651 | } | |
1652 | else | |
1653 | { | |
1654 | *result = CDRF_DODEFAULT; | |
1655 | } | |
1656 | ||
1657 | return TRUE; | |
1658 | } | |
1659 | ||
1660 | default: | |
1661 | *result = CDRF_DODEFAULT; | |
1662 | return TRUE; | |
1663 | } | |
1664 | } | |
1665 | break; | |
6ecfe2ac | 1666 | #endif // _WIN32_IE >= 0x300 |
08b7c251 VZ |
1667 | |
1668 | default: | |
a23fd0e1 | 1669 | return wxControl::MSWOnNotify(idCtrl, lParam, result); |
2bda0e17 | 1670 | } |
08b7c251 VZ |
1671 | |
1672 | event.SetEventObject(this); | |
1673 | event.SetEventType(eventType); | |
1674 | ||
fd3f686c | 1675 | bool processed = GetEventHandler()->ProcessEvent(event); |
08b7c251 VZ |
1676 | |
1677 | // post processing | |
5ea47806 | 1678 | switch ( hdr->code ) |
2bda0e17 | 1679 | { |
5ea47806 VZ |
1680 | case TVN_DELETEITEM: |
1681 | { | |
1682 | // NB: we might process this message using wxWindows event | |
1683 | // tables, but due to overhead of wxWin event system we | |
1684 | // prefer to do it here ourself (otherwise deleting a tree | |
1685 | // with many items is just too slow) | |
1686 | NM_TREEVIEW* tv = (NM_TREEVIEW *)lParam; | |
74b31181 VZ |
1687 | |
1688 | wxTreeItemId item = event.m_item; | |
1689 | if ( HasIndirectData(item) ) | |
1690 | { | |
1691 | wxTreeItemIndirectData *data = (wxTreeItemIndirectData *) | |
1692 | tv->itemOld.lParam; | |
1693 | delete data; // can't be NULL here | |
1694 | ||
1695 | m_itemsWithIndirectData.Remove(item); | |
1696 | } | |
1697 | else | |
1698 | { | |
1699 | wxTreeItemData *data = (wxTreeItemData *)tv->itemOld.lParam; | |
1700 | delete data; // may be NULL, ok | |
1701 | } | |
08b7c251 | 1702 | |
5ea47806 VZ |
1703 | processed = TRUE; // Make sure we don't get called twice |
1704 | } | |
1705 | break; | |
1706 | ||
1707 | case TVN_BEGINLABELEDIT: | |
1708 | // return TRUE to cancel label editing | |
1709 | *result = !event.IsAllowed(); | |
1710 | break; | |
1711 | ||
1712 | case TVN_ENDLABELEDIT: | |
1713 | // return TRUE to set the label to the new string | |
1714 | *result = event.IsAllowed(); | |
1715 | ||
1716 | // ensure that we don't have the text ctrl which is going to be | |
1717 | // deleted any more | |
1718 | DeleteTextCtrl(); | |
1719 | break; | |
1720 | ||
1721 | case TVN_SELCHANGING: | |
1722 | case TVN_ITEMEXPANDING: | |
1723 | // return TRUE to prevent the action from happening | |
1724 | *result = !event.IsAllowed(); | |
1725 | break; | |
1726 | ||
74b31181 VZ |
1727 | case TVN_GETDISPINFO: |
1728 | // NB: so far the user can't set the image himself anyhow, so do it | |
1729 | // anyway - but this may change later | |
1730 | if ( /* !processed && */ 1 ) | |
1731 | { | |
1732 | wxTreeItemId item = event.m_item; | |
1733 | TV_DISPINFO *info = (TV_DISPINFO *)lParam; | |
1734 | if ( info->item.mask & TVIF_IMAGE ) | |
1735 | { | |
1736 | info->item.iImage = | |
1737 | DoGetItemImageFromData | |
1738 | ( | |
1739 | item, | |
1740 | IsExpanded(item) ? wxTreeItemIcon_Expanded | |
1741 | : wxTreeItemIcon_Normal | |
1742 | ); | |
1743 | } | |
1744 | if ( info->item.mask & TVIF_SELECTEDIMAGE ) | |
1745 | { | |
1746 | info->item.iSelectedImage = | |
1747 | DoGetItemImageFromData | |
1748 | ( | |
1749 | item, | |
1750 | IsExpanded(item) ? wxTreeItemIcon_SelectedExpanded | |
1751 | : wxTreeItemIcon_Selected | |
1752 | ); | |
1753 | } | |
1754 | } | |
1755 | break; | |
1756 | ||
5ea47806 VZ |
1757 | //default: |
1758 | // for the other messages the return value is ignored and there is | |
1759 | // nothing special to do | |
1760 | } | |
fd3f686c VZ |
1761 | |
1762 | return processed; | |
2bda0e17 KB |
1763 | } |
1764 | ||
08b7c251 | 1765 | // ---------------------------------------------------------------------------- |
2bda0e17 | 1766 | // Tree event |
08b7c251 VZ |
1767 | // ---------------------------------------------------------------------------- |
1768 | ||
92976ab6 | 1769 | IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent, wxNotifyEvent) |
2bda0e17 | 1770 | |
08b7c251 | 1771 | wxTreeEvent::wxTreeEvent(wxEventType commandType, int id) |
fd3f686c | 1772 | : wxNotifyEvent(commandType, id) |
2bda0e17 | 1773 | { |
08b7c251 VZ |
1774 | m_code = 0; |
1775 | m_itemOld = 0; | |
2bda0e17 KB |
1776 | } |
1777 | ||
08b7c251 | 1778 | #endif // __WIN95__ |
2bda0e17 | 1779 |