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