]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/generic/treectlg.cpp | |
3 | // Purpose: generic tree control implementation | |
4 | // Author: Robert Roebling | |
5 | // Created: 01/02/97 | |
6 | // Modified: 22/10/98 - almost total rewrite, simpler interface (VZ) | |
7 | // Id: $Id$ | |
8 | // Copyright: (c) 1998 Robert Roebling and Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================= | |
13 | // declarations | |
14 | // ============================================================================= | |
15 | ||
16 | // ----------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ----------------------------------------------------------------------------- | |
19 | ||
20 | // For compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #if wxUSE_TREECTRL | |
28 | ||
29 | #include "wx/treectrl.h" | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/dcclient.h" | |
33 | #include "wx/timer.h" | |
34 | #include "wx/settings.h" | |
35 | #include "wx/listbox.h" | |
36 | #include "wx/textctrl.h" | |
37 | #endif | |
38 | ||
39 | #include "wx/generic/treectlg.h" | |
40 | #include "wx/imaglist.h" | |
41 | ||
42 | #include "wx/renderer.h" | |
43 | ||
44 | #ifdef __WXMAC__ | |
45 | #include "wx/mac/private.h" | |
46 | #endif | |
47 | ||
48 | // ----------------------------------------------------------------------------- | |
49 | // array types | |
50 | // ----------------------------------------------------------------------------- | |
51 | ||
52 | class WXDLLEXPORT wxGenericTreeItem; | |
53 | ||
54 | WX_DEFINE_EXPORTED_ARRAY_PTR(wxGenericTreeItem *, wxArrayGenericTreeItems); | |
55 | ||
56 | // ---------------------------------------------------------------------------- | |
57 | // constants | |
58 | // ---------------------------------------------------------------------------- | |
59 | ||
60 | static const int NO_IMAGE = -1; | |
61 | ||
62 | static const int PIXELS_PER_UNIT = 10; | |
63 | ||
64 | // the margin between the item image and the item text | |
65 | static const int MARGIN_BETWEEN_IMAGE_AND_TEXT = 4; | |
66 | ||
67 | // ----------------------------------------------------------------------------- | |
68 | // private classes | |
69 | // ----------------------------------------------------------------------------- | |
70 | ||
71 | // timer used for enabling in-place edit | |
72 | class WXDLLEXPORT wxTreeRenameTimer: public wxTimer | |
73 | { | |
74 | public: | |
75 | // start editing the current item after half a second (if the mouse hasn't | |
76 | // been clicked/moved) | |
77 | enum { DELAY = 500 }; | |
78 | ||
79 | wxTreeRenameTimer( wxGenericTreeCtrl *owner ); | |
80 | ||
81 | virtual void Notify(); | |
82 | ||
83 | private: | |
84 | wxGenericTreeCtrl *m_owner; | |
85 | ||
86 | DECLARE_NO_COPY_CLASS(wxTreeRenameTimer) | |
87 | }; | |
88 | ||
89 | // control used for in-place edit | |
90 | class WXDLLEXPORT wxTreeTextCtrl: public wxTextCtrl | |
91 | { | |
92 | public: | |
93 | wxTreeTextCtrl(wxGenericTreeCtrl *owner, wxGenericTreeItem *item); | |
94 | ||
95 | void EndEdit(bool discardChanges = false) | |
96 | { | |
97 | if ( discardChanges ) | |
98 | { | |
99 | StopEditing(); | |
100 | } | |
101 | else | |
102 | { | |
103 | m_aboutToFinish = true; | |
104 | ||
105 | // Notify the owner about the changes | |
106 | AcceptChanges(); | |
107 | ||
108 | // Even if vetoed, close the control (consistent with MSW) | |
109 | Finish(); | |
110 | } | |
111 | } | |
112 | ||
113 | void StopEditing() | |
114 | { | |
115 | Finish(); | |
116 | m_owner->OnRenameCancelled(m_itemEdited); | |
117 | } | |
118 | const wxGenericTreeItem* item() const { return m_itemEdited; } | |
119 | ||
120 | protected: | |
121 | void OnChar( wxKeyEvent &event ); | |
122 | void OnKeyUp( wxKeyEvent &event ); | |
123 | void OnKillFocus( wxFocusEvent &event ); | |
124 | ||
125 | bool AcceptChanges(); | |
126 | void Finish(); | |
127 | ||
128 | private: | |
129 | wxGenericTreeCtrl *m_owner; | |
130 | wxGenericTreeItem *m_itemEdited; | |
131 | wxString m_startValue; | |
132 | bool m_finished; | |
133 | bool m_aboutToFinish; | |
134 | ||
135 | DECLARE_EVENT_TABLE() | |
136 | DECLARE_NO_COPY_CLASS(wxTreeTextCtrl) | |
137 | }; | |
138 | ||
139 | // timer used to clear wxGenericTreeCtrl::m_findPrefix if no key was pressed | |
140 | // for a sufficiently long time | |
141 | class WXDLLEXPORT wxTreeFindTimer : public wxTimer | |
142 | { | |
143 | public: | |
144 | // reset the current prefix after half a second of inactivity | |
145 | enum { DELAY = 500 }; | |
146 | ||
147 | wxTreeFindTimer( wxGenericTreeCtrl *owner ) { m_owner = owner; } | |
148 | ||
149 | virtual void Notify() { m_owner->m_findPrefix.clear(); } | |
150 | ||
151 | private: | |
152 | wxGenericTreeCtrl *m_owner; | |
153 | ||
154 | DECLARE_NO_COPY_CLASS(wxTreeFindTimer) | |
155 | }; | |
156 | ||
157 | // a tree item | |
158 | class WXDLLEXPORT wxGenericTreeItem | |
159 | { | |
160 | public: | |
161 | // ctors & dtor | |
162 | wxGenericTreeItem() { m_data = NULL; } | |
163 | wxGenericTreeItem( wxGenericTreeItem *parent, | |
164 | const wxString& text, | |
165 | int image, | |
166 | int selImage, | |
167 | wxTreeItemData *data ); | |
168 | ||
169 | ~wxGenericTreeItem(); | |
170 | ||
171 | // trivial accessors | |
172 | wxArrayGenericTreeItems& GetChildren() { return m_children; } | |
173 | ||
174 | const wxString& GetText() const { return m_text; } | |
175 | int GetImage(wxTreeItemIcon which = wxTreeItemIcon_Normal) const | |
176 | { return m_images[which]; } | |
177 | wxTreeItemData *GetData() const { return m_data; } | |
178 | ||
179 | // returns the current image for the item (depending on its | |
180 | // selected/expanded/whatever state) | |
181 | int GetCurrentImage() const; | |
182 | ||
183 | void SetText( const wxString &text ); | |
184 | void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; } | |
185 | void SetData(wxTreeItemData *data) { m_data = data; } | |
186 | ||
187 | void SetHasPlus(bool has = true) { m_hasPlus = has; } | |
188 | ||
189 | void SetBold(bool bold) { m_isBold = bold; } | |
190 | ||
191 | int GetX() const { return m_x; } | |
192 | int GetY() const { return m_y; } | |
193 | ||
194 | void SetX(int x) { m_x = x; } | |
195 | void SetY(int y) { m_y = y; } | |
196 | ||
197 | int GetHeight() const { return m_height; } | |
198 | int GetWidth() const { return m_width; } | |
199 | ||
200 | void SetHeight(int h) { m_height = h; } | |
201 | void SetWidth(int w) { m_width = w; } | |
202 | ||
203 | wxGenericTreeItem *GetParent() const { return m_parent; } | |
204 | ||
205 | // operations | |
206 | ||
207 | // deletes all children notifying the treectrl about it | |
208 | void DeleteChildren(wxGenericTreeCtrl *tree); | |
209 | ||
210 | // get count of all children (and grand children if 'recursively') | |
211 | size_t GetChildrenCount(bool recursively = true) const; | |
212 | ||
213 | void Insert(wxGenericTreeItem *child, size_t index) | |
214 | { m_children.Insert(child, index); } | |
215 | ||
216 | void GetSize( int &x, int &y, const wxGenericTreeCtrl* ); | |
217 | ||
218 | // return the item at given position (or NULL if no item), onButton is | |
219 | // true if the point belongs to the item's button, otherwise it lies | |
220 | // on the item's label | |
221 | wxGenericTreeItem *HitTest( const wxPoint& point, | |
222 | const wxGenericTreeCtrl *, | |
223 | int &flags, | |
224 | int level ); | |
225 | ||
226 | void Expand() { m_isCollapsed = false; } | |
227 | void Collapse() { m_isCollapsed = true; } | |
228 | ||
229 | void SetHilight( bool set = true ) { m_hasHilight = set; } | |
230 | ||
231 | // status inquiries | |
232 | bool HasChildren() const { return !m_children.IsEmpty(); } | |
233 | bool IsSelected() const { return m_hasHilight != 0; } | |
234 | bool IsExpanded() const { return !m_isCollapsed; } | |
235 | bool HasPlus() const { return m_hasPlus || HasChildren(); } | |
236 | bool IsBold() const { return m_isBold != 0; } | |
237 | ||
238 | // attributes | |
239 | // get them - may be NULL | |
240 | wxTreeItemAttr *GetAttributes() const { return m_attr; } | |
241 | // get them ensuring that the pointer is not NULL | |
242 | wxTreeItemAttr& Attr() | |
243 | { | |
244 | if ( !m_attr ) | |
245 | { | |
246 | m_attr = new wxTreeItemAttr; | |
247 | m_ownsAttr = true; | |
248 | } | |
249 | return *m_attr; | |
250 | } | |
251 | // set them | |
252 | void SetAttributes(wxTreeItemAttr *attr) | |
253 | { | |
254 | if ( m_ownsAttr ) delete m_attr; | |
255 | m_attr = attr; | |
256 | m_ownsAttr = false; | |
257 | } | |
258 | // set them and delete when done | |
259 | void AssignAttributes(wxTreeItemAttr *attr) | |
260 | { | |
261 | SetAttributes(attr); | |
262 | m_ownsAttr = true; | |
263 | } | |
264 | ||
265 | private: | |
266 | // since there can be very many of these, we save size by chosing | |
267 | // the smallest representation for the elements and by ordering | |
268 | // the members to avoid padding. | |
269 | wxString m_text; // label to be rendered for item | |
270 | ||
271 | wxTreeItemData *m_data; // user-provided data | |
272 | ||
273 | wxArrayGenericTreeItems m_children; // list of children | |
274 | wxGenericTreeItem *m_parent; // parent of this item | |
275 | ||
276 | wxTreeItemAttr *m_attr; // attributes??? | |
277 | ||
278 | // tree ctrl images for the normal, selected, expanded and | |
279 | // expanded+selected states | |
280 | int m_images[wxTreeItemIcon_Max]; | |
281 | ||
282 | wxCoord m_x; // (virtual) offset from top | |
283 | wxCoord m_y; // (virtual) offset from left | |
284 | int m_width; // width of this item | |
285 | int m_height; // height of this item | |
286 | ||
287 | // use bitfields to save size | |
288 | unsigned int m_isCollapsed :1; | |
289 | unsigned int m_hasHilight :1; // same as focused | |
290 | unsigned int m_hasPlus :1; // used for item which doesn't have | |
291 | // children but has a [+] button | |
292 | unsigned int m_isBold :1; // render the label in bold font | |
293 | unsigned int m_ownsAttr :1; // delete attribute when done | |
294 | ||
295 | DECLARE_NO_COPY_CLASS(wxGenericTreeItem) | |
296 | }; | |
297 | ||
298 | // ============================================================================= | |
299 | // implementation | |
300 | // ============================================================================= | |
301 | ||
302 | // ---------------------------------------------------------------------------- | |
303 | // private functions | |
304 | // ---------------------------------------------------------------------------- | |
305 | ||
306 | // translate the key or mouse event flags to the type of selection we're | |
307 | // dealing with | |
308 | static void EventFlagsToSelType(long style, | |
309 | bool shiftDown, | |
310 | bool ctrlDown, | |
311 | bool &is_multiple, | |
312 | bool &extended_select, | |
313 | bool &unselect_others) | |
314 | { | |
315 | is_multiple = (style & wxTR_MULTIPLE) != 0; | |
316 | extended_select = shiftDown && is_multiple; | |
317 | unselect_others = !(extended_select || (ctrlDown && is_multiple)); | |
318 | } | |
319 | ||
320 | // check if the given item is under another one | |
321 | static bool IsDescendantOf(const wxGenericTreeItem *parent, const wxGenericTreeItem *item) | |
322 | { | |
323 | while ( item ) | |
324 | { | |
325 | if ( item == parent ) | |
326 | { | |
327 | // item is a descendant of parent | |
328 | return true; | |
329 | } | |
330 | ||
331 | item = item->GetParent(); | |
332 | } | |
333 | ||
334 | return false; | |
335 | } | |
336 | ||
337 | // ----------------------------------------------------------------------------- | |
338 | // wxTreeRenameTimer (internal) | |
339 | // ----------------------------------------------------------------------------- | |
340 | ||
341 | wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl *owner ) | |
342 | { | |
343 | m_owner = owner; | |
344 | } | |
345 | ||
346 | void wxTreeRenameTimer::Notify() | |
347 | { | |
348 | m_owner->OnRenameTimer(); | |
349 | } | |
350 | ||
351 | //----------------------------------------------------------------------------- | |
352 | // wxTreeTextCtrl (internal) | |
353 | //----------------------------------------------------------------------------- | |
354 | ||
355 | BEGIN_EVENT_TABLE(wxTreeTextCtrl,wxTextCtrl) | |
356 | EVT_CHAR (wxTreeTextCtrl::OnChar) | |
357 | EVT_KEY_UP (wxTreeTextCtrl::OnKeyUp) | |
358 | EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus) | |
359 | END_EVENT_TABLE() | |
360 | ||
361 | wxTreeTextCtrl::wxTreeTextCtrl(wxGenericTreeCtrl *owner, | |
362 | wxGenericTreeItem *item) | |
363 | : m_itemEdited(item), m_startValue(item->GetText()) | |
364 | { | |
365 | m_owner = owner; | |
366 | m_finished = false; | |
367 | m_aboutToFinish = false; | |
368 | ||
369 | int w = m_itemEdited->GetWidth(), | |
370 | h = m_itemEdited->GetHeight(); | |
371 | ||
372 | int x, y; | |
373 | m_owner->CalcScrolledPosition(item->GetX(), item->GetY(), &x, &y); | |
374 | ||
375 | int image_h = 0, | |
376 | image_w = 0; | |
377 | ||
378 | int image = item->GetCurrentImage(); | |
379 | if ( image != NO_IMAGE ) | |
380 | { | |
381 | if ( m_owner->m_imageListNormal ) | |
382 | { | |
383 | m_owner->m_imageListNormal->GetSize( image, image_w, image_h ); | |
384 | image_w += MARGIN_BETWEEN_IMAGE_AND_TEXT; | |
385 | } | |
386 | else | |
387 | { | |
388 | wxFAIL_MSG(_T("you must create an image list to use images!")); | |
389 | } | |
390 | } | |
391 | ||
392 | // FIXME: what are all these hardcoded 4, 8 and 11s really? | |
393 | x += image_w; | |
394 | w -= image_w + 4; | |
395 | #ifdef __WXMAC__ | |
396 | wxSize bs = DoGetBestSize() ; | |
397 | // edit control height | |
398 | if ( h > bs.y - 8 ) | |
399 | { | |
400 | int diff = h - ( bs.y - 8 ) ; | |
401 | h -= diff ; | |
402 | y += diff / 2 ; | |
403 | } | |
404 | #endif | |
405 | ||
406 | (void)Create(m_owner, wxID_ANY, m_startValue, | |
407 | wxPoint(x - 4, y - 4), wxSize(w + 11, h + 8)); | |
408 | } | |
409 | ||
410 | bool wxTreeTextCtrl::AcceptChanges() | |
411 | { | |
412 | const wxString value = GetValue(); | |
413 | ||
414 | if ( value == m_startValue ) | |
415 | { | |
416 | // nothing changed, always accept | |
417 | // when an item remains unchanged, the owner | |
418 | // needs to be notified that the user decided | |
419 | // not to change the tree item label, and that | |
420 | // the edit has been cancelled | |
421 | ||
422 | m_owner->OnRenameCancelled(m_itemEdited); | |
423 | return true; | |
424 | } | |
425 | ||
426 | if ( !m_owner->OnRenameAccept(m_itemEdited, value) ) | |
427 | { | |
428 | // vetoed by the user | |
429 | return false; | |
430 | } | |
431 | ||
432 | // accepted, do rename the item | |
433 | m_owner->SetItemText(m_itemEdited, value); | |
434 | ||
435 | return true; | |
436 | } | |
437 | ||
438 | void wxTreeTextCtrl::Finish() | |
439 | { | |
440 | if ( !m_finished ) | |
441 | { | |
442 | m_owner->ResetTextControl(); | |
443 | ||
444 | wxPendingDelete.Append(this); | |
445 | ||
446 | m_finished = true; | |
447 | ||
448 | m_owner->SetFocus(); | |
449 | } | |
450 | } | |
451 | ||
452 | void wxTreeTextCtrl::OnChar( wxKeyEvent &event ) | |
453 | { | |
454 | switch ( event.m_keyCode ) | |
455 | { | |
456 | case WXK_RETURN: | |
457 | EndEdit(); | |
458 | break; | |
459 | ||
460 | case WXK_ESCAPE: | |
461 | StopEditing(); | |
462 | break; | |
463 | ||
464 | default: | |
465 | event.Skip(); | |
466 | } | |
467 | } | |
468 | ||
469 | void wxTreeTextCtrl::OnKeyUp( wxKeyEvent &event ) | |
470 | { | |
471 | if ( !m_finished ) | |
472 | { | |
473 | // auto-grow the textctrl: | |
474 | wxSize parentSize = m_owner->GetSize(); | |
475 | wxPoint myPos = GetPosition(); | |
476 | wxSize mySize = GetSize(); | |
477 | int sx, sy; | |
478 | GetTextExtent(GetValue() + _T("M"), &sx, &sy); | |
479 | if (myPos.x + sx > parentSize.x) | |
480 | sx = parentSize.x - myPos.x; | |
481 | if (mySize.x > sx) | |
482 | sx = mySize.x; | |
483 | SetSize(sx, wxDefaultCoord); | |
484 | } | |
485 | ||
486 | event.Skip(); | |
487 | } | |
488 | ||
489 | void wxTreeTextCtrl::OnKillFocus( wxFocusEvent &event ) | |
490 | { | |
491 | if ( !m_finished && !m_aboutToFinish ) | |
492 | { | |
493 | // We must finish regardless of success, otherwise we'll get | |
494 | // focus problems: | |
495 | Finish(); | |
496 | ||
497 | if ( !AcceptChanges() ) | |
498 | m_owner->OnRenameCancelled( m_itemEdited ); | |
499 | } | |
500 | ||
501 | // We must let the native text control handle focus, too, otherwise | |
502 | // it could have problems with the cursor (e.g., in wxGTK). | |
503 | event.Skip(); | |
504 | } | |
505 | ||
506 | // ----------------------------------------------------------------------------- | |
507 | // wxGenericTreeItem | |
508 | // ----------------------------------------------------------------------------- | |
509 | ||
510 | wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem *parent, | |
511 | const wxString& text, | |
512 | int image, int selImage, | |
513 | wxTreeItemData *data) | |
514 | : m_text(text) | |
515 | { | |
516 | m_images[wxTreeItemIcon_Normal] = image; | |
517 | m_images[wxTreeItemIcon_Selected] = selImage; | |
518 | m_images[wxTreeItemIcon_Expanded] = NO_IMAGE; | |
519 | m_images[wxTreeItemIcon_SelectedExpanded] = NO_IMAGE; | |
520 | ||
521 | m_data = data; | |
522 | m_x = m_y = 0; | |
523 | ||
524 | m_isCollapsed = true; | |
525 | m_hasHilight = false; | |
526 | m_hasPlus = false; | |
527 | m_isBold = false; | |
528 | ||
529 | m_parent = parent; | |
530 | ||
531 | m_attr = (wxTreeItemAttr *)NULL; | |
532 | m_ownsAttr = false; | |
533 | ||
534 | // We don't know the height here yet. | |
535 | m_width = 0; | |
536 | m_height = 0; | |
537 | } | |
538 | ||
539 | wxGenericTreeItem::~wxGenericTreeItem() | |
540 | { | |
541 | delete m_data; | |
542 | ||
543 | if (m_ownsAttr) delete m_attr; | |
544 | ||
545 | wxASSERT_MSG( m_children.IsEmpty(), | |
546 | wxT("please call DeleteChildren() before deleting the item") ); | |
547 | } | |
548 | ||
549 | void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl *tree) | |
550 | { | |
551 | size_t count = m_children.Count(); | |
552 | for ( size_t n = 0; n < count; n++ ) | |
553 | { | |
554 | wxGenericTreeItem *child = m_children[n]; | |
555 | tree->SendDeleteEvent(child); | |
556 | ||
557 | child->DeleteChildren(tree); | |
558 | if ( child == tree->m_select_me ) | |
559 | tree->m_select_me = NULL; | |
560 | delete child; | |
561 | } | |
562 | ||
563 | m_children.Empty(); | |
564 | } | |
565 | ||
566 | void wxGenericTreeItem::SetText( const wxString &text ) | |
567 | { | |
568 | m_text = text; | |
569 | } | |
570 | ||
571 | size_t wxGenericTreeItem::GetChildrenCount(bool recursively) const | |
572 | { | |
573 | size_t count = m_children.Count(); | |
574 | if ( !recursively ) | |
575 | return count; | |
576 | ||
577 | size_t total = count; | |
578 | for (size_t n = 0; n < count; ++n) | |
579 | { | |
580 | total += m_children[n]->GetChildrenCount(); | |
581 | } | |
582 | ||
583 | return total; | |
584 | } | |
585 | ||
586 | void wxGenericTreeItem::GetSize( int &x, int &y, | |
587 | const wxGenericTreeCtrl *theButton ) | |
588 | { | |
589 | int bottomY=m_y+theButton->GetLineHeight(this); | |
590 | if ( y < bottomY ) y = bottomY; | |
591 | int width = m_x + m_width; | |
592 | if ( x < width ) x = width; | |
593 | ||
594 | if (IsExpanded()) | |
595 | { | |
596 | size_t count = m_children.Count(); | |
597 | for ( size_t n = 0; n < count; ++n ) | |
598 | { | |
599 | m_children[n]->GetSize( x, y, theButton ); | |
600 | } | |
601 | } | |
602 | } | |
603 | ||
604 | wxGenericTreeItem *wxGenericTreeItem::HitTest(const wxPoint& point, | |
605 | const wxGenericTreeCtrl *theCtrl, | |
606 | int &flags, | |
607 | int level) | |
608 | { | |
609 | // for a hidden root node, don't evaluate it, but do evaluate children | |
610 | if ( !(level == 0 && theCtrl->HasFlag(wxTR_HIDE_ROOT)) ) | |
611 | { | |
612 | // evaluate the item | |
613 | int h = theCtrl->GetLineHeight(this); | |
614 | if ((point.y > m_y) && (point.y < m_y + h)) | |
615 | { | |
616 | int y_mid = m_y + h/2; | |
617 | if (point.y < y_mid ) | |
618 | flags |= wxTREE_HITTEST_ONITEMUPPERPART; | |
619 | else | |
620 | flags |= wxTREE_HITTEST_ONITEMLOWERPART; | |
621 | ||
622 | int xCross = m_x - theCtrl->GetSpacing(); | |
623 | #ifdef __WXMAC__ | |
624 | // according to the drawing code the triangels are drawn | |
625 | // at -4 , -4 from the position up to +10/+10 max | |
626 | if ((point.x > xCross-4) && (point.x < xCross+10) && | |
627 | (point.y > y_mid-4) && (point.y < y_mid+10) && | |
628 | HasPlus() && theCtrl->HasButtons() ) | |
629 | #else | |
630 | // 5 is the size of the plus sign | |
631 | if ((point.x > xCross-6) && (point.x < xCross+6) && | |
632 | (point.y > y_mid-6) && (point.y < y_mid+6) && | |
633 | HasPlus() && theCtrl->HasButtons() ) | |
634 | #endif | |
635 | { | |
636 | flags |= wxTREE_HITTEST_ONITEMBUTTON; | |
637 | return this; | |
638 | } | |
639 | ||
640 | if ((point.x >= m_x) && (point.x <= m_x+m_width)) | |
641 | { | |
642 | int image_w = -1; | |
643 | int image_h; | |
644 | ||
645 | // assuming every image (normal and selected) has the same size! | |
646 | if ( (GetImage() != NO_IMAGE) && theCtrl->m_imageListNormal ) | |
647 | theCtrl->m_imageListNormal->GetSize(GetImage(), | |
648 | image_w, image_h); | |
649 | ||
650 | if ((image_w != -1) && (point.x <= m_x + image_w + 1)) | |
651 | flags |= wxTREE_HITTEST_ONITEMICON; | |
652 | else | |
653 | flags |= wxTREE_HITTEST_ONITEMLABEL; | |
654 | ||
655 | return this; | |
656 | } | |
657 | ||
658 | if (point.x < m_x) | |
659 | flags |= wxTREE_HITTEST_ONITEMINDENT; | |
660 | if (point.x > m_x+m_width) | |
661 | flags |= wxTREE_HITTEST_ONITEMRIGHT; | |
662 | ||
663 | return this; | |
664 | } | |
665 | ||
666 | // if children are expanded, fall through to evaluate them | |
667 | if (m_isCollapsed) return (wxGenericTreeItem*) NULL; | |
668 | } | |
669 | ||
670 | // evaluate children | |
671 | size_t count = m_children.Count(); | |
672 | for ( size_t n = 0; n < count; n++ ) | |
673 | { | |
674 | wxGenericTreeItem *res = m_children[n]->HitTest( point, | |
675 | theCtrl, | |
676 | flags, | |
677 | level + 1 ); | |
678 | if ( res != NULL ) | |
679 | return res; | |
680 | } | |
681 | ||
682 | return (wxGenericTreeItem*) NULL; | |
683 | } | |
684 | ||
685 | int wxGenericTreeItem::GetCurrentImage() const | |
686 | { | |
687 | int image = NO_IMAGE; | |
688 | if ( IsExpanded() ) | |
689 | { | |
690 | if ( IsSelected() ) | |
691 | { | |
692 | image = GetImage(wxTreeItemIcon_SelectedExpanded); | |
693 | } | |
694 | ||
695 | if ( image == NO_IMAGE ) | |
696 | { | |
697 | // we usually fall back to the normal item, but try just the | |
698 | // expanded one (and not selected) first in this case | |
699 | image = GetImage(wxTreeItemIcon_Expanded); | |
700 | } | |
701 | } | |
702 | else // not expanded | |
703 | { | |
704 | if ( IsSelected() ) | |
705 | image = GetImage(wxTreeItemIcon_Selected); | |
706 | } | |
707 | ||
708 | // maybe it doesn't have the specific image we want, | |
709 | // try the default one instead | |
710 | if ( image == NO_IMAGE ) image = GetImage(); | |
711 | ||
712 | return image; | |
713 | } | |
714 | ||
715 | // ----------------------------------------------------------------------------- | |
716 | // wxGenericTreeCtrl implementation | |
717 | // ----------------------------------------------------------------------------- | |
718 | ||
719 | IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl, wxControl) | |
720 | ||
721 | BEGIN_EVENT_TABLE(wxGenericTreeCtrl, wxTreeCtrlBase) | |
722 | EVT_PAINT (wxGenericTreeCtrl::OnPaint) | |
723 | EVT_SIZE (wxGenericTreeCtrl::OnSize) | |
724 | EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse) | |
725 | EVT_CHAR (wxGenericTreeCtrl::OnChar) | |
726 | EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus) | |
727 | EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus) | |
728 | EVT_TREE_ITEM_GETTOOLTIP(wxID_ANY, wxGenericTreeCtrl::OnGetToolTip) | |
729 | END_EVENT_TABLE() | |
730 | ||
731 | #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__) | |
732 | /* | |
733 | * wxTreeCtrl has to be a real class or we have problems with | |
734 | * the run-time information. | |
735 | */ | |
736 | ||
737 | IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxGenericTreeCtrl) | |
738 | #endif | |
739 | ||
740 | // ----------------------------------------------------------------------------- | |
741 | // construction/destruction | |
742 | // ----------------------------------------------------------------------------- | |
743 | ||
744 | void wxGenericTreeCtrl::Init() | |
745 | { | |
746 | m_current = | |
747 | m_key_current = | |
748 | m_anchor = | |
749 | m_select_me = (wxGenericTreeItem *) NULL; | |
750 | m_hasFocus = false; | |
751 | m_dirty = false; | |
752 | ||
753 | m_lineHeight = 10; | |
754 | m_indent = 15; | |
755 | m_spacing = 18; | |
756 | ||
757 | m_hilightBrush = new wxBrush | |
758 | ( | |
759 | wxSystemSettings::GetColour | |
760 | ( | |
761 | wxSYS_COLOUR_HIGHLIGHT | |
762 | ), | |
763 | wxSOLID | |
764 | ); | |
765 | ||
766 | m_hilightUnfocusedBrush = new wxBrush | |
767 | ( | |
768 | wxSystemSettings::GetColour | |
769 | ( | |
770 | wxSYS_COLOUR_BTNSHADOW | |
771 | ), | |
772 | wxSOLID | |
773 | ); | |
774 | ||
775 | m_imageListButtons = NULL; | |
776 | m_ownsImageListButtons = false; | |
777 | ||
778 | m_dragCount = 0; | |
779 | m_isDragging = false; | |
780 | m_dropTarget = m_oldSelection = NULL; | |
781 | m_underMouse = NULL; | |
782 | m_textCtrl = NULL; | |
783 | ||
784 | m_renameTimer = NULL; | |
785 | m_freezeCount = 0; | |
786 | ||
787 | m_findTimer = NULL; | |
788 | ||
789 | m_dropEffectAboveItem = false; | |
790 | ||
791 | m_lastOnSame = false; | |
792 | ||
793 | #ifdef __WXMAC_CARBON__ | |
794 | m_normalFont.MacCreateThemeFont( kThemeViewsFont ) ; | |
795 | #else | |
796 | m_normalFont = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT ); | |
797 | #endif | |
798 | m_boldFont = wxFont(m_normalFont.GetPointSize(), | |
799 | m_normalFont.GetFamily(), | |
800 | m_normalFont.GetStyle(), | |
801 | wxBOLD, | |
802 | m_normalFont.GetUnderlined(), | |
803 | m_normalFont.GetFaceName(), | |
804 | m_normalFont.GetEncoding()); | |
805 | } | |
806 | ||
807 | bool wxGenericTreeCtrl::Create(wxWindow *parent, | |
808 | wxWindowID id, | |
809 | const wxPoint& pos, | |
810 | const wxSize& size, | |
811 | long style, | |
812 | const wxValidator& validator, | |
813 | const wxString& name ) | |
814 | { | |
815 | #ifdef __WXMAC__ | |
816 | int major,minor; | |
817 | wxGetOsVersion( &major, &minor ); | |
818 | ||
819 | style &= ~wxTR_LINES_AT_ROOT; | |
820 | style |= wxTR_NO_LINES; | |
821 | if (major < 10) | |
822 | style |= wxTR_ROW_LINES; | |
823 | ||
824 | if (style == 0 || style & wxTR_DEFAULT_STYLE) | |
825 | style |= wxTR_FULL_ROW_HIGHLIGHT; | |
826 | ||
827 | #endif // __WXMAC__ | |
828 | #ifdef __WXGTK20__ | |
829 | style |= wxTR_NO_LINES; | |
830 | #endif | |
831 | ||
832 | if ( !wxControl::Create( parent, id, pos, size, | |
833 | style|wxHSCROLL|wxVSCROLL, | |
834 | validator, | |
835 | name ) ) | |
836 | return false; | |
837 | ||
838 | // If the tree display has no buttons, but does have | |
839 | // connecting lines, we can use a narrower layout. | |
840 | // It may not be a good idea to force this... | |
841 | if (!HasButtons() && !HasFlag(wxTR_NO_LINES)) | |
842 | { | |
843 | m_indent= 10; | |
844 | m_spacing = 10; | |
845 | } | |
846 | ||
847 | wxVisualAttributes attr = GetDefaultAttributes(); | |
848 | SetOwnForegroundColour( attr.colFg ); | |
849 | SetOwnBackgroundColour( attr.colBg ); | |
850 | if (!m_hasFont) | |
851 | SetOwnFont(attr.font); | |
852 | ||
853 | m_dottedPen = wxPen( wxT("grey"), 0, 0 ); | |
854 | ||
855 | SetInitialSize(size); | |
856 | ||
857 | return true; | |
858 | } | |
859 | ||
860 | wxGenericTreeCtrl::~wxGenericTreeCtrl() | |
861 | { | |
862 | delete m_hilightBrush; | |
863 | delete m_hilightUnfocusedBrush; | |
864 | ||
865 | DeleteAllItems(); | |
866 | ||
867 | delete m_renameTimer; | |
868 | delete m_findTimer; | |
869 | ||
870 | if (m_ownsImageListButtons) | |
871 | delete m_imageListButtons; | |
872 | } | |
873 | ||
874 | // ----------------------------------------------------------------------------- | |
875 | // accessors | |
876 | // ----------------------------------------------------------------------------- | |
877 | ||
878 | unsigned int wxGenericTreeCtrl::GetCount() const | |
879 | { | |
880 | if ( !m_anchor ) | |
881 | { | |
882 | // the tree is empty | |
883 | return 0; | |
884 | } | |
885 | ||
886 | unsigned int count = m_anchor->GetChildrenCount(); | |
887 | if ( !HasFlag(wxTR_HIDE_ROOT) ) | |
888 | { | |
889 | // take the root itself into account | |
890 | count++; | |
891 | } | |
892 | ||
893 | return count; | |
894 | } | |
895 | ||
896 | void wxGenericTreeCtrl::SetIndent(unsigned int indent) | |
897 | { | |
898 | m_indent = (unsigned short) indent; | |
899 | m_dirty = true; | |
900 | } | |
901 | ||
902 | size_t | |
903 | wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId& item, | |
904 | bool recursively) const | |
905 | { | |
906 | wxCHECK_MSG( item.IsOk(), 0u, wxT("invalid tree item") ); | |
907 | ||
908 | return ((wxGenericTreeItem*) item.m_pItem)->GetChildrenCount(recursively); | |
909 | } | |
910 | ||
911 | void wxGenericTreeCtrl::SetWindowStyle(const long styles) | |
912 | { | |
913 | // Do not try to expand the root node if it hasn't been created yet | |
914 | if (m_anchor && !HasFlag(wxTR_HIDE_ROOT) && (styles & wxTR_HIDE_ROOT)) | |
915 | { | |
916 | // if we will hide the root, make sure children are visible | |
917 | m_anchor->SetHasPlus(); | |
918 | m_anchor->Expand(); | |
919 | CalculatePositions(); | |
920 | } | |
921 | ||
922 | // right now, just sets the styles. Eventually, we may | |
923 | // want to update the inherited styles, but right now | |
924 | // none of the parents has updatable styles | |
925 | m_windowStyle = styles; | |
926 | m_dirty = true; | |
927 | } | |
928 | ||
929 | // ----------------------------------------------------------------------------- | |
930 | // functions to work with tree items | |
931 | // ----------------------------------------------------------------------------- | |
932 | ||
933 | wxString wxGenericTreeCtrl::GetItemText(const wxTreeItemId& item) const | |
934 | { | |
935 | wxCHECK_MSG( item.IsOk(), wxEmptyString, wxT("invalid tree item") ); | |
936 | ||
937 | return ((wxGenericTreeItem*) item.m_pItem)->GetText(); | |
938 | } | |
939 | ||
940 | int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId& item, | |
941 | wxTreeItemIcon which) const | |
942 | { | |
943 | wxCHECK_MSG( item.IsOk(), -1, wxT("invalid tree item") ); | |
944 | ||
945 | return ((wxGenericTreeItem*) item.m_pItem)->GetImage(which); | |
946 | } | |
947 | ||
948 | wxTreeItemData *wxGenericTreeCtrl::GetItemData(const wxTreeItemId& item) const | |
949 | { | |
950 | wxCHECK_MSG( item.IsOk(), NULL, wxT("invalid tree item") ); | |
951 | ||
952 | return ((wxGenericTreeItem*) item.m_pItem)->GetData(); | |
953 | } | |
954 | ||
955 | wxColour wxGenericTreeCtrl::GetItemTextColour(const wxTreeItemId& item) const | |
956 | { | |
957 | wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") ); | |
958 | ||
959 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
960 | return pItem->Attr().GetTextColour(); | |
961 | } | |
962 | ||
963 | wxColour wxGenericTreeCtrl::GetItemBackgroundColour(const wxTreeItemId& item) const | |
964 | { | |
965 | wxCHECK_MSG( item.IsOk(), wxNullColour, wxT("invalid tree item") ); | |
966 | ||
967 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
968 | return pItem->Attr().GetBackgroundColour(); | |
969 | } | |
970 | ||
971 | wxFont wxGenericTreeCtrl::GetItemFont(const wxTreeItemId& item) const | |
972 | { | |
973 | wxCHECK_MSG( item.IsOk(), wxNullFont, wxT("invalid tree item") ); | |
974 | ||
975 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
976 | return pItem->Attr().GetFont(); | |
977 | } | |
978 | ||
979 | void wxGenericTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text) | |
980 | { | |
981 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
982 | ||
983 | wxClientDC dc(this); | |
984 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
985 | pItem->SetText(text); | |
986 | CalculateSize(pItem, dc); | |
987 | RefreshLine(pItem); | |
988 | } | |
989 | ||
990 | void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId& item, | |
991 | int image, | |
992 | wxTreeItemIcon which) | |
993 | { | |
994 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
995 | ||
996 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
997 | pItem->SetImage(image, which); | |
998 | ||
999 | wxClientDC dc(this); | |
1000 | CalculateSize(pItem, dc); | |
1001 | RefreshLine(pItem); | |
1002 | } | |
1003 | ||
1004 | void wxGenericTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data) | |
1005 | { | |
1006 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1007 | ||
1008 | if (data) | |
1009 | data->SetId( item ); | |
1010 | ||
1011 | ((wxGenericTreeItem*) item.m_pItem)->SetData(data); | |
1012 | } | |
1013 | ||
1014 | void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has) | |
1015 | { | |
1016 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1017 | ||
1018 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1019 | pItem->SetHasPlus(has); | |
1020 | RefreshLine(pItem); | |
1021 | } | |
1022 | ||
1023 | void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold) | |
1024 | { | |
1025 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1026 | ||
1027 | // avoid redrawing the tree if no real change | |
1028 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1029 | if ( pItem->IsBold() != bold ) | |
1030 | { | |
1031 | pItem->SetBold(bold); | |
1032 | ||
1033 | // recalculate the item size as bold and non bold fonts have different | |
1034 | // widths | |
1035 | wxClientDC dc(this); | |
1036 | CalculateSize(pItem, dc); | |
1037 | ||
1038 | RefreshLine(pItem); | |
1039 | } | |
1040 | } | |
1041 | ||
1042 | void wxGenericTreeCtrl::SetItemDropHighlight(const wxTreeItemId& item, | |
1043 | bool highlight) | |
1044 | { | |
1045 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1046 | ||
1047 | wxColour fg, bg; | |
1048 | ||
1049 | if (highlight) | |
1050 | { | |
1051 | bg = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT); | |
1052 | fg = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
1053 | } | |
1054 | ||
1055 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1056 | pItem->Attr().SetTextColour(fg); | |
1057 | pItem->Attr().SetBackgroundColour(bg); | |
1058 | RefreshLine(pItem); | |
1059 | } | |
1060 | ||
1061 | void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId& item, | |
1062 | const wxColour& col) | |
1063 | { | |
1064 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1065 | ||
1066 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1067 | pItem->Attr().SetTextColour(col); | |
1068 | RefreshLine(pItem); | |
1069 | } | |
1070 | ||
1071 | void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item, | |
1072 | const wxColour& col) | |
1073 | { | |
1074 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1075 | ||
1076 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1077 | pItem->Attr().SetBackgroundColour(col); | |
1078 | RefreshLine(pItem); | |
1079 | } | |
1080 | ||
1081 | void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font) | |
1082 | { | |
1083 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1084 | ||
1085 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1086 | pItem->Attr().SetFont(font); | |
1087 | RefreshLine(pItem); | |
1088 | } | |
1089 | ||
1090 | bool wxGenericTreeCtrl::SetFont( const wxFont &font ) | |
1091 | { | |
1092 | wxTreeCtrlBase::SetFont(font); | |
1093 | ||
1094 | m_normalFont = font ; | |
1095 | m_boldFont = wxFont(m_normalFont.GetPointSize(), | |
1096 | m_normalFont.GetFamily(), | |
1097 | m_normalFont.GetStyle(), | |
1098 | wxBOLD, | |
1099 | m_normalFont.GetUnderlined(), | |
1100 | m_normalFont.GetFaceName(), | |
1101 | m_normalFont.GetEncoding()); | |
1102 | ||
1103 | return true; | |
1104 | } | |
1105 | ||
1106 | ||
1107 | // ----------------------------------------------------------------------------- | |
1108 | // item status inquiries | |
1109 | // ----------------------------------------------------------------------------- | |
1110 | ||
1111 | bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId& item) const | |
1112 | { | |
1113 | wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") ); | |
1114 | ||
1115 | // An item is only visible if it's not a descendant of a collapsed item | |
1116 | wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem; | |
1117 | wxGenericTreeItem* parent = pItem->GetParent(); | |
1118 | while (parent) | |
1119 | { | |
1120 | if (!parent->IsExpanded()) | |
1121 | return false; | |
1122 | parent = parent->GetParent(); | |
1123 | } | |
1124 | ||
1125 | int startX, startY; | |
1126 | GetViewStart(& startX, & startY); | |
1127 | ||
1128 | wxSize clientSize = GetClientSize(); | |
1129 | ||
1130 | wxRect rect; | |
1131 | if (!GetBoundingRect(item, rect)) | |
1132 | return false; | |
1133 | if (rect.GetWidth() == 0 || rect.GetHeight() == 0) | |
1134 | return false; | |
1135 | if (rect.GetBottom() < 0 || rect.GetTop() > clientSize.y) | |
1136 | return false; | |
1137 | if (rect.GetRight() < 0 || rect.GetLeft() > clientSize.x) | |
1138 | return false; | |
1139 | ||
1140 | return true; | |
1141 | } | |
1142 | ||
1143 | bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const | |
1144 | { | |
1145 | wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") ); | |
1146 | ||
1147 | // consider that the item does have children if it has the "+" button: it | |
1148 | // might not have them (if it had never been expanded yet) but then it | |
1149 | // could have them as well and it's better to err on this side rather than | |
1150 | // disabling some operations which are restricted to the items with | |
1151 | // children for an item which does have them | |
1152 | return ((wxGenericTreeItem*) item.m_pItem)->HasPlus(); | |
1153 | } | |
1154 | ||
1155 | bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId& item) const | |
1156 | { | |
1157 | wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") ); | |
1158 | ||
1159 | return ((wxGenericTreeItem*) item.m_pItem)->IsExpanded(); | |
1160 | } | |
1161 | ||
1162 | bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId& item) const | |
1163 | { | |
1164 | wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") ); | |
1165 | ||
1166 | return ((wxGenericTreeItem*) item.m_pItem)->IsSelected(); | |
1167 | } | |
1168 | ||
1169 | bool wxGenericTreeCtrl::IsBold(const wxTreeItemId& item) const | |
1170 | { | |
1171 | wxCHECK_MSG( item.IsOk(), false, wxT("invalid tree item") ); | |
1172 | ||
1173 | return ((wxGenericTreeItem*) item.m_pItem)->IsBold(); | |
1174 | } | |
1175 | ||
1176 | // ----------------------------------------------------------------------------- | |
1177 | // navigation | |
1178 | // ----------------------------------------------------------------------------- | |
1179 | ||
1180 | wxTreeItemId wxGenericTreeCtrl::GetItemParent(const wxTreeItemId& item) const | |
1181 | { | |
1182 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1183 | ||
1184 | return ((wxGenericTreeItem*) item.m_pItem)->GetParent(); | |
1185 | } | |
1186 | ||
1187 | wxTreeItemId wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId& item, | |
1188 | wxTreeItemIdValue& cookie) const | |
1189 | { | |
1190 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1191 | ||
1192 | cookie = 0; | |
1193 | return GetNextChild(item, cookie); | |
1194 | } | |
1195 | ||
1196 | wxTreeItemId wxGenericTreeCtrl::GetNextChild(const wxTreeItemId& item, | |
1197 | wxTreeItemIdValue& cookie) const | |
1198 | { | |
1199 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1200 | ||
1201 | wxArrayGenericTreeItems& children = ((wxGenericTreeItem*) item.m_pItem)->GetChildren(); | |
1202 | ||
1203 | // it's ok to cast cookie to size_t, we never have indices big enough to | |
1204 | // overflow "void *" | |
1205 | size_t *pIndex = (size_t *)&cookie; | |
1206 | if ( *pIndex < children.Count() ) | |
1207 | { | |
1208 | return children.Item((*pIndex)++); | |
1209 | } | |
1210 | else | |
1211 | { | |
1212 | // there are no more of them | |
1213 | return wxTreeItemId(); | |
1214 | } | |
1215 | } | |
1216 | ||
1217 | #if WXWIN_COMPATIBILITY_2_4 | |
1218 | ||
1219 | wxTreeItemId wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId& item, | |
1220 | long& cookie) const | |
1221 | { | |
1222 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1223 | ||
1224 | cookie = 0; | |
1225 | return GetNextChild(item, cookie); | |
1226 | } | |
1227 | ||
1228 | wxTreeItemId wxGenericTreeCtrl::GetNextChild(const wxTreeItemId& item, | |
1229 | long& cookie) const | |
1230 | { | |
1231 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1232 | ||
1233 | wxArrayGenericTreeItems& children = ((wxGenericTreeItem*) item.m_pItem)->GetChildren(); | |
1234 | if ( (size_t)cookie < children.Count() ) | |
1235 | { | |
1236 | return children.Item((size_t)cookie++); | |
1237 | } | |
1238 | else | |
1239 | { | |
1240 | // there are no more of them | |
1241 | return wxTreeItemId(); | |
1242 | } | |
1243 | } | |
1244 | ||
1245 | #endif // WXWIN_COMPATIBILITY_2_4 | |
1246 | ||
1247 | wxTreeItemId wxGenericTreeCtrl::GetLastChild(const wxTreeItemId& item) const | |
1248 | { | |
1249 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1250 | ||
1251 | wxArrayGenericTreeItems& children = ((wxGenericTreeItem*) item.m_pItem)->GetChildren(); | |
1252 | return (children.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children.Last())); | |
1253 | } | |
1254 | ||
1255 | wxTreeItemId wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId& item) const | |
1256 | { | |
1257 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1258 | ||
1259 | wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem; | |
1260 | wxGenericTreeItem *parent = i->GetParent(); | |
1261 | if ( parent == NULL ) | |
1262 | { | |
1263 | // root item doesn't have any siblings | |
1264 | return wxTreeItemId(); | |
1265 | } | |
1266 | ||
1267 | wxArrayGenericTreeItems& siblings = parent->GetChildren(); | |
1268 | int index = siblings.Index(i); | |
1269 | wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent? | |
1270 | ||
1271 | size_t n = (size_t)(index + 1); | |
1272 | return n == siblings.Count() ? wxTreeItemId() : wxTreeItemId(siblings[n]); | |
1273 | } | |
1274 | ||
1275 | wxTreeItemId wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const | |
1276 | { | |
1277 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1278 | ||
1279 | wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem; | |
1280 | wxGenericTreeItem *parent = i->GetParent(); | |
1281 | if ( parent == NULL ) | |
1282 | { | |
1283 | // root item doesn't have any siblings | |
1284 | return wxTreeItemId(); | |
1285 | } | |
1286 | ||
1287 | wxArrayGenericTreeItems& siblings = parent->GetChildren(); | |
1288 | int index = siblings.Index(i); | |
1289 | wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent? | |
1290 | ||
1291 | return index == 0 ? wxTreeItemId() | |
1292 | : wxTreeItemId(siblings[(size_t)(index - 1)]); | |
1293 | } | |
1294 | ||
1295 | // Only for internal use right now, but should probably be public | |
1296 | wxTreeItemId wxGenericTreeCtrl::GetNext(const wxTreeItemId& item) const | |
1297 | { | |
1298 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1299 | ||
1300 | wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem; | |
1301 | ||
1302 | // First see if there are any children. | |
1303 | wxArrayGenericTreeItems& children = i->GetChildren(); | |
1304 | if (children.GetCount() > 0) | |
1305 | { | |
1306 | return children.Item(0); | |
1307 | } | |
1308 | else | |
1309 | { | |
1310 | // Try a sibling of this or ancestor instead | |
1311 | wxTreeItemId p = item; | |
1312 | wxTreeItemId toFind; | |
1313 | do | |
1314 | { | |
1315 | toFind = GetNextSibling(p); | |
1316 | p = GetItemParent(p); | |
1317 | } while (p.IsOk() && !toFind.IsOk()); | |
1318 | return toFind; | |
1319 | } | |
1320 | } | |
1321 | ||
1322 | wxTreeItemId wxGenericTreeCtrl::GetFirstVisibleItem() const | |
1323 | { | |
1324 | wxTreeItemId id = GetRootItem(); | |
1325 | if (!id.IsOk()) | |
1326 | return id; | |
1327 | ||
1328 | do | |
1329 | { | |
1330 | if (IsVisible(id)) | |
1331 | return id; | |
1332 | id = GetNext(id); | |
1333 | } while (id.IsOk()); | |
1334 | ||
1335 | return wxTreeItemId(); | |
1336 | } | |
1337 | ||
1338 | wxTreeItemId wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId& item) const | |
1339 | { | |
1340 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1341 | ||
1342 | wxTreeItemId id = item; | |
1343 | if (id.IsOk()) | |
1344 | { | |
1345 | while (id = GetNext(id), id.IsOk()) | |
1346 | { | |
1347 | if (IsVisible(id)) | |
1348 | return id; | |
1349 | } | |
1350 | } | |
1351 | return wxTreeItemId(); | |
1352 | } | |
1353 | ||
1354 | wxTreeItemId wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const | |
1355 | { | |
1356 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); | |
1357 | ||
1358 | wxFAIL_MSG(wxT("not implemented")); | |
1359 | ||
1360 | return wxTreeItemId(); | |
1361 | } | |
1362 | ||
1363 | // called by wxTextTreeCtrl when it marks itself for deletion | |
1364 | void wxGenericTreeCtrl::ResetTextControl() | |
1365 | { | |
1366 | m_textCtrl = NULL; | |
1367 | } | |
1368 | ||
1369 | // find the first item starting with the given prefix after the given item | |
1370 | wxTreeItemId wxGenericTreeCtrl::FindItem(const wxTreeItemId& idParent, | |
1371 | const wxString& prefixOrig) const | |
1372 | { | |
1373 | // match is case insensitive as this is more convenient to the user: having | |
1374 | // to press Shift-letter to go to the item starting with a capital letter | |
1375 | // would be too bothersome | |
1376 | wxString prefix = prefixOrig.Lower(); | |
1377 | ||
1378 | // determine the starting point: we shouldn't take the current item (this | |
1379 | // allows to switch between two items starting with the same letter just by | |
1380 | // pressing it) but we shouldn't jump to the next one if the user is | |
1381 | // continuing to type as otherwise he might easily skip the item he wanted | |
1382 | wxTreeItemId id = idParent; | |
1383 | if ( prefix.length() == 1 ) | |
1384 | { | |
1385 | id = GetNext(id); | |
1386 | } | |
1387 | ||
1388 | // look for the item starting with the given prefix after it | |
1389 | while ( id.IsOk() && !GetItemText(id).Lower().StartsWith(prefix) ) | |
1390 | { | |
1391 | id = GetNext(id); | |
1392 | } | |
1393 | ||
1394 | // if we haven't found anything... | |
1395 | if ( !id.IsOk() ) | |
1396 | { | |
1397 | // ... wrap to the beginning | |
1398 | id = GetRootItem(); | |
1399 | if ( HasFlag(wxTR_HIDE_ROOT) ) | |
1400 | { | |
1401 | // can't select virtual root | |
1402 | id = GetNext(id); | |
1403 | } | |
1404 | ||
1405 | // and try all the items (stop when we get to the one we started from) | |
1406 | while (id.IsOk() && id != idParent && !GetItemText(id).Lower().StartsWith(prefix) ) | |
1407 | { | |
1408 | id = GetNext(id); | |
1409 | } | |
1410 | // If we haven't found the item, id.IsOk() will be false, as per | |
1411 | // documentation | |
1412 | } | |
1413 | ||
1414 | return id; | |
1415 | } | |
1416 | ||
1417 | // ----------------------------------------------------------------------------- | |
1418 | // operations | |
1419 | // ----------------------------------------------------------------------------- | |
1420 | ||
1421 | wxTreeItemId wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId& parentId, | |
1422 | size_t previous, | |
1423 | const wxString& text, | |
1424 | int image, | |
1425 | int selImage, | |
1426 | wxTreeItemData *data) | |
1427 | { | |
1428 | wxGenericTreeItem *parent = (wxGenericTreeItem*) parentId.m_pItem; | |
1429 | if ( !parent ) | |
1430 | { | |
1431 | // should we give a warning here? | |
1432 | return AddRoot(text, image, selImage, data); | |
1433 | } | |
1434 | ||
1435 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
1436 | ||
1437 | wxGenericTreeItem *item = | |
1438 | new wxGenericTreeItem( parent, text, image, selImage, data ); | |
1439 | ||
1440 | if ( data != NULL ) | |
1441 | { | |
1442 | data->m_pItem = item; | |
1443 | } | |
1444 | ||
1445 | parent->Insert( item, previous == (size_t)-1 ? parent->GetChildren().size() | |
1446 | : previous ); | |
1447 | ||
1448 | return item; | |
1449 | } | |
1450 | ||
1451 | wxTreeItemId wxGenericTreeCtrl::AddRoot(const wxString& text, | |
1452 | int image, | |
1453 | int selImage, | |
1454 | wxTreeItemData *data) | |
1455 | { | |
1456 | wxCHECK_MSG( !m_anchor, wxTreeItemId(), wxT("tree can have only one root") ); | |
1457 | ||
1458 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
1459 | ||
1460 | m_anchor = new wxGenericTreeItem((wxGenericTreeItem *)NULL, text, | |
1461 | image, selImage, data); | |
1462 | if ( data != NULL ) | |
1463 | { | |
1464 | data->m_pItem = m_anchor; | |
1465 | } | |
1466 | ||
1467 | if (HasFlag(wxTR_HIDE_ROOT)) | |
1468 | { | |
1469 | // if root is hidden, make sure we can navigate | |
1470 | // into children | |
1471 | m_anchor->SetHasPlus(); | |
1472 | m_anchor->Expand(); | |
1473 | CalculatePositions(); | |
1474 | } | |
1475 | ||
1476 | if (!HasFlag(wxTR_MULTIPLE)) | |
1477 | { | |
1478 | m_current = m_key_current = m_anchor; | |
1479 | m_current->SetHilight( true ); | |
1480 | } | |
1481 | ||
1482 | return m_anchor; | |
1483 | } | |
1484 | ||
1485 | wxTreeItemId wxGenericTreeCtrl::DoInsertAfter(const wxTreeItemId& parentId, | |
1486 | const wxTreeItemId& idPrevious, | |
1487 | const wxString& text, | |
1488 | int image, int selImage, | |
1489 | wxTreeItemData *data) | |
1490 | { | |
1491 | wxGenericTreeItem *parent = (wxGenericTreeItem*) parentId.m_pItem; | |
1492 | if ( !parent ) | |
1493 | { | |
1494 | // should we give a warning here? | |
1495 | return AddRoot(text, image, selImage, data); | |
1496 | } | |
1497 | ||
1498 | int index = -1; | |
1499 | if (idPrevious.IsOk()) | |
1500 | { | |
1501 | index = parent->GetChildren().Index((wxGenericTreeItem*) idPrevious.m_pItem); | |
1502 | wxASSERT_MSG( index != wxNOT_FOUND, | |
1503 | wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") ); | |
1504 | } | |
1505 | ||
1506 | return DoInsertItem(parentId, (size_t)++index, text, image, selImage, data); | |
1507 | } | |
1508 | ||
1509 | ||
1510 | void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem *item) | |
1511 | { | |
1512 | wxTreeEvent event(wxEVT_COMMAND_TREE_DELETE_ITEM, this, item); | |
1513 | ProcessEvent( event ); | |
1514 | } | |
1515 | ||
1516 | // Don't leave edit or selection on a child which is about to disappear | |
1517 | void wxGenericTreeCtrl::ChildrenClosing(wxGenericTreeItem* item) | |
1518 | { | |
1519 | if (m_textCtrl != NULL && item != m_textCtrl->item() && IsDescendantOf(item, m_textCtrl->item())) { | |
1520 | m_textCtrl->StopEditing(); | |
1521 | } | |
1522 | if (item != m_key_current && IsDescendantOf(item, m_key_current)) { | |
1523 | m_key_current = NULL; | |
1524 | } | |
1525 | if (IsDescendantOf(item, m_select_me)) { | |
1526 | m_select_me = item; | |
1527 | } | |
1528 | if (item != m_current && IsDescendantOf(item, m_current)) { | |
1529 | m_current->SetHilight( false ); | |
1530 | m_current = NULL; | |
1531 | m_select_me = item; | |
1532 | } | |
1533 | } | |
1534 | ||
1535 | void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId& itemId) | |
1536 | { | |
1537 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
1538 | ||
1539 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1540 | ChildrenClosing(item); | |
1541 | item->DeleteChildren(this); | |
1542 | } | |
1543 | ||
1544 | void wxGenericTreeCtrl::Delete(const wxTreeItemId& itemId) | |
1545 | { | |
1546 | m_dirty = true; // do this first so stuff below doesn't cause flicker | |
1547 | ||
1548 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1549 | ||
1550 | if (m_textCtrl != NULL && IsDescendantOf(item, m_textCtrl->item())) | |
1551 | { | |
1552 | // can't delete the item being edited, cancel editing it first | |
1553 | m_textCtrl->StopEditing(); | |
1554 | } | |
1555 | ||
1556 | wxGenericTreeItem *parent = item->GetParent(); | |
1557 | ||
1558 | // don't keep stale pointers around! | |
1559 | if ( IsDescendantOf(item, m_key_current) ) | |
1560 | { | |
1561 | // Don't silently change the selection: | |
1562 | // do it properly in idle time, so event | |
1563 | // handlers get called. | |
1564 | ||
1565 | // m_key_current = parent; | |
1566 | m_key_current = NULL; | |
1567 | } | |
1568 | ||
1569 | // m_select_me records whether we need to select | |
1570 | // a different item, in idle time. | |
1571 | if ( m_select_me && IsDescendantOf(item, m_select_me) ) | |
1572 | { | |
1573 | m_select_me = parent; | |
1574 | } | |
1575 | ||
1576 | if ( IsDescendantOf(item, m_current) ) | |
1577 | { | |
1578 | // Don't silently change the selection: | |
1579 | // do it properly in idle time, so event | |
1580 | // handlers get called. | |
1581 | ||
1582 | // m_current = parent; | |
1583 | m_current = NULL; | |
1584 | m_select_me = parent; | |
1585 | } | |
1586 | ||
1587 | // remove the item from the tree | |
1588 | if ( parent ) | |
1589 | { | |
1590 | parent->GetChildren().Remove( item ); // remove by value | |
1591 | } | |
1592 | else // deleting the root | |
1593 | { | |
1594 | // nothing will be left in the tree | |
1595 | m_anchor = NULL; | |
1596 | } | |
1597 | ||
1598 | // and delete all of its children and the item itself now | |
1599 | item->DeleteChildren(this); | |
1600 | SendDeleteEvent(item); | |
1601 | ||
1602 | if (item == m_select_me) | |
1603 | m_select_me = NULL; | |
1604 | ||
1605 | delete item; | |
1606 | } | |
1607 | ||
1608 | void wxGenericTreeCtrl::DeleteAllItems() | |
1609 | { | |
1610 | if ( m_anchor ) | |
1611 | { | |
1612 | Delete(m_anchor); | |
1613 | } | |
1614 | } | |
1615 | ||
1616 | void wxGenericTreeCtrl::Expand(const wxTreeItemId& itemId) | |
1617 | { | |
1618 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1619 | ||
1620 | wxCHECK_RET( item, _T("invalid item in wxGenericTreeCtrl::Expand") ); | |
1621 | wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT) || itemId != GetRootItem(), | |
1622 | _T("can't expand hidden root") ); | |
1623 | ||
1624 | if ( !item->HasPlus() ) | |
1625 | return; | |
1626 | ||
1627 | if ( item->IsExpanded() ) | |
1628 | return; | |
1629 | ||
1630 | wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_EXPANDING, this, item); | |
1631 | ||
1632 | if ( ProcessEvent( event ) && !event.IsAllowed() ) | |
1633 | { | |
1634 | // cancelled by program | |
1635 | return; | |
1636 | } | |
1637 | ||
1638 | item->Expand(); | |
1639 | CalculatePositions(); | |
1640 | ||
1641 | RefreshSubtree(item); | |
1642 | ||
1643 | event.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED); | |
1644 | ProcessEvent( event ); | |
1645 | } | |
1646 | ||
1647 | void wxGenericTreeCtrl::Collapse(const wxTreeItemId& itemId) | |
1648 | { | |
1649 | wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT) || itemId != GetRootItem(), | |
1650 | _T("can't collapse hidden root") ); | |
1651 | ||
1652 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1653 | ||
1654 | if ( !item->IsExpanded() ) | |
1655 | return; | |
1656 | ||
1657 | wxTreeEvent event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING, this, item); | |
1658 | if ( ProcessEvent( event ) && !event.IsAllowed() ) | |
1659 | { | |
1660 | // cancelled by program | |
1661 | return; | |
1662 | } | |
1663 | ||
1664 | ChildrenClosing(item); | |
1665 | item->Collapse(); | |
1666 | ||
1667 | #if 0 // TODO why should items be collapsed recursively? | |
1668 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
1669 | size_t count = children.Count(); | |
1670 | for ( size_t n = 0; n < count; n++ ) | |
1671 | { | |
1672 | Collapse(children[n]); | |
1673 | } | |
1674 | #endif | |
1675 | ||
1676 | CalculatePositions(); | |
1677 | ||
1678 | RefreshSubtree(item); | |
1679 | ||
1680 | event.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED); | |
1681 | ProcessEvent( event ); | |
1682 | } | |
1683 | ||
1684 | void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId& item) | |
1685 | { | |
1686 | Collapse(item); | |
1687 | DeleteChildren(item); | |
1688 | } | |
1689 | ||
1690 | void wxGenericTreeCtrl::Toggle(const wxTreeItemId& itemId) | |
1691 | { | |
1692 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1693 | ||
1694 | if (item->IsExpanded()) | |
1695 | Collapse(itemId); | |
1696 | else | |
1697 | Expand(itemId); | |
1698 | } | |
1699 | ||
1700 | void wxGenericTreeCtrl::Unselect() | |
1701 | { | |
1702 | if (m_current) | |
1703 | { | |
1704 | m_current->SetHilight( false ); | |
1705 | RefreshLine( m_current ); | |
1706 | ||
1707 | m_current = NULL; | |
1708 | m_select_me = NULL; | |
1709 | } | |
1710 | } | |
1711 | ||
1712 | void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem *item) | |
1713 | { | |
1714 | if (item->IsSelected()) | |
1715 | { | |
1716 | item->SetHilight(false); | |
1717 | RefreshLine(item); | |
1718 | } | |
1719 | ||
1720 | if (item->HasChildren()) | |
1721 | { | |
1722 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
1723 | size_t count = children.Count(); | |
1724 | for ( size_t n = 0; n < count; ++n ) | |
1725 | { | |
1726 | UnselectAllChildren(children[n]); | |
1727 | } | |
1728 | } | |
1729 | } | |
1730 | ||
1731 | void wxGenericTreeCtrl::UnselectAll() | |
1732 | { | |
1733 | wxTreeItemId rootItem = GetRootItem(); | |
1734 | ||
1735 | // the tree might not have the root item at all | |
1736 | if ( rootItem ) | |
1737 | { | |
1738 | UnselectAllChildren((wxGenericTreeItem*) rootItem.m_pItem); | |
1739 | } | |
1740 | } | |
1741 | ||
1742 | // Recursive function ! | |
1743 | // To stop we must have crt_item<last_item | |
1744 | // Algorithm : | |
1745 | // Tag all next children, when no more children, | |
1746 | // Move to parent (not to tag) | |
1747 | // Keep going... if we found last_item, we stop. | |
1748 | bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select) | |
1749 | { | |
1750 | wxGenericTreeItem *parent = crt_item->GetParent(); | |
1751 | ||
1752 | if (parent == NULL) // This is root item | |
1753 | return TagAllChildrenUntilLast(crt_item, last_item, select); | |
1754 | ||
1755 | wxArrayGenericTreeItems& children = parent->GetChildren(); | |
1756 | int index = children.Index(crt_item); | |
1757 | wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent? | |
1758 | ||
1759 | size_t count = children.Count(); | |
1760 | for (size_t n=(size_t)(index+1); n<count; ++n) | |
1761 | { | |
1762 | if (TagAllChildrenUntilLast(children[n], last_item, select)) return true; | |
1763 | } | |
1764 | ||
1765 | return TagNextChildren(parent, last_item, select); | |
1766 | } | |
1767 | ||
1768 | bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select) | |
1769 | { | |
1770 | crt_item->SetHilight(select); | |
1771 | RefreshLine(crt_item); | |
1772 | ||
1773 | if (crt_item==last_item) | |
1774 | return true; | |
1775 | ||
1776 | if (crt_item->HasChildren()) | |
1777 | { | |
1778 | wxArrayGenericTreeItems& children = crt_item->GetChildren(); | |
1779 | size_t count = children.Count(); | |
1780 | for ( size_t n = 0; n < count; ++n ) | |
1781 | { | |
1782 | if (TagAllChildrenUntilLast(children[n], last_item, select)) | |
1783 | return true; | |
1784 | } | |
1785 | } | |
1786 | ||
1787 | return false; | |
1788 | } | |
1789 | ||
1790 | void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem *item1, wxGenericTreeItem *item2) | |
1791 | { | |
1792 | m_select_me = NULL; | |
1793 | ||
1794 | // item2 is not necessary after item1 | |
1795 | // choice first' and 'last' between item1 and item2 | |
1796 | wxGenericTreeItem *first= (item1->GetY()<item2->GetY()) ? item1 : item2; | |
1797 | wxGenericTreeItem *last = (item1->GetY()<item2->GetY()) ? item2 : item1; | |
1798 | ||
1799 | bool select = m_current->IsSelected(); | |
1800 | ||
1801 | if ( TagAllChildrenUntilLast(first,last,select) ) | |
1802 | return; | |
1803 | ||
1804 | TagNextChildren(first,last,select); | |
1805 | } | |
1806 | ||
1807 | void wxGenericTreeCtrl::DoSelectItem(const wxTreeItemId& itemId, | |
1808 | bool unselect_others, | |
1809 | bool extended_select) | |
1810 | { | |
1811 | wxCHECK_RET( itemId.IsOk(), wxT("invalid tree item") ); | |
1812 | ||
1813 | m_select_me = NULL; | |
1814 | ||
1815 | bool is_single=!(GetWindowStyleFlag() & wxTR_MULTIPLE); | |
1816 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1817 | ||
1818 | //wxCHECK_RET( ( (!unselect_others) && is_single), | |
1819 | // wxT("this is a single selection tree") ); | |
1820 | ||
1821 | // to keep going anyhow !!! | |
1822 | if (is_single) | |
1823 | { | |
1824 | if (item->IsSelected()) | |
1825 | return; // nothing to do | |
1826 | unselect_others = true; | |
1827 | extended_select = false; | |
1828 | } | |
1829 | else if ( unselect_others && item->IsSelected() ) | |
1830 | { | |
1831 | // selection change if there is more than one item currently selected | |
1832 | wxArrayTreeItemIds selected_items; | |
1833 | if ( GetSelections(selected_items) == 1 ) | |
1834 | return; | |
1835 | } | |
1836 | ||
1837 | wxTreeEvent event(wxEVT_COMMAND_TREE_SEL_CHANGING, this, item); | |
1838 | event.m_itemOld = m_current; | |
1839 | // TODO : Here we don't send any selection mode yet ! | |
1840 | ||
1841 | if ( GetEventHandler()->ProcessEvent( event ) && !event.IsAllowed() ) | |
1842 | return; | |
1843 | ||
1844 | wxTreeItemId parent = GetItemParent( itemId ); | |
1845 | while (parent.IsOk()) | |
1846 | { | |
1847 | if (!IsExpanded(parent)) | |
1848 | Expand( parent ); | |
1849 | ||
1850 | parent = GetItemParent( parent ); | |
1851 | } | |
1852 | ||
1853 | // ctrl press | |
1854 | if (unselect_others) | |
1855 | { | |
1856 | if (is_single) Unselect(); // to speed up thing | |
1857 | else UnselectAll(); | |
1858 | } | |
1859 | ||
1860 | // shift press | |
1861 | if (extended_select) | |
1862 | { | |
1863 | if ( !m_current ) | |
1864 | { | |
1865 | m_current = m_key_current = (wxGenericTreeItem*) GetRootItem().m_pItem; | |
1866 | } | |
1867 | ||
1868 | // don't change the mark (m_current) | |
1869 | SelectItemRange(m_current, item); | |
1870 | } | |
1871 | else | |
1872 | { | |
1873 | bool select = true; // the default | |
1874 | ||
1875 | // Check if we need to toggle hilight (ctrl mode) | |
1876 | if (!unselect_others) | |
1877 | select=!item->IsSelected(); | |
1878 | ||
1879 | m_current = m_key_current = item; | |
1880 | m_current->SetHilight(select); | |
1881 | RefreshLine( m_current ); | |
1882 | } | |
1883 | ||
1884 | // This can cause idle processing to select the root | |
1885 | // if no item is selected, so it must be after the | |
1886 | // selection is set | |
1887 | EnsureVisible( itemId ); | |
1888 | ||
1889 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED); | |
1890 | GetEventHandler()->ProcessEvent( event ); | |
1891 | } | |
1892 | ||
1893 | void wxGenericTreeCtrl::SelectItem(const wxTreeItemId& itemId, bool select) | |
1894 | { | |
1895 | if ( select ) | |
1896 | { | |
1897 | DoSelectItem(itemId, !HasFlag(wxTR_MULTIPLE)); | |
1898 | } | |
1899 | else // deselect | |
1900 | { | |
1901 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
1902 | wxCHECK_RET( item, wxT("SelectItem(): invalid tree item") ); | |
1903 | ||
1904 | wxTreeEvent event(wxEVT_COMMAND_TREE_SEL_CHANGING, this, item); | |
1905 | if ( GetEventHandler()->ProcessEvent( event ) && !event.IsAllowed() ) | |
1906 | return; | |
1907 | ||
1908 | item->SetHilight(false); | |
1909 | RefreshLine(item); | |
1910 | ||
1911 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED); | |
1912 | GetEventHandler()->ProcessEvent( event ); | |
1913 | } | |
1914 | } | |
1915 | ||
1916 | void wxGenericTreeCtrl::FillArray(wxGenericTreeItem *item, | |
1917 | wxArrayTreeItemIds &array) const | |
1918 | { | |
1919 | if ( item->IsSelected() ) | |
1920 | array.Add(wxTreeItemId(item)); | |
1921 | ||
1922 | if ( item->HasChildren() ) | |
1923 | { | |
1924 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
1925 | size_t count = children.GetCount(); | |
1926 | for ( size_t n = 0; n < count; ++n ) | |
1927 | FillArray(children[n], array); | |
1928 | } | |
1929 | } | |
1930 | ||
1931 | size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds &array) const | |
1932 | { | |
1933 | array.Empty(); | |
1934 | wxTreeItemId idRoot = GetRootItem(); | |
1935 | if ( idRoot.IsOk() ) | |
1936 | { | |
1937 | FillArray((wxGenericTreeItem*) idRoot.m_pItem, array); | |
1938 | } | |
1939 | //else: the tree is empty, so no selections | |
1940 | ||
1941 | return array.Count(); | |
1942 | } | |
1943 | ||
1944 | void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId& item) | |
1945 | { | |
1946 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
1947 | ||
1948 | if (!item.IsOk()) return; | |
1949 | ||
1950 | wxGenericTreeItem *gitem = (wxGenericTreeItem*) item.m_pItem; | |
1951 | ||
1952 | // first expand all parent branches | |
1953 | wxGenericTreeItem *parent = gitem->GetParent(); | |
1954 | ||
1955 | if ( HasFlag(wxTR_HIDE_ROOT) ) | |
1956 | { | |
1957 | while ( parent && parent != m_anchor ) | |
1958 | { | |
1959 | Expand(parent); | |
1960 | parent = parent->GetParent(); | |
1961 | } | |
1962 | } | |
1963 | else | |
1964 | { | |
1965 | while ( parent ) | |
1966 | { | |
1967 | Expand(parent); | |
1968 | parent = parent->GetParent(); | |
1969 | } | |
1970 | } | |
1971 | ||
1972 | //if (parent) CalculatePositions(); | |
1973 | ||
1974 | ScrollTo(item); | |
1975 | } | |
1976 | ||
1977 | void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId &item) | |
1978 | { | |
1979 | if (!item.IsOk()) return; | |
1980 | ||
1981 | // We have to call this here because the label in | |
1982 | // question might just have been added and no screen | |
1983 | // update taken place. | |
1984 | if (m_dirty) | |
1985 | #if defined( __WXMSW__ ) || defined(__WXMAC__) | |
1986 | Update(); | |
1987 | #else | |
1988 | DoDirtyProcessing(); | |
1989 | #endif | |
1990 | wxGenericTreeItem *gitem = (wxGenericTreeItem*) item.m_pItem; | |
1991 | ||
1992 | // now scroll to the item | |
1993 | int item_y = gitem->GetY(); | |
1994 | ||
1995 | int start_x = 0; | |
1996 | int start_y = 0; | |
1997 | GetViewStart( &start_x, &start_y ); | |
1998 | start_y *= PIXELS_PER_UNIT; | |
1999 | ||
2000 | int client_h = 0; | |
2001 | int client_w = 0; | |
2002 | GetClientSize( &client_w, &client_h ); | |
2003 | ||
2004 | if (item_y < start_y+3) | |
2005 | { | |
2006 | // going down | |
2007 | int x = 0; | |
2008 | int y = 0; | |
2009 | m_anchor->GetSize( x, y, this ); | |
2010 | y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
2011 | x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
2012 | int x_pos = GetScrollPos( wxHORIZONTAL ); | |
2013 | // Item should appear at top | |
2014 | SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, item_y/PIXELS_PER_UNIT ); | |
2015 | } | |
2016 | else if (item_y+GetLineHeight(gitem) > start_y+client_h) | |
2017 | { | |
2018 | // going up | |
2019 | int x = 0; | |
2020 | int y = 0; | |
2021 | m_anchor->GetSize( x, y, this ); | |
2022 | y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
2023 | x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
2024 | item_y += PIXELS_PER_UNIT+2; | |
2025 | int x_pos = GetScrollPos( wxHORIZONTAL ); | |
2026 | // Item should appear at bottom | |
2027 | SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, (item_y+GetLineHeight(gitem)-client_h)/PIXELS_PER_UNIT ); | |
2028 | } | |
2029 | } | |
2030 | ||
2031 | // FIXME: tree sorting functions are not reentrant and not MT-safe! | |
2032 | static wxGenericTreeCtrl *s_treeBeingSorted = NULL; | |
2033 | ||
2034 | static int LINKAGEMODE tree_ctrl_compare_func(wxGenericTreeItem **item1, | |
2035 | wxGenericTreeItem **item2) | |
2036 | { | |
2037 | wxCHECK_MSG( s_treeBeingSorted, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") ); | |
2038 | ||
2039 | return s_treeBeingSorted->OnCompareItems(*item1, *item2); | |
2040 | } | |
2041 | ||
2042 | void wxGenericTreeCtrl::SortChildren(const wxTreeItemId& itemId) | |
2043 | { | |
2044 | wxCHECK_RET( itemId.IsOk(), wxT("invalid tree item") ); | |
2045 | ||
2046 | wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem; | |
2047 | ||
2048 | wxCHECK_RET( !s_treeBeingSorted, | |
2049 | wxT("wxGenericTreeCtrl::SortChildren is not reentrant") ); | |
2050 | ||
2051 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
2052 | if ( children.Count() > 1 ) | |
2053 | { | |
2054 | m_dirty = true; | |
2055 | ||
2056 | s_treeBeingSorted = this; | |
2057 | children.Sort(tree_ctrl_compare_func); | |
2058 | s_treeBeingSorted = NULL; | |
2059 | } | |
2060 | //else: don't make the tree dirty as nothing changed | |
2061 | } | |
2062 | ||
2063 | void wxGenericTreeCtrl::CalculateLineHeight() | |
2064 | { | |
2065 | wxClientDC dc(this); | |
2066 | m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
2067 | ||
2068 | if ( m_imageListNormal ) | |
2069 | { | |
2070 | // Calculate a m_lineHeight value from the normal Image sizes. | |
2071 | // May be toggle off. Then wxGenericTreeCtrl will spread when | |
2072 | // necessary (which might look ugly). | |
2073 | int n = m_imageListNormal->GetImageCount(); | |
2074 | for (int i = 0; i < n ; i++) | |
2075 | { | |
2076 | int width = 0, height = 0; | |
2077 | m_imageListNormal->GetSize(i, width, height); | |
2078 | if (height > m_lineHeight) m_lineHeight = height; | |
2079 | } | |
2080 | } | |
2081 | ||
2082 | if (m_imageListButtons) | |
2083 | { | |
2084 | // Calculate a m_lineHeight value from the Button image sizes. | |
2085 | // May be toggle off. Then wxGenericTreeCtrl will spread when | |
2086 | // necessary (which might look ugly). | |
2087 | int n = m_imageListButtons->GetImageCount(); | |
2088 | for (int i = 0; i < n ; i++) | |
2089 | { | |
2090 | int width = 0, height = 0; | |
2091 | m_imageListButtons->GetSize(i, width, height); | |
2092 | if (height > m_lineHeight) m_lineHeight = height; | |
2093 | } | |
2094 | } | |
2095 | ||
2096 | if (m_lineHeight < 30) | |
2097 | m_lineHeight += 2; // at least 2 pixels | |
2098 | else | |
2099 | m_lineHeight += m_lineHeight/10; // otherwise 10% extra spacing | |
2100 | } | |
2101 | ||
2102 | void wxGenericTreeCtrl::SetImageList(wxImageList *imageList) | |
2103 | { | |
2104 | if (m_ownsImageListNormal) delete m_imageListNormal; | |
2105 | m_imageListNormal = imageList; | |
2106 | m_ownsImageListNormal = false; | |
2107 | m_dirty = true; | |
2108 | // Don't do any drawing if we're setting the list to NULL, | |
2109 | // since we may be in the process of deleting the tree control. | |
2110 | if (imageList) | |
2111 | CalculateLineHeight(); | |
2112 | } | |
2113 | ||
2114 | void wxGenericTreeCtrl::SetStateImageList(wxImageList *imageList) | |
2115 | { | |
2116 | if (m_ownsImageListState) delete m_imageListState; | |
2117 | m_imageListState = imageList; | |
2118 | m_ownsImageListState = false; | |
2119 | } | |
2120 | ||
2121 | void wxGenericTreeCtrl::SetButtonsImageList(wxImageList *imageList) | |
2122 | { | |
2123 | if (m_ownsImageListButtons) delete m_imageListButtons; | |
2124 | m_imageListButtons = imageList; | |
2125 | m_ownsImageListButtons = false; | |
2126 | m_dirty = true; | |
2127 | CalculateLineHeight(); | |
2128 | } | |
2129 | ||
2130 | void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList *imageList) | |
2131 | { | |
2132 | SetButtonsImageList(imageList); | |
2133 | m_ownsImageListButtons = true; | |
2134 | } | |
2135 | ||
2136 | // ----------------------------------------------------------------------------- | |
2137 | // helpers | |
2138 | // ----------------------------------------------------------------------------- | |
2139 | ||
2140 | void wxGenericTreeCtrl::AdjustMyScrollbars() | |
2141 | { | |
2142 | if (m_anchor) | |
2143 | { | |
2144 | int x = 0, y = 0; | |
2145 | m_anchor->GetSize( x, y, this ); | |
2146 | y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
2147 | x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
2148 | int x_pos = GetScrollPos( wxHORIZONTAL ); | |
2149 | int y_pos = GetScrollPos( wxVERTICAL ); | |
2150 | SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, y_pos ); | |
2151 | } | |
2152 | else | |
2153 | { | |
2154 | SetScrollbars( 0, 0, 0, 0 ); | |
2155 | } | |
2156 | } | |
2157 | ||
2158 | int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem *item) const | |
2159 | { | |
2160 | if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT) | |
2161 | return item->GetHeight(); | |
2162 | else | |
2163 | return m_lineHeight; | |
2164 | } | |
2165 | ||
2166 | void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc) | |
2167 | { | |
2168 | // TODO implement "state" icon on items | |
2169 | ||
2170 | wxTreeItemAttr *attr = item->GetAttributes(); | |
2171 | if ( attr && attr->HasFont() ) | |
2172 | dc.SetFont(attr->GetFont()); | |
2173 | else if (item->IsBold()) | |
2174 | dc.SetFont(m_boldFont); | |
2175 | ||
2176 | long text_w = 0, text_h = 0; | |
2177 | dc.GetTextExtent( item->GetText(), &text_w, &text_h ); | |
2178 | ||
2179 | int image_h = 0, image_w = 0; | |
2180 | int image = item->GetCurrentImage(); | |
2181 | if ( image != NO_IMAGE ) | |
2182 | { | |
2183 | if ( m_imageListNormal ) | |
2184 | { | |
2185 | m_imageListNormal->GetSize( image, image_w, image_h ); | |
2186 | image_w += MARGIN_BETWEEN_IMAGE_AND_TEXT; | |
2187 | } | |
2188 | else | |
2189 | { | |
2190 | image = NO_IMAGE; | |
2191 | } | |
2192 | } | |
2193 | ||
2194 | int total_h = GetLineHeight(item); | |
2195 | bool drawItemBackground = false; | |
2196 | ||
2197 | if ( item->IsSelected() ) | |
2198 | { | |
2199 | dc.SetBrush(*(m_hasFocus ? m_hilightBrush : m_hilightUnfocusedBrush)); | |
2200 | drawItemBackground = true; | |
2201 | } | |
2202 | else | |
2203 | { | |
2204 | wxColour colBg; | |
2205 | if ( attr && attr->HasBackgroundColour() ) | |
2206 | { | |
2207 | drawItemBackground = true; | |
2208 | colBg = attr->GetBackgroundColour(); | |
2209 | } | |
2210 | else | |
2211 | { | |
2212 | colBg = GetBackgroundColour(); | |
2213 | } | |
2214 | dc.SetBrush(wxBrush(colBg, wxSOLID)); | |
2215 | } | |
2216 | ||
2217 | int offset = HasFlag(wxTR_ROW_LINES) ? 1 : 0; | |
2218 | ||
2219 | if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT) ) | |
2220 | { | |
2221 | int x, w, h; | |
2222 | x=0; | |
2223 | GetVirtualSize(&w, &h); | |
2224 | wxRect rect( x, item->GetY()+offset, w, total_h-offset); | |
2225 | #if !defined(__WXGTK20__) && !defined(__WXMAC__) | |
2226 | dc.DrawRectangle(rect); | |
2227 | #else | |
2228 | if (!item->IsSelected()) | |
2229 | { | |
2230 | dc.DrawRectangle(rect); | |
2231 | } | |
2232 | else | |
2233 | { | |
2234 | int flags = wxCONTROL_SELECTED; | |
2235 | if (m_hasFocus) | |
2236 | flags |= wxCONTROL_FOCUSED; | |
2237 | if ((item == m_current) && (m_hasFocus)) | |
2238 | flags |= wxCONTROL_CURRENT; | |
2239 | wxRendererNative::Get().DrawItemSelectionRect( this, dc, rect, flags ); | |
2240 | } | |
2241 | #endif | |
2242 | } | |
2243 | else | |
2244 | { | |
2245 | if ( item->IsSelected() && image != NO_IMAGE ) | |
2246 | { | |
2247 | // If it's selected, and there's an image, then we should | |
2248 | // take care to leave the area under the image painted in the | |
2249 | // background colour. | |
2250 | wxRect rect( item->GetX() + image_w - 2, item->GetY()+offset, | |
2251 | item->GetWidth() - image_w + 2, total_h-offset ); | |
2252 | #if !defined(__WXGTK20__) && !defined(__WXMAC__) | |
2253 | dc.DrawRectangle( rect ); | |
2254 | #else | |
2255 | rect.x -= 1; | |
2256 | rect.width += 2; | |
2257 | ||
2258 | int flags = wxCONTROL_SELECTED; | |
2259 | if (m_hasFocus) | |
2260 | flags |= wxCONTROL_FOCUSED; | |
2261 | if ((item == m_current) && (m_hasFocus)) | |
2262 | flags |= wxCONTROL_CURRENT; | |
2263 | wxRendererNative::Get().DrawItemSelectionRect( this, dc, rect, flags ); | |
2264 | #endif | |
2265 | } | |
2266 | // On GTK+ 2, drawing a 'normal' background is wrong for themes that | |
2267 | // don't allow backgrounds to be customized. Not drawing the background, | |
2268 | // except for custom item backgrounds, works for both kinds of theme. | |
2269 | else if (drawItemBackground) | |
2270 | { | |
2271 | wxRect rect( item->GetX()-2, item->GetY()+offset, | |
2272 | item->GetWidth()+2, total_h-offset ); | |
2273 | #if !defined(__WXGTK20__) && !defined(__WXMAC__) | |
2274 | dc.DrawRectangle( rect ); | |
2275 | #else | |
2276 | if ( attr && attr->HasBackgroundColour() ) | |
2277 | { | |
2278 | dc.DrawRectangle( rect ); | |
2279 | } | |
2280 | else | |
2281 | { | |
2282 | rect.x -= 1; | |
2283 | rect.width += 2; | |
2284 | ||
2285 | int flags = wxCONTROL_SELECTED; | |
2286 | if (m_hasFocus) | |
2287 | flags |= wxCONTROL_FOCUSED; | |
2288 | if ((item == m_current) && (m_hasFocus)) | |
2289 | flags |= wxCONTROL_CURRENT; | |
2290 | wxRendererNative::Get().DrawItemSelectionRect( this, dc, rect, flags ); | |
2291 | } | |
2292 | #endif | |
2293 | } | |
2294 | } | |
2295 | ||
2296 | if ( image != NO_IMAGE ) | |
2297 | { | |
2298 | dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h ); | |
2299 | m_imageListNormal->Draw( image, dc, | |
2300 | item->GetX(), | |
2301 | item->GetY() +((total_h > image_h)?((total_h-image_h)/2):0), | |
2302 | wxIMAGELIST_DRAW_TRANSPARENT ); | |
2303 | dc.DestroyClippingRegion(); | |
2304 | } | |
2305 | ||
2306 | dc.SetBackgroundMode(wxTRANSPARENT); | |
2307 | int extraH = (total_h > text_h) ? (total_h - text_h)/2 : 0; | |
2308 | dc.DrawText( item->GetText(), | |
2309 | (wxCoord)(image_w + item->GetX()), | |
2310 | (wxCoord)(item->GetY() + extraH)); | |
2311 | ||
2312 | // restore normal font | |
2313 | dc.SetFont( m_normalFont ); | |
2314 | } | |
2315 | ||
2316 | // Now y stands for the top of the item, whereas it used to stand for middle ! | |
2317 | void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y ) | |
2318 | { | |
2319 | int x = level*m_indent; | |
2320 | if (!HasFlag(wxTR_HIDE_ROOT)) | |
2321 | { | |
2322 | x += m_indent; | |
2323 | } | |
2324 | else if (level == 0) | |
2325 | { | |
2326 | // always expand hidden root | |
2327 | int origY = y; | |
2328 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
2329 | int count = children.Count(); | |
2330 | if (count > 0) | |
2331 | { | |
2332 | int n = 0, oldY; | |
2333 | do { | |
2334 | oldY = y; | |
2335 | PaintLevel(children[n], dc, 1, y); | |
2336 | } while (++n < count); | |
2337 | ||
2338 | if (!HasFlag(wxTR_NO_LINES) && HasFlag(wxTR_LINES_AT_ROOT) && count > 0) | |
2339 | { | |
2340 | // draw line down to last child | |
2341 | origY += GetLineHeight(children[0])>>1; | |
2342 | oldY += GetLineHeight(children[n-1])>>1; | |
2343 | dc.DrawLine(3, origY, 3, oldY); | |
2344 | } | |
2345 | } | |
2346 | return; | |
2347 | } | |
2348 | ||
2349 | item->SetX(x+m_spacing); | |
2350 | item->SetY(y); | |
2351 | ||
2352 | int h = GetLineHeight(item); | |
2353 | int y_top = y; | |
2354 | int y_mid = y_top + (h>>1); | |
2355 | y += h; | |
2356 | ||
2357 | int exposed_x = dc.LogicalToDeviceX(0); | |
2358 | int exposed_y = dc.LogicalToDeviceY(y_top); | |
2359 | ||
2360 | if (IsExposed(exposed_x, exposed_y, 10000, h)) // 10000 = very much | |
2361 | { | |
2362 | const wxPen *pen = | |
2363 | #ifndef __WXMAC__ | |
2364 | // don't draw rect outline if we already have the | |
2365 | // background color under Mac | |
2366 | (item->IsSelected() && m_hasFocus) ? wxBLACK_PEN : | |
2367 | #endif // !__WXMAC__ | |
2368 | wxTRANSPARENT_PEN; | |
2369 | ||
2370 | wxColour colText; | |
2371 | if ( item->IsSelected() | |
2372 | #ifdef __WXMAC__ | |
2373 | // On wxMac, if the tree doesn't have the focus we draw an empty | |
2374 | // rectangle, so we want to make sure that the text is visible | |
2375 | // against the normal background, not the highlightbackground, so | |
2376 | // don't use the highlight text colour unless we have the focus. | |
2377 | && m_hasFocus | |
2378 | #endif | |
2379 | ) | |
2380 | { | |
2381 | #ifdef __WXMAC__ | |
2382 | colText = *wxWHITE; | |
2383 | #else | |
2384 | colText = wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
2385 | #endif | |
2386 | } | |
2387 | else | |
2388 | { | |
2389 | wxTreeItemAttr *attr = item->GetAttributes(); | |
2390 | if (attr && attr->HasTextColour()) | |
2391 | colText = attr->GetTextColour(); | |
2392 | else | |
2393 | colText = GetForegroundColour(); | |
2394 | } | |
2395 | ||
2396 | // prepare to draw | |
2397 | dc.SetTextForeground(colText); | |
2398 | dc.SetPen(*pen); | |
2399 | ||
2400 | // draw | |
2401 | PaintItem(item, dc); | |
2402 | ||
2403 | if (HasFlag(wxTR_ROW_LINES)) | |
2404 | { | |
2405 | // if the background colour is white, choose a | |
2406 | // contrasting color for the lines | |
2407 | dc.SetPen(*((GetBackgroundColour() == *wxWHITE) | |
2408 | ? wxMEDIUM_GREY_PEN : wxWHITE_PEN)); | |
2409 | dc.DrawLine(0, y_top, 10000, y_top); | |
2410 | dc.DrawLine(0, y, 10000, y); | |
2411 | } | |
2412 | ||
2413 | // restore DC objects | |
2414 | dc.SetBrush(*wxWHITE_BRUSH); | |
2415 | dc.SetPen(m_dottedPen); | |
2416 | dc.SetTextForeground(*wxBLACK); | |
2417 | ||
2418 | if ( !HasFlag(wxTR_NO_LINES) ) | |
2419 | { | |
2420 | // draw the horizontal line here | |
2421 | int x_start = x; | |
2422 | if (x > (signed)m_indent) | |
2423 | x_start -= m_indent; | |
2424 | else if (HasFlag(wxTR_LINES_AT_ROOT)) | |
2425 | x_start = 3; | |
2426 | dc.DrawLine(x_start, y_mid, x + m_spacing, y_mid); | |
2427 | } | |
2428 | ||
2429 | // should the item show a button? | |
2430 | if ( item->HasPlus() && HasButtons() ) | |
2431 | { | |
2432 | if ( m_imageListButtons ) | |
2433 | { | |
2434 | // draw the image button here | |
2435 | int image_h = 0, | |
2436 | image_w = 0; | |
2437 | int image = item->IsExpanded() ? wxTreeItemIcon_Expanded | |
2438 | : wxTreeItemIcon_Normal; | |
2439 | if ( item->IsSelected() ) | |
2440 | image += wxTreeItemIcon_Selected - wxTreeItemIcon_Normal; | |
2441 | ||
2442 | m_imageListButtons->GetSize(image, image_w, image_h); | |
2443 | int xx = x - image_w/2; | |
2444 | int yy = y_mid - image_h/2; | |
2445 | ||
2446 | wxDCClipper clip(dc, xx, yy, image_w, image_h); | |
2447 | m_imageListButtons->Draw(image, dc, xx, yy, | |
2448 | wxIMAGELIST_DRAW_TRANSPARENT); | |
2449 | } | |
2450 | else // no custom buttons | |
2451 | { | |
2452 | static const int wImage = 9; | |
2453 | static const int hImage = 9; | |
2454 | ||
2455 | int flag = 0; | |
2456 | if (item->IsExpanded()) | |
2457 | flag |= wxCONTROL_EXPANDED; | |
2458 | if (item == m_underMouse) | |
2459 | flag |= wxCONTROL_CURRENT; | |
2460 | ||
2461 | wxRendererNative::Get().DrawTreeItemButton | |
2462 | ( | |
2463 | this, | |
2464 | dc, | |
2465 | wxRect(x - wImage/2, | |
2466 | y_mid - hImage/2, | |
2467 | wImage, hImage), | |
2468 | flag | |
2469 | ); | |
2470 | } | |
2471 | } | |
2472 | } | |
2473 | ||
2474 | if (item->IsExpanded()) | |
2475 | { | |
2476 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
2477 | int count = children.Count(); | |
2478 | if (count > 0) | |
2479 | { | |
2480 | int n = 0, oldY; | |
2481 | ++level; | |
2482 | do { | |
2483 | oldY = y; | |
2484 | PaintLevel(children[n], dc, level, y); | |
2485 | } while (++n < count); | |
2486 | ||
2487 | if (!HasFlag(wxTR_NO_LINES) && count > 0) | |
2488 | { | |
2489 | // draw line down to last child | |
2490 | oldY += GetLineHeight(children[n-1])>>1; | |
2491 | if (HasButtons()) y_mid += 5; | |
2492 | ||
2493 | // Only draw the portion of the line that is visible, in case it is huge | |
2494 | wxCoord xOrigin=0, yOrigin=0, width, height; | |
2495 | dc.GetDeviceOrigin(&xOrigin, &yOrigin); | |
2496 | yOrigin = abs(yOrigin); | |
2497 | GetClientSize(&width, &height); | |
2498 | ||
2499 | // Move end points to the begining/end of the view? | |
2500 | if (y_mid < yOrigin) | |
2501 | y_mid = yOrigin; | |
2502 | if (oldY > yOrigin + height) | |
2503 | oldY = yOrigin + height; | |
2504 | ||
2505 | // after the adjustments if y_mid is larger than oldY then the line | |
2506 | // isn't visible at all so don't draw anything | |
2507 | if (y_mid < oldY) | |
2508 | dc.DrawLine(x, y_mid, x, oldY); | |
2509 | } | |
2510 | } | |
2511 | } | |
2512 | } | |
2513 | ||
2514 | void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem *item) | |
2515 | { | |
2516 | if ( item ) | |
2517 | { | |
2518 | if ( item->HasPlus() ) | |
2519 | { | |
2520 | // it's a folder, indicate it by a border | |
2521 | DrawBorder(item); | |
2522 | } | |
2523 | else | |
2524 | { | |
2525 | // draw a line under the drop target because the item will be | |
2526 | // dropped there | |
2527 | DrawLine(item, !m_dropEffectAboveItem ); | |
2528 | } | |
2529 | ||
2530 | SetCursor(wxCURSOR_BULLSEYE); | |
2531 | } | |
2532 | else | |
2533 | { | |
2534 | // can't drop here | |
2535 | SetCursor(wxCURSOR_NO_ENTRY); | |
2536 | } | |
2537 | } | |
2538 | ||
2539 | void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId &item) | |
2540 | { | |
2541 | wxCHECK_RET( item.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") ); | |
2542 | ||
2543 | wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem; | |
2544 | ||
2545 | wxClientDC dc(this); | |
2546 | PrepareDC( dc ); | |
2547 | dc.SetLogicalFunction(wxINVERT); | |
2548 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
2549 | ||
2550 | int w = i->GetWidth() + 2; | |
2551 | int h = GetLineHeight(i) + 2; | |
2552 | ||
2553 | dc.DrawRectangle( i->GetX() - 1, i->GetY() - 1, w, h); | |
2554 | } | |
2555 | ||
2556 | void wxGenericTreeCtrl::DrawLine(const wxTreeItemId &item, bool below) | |
2557 | { | |
2558 | wxCHECK_RET( item.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") ); | |
2559 | ||
2560 | wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem; | |
2561 | ||
2562 | wxClientDC dc(this); | |
2563 | PrepareDC( dc ); | |
2564 | dc.SetLogicalFunction(wxINVERT); | |
2565 | ||
2566 | int x = i->GetX(), | |
2567 | y = i->GetY(); | |
2568 | if ( below ) | |
2569 | { | |
2570 | y += GetLineHeight(i) - 1; | |
2571 | } | |
2572 | ||
2573 | dc.DrawLine( x, y, x + i->GetWidth(), y); | |
2574 | } | |
2575 | ||
2576 | // ----------------------------------------------------------------------------- | |
2577 | // wxWidgets callbacks | |
2578 | // ----------------------------------------------------------------------------- | |
2579 | ||
2580 | void wxGenericTreeCtrl::OnSize( wxSizeEvent &event ) | |
2581 | { | |
2582 | #ifdef __WXGTK__ | |
2583 | if (HasFlag( wxTR_FULL_ROW_HIGHLIGHT) && m_current) | |
2584 | RefreshLine( m_current ); | |
2585 | #endif | |
2586 | ||
2587 | event.Skip(true); | |
2588 | } | |
2589 | ||
2590 | void wxGenericTreeCtrl::OnPaint( wxPaintEvent &WXUNUSED(event) ) | |
2591 | { | |
2592 | wxPaintDC dc(this); | |
2593 | PrepareDC( dc ); | |
2594 | ||
2595 | if ( !m_anchor) | |
2596 | return; | |
2597 | ||
2598 | dc.SetFont( m_normalFont ); | |
2599 | dc.SetPen( m_dottedPen ); | |
2600 | ||
2601 | // this is now done dynamically | |
2602 | //if(GetImageList() == NULL) | |
2603 | // m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
2604 | ||
2605 | int y = 2; | |
2606 | PaintLevel( m_anchor, dc, 0, y ); | |
2607 | } | |
2608 | ||
2609 | void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent &event ) | |
2610 | { | |
2611 | m_hasFocus = true; | |
2612 | ||
2613 | RefreshSelected(); | |
2614 | ||
2615 | event.Skip(); | |
2616 | } | |
2617 | ||
2618 | void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent &event ) | |
2619 | { | |
2620 | m_hasFocus = false; | |
2621 | ||
2622 | RefreshSelected(); | |
2623 | ||
2624 | event.Skip(); | |
2625 | } | |
2626 | ||
2627 | void wxGenericTreeCtrl::OnChar( wxKeyEvent &event ) | |
2628 | { | |
2629 | wxTreeEvent te( wxEVT_COMMAND_TREE_KEY_DOWN, this); | |
2630 | te.m_evtKey = event; | |
2631 | if ( GetEventHandler()->ProcessEvent( te ) ) | |
2632 | { | |
2633 | // intercepted by the user code | |
2634 | return; | |
2635 | } | |
2636 | ||
2637 | if ( (m_current == 0) || (m_key_current == 0) ) | |
2638 | { | |
2639 | event.Skip(); | |
2640 | return; | |
2641 | } | |
2642 | ||
2643 | // how should the selection work for this event? | |
2644 | bool is_multiple, extended_select, unselect_others; | |
2645 | EventFlagsToSelType(GetWindowStyleFlag(), | |
2646 | event.ShiftDown(), | |
2647 | event.CmdDown(), | |
2648 | is_multiple, extended_select, unselect_others); | |
2649 | ||
2650 | if (GetLayoutDirection() == wxLayout_RightToLeft) | |
2651 | { | |
2652 | if (event.GetKeyCode() == WXK_RIGHT) | |
2653 | event.m_keyCode = WXK_LEFT; | |
2654 | else if (event.GetKeyCode() == WXK_LEFT) | |
2655 | event.m_keyCode = WXK_RIGHT; | |
2656 | } | |
2657 | ||
2658 | // + : Expand | |
2659 | // - : Collaspe | |
2660 | // * : Expand all/Collapse all | |
2661 | // ' ' | return : activate | |
2662 | // up : go up (not last children!) | |
2663 | // down : go down | |
2664 | // left : go to parent | |
2665 | // right : open if parent and go next | |
2666 | // home : go to root | |
2667 | // end : go to last item without opening parents | |
2668 | // alnum : start or continue searching for the item with this prefix | |
2669 | int keyCode = event.GetKeyCode(); | |
2670 | switch ( keyCode ) | |
2671 | { | |
2672 | case '+': | |
2673 | case WXK_ADD: | |
2674 | if (m_current->HasPlus() && !IsExpanded(m_current)) | |
2675 | { | |
2676 | Expand(m_current); | |
2677 | } | |
2678 | break; | |
2679 | ||
2680 | case '*': | |
2681 | case WXK_MULTIPLY: | |
2682 | if ( !IsExpanded(m_current) ) | |
2683 | { | |
2684 | // expand all | |
2685 | ExpandAllChildren(m_current); | |
2686 | break; | |
2687 | } | |
2688 | //else: fall through to Collapse() it | |
2689 | ||
2690 | case '-': | |
2691 | case WXK_SUBTRACT: | |
2692 | if (IsExpanded(m_current)) | |
2693 | { | |
2694 | Collapse(m_current); | |
2695 | } | |
2696 | break; | |
2697 | ||
2698 | case WXK_MENU: | |
2699 | { | |
2700 | // Use the item's bounding rectangle to determine position for the event | |
2701 | wxRect ItemRect; | |
2702 | GetBoundingRect(m_current, ItemRect, true); | |
2703 | ||
2704 | wxTreeEvent eventMenu(wxEVT_COMMAND_TREE_ITEM_MENU, this, m_current); | |
2705 | // Use the left edge, vertical middle | |
2706 | eventMenu.m_pointDrag = wxPoint(ItemRect.GetX(), | |
2707 | ItemRect.GetY() + ItemRect.GetHeight() / 2); | |
2708 | GetEventHandler()->ProcessEvent( eventMenu ); | |
2709 | } | |
2710 | break; | |
2711 | ||
2712 | case ' ': | |
2713 | case WXK_RETURN: | |
2714 | if ( !event.HasModifiers() ) | |
2715 | { | |
2716 | wxTreeEvent eventAct(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, this, m_current); | |
2717 | GetEventHandler()->ProcessEvent( eventAct ); | |
2718 | } | |
2719 | ||
2720 | // in any case, also generate the normal key event for this key, | |
2721 | // even if we generated the ACTIVATED event above: this is what | |
2722 | // wxMSW does and it makes sense because you might not want to | |
2723 | // process ACTIVATED event at all and handle Space and Return | |
2724 | // directly (and differently) which would be impossible otherwise | |
2725 | event.Skip(); | |
2726 | break; | |
2727 | ||
2728 | // up goes to the previous sibling or to the last | |
2729 | // of its children if it's expanded | |
2730 | case WXK_UP: | |
2731 | { | |
2732 | wxTreeItemId prev = GetPrevSibling( m_key_current ); | |
2733 | if (!prev) | |
2734 | { | |
2735 | prev = GetItemParent( m_key_current ); | |
2736 | if ((prev == GetRootItem()) && HasFlag(wxTR_HIDE_ROOT)) | |
2737 | { | |
2738 | break; // don't go to root if it is hidden | |
2739 | } | |
2740 | if (prev) | |
2741 | { | |
2742 | wxTreeItemIdValue cookie; | |
2743 | wxTreeItemId current = m_key_current; | |
2744 | // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be? | |
2745 | if (current == GetFirstChild( prev, cookie )) | |
2746 | { | |
2747 | // otherwise we return to where we came from | |
2748 | DoSelectItem( prev, unselect_others, extended_select ); | |
2749 | m_key_current= (wxGenericTreeItem*) prev.m_pItem; | |
2750 | break; | |
2751 | } | |
2752 | } | |
2753 | } | |
2754 | if (prev) | |
2755 | { | |
2756 | while ( IsExpanded(prev) && HasChildren(prev) ) | |
2757 | { | |
2758 | wxTreeItemId child = GetLastChild(prev); | |
2759 | if ( child ) | |
2760 | { | |
2761 | prev = child; | |
2762 | } | |
2763 | } | |
2764 | ||
2765 | DoSelectItem( prev, unselect_others, extended_select ); | |
2766 | m_key_current=(wxGenericTreeItem*) prev.m_pItem; | |
2767 | } | |
2768 | } | |
2769 | break; | |
2770 | ||
2771 | // left arrow goes to the parent | |
2772 | case WXK_LEFT: | |
2773 | { | |
2774 | wxTreeItemId prev = GetItemParent( m_current ); | |
2775 | if ((prev == GetRootItem()) && HasFlag(wxTR_HIDE_ROOT)) | |
2776 | { | |
2777 | // don't go to root if it is hidden | |
2778 | prev = GetPrevSibling( m_current ); | |
2779 | } | |
2780 | if (prev) | |
2781 | { | |
2782 | DoSelectItem( prev, unselect_others, extended_select ); | |
2783 | } | |
2784 | } | |
2785 | break; | |
2786 | ||
2787 | case WXK_RIGHT: | |
2788 | // this works the same as the down arrow except that we | |
2789 | // also expand the item if it wasn't expanded yet | |
2790 | Expand(m_current); | |
2791 | // fall through | |
2792 | ||
2793 | case WXK_DOWN: | |
2794 | { | |
2795 | if (IsExpanded(m_key_current) && HasChildren(m_key_current)) | |
2796 | { | |
2797 | wxTreeItemIdValue cookie; | |
2798 | wxTreeItemId child = GetFirstChild( m_key_current, cookie ); | |
2799 | DoSelectItem( child, unselect_others, extended_select ); | |
2800 | m_key_current=(wxGenericTreeItem*) child.m_pItem; | |
2801 | } | |
2802 | else | |
2803 | { | |
2804 | wxTreeItemId next = GetNextSibling( m_key_current ); | |
2805 | if (!next) | |
2806 | { | |
2807 | wxTreeItemId current = m_key_current; | |
2808 | while (current.IsOk() && !next) | |
2809 | { | |
2810 | current = GetItemParent( current ); | |
2811 | if (current) next = GetNextSibling( current ); | |
2812 | } | |
2813 | } | |
2814 | if (next) | |
2815 | { | |
2816 | DoSelectItem( next, unselect_others, extended_select ); | |
2817 | m_key_current=(wxGenericTreeItem*) next.m_pItem; | |
2818 | } | |
2819 | } | |
2820 | } | |
2821 | break; | |
2822 | ||
2823 | // <End> selects the last visible tree item | |
2824 | case WXK_END: | |
2825 | { | |
2826 | wxTreeItemId last = GetRootItem(); | |
2827 | ||
2828 | while ( last.IsOk() && IsExpanded(last) ) | |
2829 | { | |
2830 | wxTreeItemId lastChild = GetLastChild(last); | |
2831 | ||
2832 | // it may happen if the item was expanded but then all of | |
2833 | // its children have been deleted - so IsExpanded() returned | |
2834 | // true, but GetLastChild() returned invalid item | |
2835 | if ( !lastChild ) | |
2836 | break; | |
2837 | ||
2838 | last = lastChild; | |
2839 | } | |
2840 | ||
2841 | if ( last.IsOk() ) | |
2842 | { | |
2843 | DoSelectItem( last, unselect_others, extended_select ); | |
2844 | } | |
2845 | } | |
2846 | break; | |
2847 | ||
2848 | // <Home> selects the root item | |
2849 | case WXK_HOME: | |
2850 | { | |
2851 | wxTreeItemId prev = GetRootItem(); | |
2852 | if (!prev) | |
2853 | break; | |
2854 | ||
2855 | if ( HasFlag(wxTR_HIDE_ROOT) ) | |
2856 | { | |
2857 | wxTreeItemIdValue cookie; | |
2858 | prev = GetFirstChild(prev, cookie); | |
2859 | if (!prev) | |
2860 | break; | |
2861 | } | |
2862 | ||
2863 | DoSelectItem( prev, unselect_others, extended_select ); | |
2864 | } | |
2865 | break; | |
2866 | ||
2867 | default: | |
2868 | // do not use wxIsalnum() here | |
2869 | if ( !event.HasModifiers() && | |
2870 | ((keyCode >= '0' && keyCode <= '9') || | |
2871 | (keyCode >= 'a' && keyCode <= 'z') || | |
2872 | (keyCode >= 'A' && keyCode <= 'Z' ))) | |
2873 | { | |
2874 | // find the next item starting with the given prefix | |
2875 | wxChar ch = (wxChar)keyCode; | |
2876 | ||
2877 | wxTreeItemId id = FindItem(m_current, m_findPrefix + ch); | |
2878 | if ( !id.IsOk() ) | |
2879 | { | |
2880 | // no such item | |
2881 | break; | |
2882 | } | |
2883 | ||
2884 | SelectItem(id); | |
2885 | ||
2886 | m_findPrefix += ch; | |
2887 | ||
2888 | // also start the timer to reset the current prefix if the user | |
2889 | // doesn't press any more alnum keys soon -- we wouldn't want | |
2890 | // to use this prefix for a new item search | |
2891 | if ( !m_findTimer ) | |
2892 | { | |
2893 | m_findTimer = new wxTreeFindTimer(this); | |
2894 | } | |
2895 | ||
2896 | m_findTimer->Start(wxTreeFindTimer::DELAY, wxTIMER_ONE_SHOT); | |
2897 | } | |
2898 | else | |
2899 | { | |
2900 | event.Skip(); | |
2901 | } | |
2902 | } | |
2903 | } | |
2904 | ||
2905 | wxTreeItemId | |
2906 | wxGenericTreeCtrl::DoTreeHitTest(const wxPoint& point, int& flags) const | |
2907 | { | |
2908 | int w, h; | |
2909 | GetSize(&w, &h); | |
2910 | flags=0; | |
2911 | if (point.x<0) flags |= wxTREE_HITTEST_TOLEFT; | |
2912 | if (point.x>w) flags |= wxTREE_HITTEST_TORIGHT; | |
2913 | if (point.y<0) flags |= wxTREE_HITTEST_ABOVE; | |
2914 | if (point.y>h) flags |= wxTREE_HITTEST_BELOW; | |
2915 | if (flags) return wxTreeItemId(); | |
2916 | ||
2917 | if (m_anchor == NULL) | |
2918 | { | |
2919 | flags = wxTREE_HITTEST_NOWHERE; | |
2920 | return wxTreeItemId(); | |
2921 | } | |
2922 | ||
2923 | wxGenericTreeItem *hit = m_anchor->HitTest(CalcUnscrolledPosition(point), | |
2924 | this, flags, 0); | |
2925 | if (hit == NULL) | |
2926 | { | |
2927 | flags = wxTREE_HITTEST_NOWHERE; | |
2928 | return wxTreeItemId(); | |
2929 | } | |
2930 | return hit; | |
2931 | } | |
2932 | ||
2933 | // get the bounding rectangle of the item (or of its label only) | |
2934 | bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId& item, | |
2935 | wxRect& rect, | |
2936 | bool textOnly) const | |
2937 | { | |
2938 | wxCHECK_MSG( item.IsOk(), false, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") ); | |
2939 | ||
2940 | wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem; | |
2941 | ||
2942 | if ( textOnly ) | |
2943 | { | |
2944 | rect.x = i->GetX(); | |
2945 | rect.width = i->GetWidth(); | |
2946 | ||
2947 | if ( m_imageListNormal ) | |
2948 | { | |
2949 | int image_w, image_h; | |
2950 | m_imageListNormal->GetSize( 0, image_w, image_h ); | |
2951 | rect.width += image_w + MARGIN_BETWEEN_IMAGE_AND_TEXT; | |
2952 | } | |
2953 | } | |
2954 | else // the entire line | |
2955 | { | |
2956 | rect.x = 0; | |
2957 | rect.width = GetClientSize().x; | |
2958 | } | |
2959 | ||
2960 | rect.y = i->GetY(); | |
2961 | rect.height = GetLineHeight(i); | |
2962 | ||
2963 | // we have to return the logical coordinates, not physical ones | |
2964 | rect.SetTopLeft(CalcScrolledPosition(rect.GetTopLeft())); | |
2965 | ||
2966 | return true; | |
2967 | } | |
2968 | ||
2969 | wxTextCtrl *wxGenericTreeCtrl::EditLabel(const wxTreeItemId& item, | |
2970 | wxClassInfo * WXUNUSED(textCtrlClass)) | |
2971 | { | |
2972 | wxCHECK_MSG( item.IsOk(), NULL, _T("can't edit an invalid item") ); | |
2973 | ||
2974 | wxGenericTreeItem *itemEdit = (wxGenericTreeItem *)item.m_pItem; | |
2975 | ||
2976 | wxTreeEvent te(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, this, itemEdit); | |
2977 | if ( GetEventHandler()->ProcessEvent( te ) && !te.IsAllowed() ) | |
2978 | { | |
2979 | // vetoed by user | |
2980 | return NULL; | |
2981 | } | |
2982 | ||
2983 | // We have to call this here because the label in | |
2984 | // question might just have been added and no screen | |
2985 | // update taken place. | |
2986 | if ( m_dirty ) | |
2987 | #if defined( __WXMSW__ ) || defined(__WXMAC__) | |
2988 | Update(); | |
2989 | #else | |
2990 | DoDirtyProcessing(); | |
2991 | #endif | |
2992 | ||
2993 | // TODO: use textCtrlClass here to create the control of correct class | |
2994 | m_textCtrl = new wxTreeTextCtrl(this, itemEdit); | |
2995 | ||
2996 | m_textCtrl->SetFocus(); | |
2997 | ||
2998 | return m_textCtrl; | |
2999 | } | |
3000 | ||
3001 | // returns a pointer to the text edit control if the item is being | |
3002 | // edited, NULL otherwise (it's assumed that no more than one item may | |
3003 | // be edited simultaneously) | |
3004 | wxTextCtrl* wxGenericTreeCtrl::GetEditControl() const | |
3005 | { | |
3006 | return m_textCtrl; | |
3007 | } | |
3008 | ||
3009 | void wxGenericTreeCtrl::EndEditLabel(const wxTreeItemId& WXUNUSED(item), | |
3010 | bool discardChanges) | |
3011 | { | |
3012 | wxCHECK_RET( m_textCtrl, _T("not editing label") ); | |
3013 | ||
3014 | m_textCtrl->EndEdit(discardChanges); | |
3015 | } | |
3016 | ||
3017 | bool wxGenericTreeCtrl::OnRenameAccept(wxGenericTreeItem *item, | |
3018 | const wxString& value) | |
3019 | { | |
3020 | wxTreeEvent le(wxEVT_COMMAND_TREE_END_LABEL_EDIT, this, item); | |
3021 | le.m_label = value; | |
3022 | le.m_editCancelled = false; | |
3023 | ||
3024 | return !GetEventHandler()->ProcessEvent( le ) || le.IsAllowed(); | |
3025 | } | |
3026 | ||
3027 | void wxGenericTreeCtrl::OnRenameCancelled(wxGenericTreeItem *item) | |
3028 | { | |
3029 | // let owner know that the edit was cancelled | |
3030 | wxTreeEvent le(wxEVT_COMMAND_TREE_END_LABEL_EDIT, this, item); | |
3031 | le.m_label = wxEmptyString; | |
3032 | le.m_editCancelled = true; | |
3033 | ||
3034 | GetEventHandler()->ProcessEvent( le ); | |
3035 | } | |
3036 | ||
3037 | void wxGenericTreeCtrl::OnRenameTimer() | |
3038 | { | |
3039 | EditLabel( m_current ); | |
3040 | } | |
3041 | ||
3042 | void wxGenericTreeCtrl::OnMouse( wxMouseEvent &event ) | |
3043 | { | |
3044 | if ( !m_anchor )return; | |
3045 | ||
3046 | wxPoint pt = CalcUnscrolledPosition(event.GetPosition()); | |
3047 | ||
3048 | // Is the mouse over a tree item button? | |
3049 | int flags = 0; | |
3050 | wxGenericTreeItem *thisItem = m_anchor->HitTest(pt, this, flags, 0); | |
3051 | wxGenericTreeItem *underMouse = thisItem; | |
3052 | #if wxUSE_TOOLTIPS | |
3053 | bool underMouseChanged = (underMouse != m_underMouse) ; | |
3054 | #endif // wxUSE_TOOLTIPS | |
3055 | ||
3056 | if ((underMouse) && | |
3057 | (flags & wxTREE_HITTEST_ONITEMBUTTON) && | |
3058 | (!event.LeftIsDown()) && | |
3059 | (!m_isDragging) && | |
3060 | (!m_renameTimer || !m_renameTimer->IsRunning())) | |
3061 | { | |
3062 | } | |
3063 | else | |
3064 | { | |
3065 | underMouse = NULL; | |
3066 | } | |
3067 | ||
3068 | if (underMouse != m_underMouse) | |
3069 | { | |
3070 | if (m_underMouse) | |
3071 | { | |
3072 | // unhighlight old item | |
3073 | wxGenericTreeItem *tmp = m_underMouse; | |
3074 | m_underMouse = NULL; | |
3075 | RefreshLine( tmp ); | |
3076 | } | |
3077 | ||
3078 | m_underMouse = underMouse; | |
3079 | if (m_underMouse) | |
3080 | RefreshLine( m_underMouse ); | |
3081 | } | |
3082 | ||
3083 | #if wxUSE_TOOLTIPS | |
3084 | // Determines what item we are hovering over and need a tooltip for | |
3085 | wxTreeItemId hoverItem = thisItem; | |
3086 | ||
3087 | // We do not want a tooltip if we are dragging, or if the rename timer is running | |
3088 | if (underMouseChanged && hoverItem.IsOk() && !m_isDragging && (!m_renameTimer || !m_renameTimer->IsRunning())) | |
3089 | { | |
3090 | // Ask the tree control what tooltip (if any) should be shown | |
3091 | wxTreeEvent hevent(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP, this, hoverItem); | |
3092 | ||
3093 | if ( GetEventHandler()->ProcessEvent(hevent) && hevent.IsAllowed() ) | |
3094 | { | |
3095 | SetToolTip(hevent.m_label); | |
3096 | } | |
3097 | } | |
3098 | #endif | |
3099 | ||
3100 | // we process left mouse up event (enables in-place edit), middle/right down | |
3101 | // (pass to the user code), left dbl click (activate item) and | |
3102 | // dragging/moving events for items drag-and-drop | |
3103 | if ( !(event.LeftDown() || | |
3104 | event.LeftUp() || | |
3105 | event.MiddleDown() || | |
3106 | event.RightDown() || | |
3107 | event.LeftDClick() || | |
3108 | event.Dragging() || | |
3109 | ((event.Moving() || event.RightUp()) && m_isDragging)) ) | |
3110 | { | |
3111 | event.Skip(); | |
3112 | ||
3113 | return; | |
3114 | } | |
3115 | ||
3116 | ||
3117 | flags = 0; | |
3118 | wxGenericTreeItem *item = m_anchor->HitTest(pt, this, flags, 0); | |
3119 | ||
3120 | if ( event.Dragging() && !m_isDragging ) | |
3121 | { | |
3122 | if (m_dragCount == 0) | |
3123 | m_dragStart = pt; | |
3124 | ||
3125 | m_dragCount++; | |
3126 | ||
3127 | if (m_dragCount != 3) | |
3128 | { | |
3129 | // wait until user drags a bit further... | |
3130 | return; | |
3131 | } | |
3132 | ||
3133 | wxEventType command = event.RightIsDown() | |
3134 | ? wxEVT_COMMAND_TREE_BEGIN_RDRAG | |
3135 | : wxEVT_COMMAND_TREE_BEGIN_DRAG; | |
3136 | ||
3137 | wxTreeEvent nevent(command, this, m_current); | |
3138 | nevent.SetPoint(CalcScrolledPosition(pt)); | |
3139 | ||
3140 | // by default the dragging is not supported, the user code must | |
3141 | // explicitly allow the event for it to take place | |
3142 | nevent.Veto(); | |
3143 | ||
3144 | if ( GetEventHandler()->ProcessEvent(nevent) && nevent.IsAllowed() ) | |
3145 | { | |
3146 | // we're going to drag this item | |
3147 | m_isDragging = true; | |
3148 | ||
3149 | // remember the old cursor because we will change it while | |
3150 | // dragging | |
3151 | m_oldCursor = m_cursor; | |
3152 | ||
3153 | // in a single selection control, hide the selection temporarily | |
3154 | if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE) ) | |
3155 | { | |
3156 | m_oldSelection = (wxGenericTreeItem*) GetSelection().m_pItem; | |
3157 | ||
3158 | if ( m_oldSelection ) | |
3159 | { | |
3160 | m_oldSelection->SetHilight(false); | |
3161 | RefreshLine(m_oldSelection); | |
3162 | } | |
3163 | } | |
3164 | ||
3165 | CaptureMouse(); | |
3166 | } | |
3167 | } | |
3168 | else if ( event.Dragging() ) | |
3169 | { | |
3170 | if ( item != m_dropTarget ) | |
3171 | { | |
3172 | // unhighlight the previous drop target | |
3173 | DrawDropEffect(m_dropTarget); | |
3174 | ||
3175 | m_dropTarget = item; | |
3176 | ||
3177 | // highlight the current drop target if any | |
3178 | DrawDropEffect(m_dropTarget); | |
3179 | ||
3180 | #if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXGTK20__) | |
3181 | Update(); | |
3182 | #else | |
3183 | wxYieldIfNeeded(); | |
3184 | #endif | |
3185 | } | |
3186 | } | |
3187 | else if ( (event.LeftUp() || event.RightUp()) && m_isDragging ) | |
3188 | { | |
3189 | ReleaseMouse(); | |
3190 | ||
3191 | // erase the highlighting | |
3192 | DrawDropEffect(m_dropTarget); | |
3193 | ||
3194 | if ( m_oldSelection ) | |
3195 | { | |
3196 | m_oldSelection->SetHilight(true); | |
3197 | RefreshLine(m_oldSelection); | |
3198 | m_oldSelection = (wxGenericTreeItem *)NULL; | |
3199 | } | |
3200 | ||
3201 | // generate the drag end event | |
3202 | wxTreeEvent eventEndDrag(wxEVT_COMMAND_TREE_END_DRAG, this, item); | |
3203 | ||
3204 | eventEndDrag.m_pointDrag = CalcScrolledPosition(pt); | |
3205 | ||
3206 | (void)GetEventHandler()->ProcessEvent(eventEndDrag); | |
3207 | ||
3208 | m_isDragging = false; | |
3209 | m_dropTarget = (wxGenericTreeItem *)NULL; | |
3210 | ||
3211 | SetCursor(m_oldCursor); | |
3212 | ||
3213 | #if defined( __WXMSW__ ) || defined(__WXMAC__) | |
3214 | Update(); | |
3215 | #else | |
3216 | wxYieldIfNeeded(); | |
3217 | #endif | |
3218 | } | |
3219 | else | |
3220 | { | |
3221 | // If we got to this point, we are not dragging or moving the mouse. | |
3222 | // Because the code in carbon/toplevel.cpp will only set focus to the tree | |
3223 | // if we skip for EVT_LEFT_DOWN, we MUST skip this event here for focus to work. | |
3224 | // We skip even if we didn't hit an item because we still should | |
3225 | // restore focus to the tree control even if we didn't exactly hit an item. | |
3226 | if ( event.LeftDown() ) | |
3227 | { | |
3228 | event.Skip(); | |
3229 | } | |
3230 | ||
3231 | // here we process only the messages which happen on tree items | |
3232 | ||
3233 | m_dragCount = 0; | |
3234 | ||
3235 | if (item == NULL) return; /* we hit the blank area */ | |
3236 | ||
3237 | if ( event.RightDown() ) | |
3238 | { | |
3239 | // If the item is already selected, do not update the selection. | |
3240 | // Multi-selections should not be cleared if a selected item is clicked. | |
3241 | if (!IsSelected(item)) | |
3242 | { | |
3243 | DoSelectItem(item, true, false); | |
3244 | } | |
3245 | ||
3246 | wxTreeEvent nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, this, item); | |
3247 | nevent.m_pointDrag = CalcScrolledPosition(pt); | |
3248 | event.Skip(!GetEventHandler()->ProcessEvent(nevent)); | |
3249 | ||
3250 | // Consistent with MSW (for now), send the ITEM_MENU *after* | |
3251 | // the RIGHT_CLICK event. TODO: This behavior may change. | |
3252 | wxTreeEvent nevent2(wxEVT_COMMAND_TREE_ITEM_MENU, this, item); | |
3253 | nevent2.m_pointDrag = CalcScrolledPosition(pt); | |
3254 | GetEventHandler()->ProcessEvent(nevent2); | |
3255 | } | |
3256 | else if ( event.MiddleDown() ) | |
3257 | { | |
3258 | wxTreeEvent nevent(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, this, item); | |
3259 | nevent.m_pointDrag = CalcScrolledPosition(pt); | |
3260 | event.Skip(!GetEventHandler()->ProcessEvent(nevent)); | |
3261 | } | |
3262 | else if ( event.LeftUp() ) | |
3263 | { | |
3264 | // this facilitates multiple-item drag-and-drop | |
3265 | ||
3266 | if ( /* item && */ HasFlag(wxTR_MULTIPLE)) | |
3267 | { | |
3268 | wxArrayTreeItemIds selections; | |
3269 | size_t count = GetSelections(selections); | |
3270 | ||
3271 | if (count > 1 && | |
3272 | !event.CmdDown() && | |
3273 | !event.ShiftDown()) | |
3274 | { | |
3275 | DoSelectItem(item, true, false); | |
3276 | } | |
3277 | } | |
3278 | ||
3279 | if ( m_lastOnSame ) | |
3280 | { | |
3281 | if ( (item == m_current) && | |
3282 | (flags & wxTREE_HITTEST_ONITEMLABEL) && | |
3283 | HasFlag(wxTR_EDIT_LABELS) ) | |
3284 | { | |
3285 | if ( m_renameTimer ) | |
3286 | { | |
3287 | if ( m_renameTimer->IsRunning() ) | |
3288 | m_renameTimer->Stop(); | |
3289 | } | |
3290 | else | |
3291 | { | |
3292 | m_renameTimer = new wxTreeRenameTimer( this ); | |
3293 | } | |
3294 | ||
3295 | m_renameTimer->Start( wxTreeRenameTimer::DELAY, true ); | |
3296 | } | |
3297 | ||
3298 | m_lastOnSame = false; | |
3299 | } | |
3300 | } | |
3301 | else // !RightDown() && !MiddleDown() && !LeftUp() ==> LeftDown() || LeftDClick() | |
3302 | { | |
3303 | if ( event.LeftDown() ) | |
3304 | { | |
3305 | m_lastOnSame = item == m_current; | |
3306 | } | |
3307 | ||
3308 | if ( flags & wxTREE_HITTEST_ONITEMBUTTON ) | |
3309 | { | |
3310 | // only toggle the item for a single click, double click on | |
3311 | // the button doesn't do anything (it toggles the item twice) | |
3312 | if ( event.LeftDown() ) | |
3313 | { | |
3314 | Toggle( item ); | |
3315 | } | |
3316 | ||
3317 | // don't select the item if the button was clicked | |
3318 | return; | |
3319 | } | |
3320 | ||
3321 | ||
3322 | // clear the previously selected items, if the | |
3323 | // user clicked outside of the present selection. | |
3324 | // otherwise, perform the deselection on mouse-up. | |
3325 | // this allows multiple drag and drop to work. | |
3326 | // but if Cmd is down, toggle selection of the clicked item | |
3327 | if (!IsSelected(item) || event.CmdDown()) | |
3328 | { | |
3329 | // how should the selection work for this event? | |
3330 | bool is_multiple, extended_select, unselect_others; | |
3331 | EventFlagsToSelType(GetWindowStyleFlag(), | |
3332 | event.ShiftDown(), | |
3333 | event.CmdDown(), | |
3334 | is_multiple, extended_select, unselect_others); | |
3335 | ||
3336 | DoSelectItem(item, unselect_others, extended_select); | |
3337 | } | |
3338 | ||
3339 | ||
3340 | // For some reason, Windows isn't recognizing a left double-click, | |
3341 | // so we need to simulate it here. Allow 200 milliseconds for now. | |
3342 | if ( event.LeftDClick() ) | |
3343 | { | |
3344 | // double clicking should not start editing the item label | |
3345 | if ( m_renameTimer ) | |
3346 | m_renameTimer->Stop(); | |
3347 | ||
3348 | m_lastOnSame = false; | |
3349 | ||
3350 | // send activate event first | |
3351 | wxTreeEvent nevent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, this, item); | |
3352 | nevent.m_pointDrag = CalcScrolledPosition(pt); | |
3353 | if ( !GetEventHandler()->ProcessEvent( nevent ) ) | |
3354 | { | |
3355 | // if the user code didn't process the activate event, | |
3356 | // handle it ourselves by toggling the item when it is | |
3357 | // double clicked | |
3358 | if ( item->HasPlus() ) | |
3359 | { | |
3360 | Toggle(item); | |
3361 | } | |
3362 | } | |
3363 | } | |
3364 | } | |
3365 | } | |
3366 | } | |
3367 | ||
3368 | void wxGenericTreeCtrl::OnInternalIdle() | |
3369 | { | |
3370 | wxWindow::OnInternalIdle(); | |
3371 | ||
3372 | // Check if we need to select the root item | |
3373 | // because nothing else has been selected. | |
3374 | // Delaying it means that we can invoke event handlers | |
3375 | // as required, when a first item is selected. | |
3376 | if (!HasFlag(wxTR_MULTIPLE) && !GetSelection().IsOk()) | |
3377 | { | |
3378 | if (m_select_me) | |
3379 | SelectItem(m_select_me); | |
3380 | else if (GetRootItem().IsOk()) | |
3381 | SelectItem(GetRootItem()); | |
3382 | } | |
3383 | ||
3384 | // after all changes have been done to the tree control, | |
3385 | // actually redraw the tree when everything is over | |
3386 | if (m_dirty) | |
3387 | DoDirtyProcessing(); | |
3388 | } | |
3389 | ||
3390 | void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem *item, wxDC &dc ) | |
3391 | { | |
3392 | wxCoord text_w = 0; | |
3393 | wxCoord text_h = 0; | |
3394 | ||
3395 | wxTreeItemAttr *attr = item->GetAttributes(); | |
3396 | if ( attr && attr->HasFont() ) | |
3397 | dc.SetFont(attr->GetFont()); | |
3398 | else if ( item->IsBold() ) | |
3399 | dc.SetFont(m_boldFont); | |
3400 | else | |
3401 | dc.SetFont(m_normalFont); | |
3402 | ||
3403 | dc.GetTextExtent( item->GetText(), &text_w, &text_h ); | |
3404 | text_h+=2; | |
3405 | ||
3406 | // restore normal font | |
3407 | dc.SetFont( m_normalFont ); | |
3408 | ||
3409 | int image_h = 0; | |
3410 | int image_w = 0; | |
3411 | int image = item->GetCurrentImage(); | |
3412 | if ( image != NO_IMAGE ) | |
3413 | { | |
3414 | if ( m_imageListNormal ) | |
3415 | { | |
3416 | m_imageListNormal->GetSize( image, image_w, image_h ); | |
3417 | image_w += MARGIN_BETWEEN_IMAGE_AND_TEXT; | |
3418 | } | |
3419 | } | |
3420 | ||
3421 | int total_h = (image_h > text_h) ? image_h : text_h; | |
3422 | ||
3423 | if (total_h < 30) | |
3424 | total_h += 2; // at least 2 pixels | |
3425 | else | |
3426 | total_h += total_h/10; // otherwise 10% extra spacing | |
3427 | ||
3428 | item->SetHeight(total_h); | |
3429 | if (total_h>m_lineHeight) | |
3430 | m_lineHeight=total_h; | |
3431 | ||
3432 | item->SetWidth(image_w+text_w+2); | |
3433 | } | |
3434 | ||
3435 | // ----------------------------------------------------------------------------- | |
3436 | // for developper : y is now the top of the level | |
3437 | // not the middle of it ! | |
3438 | void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y ) | |
3439 | { | |
3440 | int x = level*m_indent; | |
3441 | if (!HasFlag(wxTR_HIDE_ROOT)) | |
3442 | { | |
3443 | x += m_indent; | |
3444 | } | |
3445 | else if (level == 0) | |
3446 | { | |
3447 | // a hidden root is not evaluated, but its | |
3448 | // children are always calculated | |
3449 | goto Recurse; | |
3450 | } | |
3451 | ||
3452 | CalculateSize( item, dc ); | |
3453 | ||
3454 | // set its position | |
3455 | item->SetX( x+m_spacing ); | |
3456 | item->SetY( y ); | |
3457 | y += GetLineHeight(item); | |
3458 | ||
3459 | if ( !item->IsExpanded() ) | |
3460 | { | |
3461 | // we don't need to calculate collapsed branches | |
3462 | return; | |
3463 | } | |
3464 | ||
3465 | Recurse: | |
3466 | wxArrayGenericTreeItems& children = item->GetChildren(); | |
3467 | size_t n, count = children.Count(); | |
3468 | ++level; | |
3469 | for (n = 0; n < count; ++n ) | |
3470 | CalculateLevel( children[n], dc, level, y ); // recurse | |
3471 | } | |
3472 | ||
3473 | void wxGenericTreeCtrl::CalculatePositions() | |
3474 | { | |
3475 | if ( !m_anchor ) return; | |
3476 | ||
3477 | wxClientDC dc(this); | |
3478 | PrepareDC( dc ); | |
3479 | ||
3480 | dc.SetFont( m_normalFont ); | |
3481 | ||
3482 | dc.SetPen( m_dottedPen ); | |
3483 | //if(GetImageList() == NULL) | |
3484 | // m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
3485 | ||
3486 | int y = 2; | |
3487 | CalculateLevel( m_anchor, dc, 0, y ); // start recursion | |
3488 | } | |
3489 | ||
3490 | void wxGenericTreeCtrl::Refresh(bool eraseBackground, const wxRect *rect) | |
3491 | { | |
3492 | if ( !m_freezeCount ) | |
3493 | wxTreeCtrlBase::Refresh(eraseBackground, rect); | |
3494 | } | |
3495 | ||
3496 | void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem *item) | |
3497 | { | |
3498 | if (m_dirty || m_freezeCount) | |
3499 | return; | |
3500 | ||
3501 | wxSize client = GetClientSize(); | |
3502 | ||
3503 | wxRect rect; | |
3504 | CalcScrolledPosition(0, item->GetY(), NULL, &rect.y); | |
3505 | rect.width = client.x; | |
3506 | rect.height = client.y; | |
3507 | ||
3508 | Refresh(true, &rect); | |
3509 | ||
3510 | AdjustMyScrollbars(); | |
3511 | } | |
3512 | ||
3513 | void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem *item ) | |
3514 | { | |
3515 | if (m_dirty || m_freezeCount) | |
3516 | return; | |
3517 | ||
3518 | wxRect rect; | |
3519 | CalcScrolledPosition(0, item->GetY(), NULL, &rect.y); | |
3520 | rect.width = GetClientSize().x; | |
3521 | rect.height = GetLineHeight(item); //dc.GetCharHeight() + 6; | |
3522 | ||
3523 | Refresh(true, &rect); | |
3524 | } | |
3525 | ||
3526 | void wxGenericTreeCtrl::RefreshSelected() | |
3527 | { | |
3528 | if (m_freezeCount) | |
3529 | return; | |
3530 | ||
3531 | // TODO: this is awfully inefficient, we should keep the list of all | |
3532 | // selected items internally, should be much faster | |
3533 | if ( m_anchor ) | |
3534 | RefreshSelectedUnder(m_anchor); | |
3535 | } | |
3536 | ||
3537 | void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem *item) | |
3538 | { | |
3539 | if (m_freezeCount) | |
3540 | return; | |
3541 | ||
3542 | if ( item->IsSelected() ) | |
3543 | RefreshLine(item); | |
3544 | ||
3545 | const wxArrayGenericTreeItems& children = item->GetChildren(); | |
3546 | size_t count = children.GetCount(); | |
3547 | for ( size_t n = 0; n < count; n++ ) | |
3548 | { | |
3549 | RefreshSelectedUnder(children[n]); | |
3550 | } | |
3551 | } | |
3552 | ||
3553 | void wxGenericTreeCtrl::Freeze() | |
3554 | { | |
3555 | m_freezeCount++; | |
3556 | } | |
3557 | ||
3558 | void wxGenericTreeCtrl::Thaw() | |
3559 | { | |
3560 | wxCHECK_RET( m_freezeCount > 0, _T("thawing unfrozen tree control?") ); | |
3561 | ||
3562 | if ( --m_freezeCount == 0 ) | |
3563 | { | |
3564 | Refresh(); | |
3565 | } | |
3566 | } | |
3567 | ||
3568 | // ---------------------------------------------------------------------------- | |
3569 | // changing colours: we need to refresh the tree control | |
3570 | // ---------------------------------------------------------------------------- | |
3571 | ||
3572 | bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour& colour) | |
3573 | { | |
3574 | if ( !wxWindow::SetBackgroundColour(colour) ) | |
3575 | return false; | |
3576 | ||
3577 | Refresh(); | |
3578 | ||
3579 | return true; | |
3580 | } | |
3581 | ||
3582 | bool wxGenericTreeCtrl::SetForegroundColour(const wxColour& colour) | |
3583 | { | |
3584 | if ( !wxWindow::SetForegroundColour(colour) ) | |
3585 | return false; | |
3586 | ||
3587 | Refresh(); | |
3588 | ||
3589 | return true; | |
3590 | } | |
3591 | ||
3592 | // Process the tooltip event, to speed up event processing. | |
3593 | // Doesn't actually get a tooltip. | |
3594 | void wxGenericTreeCtrl::OnGetToolTip( wxTreeEvent &event ) | |
3595 | { | |
3596 | event.Veto(); | |
3597 | } | |
3598 | ||
3599 | ||
3600 | // NOTE: If using the wxListBox visual attributes works everywhere then this can | |
3601 | // be removed, as well as the #else case below. | |
3602 | #define _USE_VISATTR 0 | |
3603 | ||
3604 | //static | |
3605 | wxVisualAttributes | |
3606 | #if _USE_VISATTR | |
3607 | wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant) | |
3608 | #else | |
3609 | wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
3610 | #endif | |
3611 | { | |
3612 | #if _USE_VISATTR | |
3613 | // Use the same color scheme as wxListBox | |
3614 | return wxListBox::GetClassDefaultAttributes(variant); | |
3615 | #else | |
3616 | wxVisualAttributes attr; | |
3617 | attr.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT); | |
3618 | attr.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX); | |
3619 | attr.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); | |
3620 | return attr; | |
3621 | #endif | |
3622 | } | |
3623 | ||
3624 | #if WXWIN_COMPATIBILITY_2_4 | |
3625 | ||
3626 | int wxGenericTreeCtrl::GetItemSelectedImage(const wxTreeItemId& item) const | |
3627 | { | |
3628 | return GetItemImage(item, wxTreeItemIcon_Selected); | |
3629 | } | |
3630 | ||
3631 | void wxGenericTreeCtrl::SetItemSelectedImage(const wxTreeItemId& item, int image) | |
3632 | { | |
3633 | SetItemImage(item, image, wxTreeItemIcon_Selected); | |
3634 | } | |
3635 | ||
3636 | #endif // WXWIN_COMPATIBILITY_2_4 | |
3637 | ||
3638 | void wxGenericTreeCtrl::DoDirtyProcessing() | |
3639 | { | |
3640 | if (m_freezeCount) | |
3641 | return; | |
3642 | ||
3643 | m_dirty = false; | |
3644 | ||
3645 | CalculatePositions(); | |
3646 | Refresh(); | |
3647 | AdjustMyScrollbars(); | |
3648 | } | |
3649 | ||
3650 | wxSize wxGenericTreeCtrl::DoGetBestSize() const | |
3651 | { | |
3652 | // make sure all positions are calculated as normally this only done during | |
3653 | // idle time but we need them for base class DoGetBestSize() to return the | |
3654 | // correct result | |
3655 | wxConstCast(this, wxGenericTreeCtrl)->CalculatePositions(); | |
3656 | ||
3657 | wxSize size = wxTreeCtrlBase::DoGetBestSize(); | |
3658 | ||
3659 | // there seems to be an implicit extra border around the items, although | |
3660 | // I'm not really sure where does it come from -- but without this, the | |
3661 | // scrollbars appear in a tree with default/best size | |
3662 | size.IncBy(4, 4); | |
3663 | ||
3664 | // and the border has to be rounded up to a multiple of PIXELS_PER_UNIT or | |
3665 | // scrollbars still appear | |
3666 | const wxSize& borderSize = GetWindowBorderSize(); | |
3667 | ||
3668 | int dx = (size.x - borderSize.x) % PIXELS_PER_UNIT; | |
3669 | if ( dx ) | |
3670 | size.x += PIXELS_PER_UNIT - dx; | |
3671 | int dy = (size.y - borderSize.y) % PIXELS_PER_UNIT; | |
3672 | if ( dy ) | |
3673 | size.y += PIXELS_PER_UNIT - dy; | |
3674 | ||
3675 | // we need to update the cache too as the base class cached its own value | |
3676 | CacheBestSize(size); | |
3677 | ||
3678 | return size; | |
3679 | } | |
3680 | ||
3681 | #endif // wxUSE_TREECTRL |