]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treectrl.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$ |
c801d85f | 8 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem |
29d87bba | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
f135ff73 VZ |
12 | // ============================================================================= |
13 | // declarations | |
14 | // ============================================================================= | |
15 | ||
16 | // ----------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ----------------------------------------------------------------------------- | |
19 | ||
c801d85f | 20 | #ifdef __GNUG__ |
f135ff73 | 21 | #pragma implementation "treectrl.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__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
f98e2558 | 31 | #include "wx/treectrl.h" |
f60d0f94 | 32 | #include "wx/generic/imaglist.h" |
c801d85f | 33 | #include "wx/settings.h" |
389cdc7a | 34 | #include "wx/log.h" |
f135ff73 VZ |
35 | #include "wx/intl.h" |
36 | #include "wx/dynarray.h" | |
91b8de8d | 37 | #include "wx/arrimpl.cpp" |
f135ff73 | 38 | #include "wx/dcclient.h" |
0659e7ee | 39 | #include "wx/msgdlg.h" |
c801d85f | 40 | |
f135ff73 VZ |
41 | // ----------------------------------------------------------------------------- |
42 | // array types | |
43 | // ----------------------------------------------------------------------------- | |
c801d85f | 44 | |
1e6d9499 JS |
45 | class WXDLLEXPORT wxGenericTreeItem; |
46 | ||
91b8de8d RR |
47 | WX_DEFINE_ARRAY(wxGenericTreeItem *, wxArrayGenericTreeItems); |
48 | WX_DEFINE_OBJARRAY(wxArrayTreeItemIds); | |
c801d85f | 49 | |
8dc99046 VZ |
50 | // ---------------------------------------------------------------------------- |
51 | // constants | |
52 | // ---------------------------------------------------------------------------- | |
53 | ||
54 | static const int NO_IMAGE = -1; | |
55 | ||
f135ff73 VZ |
56 | // ----------------------------------------------------------------------------- |
57 | // private classes | |
58 | // ----------------------------------------------------------------------------- | |
59 | ||
60 | // a tree item | |
61 | class WXDLLEXPORT wxGenericTreeItem | |
c801d85f | 62 | { |
f135ff73 | 63 | public: |
9ec64fa7 VZ |
64 | // ctors & dtor |
65 | wxGenericTreeItem() { m_data = NULL; } | |
66 | wxGenericTreeItem( wxGenericTreeItem *parent, | |
67 | const wxString& text, | |
68 | wxDC& dc, | |
69 | int image, int selImage, | |
70 | wxTreeItemData *data ); | |
f135ff73 | 71 | |
9ec64fa7 | 72 | ~wxGenericTreeItem(); |
f135ff73 | 73 | |
9ec64fa7 VZ |
74 | // trivial accessors |
75 | wxArrayGenericTreeItems& GetChildren() { return m_children; } | |
f135ff73 | 76 | |
9ec64fa7 VZ |
77 | const wxString& GetText() const { return m_text; } |
78 | int GetImage(wxTreeItemIcon which = wxTreeItemIcon_Normal) const | |
8dc99046 | 79 | { return m_images[which]; } |
9ec64fa7 | 80 | wxTreeItemData *GetData() const { return m_data; } |
f135ff73 | 81 | |
9ec64fa7 VZ |
82 | // returns the current image for the item (depending on its |
83 | // selected/expanded/whatever state) | |
84 | int GetCurrentImage() const; | |
8dc99046 | 85 | |
9ec64fa7 VZ |
86 | void SetText( const wxString &text ); |
87 | void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; } | |
88 | void SetData(wxTreeItemData *data) { m_data = data; } | |
f135ff73 | 89 | |
9ec64fa7 | 90 | void SetHasPlus(bool has = TRUE) { m_hasPlus = has; } |
f135ff73 | 91 | |
9ec64fa7 | 92 | void SetBold(bool bold) { m_isBold = bold; } |
ef44a621 | 93 | |
9ec64fa7 VZ |
94 | int GetX() const { return m_x; } |
95 | int GetY() const { return m_y; } | |
f135ff73 | 96 | |
9ec64fa7 VZ |
97 | void SetX(int x) { m_x = x; } |
98 | void SetY(int y) { m_y = y; } | |
f135ff73 | 99 | |
9ec64fa7 VZ |
100 | int GetHeight() const { return m_height; } |
101 | int GetWidth() const { return m_width; } | |
91b8de8d | 102 | |
9ec64fa7 VZ |
103 | void SetHeight(int h) { m_height = h; } |
104 | void SetWidth(int w) { m_width = w; } | |
91b8de8d RR |
105 | |
106 | ||
9ec64fa7 | 107 | wxGenericTreeItem *GetParent() const { return m_parent; } |
c801d85f | 108 | |
9ec64fa7 VZ |
109 | // operations |
110 | // deletes all children notifying the treectrl about it if !NULL | |
111 | // pointer given | |
112 | void DeleteChildren(wxTreeCtrl *tree = NULL); | |
113 | // FIXME don't know what is it for | |
114 | void Reset(); | |
f135ff73 | 115 | |
9ec64fa7 VZ |
116 | // get count of all children (and grand children if 'recursively') |
117 | size_t GetChildrenCount(bool recursively = TRUE) const; | |
f135ff73 | 118 | |
9ec64fa7 | 119 | void Insert(wxGenericTreeItem *child, size_t index) |
f135ff73 VZ |
120 | { m_children.Insert(child, index); } |
121 | ||
9ec64fa7 VZ |
122 | void SetCross( int x, int y ); |
123 | void GetSize( int &x, int &y, const wxTreeCtrl* ); | |
f135ff73 | 124 | |
9ec64fa7 VZ |
125 | // return the item at given position (or NULL if no item), onButton is |
126 | // TRUE if the point belongs to the item's button, otherwise it lies | |
127 | // on the button's label | |
128 | wxGenericTreeItem *HitTest( const wxPoint& point, const wxTreeCtrl *, int &flags); | |
f135ff73 | 129 | |
9ec64fa7 VZ |
130 | void Expand() { m_isCollapsed = FALSE; } |
131 | void Collapse() { m_isCollapsed = TRUE; } | |
f135ff73 | 132 | |
9ec64fa7 | 133 | void SetHilight( bool set = TRUE ) { m_hasHilight = set; } |
f135ff73 | 134 | |
9ec64fa7 VZ |
135 | // status inquiries |
136 | bool HasChildren() const { return !m_children.IsEmpty(); } | |
137 | bool IsSelected() const { return m_hasHilight; } | |
138 | bool IsExpanded() const { return !m_isCollapsed; } | |
139 | bool HasPlus() const { return m_hasPlus || HasChildren(); } | |
140 | bool IsBold() const { return m_isBold; } | |
141 | ||
142 | // attributes | |
143 | // get them - may be NULL | |
144 | wxTreeItemAttr *GetAttributes() const { return m_attr; } | |
145 | // get them ensuring that the pointer is not NULL | |
146 | wxTreeItemAttr& Attr() | |
147 | { | |
148 | if ( !m_attr ) | |
149 | m_attr = new wxTreeItemAttr; | |
150 | ||
151 | return *m_attr; | |
152 | } | |
f135ff73 VZ |
153 | |
154 | private: | |
9ec64fa7 VZ |
155 | wxString m_text; |
156 | ||
157 | // tree ctrl images for the normal, selected, expanded and | |
158 | // expanded+selected states | |
159 | int m_images[wxTreeItemIcon_Max]; | |
160 | ||
161 | wxTreeItemData *m_data; | |
162 | ||
163 | // use bitfields to save size | |
164 | int m_isCollapsed :1; | |
165 | int m_hasHilight :1; // same as focused | |
166 | int m_hasPlus :1; // used for item which doesn't have | |
167 | // children but has a [+] button | |
168 | int m_isBold :1; // render the label in bold font | |
169 | ||
170 | int m_x, m_y; | |
171 | long m_height, m_width; | |
172 | int m_xCross, m_yCross; | |
173 | int m_level; | |
174 | ||
175 | wxArrayGenericTreeItems m_children; | |
176 | wxGenericTreeItem *m_parent; | |
177 | ||
178 | wxTreeItemAttr *m_attr; | |
f135ff73 VZ |
179 | }; |
180 | ||
181 | // ============================================================================= | |
182 | // implementation | |
183 | // ============================================================================= | |
184 | ||
e179bd65 RR |
185 | |
186 | // ----------------------------------------------------------------------------- | |
187 | // wxTreeRenameTimer (internal) | |
188 | // ----------------------------------------------------------------------------- | |
189 | ||
190 | wxTreeRenameTimer::wxTreeRenameTimer( wxTreeCtrl *owner ) | |
191 | { | |
192 | m_owner = owner; | |
193 | } | |
194 | ||
195 | void wxTreeRenameTimer::Notify() | |
196 | { | |
197 | m_owner->OnRenameTimer(); | |
198 | } | |
199 | ||
200 | //----------------------------------------------------------------------------- | |
201 | // wxTreeTextCtrl (internal) | |
202 | //----------------------------------------------------------------------------- | |
203 | ||
204 | IMPLEMENT_DYNAMIC_CLASS(wxTreeTextCtrl,wxTextCtrl); | |
205 | ||
206 | BEGIN_EVENT_TABLE(wxTreeTextCtrl,wxTextCtrl) | |
207 | EVT_CHAR (wxTreeTextCtrl::OnChar) | |
208 | EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus) | |
209 | END_EVENT_TABLE() | |
210 | ||
211 | wxTreeTextCtrl::wxTreeTextCtrl( wxWindow *parent, const wxWindowID id, | |
212 | bool *accept, wxString *res, wxTreeCtrl *owner, | |
213 | const wxString &value, const wxPoint &pos, const wxSize &size, | |
5d4b632b | 214 | #if wxUSE_VALIDATORS |
e179bd65 | 215 | int style, const wxValidator& validator, const wxString &name ) : |
5d4b632b | 216 | #endif |
e179bd65 RR |
217 | wxTextCtrl( parent, id, value, pos, size, style, validator, name ) |
218 | { | |
219 | m_res = res; | |
220 | m_accept = accept; | |
221 | m_owner = owner; | |
5f1ea0ee RR |
222 | (*m_accept) = FALSE; |
223 | (*m_res) = ""; | |
224 | m_startValue = value; | |
e179bd65 RR |
225 | } |
226 | ||
227 | void wxTreeTextCtrl::OnChar( wxKeyEvent &event ) | |
228 | { | |
229 | if (event.m_keyCode == WXK_RETURN) | |
230 | { | |
231 | (*m_accept) = TRUE; | |
232 | (*m_res) = GetValue(); | |
9dfbf520 | 233 | m_owner->SetFocus(); |
e179bd65 RR |
234 | return; |
235 | } | |
236 | if (event.m_keyCode == WXK_ESCAPE) | |
237 | { | |
238 | (*m_accept) = FALSE; | |
239 | (*m_res) = ""; | |
9dfbf520 | 240 | m_owner->SetFocus(); |
e179bd65 RR |
241 | return; |
242 | } | |
243 | event.Skip(); | |
244 | } | |
245 | ||
246 | void wxTreeTextCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) | |
247 | { | |
5f1ea0ee RR |
248 | if (wxPendingDelete.Member(this)) return; |
249 | ||
250 | wxPendingDelete.Append(this); | |
9dfbf520 | 251 | |
5f1ea0ee RR |
252 | if ((*m_accept) && ((*m_res) != m_startValue)) |
253 | m_owner->OnRenameAccept(); | |
e179bd65 RR |
254 | } |
255 | ||
91b8de8d | 256 | #define PIXELS_PER_UNIT 10 |
f135ff73 | 257 | // ----------------------------------------------------------------------------- |
c801d85f | 258 | // wxTreeEvent |
f135ff73 | 259 | // ----------------------------------------------------------------------------- |
c801d85f | 260 | |
e179bd65 | 261 | IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent, wxNotifyEvent) |
9dfbf520 | 262 | |
f135ff73 | 263 | wxTreeEvent::wxTreeEvent( wxEventType commandType, int id ) |
92976ab6 | 264 | : wxNotifyEvent( commandType, id ) |
c801d85f | 265 | { |
00e12320 RR |
266 | m_code = 0; |
267 | m_itemOld = (wxGenericTreeItem *)NULL; | |
edaa81ae | 268 | } |
c801d85f | 269 | |
f135ff73 | 270 | // ----------------------------------------------------------------------------- |
c801d85f | 271 | // wxGenericTreeItem |
f135ff73 | 272 | // ----------------------------------------------------------------------------- |
c801d85f | 273 | |
f135ff73 VZ |
274 | wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem *parent, |
275 | const wxString& text, | |
406005d2 | 276 | wxDC& WXUNUSED(dc), |
f135ff73 VZ |
277 | int image, int selImage, |
278 | wxTreeItemData *data) | |
279 | : m_text(text) | |
c801d85f | 280 | { |
00e12320 RR |
281 | m_images[wxTreeItemIcon_Normal] = image; |
282 | m_images[wxTreeItemIcon_Selected] = selImage; | |
283 | m_images[wxTreeItemIcon_Expanded] = NO_IMAGE; | |
284 | m_images[wxTreeItemIcon_SelectedExpanded] = NO_IMAGE; | |
8dc99046 | 285 | |
00e12320 RR |
286 | m_data = data; |
287 | m_x = m_y = 0; | |
288 | m_xCross = m_yCross = 0; | |
f135ff73 | 289 | |
00e12320 | 290 | m_level = 0; |
f135ff73 | 291 | |
00e12320 RR |
292 | m_isCollapsed = TRUE; |
293 | m_hasHilight = FALSE; | |
294 | m_hasPlus = FALSE; | |
295 | m_isBold = FALSE; | |
c801d85f | 296 | |
00e12320 | 297 | m_parent = parent; |
f135ff73 | 298 | |
00e12320 | 299 | m_attr = (wxTreeItemAttr *)NULL; |
c7a9fa36 | 300 | |
00e12320 RR |
301 | // We don't know the height here yet. |
302 | m_width = 0; | |
303 | m_height = 0; | |
edaa81ae | 304 | } |
c801d85f | 305 | |
f135ff73 | 306 | wxGenericTreeItem::~wxGenericTreeItem() |
c801d85f | 307 | { |
00e12320 | 308 | delete m_data; |
4832f7c0 | 309 | |
00e12320 | 310 | delete m_attr; |
9ec64fa7 | 311 | |
00e12320 RR |
312 | wxASSERT_MSG( m_children.IsEmpty(), |
313 | wxT("please call DeleteChildren() before deleting the item") ); | |
372edb9d VZ |
314 | } |
315 | ||
a43a4f9d | 316 | void wxGenericTreeItem::DeleteChildren(wxTreeCtrl *tree) |
372edb9d | 317 | { |
00e12320 RR |
318 | size_t count = m_children.Count(); |
319 | for ( size_t n = 0; n < count; n++ ) | |
a43a4f9d | 320 | { |
00e12320 RR |
321 | wxGenericTreeItem *child = m_children[n]; |
322 | if (tree) | |
323 | tree->SendDeleteEvent(child); | |
a43a4f9d | 324 | |
00e12320 RR |
325 | child->DeleteChildren(tree); |
326 | delete child; | |
327 | } | |
372edb9d | 328 | |
00e12320 | 329 | m_children.Empty(); |
edaa81ae | 330 | } |
c801d85f | 331 | |
91b8de8d | 332 | void wxGenericTreeItem::SetText( const wxString &text ) |
c801d85f | 333 | { |
00e12320 | 334 | m_text = text; |
edaa81ae | 335 | } |
c801d85f | 336 | |
74bedbeb | 337 | void wxGenericTreeItem::Reset() |
c801d85f | 338 | { |
00e12320 RR |
339 | m_text.Empty(); |
340 | for ( int i = 0; i < wxTreeItemIcon_Max; i++ ) | |
341 | { | |
342 | m_images[i] = NO_IMAGE; | |
343 | } | |
8dc99046 | 344 | |
00e12320 RR |
345 | m_data = NULL; |
346 | m_x = m_y = | |
347 | m_height = m_width = 0; | |
348 | m_xCross = | |
349 | m_yCross = 0; | |
74bedbeb | 350 | |
00e12320 | 351 | m_level = 0; |
c801d85f | 352 | |
00e12320 RR |
353 | DeleteChildren(); |
354 | m_isCollapsed = TRUE; | |
c801d85f | 355 | |
00e12320 | 356 | m_parent = (wxGenericTreeItem *)NULL; |
edaa81ae | 357 | } |
c801d85f | 358 | |
4832f7c0 | 359 | size_t wxGenericTreeItem::GetChildrenCount(bool recursively) const |
c801d85f | 360 | { |
00e12320 RR |
361 | size_t count = m_children.Count(); |
362 | if ( !recursively ) | |
363 | return count; | |
4832f7c0 | 364 | |
00e12320 | 365 | size_t total = count; |
f2593d0d | 366 | for (size_t n = 0; n < count; ++n) |
00e12320 RR |
367 | { |
368 | total += m_children[n]->GetChildrenCount(); | |
369 | } | |
c801d85f | 370 | |
00e12320 | 371 | return total; |
edaa81ae | 372 | } |
c801d85f KB |
373 | |
374 | void wxGenericTreeItem::SetCross( int x, int y ) | |
375 | { | |
00e12320 RR |
376 | m_xCross = x; |
377 | m_yCross = y; | |
edaa81ae | 378 | } |
c801d85f | 379 | |
91b8de8d | 380 | void wxGenericTreeItem::GetSize( int &x, int &y, const wxTreeCtrl *theTree ) |
c801d85f | 381 | { |
00e12320 RR |
382 | int bottomY=m_y+theTree->GetLineHeight(this); |
383 | if ( y < bottomY ) y = bottomY; | |
384 | int width = m_x + m_width; | |
385 | if ( x < width ) x = width; | |
f135ff73 | 386 | |
00e12320 | 387 | if (IsExpanded()) |
4832f7c0 | 388 | { |
00e12320 RR |
389 | size_t count = m_children.Count(); |
390 | for ( size_t n = 0; n < count; ++n ) | |
391 | { | |
392 | m_children[n]->GetSize( x, y, theTree ); | |
393 | } | |
df875e59 | 394 | } |
edaa81ae | 395 | } |
c801d85f | 396 | |
f135ff73 | 397 | wxGenericTreeItem *wxGenericTreeItem::HitTest( const wxPoint& point, |
c193b707 VZ |
398 | const wxTreeCtrl *theTree, |
399 | int &flags) | |
c801d85f | 400 | { |
f2593d0d | 401 | if ((point.y > m_y) && (point.y < m_y + theTree->GetLineHeight(this))) |
c801d85f | 402 | { |
f2593d0d RR |
403 | if (point.y<m_y+theTree->GetLineHeight(this)/2) |
404 | flags |= wxTREE_HITTEST_ONITEMUPPERPART; | |
405 | else | |
406 | flags |= wxTREE_HITTEST_ONITEMLOWERPART; | |
978f38c2 | 407 | |
f2593d0d RR |
408 | // 5 is the size of the plus sign |
409 | if ((point.x > m_xCross-5) && (point.x < m_xCross+5) && | |
410 | (point.y > m_yCross-5) && (point.y < m_yCross+5) && | |
411 | (IsExpanded() || HasPlus())) | |
412 | { | |
413 | flags|=wxTREE_HITTEST_ONITEMBUTTON; | |
414 | return this; | |
415 | } | |
d3a9f4af | 416 | |
f2593d0d RR |
417 | if ((point.x >= m_x) && (point.x <= m_x+m_width)) |
418 | { | |
419 | int image_w = -1; | |
420 | int image_h; | |
0ae7f2a2 | 421 | |
f2593d0d RR |
422 | // assuming every image (normal and selected ) has the same size ! |
423 | if ( (GetImage() != NO_IMAGE) && theTree->m_imageListNormal ) | |
424 | theTree->m_imageListNormal->GetSize(GetImage(), image_w, image_h); | |
91b8de8d | 425 | |
f2593d0d RR |
426 | if ((image_w != -1) && (point.x <= m_x + image_w + 1)) |
427 | flags |= wxTREE_HITTEST_ONITEMICON; | |
428 | else | |
429 | flags |= wxTREE_HITTEST_ONITEMLABEL; | |
91b8de8d | 430 | |
f2593d0d RR |
431 | return this; |
432 | } | |
91b8de8d | 433 | |
f2593d0d RR |
434 | if (point.x < m_x) |
435 | flags |= wxTREE_HITTEST_ONITEMINDENT; | |
436 | if (point.x > m_x+m_width) | |
437 | flags |= wxTREE_HITTEST_ONITEMRIGHT; | |
438 | ||
439 | return this; | |
440 | } | |
441 | else | |
c801d85f | 442 | { |
f2593d0d RR |
443 | if (!m_isCollapsed) |
444 | { | |
445 | size_t count = m_children.Count(); | |
446 | for ( size_t n = 0; n < count; n++ ) | |
447 | { | |
448 | wxGenericTreeItem *res = m_children[n]->HitTest( point, theTree, flags ); | |
449 | if ( res != NULL ) | |
450 | return res; | |
451 | } | |
452 | } | |
edaa81ae | 453 | } |
f135ff73 | 454 | |
f2593d0d RR |
455 | flags|=wxTREE_HITTEST_NOWHERE; |
456 | ||
457 | return (wxGenericTreeItem*) NULL; | |
edaa81ae | 458 | } |
c801d85f | 459 | |
8dc99046 VZ |
460 | int wxGenericTreeItem::GetCurrentImage() const |
461 | { | |
462 | int image = NO_IMAGE; | |
463 | if ( IsExpanded() ) | |
464 | { | |
465 | if ( IsSelected() ) | |
466 | { | |
467 | image = GetImage(wxTreeItemIcon_SelectedExpanded); | |
468 | } | |
469 | ||
470 | if ( image == NO_IMAGE ) | |
471 | { | |
472 | // we usually fall back to the normal item, but try just the | |
473 | // expanded one (and not selected) first in this case | |
474 | image = GetImage(wxTreeItemIcon_Expanded); | |
475 | } | |
476 | } | |
477 | else // not expanded | |
478 | { | |
479 | if ( IsSelected() ) | |
480 | image = GetImage(wxTreeItemIcon_Selected); | |
481 | } | |
482 | ||
483 | // may be it doesn't have the specific image we want, try the default one | |
484 | // instead | |
485 | if ( image == NO_IMAGE ) | |
486 | { | |
487 | image = GetImage(); | |
488 | } | |
489 | ||
490 | return image; | |
491 | } | |
492 | ||
f135ff73 VZ |
493 | // ----------------------------------------------------------------------------- |
494 | // wxTreeCtrl implementation | |
495 | // ----------------------------------------------------------------------------- | |
496 | ||
497 | IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxScrolledWindow) | |
498 | ||
499 | BEGIN_EVENT_TABLE(wxTreeCtrl,wxScrolledWindow) | |
00e12320 RR |
500 | EVT_PAINT (wxTreeCtrl::OnPaint) |
501 | EVT_MOUSE_EVENTS (wxTreeCtrl::OnMouse) | |
502 | EVT_CHAR (wxTreeCtrl::OnChar) | |
503 | EVT_SET_FOCUS (wxTreeCtrl::OnSetFocus) | |
504 | EVT_KILL_FOCUS (wxTreeCtrl::OnKillFocus) | |
505 | EVT_IDLE (wxTreeCtrl::OnIdle) | |
f135ff73 VZ |
506 | END_EVENT_TABLE() |
507 | ||
508 | // ----------------------------------------------------------------------------- | |
509 | // construction/destruction | |
510 | // ----------------------------------------------------------------------------- | |
91b8de8d | 511 | |
f135ff73 | 512 | void wxTreeCtrl::Init() |
c801d85f | 513 | { |
00e12320 RR |
514 | m_current = |
515 | m_key_current = | |
516 | m_anchor = (wxGenericTreeItem *) NULL; | |
517 | m_hasFocus = FALSE; | |
518 | m_dirty = FALSE; | |
f135ff73 | 519 | |
00e12320 RR |
520 | m_xScroll = 0; |
521 | m_yScroll = 0; | |
522 | m_lineHeight = 10; | |
523 | m_indent = 15; | |
524 | m_spacing = 18; | |
f135ff73 | 525 | |
00e12320 | 526 | m_hilightBrush = new wxBrush |
f135ff73 VZ |
527 | ( |
528 | wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT), | |
529 | wxSOLID | |
530 | ); | |
531 | ||
00e12320 RR |
532 | m_imageListNormal = |
533 | m_imageListState = (wxImageList *) NULL; | |
978f38c2 | 534 | |
00e12320 | 535 | m_dragCount = 0; |
9dfbf520 | 536 | |
00e12320 | 537 | m_renameTimer = new wxTreeRenameTimer( this ); |
f38374d0 | 538 | |
00e12320 RR |
539 | m_normalFont = wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT ); |
540 | m_boldFont = wxFont( m_normalFont.GetPointSize(), | |
eff869aa RR |
541 | m_normalFont.GetFamily(), |
542 | m_normalFont.GetStyle(), | |
543 | wxBOLD, | |
544 | m_normalFont.GetUnderlined()); | |
edaa81ae | 545 | } |
c801d85f | 546 | |
f135ff73 VZ |
547 | bool wxTreeCtrl::Create(wxWindow *parent, wxWindowID id, |
548 | const wxPoint& pos, const wxSize& size, | |
978f38c2 | 549 | long style, |
5d4b632b | 550 | #if wxUSE_VALIDATORS |
978f38c2 | 551 | const wxValidator &validator, |
5d4b632b | 552 | #endif |
978f38c2 | 553 | const wxString& name ) |
c801d85f | 554 | { |
00e12320 | 555 | Init(); |
f135ff73 | 556 | |
00e12320 | 557 | wxScrolledWindow::Create( parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name ); |
978f38c2 | 558 | |
ce4169a4 | 559 | #if wxUSE_VALIDATORS |
00e12320 | 560 | SetValidator( validator ); |
ce4169a4 | 561 | #endif |
f135ff73 | 562 | |
00e12320 RR |
563 | SetBackgroundColour( *wxWHITE ); |
564 | // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86 | |
565 | m_dottedPen = wxPen( "grey", 0, 0 ); | |
f135ff73 | 566 | |
00e12320 | 567 | return TRUE; |
edaa81ae | 568 | } |
c801d85f | 569 | |
f135ff73 | 570 | wxTreeCtrl::~wxTreeCtrl() |
c801d85f | 571 | { |
00e12320 | 572 | wxDELETE( m_hilightBrush ); |
a43a4f9d | 573 | |
00e12320 | 574 | DeleteAllItems(); |
9dfbf520 | 575 | |
00e12320 | 576 | delete m_renameTimer; |
edaa81ae | 577 | } |
c801d85f | 578 | |
f135ff73 VZ |
579 | // ----------------------------------------------------------------------------- |
580 | // accessors | |
581 | // ----------------------------------------------------------------------------- | |
582 | ||
583 | size_t wxTreeCtrl::GetCount() const | |
c801d85f | 584 | { |
f2593d0d | 585 | return m_anchor == NULL ? 0u : m_anchor->GetChildrenCount(); |
edaa81ae | 586 | } |
c801d85f | 587 | |
f135ff73 | 588 | void wxTreeCtrl::SetIndent(unsigned int indent) |
c801d85f | 589 | { |
f2593d0d RR |
590 | m_indent = indent; |
591 | m_dirty = TRUE; | |
cf724bce RR |
592 | } |
593 | ||
594 | void wxTreeCtrl::SetSpacing(unsigned int spacing) | |
595 | { | |
f2593d0d RR |
596 | m_spacing = spacing; |
597 | m_dirty = TRUE; | |
f135ff73 | 598 | } |
74bedbeb | 599 | |
4832f7c0 VZ |
600 | size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item, bool recursively) |
601 | { | |
f2593d0d | 602 | wxCHECK_MSG( item.IsOk(), 0u, wxT("invalid tree item") ); |
4832f7c0 | 603 | |
f2593d0d | 604 | return item.m_pItem->GetChildrenCount(recursively); |
4832f7c0 VZ |
605 | } |
606 | ||
f135ff73 VZ |
607 | // ----------------------------------------------------------------------------- |
608 | // functions to work with tree items | |
609 | // ----------------------------------------------------------------------------- | |
74bedbeb | 610 | |
f135ff73 VZ |
611 | wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const |
612 | { | |
f2593d0d | 613 | wxCHECK_MSG( item.IsOk(), wxT(""), wxT("invalid tree item") ); |
4832f7c0 | 614 | |
f2593d0d | 615 | return item.m_pItem->GetText(); |
edaa81ae | 616 | } |
74bedbeb | 617 | |
8dc99046 VZ |
618 | int wxTreeCtrl::GetItemImage(const wxTreeItemId& item, |
619 | wxTreeItemIcon which) const | |
74bedbeb | 620 | { |
f2593d0d | 621 | wxCHECK_MSG( item.IsOk(), -1, wxT("invalid tree item") ); |
4832f7c0 | 622 | |
f2593d0d | 623 | return item.m_pItem->GetImage(which); |
edaa81ae | 624 | } |
c801d85f | 625 | |
f135ff73 | 626 | wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const |
c801d85f | 627 | { |
f2593d0d | 628 | wxCHECK_MSG( item.IsOk(), NULL, wxT("invalid tree item") ); |
4832f7c0 | 629 | |
f2593d0d | 630 | return item.m_pItem->GetData(); |
edaa81ae | 631 | } |
c801d85f | 632 | |
f135ff73 VZ |
633 | void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text) |
634 | { | |
f2593d0d | 635 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); |
4832f7c0 | 636 | |
f2593d0d RR |
637 | wxClientDC dc(this); |
638 | wxGenericTreeItem *pItem = item.m_pItem; | |
639 | pItem->SetText(text); | |
640 | CalculateSize(pItem, dc); | |
641 | RefreshLine(pItem); | |
f135ff73 | 642 | } |
c801d85f | 643 | |
8dc99046 VZ |
644 | void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, |
645 | int image, | |
646 | wxTreeItemIcon which) | |
f135ff73 | 647 | { |
223d09f6 | 648 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); |
4832f7c0 | 649 | |
8dc99046 VZ |
650 | wxGenericTreeItem *pItem = item.m_pItem; |
651 | pItem->SetImage(image, which); | |
4832f7c0 | 652 | |
8dc99046 VZ |
653 | wxClientDC dc(this); |
654 | CalculateSize(pItem, dc); | |
655 | RefreshLine(pItem); | |
edaa81ae | 656 | } |
c801d85f | 657 | |
f135ff73 | 658 | void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data) |
c801d85f | 659 | { |
f2593d0d | 660 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); |
4832f7c0 | 661 | |
f2593d0d | 662 | item.m_pItem->SetData(data); |
edaa81ae | 663 | } |
c801d85f | 664 | |
f135ff73 | 665 | void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has) |
c801d85f | 666 | { |
f2593d0d | 667 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); |
4832f7c0 | 668 | |
f2593d0d RR |
669 | wxGenericTreeItem *pItem = item.m_pItem; |
670 | pItem->SetHasPlus(has); | |
671 | RefreshLine(pItem); | |
edaa81ae | 672 | } |
c801d85f | 673 | |
ef44a621 VZ |
674 | void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold) |
675 | { | |
9ec64fa7 | 676 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); |
ef44a621 | 677 | |
9ec64fa7 VZ |
678 | // avoid redrawing the tree if no real change |
679 | wxGenericTreeItem *pItem = item.m_pItem; | |
680 | if ( pItem->IsBold() != bold ) | |
681 | { | |
682 | pItem->SetBold(bold); | |
683 | RefreshLine(pItem); | |
684 | } | |
685 | } | |
686 | ||
687 | void wxTreeCtrl::SetItemTextColour(const wxTreeItemId& item, | |
688 | const wxColour& col) | |
689 | { | |
690 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
691 | ||
692 | wxGenericTreeItem *pItem = item.m_pItem; | |
693 | pItem->Attr().SetTextColour(col); | |
694 | RefreshLine(pItem); | |
695 | } | |
696 | ||
697 | void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item, | |
698 | const wxColour& col) | |
699 | { | |
700 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
701 | ||
702 | wxGenericTreeItem *pItem = item.m_pItem; | |
703 | pItem->Attr().SetBackgroundColour(col); | |
704 | RefreshLine(pItem); | |
705 | } | |
706 | ||
707 | void wxTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font) | |
708 | { | |
709 | wxCHECK_RET( item.IsOk(), wxT("invalid tree item") ); | |
710 | ||
711 | wxGenericTreeItem *pItem = item.m_pItem; | |
712 | pItem->Attr().SetFont(font); | |
ef44a621 | 713 | RefreshLine(pItem); |
ef44a621 VZ |
714 | } |
715 | ||
f135ff73 VZ |
716 | // ----------------------------------------------------------------------------- |
717 | // item status inquiries | |
718 | // ----------------------------------------------------------------------------- | |
719 | ||
df875e59 | 720 | bool wxTreeCtrl::IsVisible(const wxTreeItemId& WXUNUSED(item)) const |
c801d85f | 721 | { |
f2593d0d | 722 | wxFAIL_MSG(wxT("not implemented")); |
f135ff73 | 723 | |
f2593d0d | 724 | return TRUE; |
edaa81ae | 725 | } |
c801d85f | 726 | |
f135ff73 | 727 | bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const |
c801d85f | 728 | { |
f2593d0d | 729 | wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") ); |
4832f7c0 | 730 | |
f2593d0d | 731 | return !item.m_pItem->GetChildren().IsEmpty(); |
edaa81ae | 732 | } |
c801d85f | 733 | |
f135ff73 | 734 | bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const |
c801d85f | 735 | { |
f2593d0d | 736 | wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") ); |
4832f7c0 | 737 | |
f2593d0d | 738 | return item.m_pItem->IsExpanded(); |
f135ff73 | 739 | } |
29d87bba | 740 | |
f135ff73 VZ |
741 | bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const |
742 | { | |
f2593d0d | 743 | wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") ); |
4832f7c0 | 744 | |
f2593d0d | 745 | return item.m_pItem->IsSelected(); |
f135ff73 | 746 | } |
29d87bba | 747 | |
ef44a621 VZ |
748 | bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const |
749 | { | |
f2593d0d | 750 | wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") ); |
ef44a621 | 751 | |
f2593d0d | 752 | return item.m_pItem->IsBold(); |
ef44a621 VZ |
753 | } |
754 | ||
f135ff73 VZ |
755 | // ----------------------------------------------------------------------------- |
756 | // navigation | |
757 | // ----------------------------------------------------------------------------- | |
29d87bba | 758 | |
f135ff73 VZ |
759 | wxTreeItemId wxTreeCtrl::GetParent(const wxTreeItemId& item) const |
760 | { | |
223d09f6 | 761 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
389cdc7a | 762 | |
f135ff73 VZ |
763 | return item.m_pItem->GetParent(); |
764 | } | |
29d87bba | 765 | |
f135ff73 VZ |
766 | wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item, long& cookie) const |
767 | { | |
223d09f6 | 768 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
29d87bba | 769 | |
f135ff73 VZ |
770 | cookie = 0; |
771 | return GetNextChild(item, cookie); | |
772 | } | |
29d87bba | 773 | |
f135ff73 VZ |
774 | wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& item, long& cookie) const |
775 | { | |
223d09f6 | 776 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
29d87bba | 777 | |
91b8de8d | 778 | wxArrayGenericTreeItems& children = item.m_pItem->GetChildren(); |
4832f7c0 VZ |
779 | if ( (size_t)cookie < children.Count() ) |
780 | { | |
978f38c2 | 781 | return children.Item(cookie++); |
4832f7c0 VZ |
782 | } |
783 | else | |
784 | { | |
785 | // there are no more of them | |
1e6d9499 | 786 | return wxTreeItemId(); |
4832f7c0 | 787 | } |
f135ff73 | 788 | } |
29d87bba | 789 | |
978f38c2 VZ |
790 | wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const |
791 | { | |
223d09f6 | 792 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
978f38c2 | 793 | |
91b8de8d | 794 | wxArrayGenericTreeItems& children = item.m_pItem->GetChildren(); |
0a240683 | 795 | return (children.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children.Last())); |
978f38c2 VZ |
796 | } |
797 | ||
f135ff73 VZ |
798 | wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const |
799 | { | |
223d09f6 | 800 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
f135ff73 VZ |
801 | |
802 | wxGenericTreeItem *i = item.m_pItem; | |
803 | wxGenericTreeItem *parent = i->GetParent(); | |
804 | if ( parent == NULL ) | |
805 | { | |
806 | // root item doesn't have any siblings | |
1e6d9499 | 807 | return wxTreeItemId(); |
edaa81ae | 808 | } |
4832f7c0 | 809 | |
91b8de8d | 810 | wxArrayGenericTreeItems& siblings = parent->GetChildren(); |
f135ff73 | 811 | int index = siblings.Index(i); |
3c67202d | 812 | wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent? |
29d87bba | 813 | |
f135ff73 | 814 | size_t n = (size_t)(index + 1); |
fdd8d7b5 | 815 | return n == siblings.Count() ? wxTreeItemId() : wxTreeItemId(siblings[n]); |
edaa81ae | 816 | } |
c801d85f | 817 | |
f135ff73 | 818 | wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const |
c801d85f | 819 | { |
223d09f6 | 820 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
f135ff73 VZ |
821 | |
822 | wxGenericTreeItem *i = item.m_pItem; | |
823 | wxGenericTreeItem *parent = i->GetParent(); | |
824 | if ( parent == NULL ) | |
c801d85f | 825 | { |
f135ff73 | 826 | // root item doesn't have any siblings |
1e6d9499 | 827 | return wxTreeItemId(); |
edaa81ae | 828 | } |
4832f7c0 | 829 | |
91b8de8d | 830 | wxArrayGenericTreeItems& siblings = parent->GetChildren(); |
f135ff73 | 831 | int index = siblings.Index(i); |
3c67202d | 832 | wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent? |
29d87bba | 833 | |
fdd8d7b5 VZ |
834 | return index == 0 ? wxTreeItemId() |
835 | : wxTreeItemId(siblings[(size_t)(index - 1)]); | |
f135ff73 | 836 | } |
389cdc7a | 837 | |
f135ff73 VZ |
838 | wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const |
839 | { | |
223d09f6 | 840 | wxFAIL_MSG(wxT("not implemented")); |
29d87bba | 841 | |
1e6d9499 | 842 | return wxTreeItemId(); |
f135ff73 | 843 | } |
29d87bba | 844 | |
f135ff73 VZ |
845 | wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const |
846 | { | |
223d09f6 | 847 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
29d87bba | 848 | |
223d09f6 | 849 | wxFAIL_MSG(wxT("not implemented")); |
29d87bba | 850 | |
1e6d9499 | 851 | return wxTreeItemId(); |
f135ff73 | 852 | } |
29d87bba | 853 | |
f135ff73 VZ |
854 | wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const |
855 | { | |
223d09f6 | 856 | wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") ); |
29d87bba | 857 | |
223d09f6 | 858 | wxFAIL_MSG(wxT("not implemented")); |
29d87bba | 859 | |
1e6d9499 | 860 | return wxTreeItemId(); |
edaa81ae | 861 | } |
c801d85f | 862 | |
f135ff73 VZ |
863 | // ----------------------------------------------------------------------------- |
864 | // operations | |
865 | // ----------------------------------------------------------------------------- | |
866 | ||
867 | wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parentId, | |
868 | size_t previous, | |
869 | const wxString& text, | |
870 | int image, int selImage, | |
871 | wxTreeItemData *data) | |
c801d85f | 872 | { |
f49f2b0c RR |
873 | wxGenericTreeItem *parent = parentId.m_pItem; |
874 | if ( !parent ) | |
875 | { | |
876 | // should we give a warning here? | |
877 | return AddRoot(text, image, selImage, data); | |
878 | } | |
4832f7c0 | 879 | |
f49f2b0c | 880 | wxClientDC dc(this); |
f38374d0 | 881 | wxGenericTreeItem *item = |
f49f2b0c | 882 | new wxGenericTreeItem( parent, text, dc, image, selImage, data ); |
74bedbeb | 883 | |
f49f2b0c RR |
884 | if ( data != NULL ) |
885 | { | |
886 | data->m_pItem = item; | |
887 | } | |
74bedbeb | 888 | |
f49f2b0c | 889 | parent->Insert( item, previous ); |
ef44a621 | 890 | |
f49f2b0c | 891 | m_dirty = TRUE; |
389cdc7a | 892 | |
f49f2b0c | 893 | return item; |
4c681997 RR |
894 | } |
895 | ||
f135ff73 VZ |
896 | wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text, |
897 | int image, int selImage, | |
898 | wxTreeItemData *data) | |
4c681997 | 899 | { |
f49f2b0c | 900 | wxCHECK_MSG( !m_anchor, wxTreeItemId(), wxT("tree can have only one root") ); |
389cdc7a | 901 | |
f49f2b0c RR |
902 | wxClientDC dc(this); |
903 | m_anchor = new wxGenericTreeItem((wxGenericTreeItem *)NULL, text, dc, | |
f135ff73 | 904 | image, selImage, data); |
f49f2b0c RR |
905 | if ( data != NULL ) |
906 | { | |
907 | data->m_pItem = m_anchor; | |
908 | } | |
f38374d0 | 909 | |
f49f2b0c RR |
910 | if (!HasFlag(wxTR_MULTIPLE)) |
911 | { | |
912 | m_current = m_key_current = m_anchor; | |
f2593d0d | 913 | m_current->SetHilight( TRUE ); |
f49f2b0c | 914 | } |
389cdc7a | 915 | |
f49f2b0c RR |
916 | Refresh(); |
917 | AdjustMyScrollbars(); | |
a32dd690 | 918 | |
f49f2b0c | 919 | return m_anchor; |
edaa81ae | 920 | } |
c801d85f | 921 | |
f135ff73 VZ |
922 | wxTreeItemId wxTreeCtrl::PrependItem(const wxTreeItemId& parent, |
923 | const wxString& text, | |
924 | int image, int selImage, | |
925 | wxTreeItemData *data) | |
c801d85f | 926 | { |
f2593d0d | 927 | return DoInsertItem(parent, 0u, text, image, selImage, data); |
edaa81ae | 928 | } |
c801d85f | 929 | |
f135ff73 VZ |
930 | wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parentId, |
931 | const wxTreeItemId& idPrevious, | |
932 | const wxString& text, | |
933 | int image, int selImage, | |
934 | wxTreeItemData *data) | |
c801d85f | 935 | { |
f2593d0d RR |
936 | wxGenericTreeItem *parent = parentId.m_pItem; |
937 | if ( !parent ) | |
938 | { | |
939 | // should we give a warning here? | |
940 | return AddRoot(text, image, selImage, data); | |
941 | } | |
c801d85f | 942 | |
f2593d0d RR |
943 | int index = parent->GetChildren().Index(idPrevious.m_pItem); |
944 | wxASSERT_MSG( index != wxNOT_FOUND, | |
945 | wxT("previous item in wxTreeCtrl::InsertItem() is not a sibling") ); | |
946 | ||
947 | return DoInsertItem(parentId, (size_t)++index, text, image, selImage, data); | |
948 | } | |
949 | ||
950 | wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parentId, | |
951 | size_t before, | |
952 | const wxString& text, | |
953 | int image, int selImage, | |
954 | wxTreeItemData *data) | |
955 | { | |
956 | wxGenericTreeItem *parent = parentId.m_pItem; | |
957 | if ( !parent ) | |
958 | { | |
959 | // should we give a warning here? | |
960 | return AddRoot(text, image, selImage, data); | |
961 | } | |
962 | ||
963 | return DoInsertItem(parentId, before, text, image, selImage, data); | |
edaa81ae | 964 | } |
c801d85f | 965 | |
f135ff73 VZ |
966 | wxTreeItemId wxTreeCtrl::AppendItem(const wxTreeItemId& parentId, |
967 | const wxString& text, | |
968 | int image, int selImage, | |
969 | wxTreeItemData *data) | |
74bedbeb | 970 | { |
f2593d0d RR |
971 | wxGenericTreeItem *parent = parentId.m_pItem; |
972 | if ( !parent ) | |
973 | { | |
974 | // should we give a warning here? | |
975 | return AddRoot(text, image, selImage, data); | |
976 | } | |
f135ff73 | 977 | |
f2593d0d RR |
978 | return DoInsertItem( parent, parent->GetChildren().Count(), text, |
979 | image, selImage, data); | |
74bedbeb VZ |
980 | } |
981 | ||
a43a4f9d VZ |
982 | void wxTreeCtrl::SendDeleteEvent(wxGenericTreeItem *item) |
983 | { | |
f2593d0d RR |
984 | wxTreeEvent event( wxEVT_COMMAND_TREE_DELETE_ITEM, GetId() ); |
985 | event.m_item = item; | |
986 | event.SetEventObject( this ); | |
987 | ProcessEvent( event ); | |
a43a4f9d VZ |
988 | } |
989 | ||
372edb9d VZ |
990 | void wxTreeCtrl::DeleteChildren(const wxTreeItemId& itemId) |
991 | { | |
992 | wxGenericTreeItem *item = itemId.m_pItem; | |
a43a4f9d | 993 | item->DeleteChildren(this); |
372edb9d VZ |
994 | |
995 | m_dirty = TRUE; | |
996 | } | |
997 | ||
f135ff73 | 998 | void wxTreeCtrl::Delete(const wxTreeItemId& itemId) |
c801d85f | 999 | { |
97d7bfb8 RR |
1000 | wxGenericTreeItem *item = itemId.m_pItem; |
1001 | wxGenericTreeItem *parent = item->GetParent(); | |
ff5bf259 | 1002 | |
97d7bfb8 RR |
1003 | if ( parent ) |
1004 | { | |
1005 | parent->GetChildren().Remove( item ); // remove by value | |
1006 | } | |
f135ff73 | 1007 | |
97d7bfb8 RR |
1008 | item->DeleteChildren(this); |
1009 | SendDeleteEvent(item); | |
1010 | delete item; | |
f135ff73 | 1011 | |
97d7bfb8 | 1012 | m_dirty = TRUE; |
edaa81ae | 1013 | } |
c801d85f | 1014 | |
f135ff73 | 1015 | void wxTreeCtrl::DeleteAllItems() |
c801d85f | 1016 | { |
97d7bfb8 RR |
1017 | if ( m_anchor ) |
1018 | { | |
1019 | m_anchor->DeleteChildren(this); | |
1020 | delete m_anchor; | |
a43a4f9d | 1021 | |
97d7bfb8 | 1022 | m_anchor = NULL; |
f135ff73 | 1023 | |
97d7bfb8 RR |
1024 | m_dirty = TRUE; |
1025 | } | |
edaa81ae RR |
1026 | } |
1027 | ||
f135ff73 | 1028 | void wxTreeCtrl::Expand(const wxTreeItemId& itemId) |
edaa81ae | 1029 | { |
f2593d0d | 1030 | wxGenericTreeItem *item = itemId.m_pItem; |
f135ff73 | 1031 | |
f2593d0d RR |
1032 | if ( !item->HasPlus() ) |
1033 | return; | |
978f38c2 | 1034 | |
f2593d0d RR |
1035 | if ( item->IsExpanded() ) |
1036 | return; | |
f135ff73 | 1037 | |
f2593d0d RR |
1038 | wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_EXPANDING, GetId() ); |
1039 | event.m_item = item; | |
1040 | event.SetEventObject( this ); | |
004fd0c8 | 1041 | |
d5a07b9e | 1042 | // if ( ProcessEvent( event ) && event.m_code ) TODO: Was this a typo ? |
f2593d0d RR |
1043 | if ( ProcessEvent( event ) && !event.IsAllowed() ) |
1044 | { | |
1045 | // cancelled by program | |
1046 | return; | |
1047 | } | |
4832f7c0 | 1048 | |
f2593d0d RR |
1049 | item->Expand(); |
1050 | CalculatePositions(); | |
f135ff73 | 1051 | |
f2593d0d | 1052 | RefreshSubtree(item); |
f135ff73 | 1053 | |
f2593d0d RR |
1054 | event.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED); |
1055 | ProcessEvent( event ); | |
edaa81ae RR |
1056 | } |
1057 | ||
f135ff73 | 1058 | void wxTreeCtrl::Collapse(const wxTreeItemId& itemId) |
edaa81ae | 1059 | { |
f2593d0d | 1060 | wxGenericTreeItem *item = itemId.m_pItem; |
f135ff73 | 1061 | |
f2593d0d RR |
1062 | if ( !item->IsExpanded() ) |
1063 | return; | |
f135ff73 | 1064 | |
f2593d0d RR |
1065 | wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING, GetId() ); |
1066 | event.m_item = item; | |
1067 | event.SetEventObject( this ); | |
1068 | if ( ProcessEvent( event ) && !event.IsAllowed() ) | |
1069 | { | |
1070 | // cancelled by program | |
1071 | return; | |
1072 | } | |
4832f7c0 | 1073 | |
f2593d0d | 1074 | item->Collapse(); |
f135ff73 | 1075 | |
f2593d0d RR |
1076 | wxArrayGenericTreeItems& children = item->GetChildren(); |
1077 | size_t count = children.Count(); | |
1078 | for ( size_t n = 0; n < count; n++ ) | |
1079 | { | |
1080 | Collapse(children[n]); | |
1081 | } | |
f135ff73 | 1082 | |
f2593d0d | 1083 | CalculatePositions(); |
f135ff73 | 1084 | |
f2593d0d | 1085 | RefreshSubtree(item); |
f135ff73 | 1086 | |
f2593d0d RR |
1087 | event.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED); |
1088 | ProcessEvent( event ); | |
edaa81ae | 1089 | } |
c801d85f | 1090 | |
f135ff73 | 1091 | void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item) |
c801d85f | 1092 | { |
00e12320 RR |
1093 | Collapse(item); |
1094 | DeleteChildren(item); | |
edaa81ae | 1095 | } |
c801d85f | 1096 | |
f135ff73 | 1097 | void wxTreeCtrl::Toggle(const wxTreeItemId& itemId) |
c801d85f | 1098 | { |
00e12320 | 1099 | wxGenericTreeItem *item = itemId.m_pItem; |
389cdc7a | 1100 | |
00e12320 RR |
1101 | if (item->IsExpanded()) |
1102 | Collapse(itemId); | |
1103 | else | |
1104 | Expand(itemId); | |
f135ff73 | 1105 | } |
389cdc7a | 1106 | |
f135ff73 VZ |
1107 | void wxTreeCtrl::Unselect() |
1108 | { | |
00e12320 RR |
1109 | if (m_current) |
1110 | { | |
1111 | m_current->SetHilight( FALSE ); | |
1112 | RefreshLine( m_current ); | |
1113 | } | |
edaa81ae | 1114 | } |
c801d85f | 1115 | |
88ac883a | 1116 | void wxTreeCtrl::UnselectAllChildren(wxGenericTreeItem *item) |
389cdc7a | 1117 | { |
00e12320 RR |
1118 | if (item->IsSelected()) |
1119 | { | |
1120 | item->SetHilight(FALSE); | |
1121 | RefreshLine(item); | |
1122 | } | |
d3a9f4af | 1123 | |
00e12320 | 1124 | if (item->HasChildren()) |
88ac883a | 1125 | { |
00e12320 RR |
1126 | wxArrayGenericTreeItems& children = item->GetChildren(); |
1127 | size_t count = children.Count(); | |
1128 | for ( size_t n = 0; n < count; ++n ) | |
1129 | { | |
1130 | UnselectAllChildren(children[n]); | |
1131 | } | |
88ac883a VZ |
1132 | } |
1133 | } | |
f135ff73 | 1134 | |
88ac883a VZ |
1135 | void wxTreeCtrl::UnselectAll() |
1136 | { | |
00e12320 | 1137 | UnselectAllChildren(GetRootItem().m_pItem); |
88ac883a VZ |
1138 | } |
1139 | ||
1140 | // Recursive function ! | |
1141 | // To stop we must have crt_item<last_item | |
91b8de8d | 1142 | // Algorithm : |
88ac883a | 1143 | // Tag all next children, when no more children, |
d3a9f4af | 1144 | // Move to parent (not to tag) |
91b8de8d | 1145 | // Keep going... if we found last_item, we stop. |
88ac883a VZ |
1146 | bool wxTreeCtrl::TagNextChildren(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select) |
1147 | { | |
1148 | wxGenericTreeItem *parent = crt_item->GetParent(); | |
1149 | ||
00e12320 RR |
1150 | if (parent == NULL) // This is root item |
1151 | return TagAllChildrenUntilLast(crt_item, last_item, select); | |
88ac883a | 1152 | |
91b8de8d | 1153 | wxArrayGenericTreeItems& children = parent->GetChildren(); |
88ac883a VZ |
1154 | int index = children.Index(crt_item); |
1155 | wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent? | |
1156 | ||
1157 | size_t count = children.Count(); | |
1158 | for (size_t n=(size_t)(index+1); n<count; ++n) | |
00e12320 RR |
1159 | { |
1160 | if (TagAllChildrenUntilLast(children[n], last_item, select)) return TRUE; | |
1161 | } | |
88ac883a VZ |
1162 | |
1163 | return TagNextChildren(parent, last_item, select); | |
1164 | } | |
1165 | ||
1166 | bool wxTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select) | |
1167 | { | |
00e12320 RR |
1168 | crt_item->SetHilight(select); |
1169 | RefreshLine(crt_item); | |
d3a9f4af | 1170 | |
00e12320 RR |
1171 | if (crt_item==last_item) |
1172 | return TRUE; | |
88ac883a | 1173 | |
00e12320 | 1174 | if (crt_item->HasChildren()) |
88ac883a | 1175 | { |
00e12320 RR |
1176 | wxArrayGenericTreeItems& children = crt_item->GetChildren(); |
1177 | size_t count = children.Count(); | |
1178 | for ( size_t n = 0; n < count; ++n ) | |
1179 | { | |
1180 | if (TagAllChildrenUntilLast(children[n], last_item, select)) | |
1181 | return TRUE; | |
f2593d0d | 1182 | } |
88ac883a | 1183 | } |
d3a9f4af | 1184 | |
c0de7af4 | 1185 | return FALSE; |
88ac883a VZ |
1186 | } |
1187 | ||
1188 | void wxTreeCtrl::SelectItemRange(wxGenericTreeItem *item1, wxGenericTreeItem *item2) | |
1189 | { | |
f2593d0d RR |
1190 | // item2 is not necessary after item1 |
1191 | wxGenericTreeItem *first=NULL, *last=NULL; | |
88ac883a | 1192 | |
f2593d0d RR |
1193 | // choice first' and 'last' between item1 and item2 |
1194 | if (item1->GetY()<item2->GetY()) | |
1195 | { | |
1196 | first=item1; | |
1197 | last=item2; | |
1198 | } | |
1199 | else | |
1200 | { | |
1201 | first=item2; | |
1202 | last=item1; | |
1203 | } | |
88ac883a | 1204 | |
f2593d0d | 1205 | bool select = m_current->IsSelected(); |
d3a9f4af | 1206 | |
f2593d0d RR |
1207 | if ( TagAllChildrenUntilLast(first,last,select) ) |
1208 | return; | |
88ac883a | 1209 | |
f2593d0d | 1210 | TagNextChildren(first,last,select); |
88ac883a VZ |
1211 | } |
1212 | ||
d3a9f4af | 1213 | void wxTreeCtrl::SelectItem(const wxTreeItemId& itemId, |
c193b707 VZ |
1214 | bool unselect_others, |
1215 | bool extended_select) | |
d3a9f4af | 1216 | { |
223d09f6 | 1217 | wxCHECK_RET( itemId.IsOk(), wxT("invalid tree item") ); |
8b04a037 | 1218 | |
88ac883a | 1219 | bool is_single=!(GetWindowStyleFlag() & wxTR_MULTIPLE); |
5391f772 | 1220 | wxGenericTreeItem *item = itemId.m_pItem; |
88ac883a VZ |
1221 | |
1222 | //wxCHECK_RET( ( (!unselect_others) && is_single), | |
223d09f6 | 1223 | // wxT("this is a single selection tree") ); |
88ac883a VZ |
1224 | |
1225 | // to keep going anyhow !!! | |
d3a9f4af | 1226 | if (is_single) |
8dc99046 VZ |
1227 | { |
1228 | if (item->IsSelected()) | |
1229 | return; // nothing to do | |
1230 | unselect_others = TRUE; | |
1231 | extended_select = FALSE; | |
1232 | } | |
1233 | else if ( unselect_others && item->IsSelected() ) | |
1234 | { | |
1235 | // selection change if there is more than one item currently selected | |
1236 | wxArrayTreeItemIds selected_items; | |
1237 | if ( GetSelections(selected_items) == 1 ) | |
1238 | return; | |
1239 | } | |
d3a9f4af | 1240 | |
f135ff73 VZ |
1241 | wxTreeEvent event( wxEVT_COMMAND_TREE_SEL_CHANGING, GetId() ); |
1242 | event.m_item = item; | |
1243 | event.m_itemOld = m_current; | |
1244 | event.SetEventObject( this ); | |
91b8de8d | 1245 | // TODO : Here we don't send any selection mode yet ! |
d3a9f4af | 1246 | |
f98e2558 | 1247 | if ( GetEventHandler()->ProcessEvent( event ) && !event.IsAllowed() ) |
f135ff73 VZ |
1248 | return; |
1249 | ||
88ac883a VZ |
1250 | // ctrl press |
1251 | if (unselect_others) | |
389cdc7a | 1252 | { |
88ac883a | 1253 | if (is_single) Unselect(); // to speed up thing |
c193b707 | 1254 | else UnselectAll(); |
edaa81ae | 1255 | } |
f135ff73 | 1256 | |
88ac883a | 1257 | // shift press |
d3a9f4af | 1258 | if (extended_select) |
88ac883a | 1259 | { |
91b8de8d | 1260 | if (m_current == NULL) m_current=m_key_current=GetRootItem().m_pItem; |
88ac883a VZ |
1261 | // don't change the mark (m_current) |
1262 | SelectItemRange(m_current, item); | |
1263 | } | |
1264 | else | |
1265 | { | |
c0de7af4 | 1266 | bool select=TRUE; // the default |
88ac883a | 1267 | |
c193b707 VZ |
1268 | // Check if we need to toggle hilight (ctrl mode) |
1269 | if (!unselect_others) | |
8dc99046 | 1270 | select=!item->IsSelected(); |
88ac883a | 1271 | |
91b8de8d | 1272 | m_current = m_key_current = item; |
c193b707 VZ |
1273 | m_current->SetHilight(select); |
1274 | RefreshLine( m_current ); | |
88ac883a | 1275 | } |
389cdc7a | 1276 | |
f135ff73 | 1277 | event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED); |
6daa0637 | 1278 | GetEventHandler()->ProcessEvent( event ); |
389cdc7a VZ |
1279 | } |
1280 | ||
9dfbf520 VZ |
1281 | void wxTreeCtrl::FillArray(wxGenericTreeItem *item, |
1282 | wxArrayTreeItemIds &array) const | |
c801d85f | 1283 | { |
8dc99046 | 1284 | if ( item->IsSelected() ) |
9dfbf520 | 1285 | array.Add(wxTreeItemId(item)); |
91b8de8d | 1286 | |
9dfbf520 | 1287 | if ( item->HasChildren() ) |
91b8de8d | 1288 | { |
9dfbf520 VZ |
1289 | wxArrayGenericTreeItems& children = item->GetChildren(); |
1290 | size_t count = children.GetCount(); | |
1291 | for ( size_t n = 0; n < count; ++n ) | |
1292 | FillArray(children[n],array); | |
91b8de8d RR |
1293 | } |
1294 | } | |
1295 | ||
1296 | size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds &array) const | |
1297 | { | |
1298 | array.Empty(); | |
1299 | FillArray(GetRootItem().m_pItem, array); | |
1300 | ||
1301 | return array.Count(); | |
1302 | } | |
1303 | ||
1304 | void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item) | |
d3a9f4af | 1305 | { |
91b8de8d RR |
1306 | if (!item.IsOk()) return; |
1307 | ||
0659e7ee | 1308 | wxGenericTreeItem *gitem = item.m_pItem; |
ef44a621 | 1309 | |
f65635b5 VZ |
1310 | // first expand all parent branches |
1311 | wxGenericTreeItem *parent = gitem->GetParent(); | |
5391f772 | 1312 | while ( parent ) |
f65635b5 | 1313 | { |
8dc99046 | 1314 | Expand(parent); |
f65635b5 VZ |
1315 | parent = parent->GetParent(); |
1316 | } | |
1317 | ||
5391f772 | 1318 | //if (parent) CalculatePositions(); |
91b8de8d RR |
1319 | |
1320 | ScrollTo(item); | |
1321 | } | |
1322 | ||
1323 | void wxTreeCtrl::ScrollTo(const wxTreeItemId &item) | |
1324 | { | |
1325 | if (!item.IsOk()) return; | |
1326 | ||
dc6c62a9 RR |
1327 | // We have to call this here because the label in |
1328 | // question might just have been added and no screen | |
1329 | // update taken place. | |
1330 | if (m_dirty) wxYield(); | |
1331 | ||
91b8de8d RR |
1332 | wxGenericTreeItem *gitem = item.m_pItem; |
1333 | ||
f65635b5 | 1334 | // now scroll to the item |
0659e7ee | 1335 | int item_y = gitem->GetY(); |
8dc99046 | 1336 | |
0659e7ee RR |
1337 | int start_x = 0; |
1338 | int start_y = 0; | |
1339 | ViewStart( &start_x, &start_y ); | |
91b8de8d | 1340 | start_y *= PIXELS_PER_UNIT; |
978f38c2 | 1341 | |
a93109d5 RR |
1342 | int client_h = 0; |
1343 | int client_w = 0; | |
1344 | GetClientSize( &client_w, &client_h ); | |
ef44a621 | 1345 | |
0659e7ee RR |
1346 | if (item_y < start_y+3) |
1347 | { | |
91b8de8d | 1348 | // going down |
0659e7ee RR |
1349 | int x = 0; |
1350 | int y = 0; | |
91b8de8d RR |
1351 | m_anchor->GetSize( x, y, this ); |
1352 | y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
c7a9fa36 | 1353 | x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels |
0659e7ee | 1354 | int x_pos = GetScrollPos( wxHORIZONTAL ); |
c193b707 | 1355 | // Item should appear at top |
91b8de8d | 1356 | SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, item_y/PIXELS_PER_UNIT ); |
0659e7ee | 1357 | } |
91b8de8d | 1358 | else if (item_y+GetLineHeight(gitem) > start_y+client_h) |
0659e7ee | 1359 | { |
c7a9fa36 RR |
1360 | // going up |
1361 | int x = 0; | |
1362 | int y = 0; | |
1363 | m_anchor->GetSize( x, y, this ); | |
1364 | y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
1365 | x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels | |
1366 | item_y += PIXELS_PER_UNIT+2; | |
1367 | int x_pos = GetScrollPos( wxHORIZONTAL ); | |
c193b707 | 1368 | // Item should appear at bottom |
c7a9fa36 | 1369 | 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 | 1370 | } |
edaa81ae | 1371 | } |
c801d85f | 1372 | |
e1ee62bd VZ |
1373 | // FIXME: tree sorting functions are not reentrant and not MT-safe! |
1374 | static wxTreeCtrl *s_treeBeingSorted = NULL; | |
0659e7ee | 1375 | |
004fd0c8 | 1376 | static int LINKAGEMODE tree_ctrl_compare_func(wxGenericTreeItem **item1, |
e1ee62bd | 1377 | wxGenericTreeItem **item2) |
edaa81ae | 1378 | { |
223d09f6 | 1379 | wxCHECK_MSG( s_treeBeingSorted, 0, wxT("bug in wxTreeCtrl::SortChildren()") ); |
e1ee62bd VZ |
1380 | |
1381 | return s_treeBeingSorted->OnCompareItems(*item1, *item2); | |
0659e7ee RR |
1382 | } |
1383 | ||
e1ee62bd VZ |
1384 | int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1, |
1385 | const wxTreeItemId& item2) | |
0659e7ee | 1386 | { |
87138c52 | 1387 | return wxStrcmp(GetItemText(item1), GetItemText(item2)); |
e1ee62bd VZ |
1388 | } |
1389 | ||
1390 | void wxTreeCtrl::SortChildren(const wxTreeItemId& itemId) | |
1391 | { | |
223d09f6 | 1392 | wxCHECK_RET( itemId.IsOk(), wxT("invalid tree item") ); |
e1ee62bd VZ |
1393 | |
1394 | wxGenericTreeItem *item = itemId.m_pItem; | |
978f38c2 | 1395 | |
e1ee62bd | 1396 | wxCHECK_RET( !s_treeBeingSorted, |
223d09f6 | 1397 | wxT("wxTreeCtrl::SortChildren is not reentrant") ); |
e1ee62bd | 1398 | |
91b8de8d | 1399 | wxArrayGenericTreeItems& children = item->GetChildren(); |
e1ee62bd VZ |
1400 | if ( children.Count() > 1 ) |
1401 | { | |
1402 | s_treeBeingSorted = this; | |
1403 | children.Sort(tree_ctrl_compare_func); | |
1404 | s_treeBeingSorted = NULL; | |
978f38c2 | 1405 | |
e1ee62bd VZ |
1406 | m_dirty = TRUE; |
1407 | } | |
1408 | //else: don't make the tree dirty as nothing changed | |
edaa81ae RR |
1409 | } |
1410 | ||
f135ff73 | 1411 | wxImageList *wxTreeCtrl::GetImageList() const |
edaa81ae | 1412 | { |
f135ff73 | 1413 | return m_imageListNormal; |
edaa81ae RR |
1414 | } |
1415 | ||
f135ff73 | 1416 | wxImageList *wxTreeCtrl::GetStateImageList() const |
c801d85f | 1417 | { |
f135ff73 | 1418 | return m_imageListState; |
edaa81ae | 1419 | } |
c801d85f | 1420 | |
f135ff73 | 1421 | void wxTreeCtrl::SetImageList(wxImageList *imageList) |
e2414cbe | 1422 | { |
f2593d0d | 1423 | m_imageListNormal = imageList; |
91b8de8d | 1424 | |
f2593d0d RR |
1425 | // Calculate a m_lineHeight value from the image sizes. |
1426 | // May be toggle off. Then wxTreeCtrl will spread when | |
1427 | // necessary (which might look ugly). | |
91b8de8d | 1428 | #if 1 |
f2593d0d RR |
1429 | wxClientDC dc(this); |
1430 | m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
1431 | int width = 0, height = 0, | |
1432 | n = m_imageListNormal->GetImageCount(); | |
1433 | ||
1434 | for (int i = 0; i < n ; i++) | |
1435 | { | |
1436 | m_imageListNormal->GetSize(i, width, height); | |
1437 | if (height > m_lineHeight) m_lineHeight = height; | |
1438 | } | |
91b8de8d | 1439 | |
f2593d0d RR |
1440 | if (m_lineHeight < 40) |
1441 | m_lineHeight += 2; // at least 2 pixels | |
1442 | else | |
1443 | m_lineHeight += m_lineHeight/10; // otherwise 10% extra spacing | |
91b8de8d | 1444 | #endif |
edaa81ae | 1445 | } |
e2414cbe | 1446 | |
f135ff73 | 1447 | void wxTreeCtrl::SetStateImageList(wxImageList *imageList) |
e2414cbe | 1448 | { |
f135ff73 | 1449 | m_imageListState = imageList; |
edaa81ae | 1450 | } |
e2414cbe | 1451 | |
f135ff73 VZ |
1452 | // ----------------------------------------------------------------------------- |
1453 | // helpers | |
1454 | // ----------------------------------------------------------------------------- | |
0659e7ee | 1455 | |
74bedbeb | 1456 | void wxTreeCtrl::AdjustMyScrollbars() |
c801d85f | 1457 | { |
0659e7ee RR |
1458 | if (m_anchor) |
1459 | { | |
1460 | int x = 0; | |
1461 | int y = 0; | |
91b8de8d | 1462 | m_anchor->GetSize( x, y, this ); |
c193b707 | 1463 | y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels |
c7a9fa36 | 1464 | x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels |
0659e7ee RR |
1465 | int x_pos = GetScrollPos( wxHORIZONTAL ); |
1466 | int y_pos = GetScrollPos( wxVERTICAL ); | |
91b8de8d | 1467 | SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, y_pos ); |
0659e7ee RR |
1468 | } |
1469 | else | |
1470 | { | |
1471 | SetScrollbars( 0, 0, 0, 0 ); | |
1472 | } | |
edaa81ae | 1473 | } |
c801d85f | 1474 | |
91b8de8d RR |
1475 | int wxTreeCtrl::GetLineHeight(wxGenericTreeItem *item) const |
1476 | { | |
dc6c62a9 RR |
1477 | if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT) |
1478 | return item->GetHeight(); | |
1479 | else | |
1480 | return m_lineHeight; | |
91b8de8d RR |
1481 | } |
1482 | ||
ef44a621 VZ |
1483 | void wxTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc) |
1484 | { | |
9ec64fa7 VZ |
1485 | wxTreeItemAttr *attr = item->GetAttributes(); |
1486 | if ( attr && attr->HasFont() ) | |
1487 | dc.SetFont(attr->GetFont()); | |
1488 | else if (item->IsBold()) | |
eff869aa | 1489 | dc.SetFont(m_boldFont); |
ef44a621 | 1490 | |
bbe0af5b RR |
1491 | long text_w = 0; |
1492 | long text_h = 0; | |
1493 | dc.GetTextExtent( item->GetText(), &text_w, &text_h ); | |
ef44a621 | 1494 | |
bbe0af5b RR |
1495 | int image_h = 0; |
1496 | int image_w = 0; | |
8dc99046 VZ |
1497 | int image = item->GetCurrentImage(); |
1498 | if ( image != NO_IMAGE ) | |
bbe0af5b | 1499 | { |
8dc99046 | 1500 | m_imageListNormal->GetSize( image, image_w, image_h ); |
bbe0af5b RR |
1501 | image_w += 4; |
1502 | } | |
ef44a621 | 1503 | |
91b8de8d RR |
1504 | int total_h = GetLineHeight(item); |
1505 | ||
1506 | dc.DrawRectangle( item->GetX()-2, item->GetY(), item->GetWidth()+2, total_h ); | |
ef44a621 | 1507 | |
8dc99046 | 1508 | if ( image != NO_IMAGE ) |
bbe0af5b | 1509 | { |
d30b4d20 | 1510 | dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h ); |
8dc99046 | 1511 | m_imageListNormal->Draw( image, dc, |
49cd56ef | 1512 | item->GetX(), |
d701d432 | 1513 | item->GetY() +((total_h > image_h)?((total_h-image_h)/2):0), |
bbe0af5b RR |
1514 | wxIMAGELIST_DRAW_TRANSPARENT ); |
1515 | dc.DestroyClippingRegion(); | |
1516 | } | |
ef44a621 | 1517 | |
9ec64fa7 VZ |
1518 | bool hasBgCol = attr && attr->HasBackgroundColour(); |
1519 | dc.SetBackgroundMode(hasBgCol ? wxSOLID : wxTRANSPARENT); | |
1520 | if ( hasBgCol ) | |
1521 | dc.SetTextBackground(attr->GetBackgroundColour()); | |
d30b4d20 | 1522 | dc.DrawText( item->GetText(), image_w + item->GetX(), item->GetY() |
49cd56ef | 1523 | + ((total_h > text_h) ? (total_h - text_h)/2 : 0)); |
ef44a621 | 1524 | |
eff869aa RR |
1525 | // restore normal font |
1526 | dc.SetFont( m_normalFont ); | |
ef44a621 VZ |
1527 | } |
1528 | ||
91b8de8d | 1529 | // Now y stands for the top of the item, whereas it used to stand for middle ! |
16c1f7f3 | 1530 | void wxTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y ) |
c801d85f | 1531 | { |
bbe0af5b | 1532 | int horizX = level*m_indent; |
389cdc7a | 1533 | |
cf724bce | 1534 | item->SetX( horizX+m_indent+m_spacing ); |
91b8de8d | 1535 | item->SetY( y ); |
4c681997 | 1536 | |
bbe0af5b | 1537 | int oldY = y; |
91b8de8d RR |
1538 | y+=GetLineHeight(item)/2; |
1539 | ||
1540 | item->SetCross( horizX+m_indent, y ); | |
389cdc7a | 1541 | |
bbe0af5b | 1542 | int exposed_x = dc.LogicalToDeviceX( 0 ); |
5391f772 | 1543 | int exposed_y = dc.LogicalToDeviceY( item->GetY() ); |
4832f7c0 | 1544 | |
5391f772 | 1545 | if (IsExposed( exposed_x, exposed_y, 10000, GetLineHeight(item) )) // 10000 = very much |
bbe0af5b RR |
1546 | { |
1547 | int startX = horizX; | |
cf724bce | 1548 | int endX = horizX + (m_indent-5); |
29d87bba | 1549 | |
cf724bce | 1550 | // if (!item->HasChildren()) endX += (m_indent+5); |
bbe0af5b | 1551 | if (!item->HasChildren()) endX += 20; |
4832f7c0 | 1552 | |
bbe0af5b | 1553 | dc.DrawLine( startX, y, endX, y ); |
29d87bba | 1554 | |
bbe0af5b RR |
1555 | if (item->HasPlus()) |
1556 | { | |
cf724bce | 1557 | dc.DrawLine( horizX+(m_indent+5), y, horizX+(m_indent+15), y ); |
bbe0af5b RR |
1558 | dc.SetPen( *wxGREY_PEN ); |
1559 | dc.SetBrush( *wxWHITE_BRUSH ); | |
cf724bce | 1560 | dc.DrawRectangle( horizX+(m_indent-5), y-4, 11, 9 ); |
9dfbf520 | 1561 | |
bbe0af5b | 1562 | dc.SetPen( *wxBLACK_PEN ); |
cf724bce | 1563 | dc.DrawLine( horizX+(m_indent-2), y, horizX+(m_indent+3), y ); |
bbe0af5b | 1564 | if (!item->IsExpanded()) |
cf724bce | 1565 | dc.DrawLine( horizX+m_indent, y-2, horizX+m_indent, y+3 ); |
9dfbf520 | 1566 | |
112c5086 | 1567 | dc.SetPen( m_dottedPen ); |
bbe0af5b | 1568 | } |
c801d85f | 1569 | |
9ec64fa7 VZ |
1570 | wxPen *pen = wxTRANSPARENT_PEN; |
1571 | wxBrush *brush; // FIXME is this really needed? | |
1572 | wxColour colText; | |
a367b9b3 | 1573 | |
9ec64fa7 VZ |
1574 | if ( item->IsSelected() ) |
1575 | { | |
1576 | colText = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT ); | |
4832f7c0 | 1577 | |
9ec64fa7 | 1578 | brush = m_hilightBrush; |
4832f7c0 | 1579 | |
9ec64fa7 VZ |
1580 | if ( m_hasFocus ) |
1581 | pen = wxBLACK_PEN; | |
f135ff73 | 1582 | |
bbe0af5b RR |
1583 | } |
1584 | else | |
1585 | { | |
9ec64fa7 VZ |
1586 | wxTreeItemAttr *attr = item->GetAttributes(); |
1587 | if ( attr && attr->HasTextColour() ) | |
1588 | colText = attr->GetTextColour(); | |
1589 | else | |
1590 | colText = *wxBLACK; | |
4832f7c0 | 1591 | |
9ec64fa7 | 1592 | brush = wxWHITE_BRUSH; |
bbe0af5b | 1593 | } |
9ec64fa7 VZ |
1594 | |
1595 | // prepare to draw | |
1596 | dc.SetTextForeground(colText); | |
1597 | dc.SetPen(*pen); | |
1598 | dc.SetBrush(*brush); | |
1599 | ||
1600 | // draw | |
1601 | PaintItem(item, dc); | |
1602 | ||
1603 | // restore DC objects | |
1604 | dc.SetBrush( *wxWHITE_BRUSH ); | |
1605 | dc.SetPen( m_dottedPen ); | |
1606 | dc.SetTextForeground( *wxBLACK ); | |
f135ff73 | 1607 | } |
d3a9f4af | 1608 | |
91b8de8d | 1609 | y = oldY+GetLineHeight(item); |
e2414cbe | 1610 | |
bbe0af5b RR |
1611 | if (item->IsExpanded()) |
1612 | { | |
91b8de8d | 1613 | oldY+=GetLineHeight(item)/2; |
9ec64fa7 | 1614 | int semiOldY=0; |
389cdc7a | 1615 | |
91b8de8d RR |
1616 | wxArrayGenericTreeItems& children = item->GetChildren(); |
1617 | size_t n, count = children.Count(); | |
1618 | for ( n = 0; n < count; ++n ) | |
c193b707 VZ |
1619 | { |
1620 | semiOldY=y; | |
1621 | PaintLevel( children[n], dc, level+1, y ); | |
1622 | } | |
389cdc7a | 1623 | |
f65635b5 VZ |
1624 | // it may happen that the item is expanded but has no items (when you |
1625 | // delete all its children for example) - don't draw the vertical line | |
1626 | // in this case | |
1627 | if (count > 0) | |
9ec64fa7 | 1628 | { |
c193b707 | 1629 | semiOldY+=GetLineHeight(children[--n])/2; |
cf724bce | 1630 | dc.DrawLine( horizX+m_indent, oldY+5, horizX+m_indent, semiOldY ); |
9ec64fa7 | 1631 | } |
bbe0af5b | 1632 | } |
4c681997 | 1633 | } |
c801d85f | 1634 | |
91b8de8d RR |
1635 | void wxTreeCtrl::DrawBorder(wxTreeItemId &item) |
1636 | { | |
1637 | if (!item) return; | |
1638 | ||
1639 | wxGenericTreeItem *i=item.m_pItem; | |
1640 | ||
1044a386 | 1641 | wxClientDC dc(this); |
91b8de8d RR |
1642 | PrepareDC( dc ); |
1643 | dc.SetLogicalFunction(wxINVERT); | |
1644 | ||
1645 | int w,h,x; | |
1646 | ViewStart(&x,&h); // we only need x | |
1647 | GetClientSize(&w,&h); // we only need w | |
1648 | ||
1649 | h=GetLineHeight(i)+1; | |
1650 | // 2 white column at border | |
1651 | dc.DrawRectangle( PIXELS_PER_UNIT*x+2, i->GetY()-1, w-6, h); | |
1652 | } | |
1653 | ||
1654 | void wxTreeCtrl::DrawLine(wxTreeItemId &item, bool below) | |
1655 | { | |
1656 | if (!item) return; | |
1657 | ||
1658 | wxGenericTreeItem *i=item.m_pItem; | |
1659 | ||
1044a386 | 1660 | wxClientDC dc(this); |
91b8de8d RR |
1661 | PrepareDC( dc ); |
1662 | dc.SetLogicalFunction(wxINVERT); | |
d3a9f4af | 1663 | |
91b8de8d RR |
1664 | int w,h,y; |
1665 | GetSize(&w,&h); | |
1666 | ||
1667 | if (below) y=i->GetY()+GetLineHeight(i)-1; | |
1668 | else y=i->GetY(); | |
1669 | ||
1670 | dc.DrawLine( 0, y, w, y); | |
1671 | } | |
1672 | ||
f135ff73 VZ |
1673 | // ----------------------------------------------------------------------------- |
1674 | // wxWindows callbacks | |
1675 | // ----------------------------------------------------------------------------- | |
1676 | ||
3db7be80 | 1677 | void wxTreeCtrl::OnPaint( wxPaintEvent &WXUNUSED(event) ) |
c801d85f | 1678 | { |
91b8de8d | 1679 | if ( !m_anchor) |
0659e7ee | 1680 | return; |
c801d85f | 1681 | |
0659e7ee RR |
1682 | wxPaintDC dc(this); |
1683 | PrepareDC( dc ); | |
29d87bba | 1684 | |
eff869aa | 1685 | dc.SetFont( m_normalFont ); |
0659e7ee | 1686 | dc.SetPen( m_dottedPen ); |
f38374d0 | 1687 | |
eff869aa | 1688 | // this is now done dynamically |
91b8de8d RR |
1689 | //if(GetImageList() == NULL) |
1690 | // m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
29d87bba | 1691 | |
91b8de8d | 1692 | int y = 2; |
0659e7ee | 1693 | PaintLevel( m_anchor, dc, 0, y ); |
edaa81ae | 1694 | } |
c801d85f | 1695 | |
3db7be80 | 1696 | void wxTreeCtrl::OnSetFocus( wxFocusEvent &WXUNUSED(event) ) |
c801d85f | 1697 | { |
0659e7ee | 1698 | m_hasFocus = TRUE; |
978f38c2 | 1699 | |
bbe0af5b | 1700 | if (m_current) RefreshLine( m_current ); |
edaa81ae | 1701 | } |
c801d85f | 1702 | |
3db7be80 | 1703 | void wxTreeCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) ) |
c801d85f | 1704 | { |
0659e7ee | 1705 | m_hasFocus = FALSE; |
978f38c2 | 1706 | |
bbe0af5b | 1707 | if (m_current) RefreshLine( m_current ); |
edaa81ae | 1708 | } |
c801d85f KB |
1709 | |
1710 | void wxTreeCtrl::OnChar( wxKeyEvent &event ) | |
1711 | { | |
978f38c2 VZ |
1712 | wxTreeEvent te( wxEVT_COMMAND_TREE_KEY_DOWN, GetId() ); |
1713 | te.m_code = event.KeyCode(); | |
1714 | te.SetEventObject( this ); | |
1715 | GetEventHandler()->ProcessEvent( te ); | |
435fe83e | 1716 | |
91b8de8d | 1717 | if ( (m_current == 0) || (m_key_current == 0) ) |
978f38c2 VZ |
1718 | { |
1719 | event.Skip(); | |
1720 | return; | |
1721 | } | |
ef44a621 | 1722 | |
88ac883a VZ |
1723 | bool is_multiple=(GetWindowStyleFlag() & wxTR_MULTIPLE); |
1724 | bool extended_select=(event.ShiftDown() && is_multiple); | |
1725 | bool unselect_others=!(extended_select || (event.ControlDown() && is_multiple)); | |
1726 | ||
978f38c2 VZ |
1727 | switch (event.KeyCode()) |
1728 | { | |
1729 | case '+': | |
1730 | case WXK_ADD: | |
1731 | if (m_current->HasPlus() && !IsExpanded(m_current)) | |
1732 | { | |
1733 | Expand(m_current); | |
1734 | } | |
1735 | break; | |
ef44a621 | 1736 | |
978f38c2 VZ |
1737 | case '-': |
1738 | case WXK_SUBTRACT: | |
1739 | if (IsExpanded(m_current)) | |
1740 | { | |
1741 | Collapse(m_current); | |
1742 | } | |
1743 | break; | |
ef44a621 | 1744 | |
978f38c2 VZ |
1745 | case '*': |
1746 | case WXK_MULTIPLY: | |
1747 | Toggle(m_current); | |
1748 | break; | |
ef44a621 | 1749 | |
978f38c2 VZ |
1750 | case ' ': |
1751 | case WXK_RETURN: | |
1752 | { | |
1753 | wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() ); | |
1754 | event.m_item = m_current; | |
1755 | event.m_code = 0; | |
1756 | event.SetEventObject( this ); | |
1757 | GetEventHandler()->ProcessEvent( event ); | |
1758 | } | |
1759 | break; | |
ef44a621 | 1760 | |
978f38c2 VZ |
1761 | // up goes to the previous sibling or to the last of its children if |
1762 | // it's expanded | |
1763 | case WXK_UP: | |
1764 | { | |
91b8de8d | 1765 | wxTreeItemId prev = GetPrevSibling( m_key_current ); |
978f38c2 VZ |
1766 | if (!prev) |
1767 | { | |
91b8de8d | 1768 | prev = GetParent( m_key_current ); |
c193b707 VZ |
1769 | if (prev) |
1770 | { | |
90e58684 | 1771 | long cockie = 0; |
91b8de8d | 1772 | wxTreeItemId current = m_key_current; |
90e58684 RR |
1773 | if (current == GetFirstChild( prev, cockie )) |
1774 | { | |
1775 | // otherwise we return to where we came from | |
88ac883a | 1776 | SelectItem( prev, unselect_others, extended_select ); |
c193b707 VZ |
1777 | m_key_current=prev.m_pItem; |
1778 | EnsureVisible( prev ); | |
90e58684 | 1779 | break; |
c193b707 | 1780 | } |
978f38c2 VZ |
1781 | } |
1782 | } | |
1783 | if (prev) | |
1784 | { | |
69a282d4 | 1785 | while ( IsExpanded(prev) && HasChildren(prev) ) |
978f38c2 | 1786 | { |
69a282d4 VZ |
1787 | wxTreeItemId child = GetLastChild(prev); |
1788 | if ( child ) | |
1789 | { | |
1790 | prev = child; | |
1791 | } | |
978f38c2 | 1792 | } |
69a282d4 | 1793 | |
88ac883a | 1794 | SelectItem( prev, unselect_others, extended_select ); |
c193b707 | 1795 | m_key_current=prev.m_pItem; |
978f38c2 VZ |
1796 | EnsureVisible( prev ); |
1797 | } | |
1798 | } | |
1799 | break; | |
ef44a621 | 1800 | |
978f38c2 VZ |
1801 | // left arrow goes to the parent |
1802 | case WXK_LEFT: | |
1803 | { | |
1804 | wxTreeItemId prev = GetParent( m_current ); | |
1805 | if (prev) | |
1806 | { | |
1807 | EnsureVisible( prev ); | |
88ac883a | 1808 | SelectItem( prev, unselect_others, extended_select ); |
978f38c2 VZ |
1809 | } |
1810 | } | |
1811 | break; | |
ef44a621 | 1812 | |
978f38c2 VZ |
1813 | case WXK_RIGHT: |
1814 | // this works the same as the down arrow except that we also expand the | |
1815 | // item if it wasn't expanded yet | |
1816 | Expand(m_current); | |
1817 | // fall through | |
1818 | ||
1819 | case WXK_DOWN: | |
ef44a621 | 1820 | { |
91b8de8d | 1821 | if (IsExpanded(m_key_current) && HasChildren(m_key_current)) |
978f38c2 VZ |
1822 | { |
1823 | long cookie = 0; | |
91b8de8d | 1824 | wxTreeItemId child = GetFirstChild( m_key_current, cookie ); |
88ac883a | 1825 | SelectItem( child, unselect_others, extended_select ); |
c193b707 | 1826 | m_key_current=child.m_pItem; |
978f38c2 VZ |
1827 | EnsureVisible( child ); |
1828 | } | |
1829 | else | |
1830 | { | |
91b8de8d | 1831 | wxTreeItemId next = GetNextSibling( m_key_current ); |
b62c3631 RR |
1832 | // if (next == 0) |
1833 | if (!next) | |
978f38c2 | 1834 | { |
91b8de8d | 1835 | wxTreeItemId current = m_key_current; |
978f38c2 VZ |
1836 | while (current && !next) |
1837 | { | |
1838 | current = GetParent( current ); | |
1839 | if (current) next = GetNextSibling( current ); | |
1840 | } | |
1841 | } | |
b62c3631 RR |
1842 | // if (next != 0) |
1843 | if (next) | |
978f38c2 | 1844 | { |
88ac883a | 1845 | SelectItem( next, unselect_others, extended_select ); |
c193b707 | 1846 | m_key_current=next.m_pItem; |
978f38c2 VZ |
1847 | EnsureVisible( next ); |
1848 | } | |
1849 | } | |
ef44a621 | 1850 | } |
978f38c2 | 1851 | break; |
ef44a621 | 1852 | |
978f38c2 VZ |
1853 | // <End> selects the last visible tree item |
1854 | case WXK_END: | |
1855 | { | |
1856 | wxTreeItemId last = GetRootItem(); | |
1857 | ||
1858 | while ( last.IsOk() && IsExpanded(last) ) | |
1859 | { | |
1860 | wxTreeItemId lastChild = GetLastChild(last); | |
1861 | ||
1862 | // it may happen if the item was expanded but then all of | |
1863 | // its children have been deleted - so IsExpanded() returned | |
1864 | // TRUE, but GetLastChild() returned invalid item | |
1865 | if ( !lastChild ) | |
1866 | break; | |
1867 | ||
1868 | last = lastChild; | |
1869 | } | |
1870 | ||
1871 | if ( last.IsOk() ) | |
1872 | { | |
1873 | EnsureVisible( last ); | |
88ac883a | 1874 | SelectItem( last, unselect_others, extended_select ); |
978f38c2 VZ |
1875 | } |
1876 | } | |
1877 | break; | |
1878 | ||
1879 | // <Home> selects the root item | |
1880 | case WXK_HOME: | |
1881 | { | |
1882 | wxTreeItemId prev = GetRootItem(); | |
1883 | if (prev) | |
1884 | { | |
1885 | EnsureVisible( prev ); | |
88ac883a | 1886 | SelectItem( prev, unselect_others, extended_select ); |
978f38c2 VZ |
1887 | } |
1888 | } | |
1889 | break; | |
1890 | ||
1891 | default: | |
1892 | event.Skip(); | |
1893 | } | |
edaa81ae | 1894 | } |
c801d85f | 1895 | |
91b8de8d | 1896 | wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& flags) |
4f22cf8d | 1897 | { |
dc6c62a9 RR |
1898 | // We have to call this here because the label in |
1899 | // question might just have been added and no screen | |
1900 | // update taken place. | |
1901 | if (m_dirty) wxYield(); | |
1902 | ||
67a7abf7 VZ |
1903 | wxClientDC dc(this); |
1904 | PrepareDC(dc); | |
1905 | long x = dc.DeviceToLogicalX( (long)point.x ); | |
1906 | long y = dc.DeviceToLogicalY( (long)point.y ); | |
91b8de8d RR |
1907 | int w, h; |
1908 | GetSize(&w, &h); | |
1909 | ||
1910 | flags=0; | |
1911 | if (point.x<0) flags|=wxTREE_HITTEST_TOLEFT; | |
1912 | if (point.x>w) flags|=wxTREE_HITTEST_TORIGHT; | |
1913 | if (point.y<0) flags|=wxTREE_HITTEST_ABOVE; | |
1914 | if (point.y>h) flags|=wxTREE_HITTEST_BELOW; | |
d3a9f4af | 1915 | |
91b8de8d | 1916 | return m_anchor->HitTest( wxPoint(x, y), this, flags); |
4f22cf8d RR |
1917 | } |
1918 | ||
e179bd65 RR |
1919 | /* **** */ |
1920 | ||
1921 | void wxTreeCtrl::Edit( const wxTreeItemId& item ) | |
1922 | { | |
1923 | if (!item.IsOk()) return; | |
1924 | ||
1925 | m_currentEdit = item.m_pItem; | |
9dfbf520 | 1926 | |
e179bd65 RR |
1927 | wxTreeEvent te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, GetId() ); |
1928 | te.m_item = m_currentEdit; | |
1929 | te.SetEventObject( this ); | |
1930 | GetEventHandler()->ProcessEvent( te ); | |
1931 | ||
1932 | if (!te.IsAllowed()) return; | |
8dc99046 | 1933 | |
dc6c62a9 RR |
1934 | // We have to call this here because the label in |
1935 | // question might just have been added and no screen | |
1936 | // update taken place. | |
1937 | if (m_dirty) wxYield(); | |
9dfbf520 | 1938 | |
e179bd65 RR |
1939 | wxString s = m_currentEdit->GetText(); |
1940 | int x = m_currentEdit->GetX(); | |
1941 | int y = m_currentEdit->GetY(); | |
1942 | int w = m_currentEdit->GetWidth(); | |
1943 | int h = m_currentEdit->GetHeight(); | |
9dfbf520 | 1944 | |
5f1ea0ee RR |
1945 | int image_h = 0; |
1946 | int image_w = 0; | |
8dc99046 VZ |
1947 | |
1948 | int image = m_currentEdit->GetCurrentImage(); | |
1949 | if ( image != NO_IMAGE ) | |
5f1ea0ee | 1950 | { |
8dc99046 | 1951 | m_imageListNormal->GetSize( image, image_w, image_h ); |
5f1ea0ee RR |
1952 | image_w += 4; |
1953 | } | |
1954 | x += image_w; | |
1955 | w -= image_w + 4; // I don't know why +4 is needed | |
e179bd65 RR |
1956 | |
1957 | wxClientDC dc(this); | |
1958 | PrepareDC( dc ); | |
1959 | x = dc.LogicalToDeviceX( x ); | |
1960 | y = dc.LogicalToDeviceY( y ); | |
1961 | ||
1962 | wxTreeTextCtrl *text = new wxTreeTextCtrl( | |
1963 | this, -1, &m_renameAccept, &m_renameRes, this, s, wxPoint(x-4,y-4), wxSize(w+11,h+8) ); | |
1964 | text->SetFocus(); | |
1965 | } | |
1966 | ||
1967 | void wxTreeCtrl::OnRenameTimer() | |
1968 | { | |
1969 | Edit( m_current ); | |
1970 | } | |
1971 | ||
1972 | void wxTreeCtrl::OnRenameAccept() | |
1973 | { | |
1974 | wxTreeEvent le( wxEVT_COMMAND_TREE_END_LABEL_EDIT, GetId() ); | |
1975 | le.m_item = m_currentEdit; | |
1976 | le.SetEventObject( this ); | |
1977 | le.m_label = m_renameRes; | |
1978 | GetEventHandler()->ProcessEvent( le ); | |
9dfbf520 | 1979 | |
e179bd65 | 1980 | if (!le.IsAllowed()) return; |
9dfbf520 | 1981 | |
5f1ea0ee | 1982 | SetItemText( m_currentEdit, m_renameRes ); |
e179bd65 | 1983 | } |
9dfbf520 | 1984 | |
3db7be80 | 1985 | void wxTreeCtrl::OnMouse( wxMouseEvent &event ) |
c801d85f | 1986 | { |
fb882e1c | 1987 | if ( !(event.LeftUp() || event.RightDown() || event.LeftDClick() || event.Dragging()) ) return; |
29d87bba | 1988 | |
bbe0af5b | 1989 | if ( !m_anchor ) return; |
978f38c2 | 1990 | |
bbe0af5b RR |
1991 | wxClientDC dc(this); |
1992 | PrepareDC(dc); | |
1993 | long x = dc.DeviceToLogicalX( (long)event.GetX() ); | |
1994 | long y = dc.DeviceToLogicalY( (long)event.GetY() ); | |
29d87bba | 1995 | |
91b8de8d RR |
1996 | int flags=0; |
1997 | wxGenericTreeItem *item = m_anchor->HitTest( wxPoint(x,y), this, flags); | |
1998 | bool onButton = flags & wxTREE_HITTEST_ONITEMBUTTON; | |
978f38c2 | 1999 | |
bbe0af5b RR |
2000 | if (event.Dragging()) |
2001 | { | |
fd9811b1 | 2002 | if (m_dragCount == 0) |
8dc99046 VZ |
2003 | m_dragStart = wxPoint(x,y); |
2004 | ||
fd9811b1 | 2005 | m_dragCount++; |
8dc99046 VZ |
2006 | |
2007 | if (m_dragCount != 3) return; | |
2008 | ||
2009 | int command = wxEVT_COMMAND_TREE_BEGIN_DRAG; | |
2010 | if (event.RightIsDown()) command = wxEVT_COMMAND_TREE_BEGIN_RDRAG; | |
2011 | ||
fd9811b1 RR |
2012 | wxTreeEvent nevent( command, GetId() ); |
2013 | nevent.m_item = m_current; | |
2014 | nevent.SetEventObject(this); | |
2015 | GetEventHandler()->ProcessEvent(nevent); | |
8dc99046 | 2016 | return; |
bbe0af5b | 2017 | } |
fd9811b1 RR |
2018 | else |
2019 | { | |
2020 | m_dragCount = 0; | |
2021 | } | |
2022 | ||
2023 | if (item == NULL) return; /* we hit the blank area */ | |
978f38c2 | 2024 | |
004fd0c8 | 2025 | if (event.RightDown()) { |
fb882e1c UC |
2026 | wxTreeEvent nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK,GetId()); |
2027 | nevent.m_item=item; | |
2028 | nevent.m_code=0; | |
2029 | nevent.SetEventObject(this); | |
2030 | GetEventHandler()->ProcessEvent(nevent); | |
2031 | return; | |
2032 | } | |
2033 | ||
9dfbf520 VZ |
2034 | if (event.LeftUp() && (item == m_current) && |
2035 | (flags & wxTREE_HITTEST_ONITEMLABEL) && | |
2036 | HasFlag(wxTR_EDIT_LABELS) ) | |
e179bd65 RR |
2037 | { |
2038 | m_renameTimer->Start( 100, TRUE ); | |
2039 | return; | |
2040 | } | |
9dfbf520 | 2041 | |
88ac883a VZ |
2042 | bool is_multiple=(GetWindowStyleFlag() & wxTR_MULTIPLE); |
2043 | bool extended_select=(event.ShiftDown() && is_multiple); | |
2044 | bool unselect_others=!(extended_select || (event.ControlDown() && is_multiple)); | |
2045 | ||
91b8de8d RR |
2046 | if (onButton) |
2047 | { | |
2048 | Toggle( item ); | |
c193b707 VZ |
2049 | if (is_multiple) |
2050 | return; | |
91b8de8d RR |
2051 | } |
2052 | ||
88ac883a | 2053 | SelectItem(item, unselect_others, extended_select); |
29d87bba | 2054 | |
bbe0af5b RR |
2055 | if (event.LeftDClick()) |
2056 | { | |
2057 | wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() ); | |
2058 | event.m_item = item; | |
2059 | event.m_code = 0; | |
2060 | event.SetEventObject( this ); | |
2061 | GetEventHandler()->ProcessEvent( event ); | |
2062 | } | |
edaa81ae | 2063 | } |
c801d85f | 2064 | |
3db7be80 RR |
2065 | void wxTreeCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) ) |
2066 | { | |
bbe0af5b RR |
2067 | /* after all changes have been done to the tree control, |
2068 | * we actually redraw the tree when everything is over */ | |
ef44a621 | 2069 | |
f65635b5 VZ |
2070 | if (!m_dirty) |
2071 | return; | |
ef44a621 | 2072 | |
bbe0af5b | 2073 | m_dirty = FALSE; |
3db7be80 | 2074 | |
bbe0af5b | 2075 | CalculatePositions(); |
91b8de8d | 2076 | Refresh(); |
bbe0af5b | 2077 | AdjustMyScrollbars(); |
3db7be80 RR |
2078 | } |
2079 | ||
91b8de8d | 2080 | void wxTreeCtrl::CalculateSize( wxGenericTreeItem *item, wxDC &dc ) |
d3a9f4af | 2081 | { |
91b8de8d RR |
2082 | long text_w = 0; |
2083 | long text_h = 0; | |
9dfbf520 | 2084 | |
a62867a5 | 2085 | if (item->IsBold()) |
eff869aa | 2086 | dc.SetFont(m_boldFont); |
9dfbf520 | 2087 | |
91b8de8d | 2088 | dc.GetTextExtent( item->GetText(), &text_w, &text_h ); |
a62867a5 | 2089 | text_h+=2; |
91b8de8d | 2090 | |
eff869aa RR |
2091 | // restore normal font |
2092 | dc.SetFont( m_normalFont ); | |
9dfbf520 | 2093 | |
91b8de8d RR |
2094 | int image_h = 0; |
2095 | int image_w = 0; | |
8dc99046 VZ |
2096 | int image = item->GetCurrentImage(); |
2097 | if ( image != NO_IMAGE ) | |
91b8de8d | 2098 | { |
8dc99046 | 2099 | m_imageListNormal->GetSize( image, image_w, image_h ); |
91b8de8d RR |
2100 | image_w += 4; |
2101 | } | |
2102 | ||
2103 | int total_h = (image_h > text_h) ? image_h : text_h; | |
2104 | ||
f2593d0d RR |
2105 | if (total_h < 40) |
2106 | total_h += 2; // at least 2 pixels | |
2107 | else | |
2108 | total_h += total_h/10; // otherwise 10% extra spacing | |
91b8de8d RR |
2109 | |
2110 | item->SetHeight(total_h); | |
2111 | if (total_h>m_lineHeight) m_lineHeight=total_h; | |
bbe0af5b | 2112 | |
91b8de8d RR |
2113 | item->SetWidth(image_w+text_w+2); |
2114 | } | |
2115 | ||
2116 | // ----------------------------------------------------------------------------- | |
2117 | // for developper : y is now the top of the level | |
2118 | // not the middle of it ! | |
bbe0af5b | 2119 | void wxTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y ) |
c801d85f | 2120 | { |
bbe0af5b | 2121 | int horizX = level*m_indent; |
389cdc7a | 2122 | |
91b8de8d | 2123 | CalculateSize( item, dc ); |
d3a9f4af | 2124 | |
91b8de8d | 2125 | // set its position |
cf724bce | 2126 | item->SetX( horizX+m_indent+m_spacing ); |
91b8de8d RR |
2127 | item->SetY( y ); |
2128 | y+=GetLineHeight(item); | |
4c681997 | 2129 | |
bbe0af5b RR |
2130 | if ( !item->IsExpanded() ) |
2131 | { | |
f65635b5 | 2132 | // we dont need to calculate collapsed branches |
bbe0af5b RR |
2133 | return; |
2134 | } | |
389cdc7a | 2135 | |
91b8de8d RR |
2136 | wxArrayGenericTreeItems& children = item->GetChildren(); |
2137 | size_t n, count = children.Count(); | |
2138 | for (n = 0; n < count; ++n ) | |
f2593d0d | 2139 | CalculateLevel( children[n], dc, level+1, y ); // recurse |
edaa81ae | 2140 | } |
c801d85f | 2141 | |
74bedbeb | 2142 | void wxTreeCtrl::CalculatePositions() |
c801d85f | 2143 | { |
bbe0af5b | 2144 | if ( !m_anchor ) return; |
29d87bba | 2145 | |
bbe0af5b RR |
2146 | wxClientDC dc(this); |
2147 | PrepareDC( dc ); | |
29d87bba | 2148 | |
eff869aa | 2149 | dc.SetFont( m_normalFont ); |
29d87bba | 2150 | |
bbe0af5b | 2151 | dc.SetPen( m_dottedPen ); |
91b8de8d RR |
2152 | //if(GetImageList() == NULL) |
2153 | // m_lineHeight = (int)(dc.GetCharHeight() + 4); | |
29d87bba | 2154 | |
8dc99046 | 2155 | int y = 2; |
f65635b5 | 2156 | CalculateLevel( m_anchor, dc, 0, y ); // start recursion |
edaa81ae | 2157 | } |
c801d85f | 2158 | |
f135ff73 | 2159 | void wxTreeCtrl::RefreshSubtree(wxGenericTreeItem *item) |
c801d85f | 2160 | { |
e6527f9d RR |
2161 | if (m_dirty) return; |
2162 | ||
bbe0af5b RR |
2163 | wxClientDC dc(this); |
2164 | PrepareDC(dc); | |
4832f7c0 | 2165 | |
bbe0af5b RR |
2166 | int cw = 0; |
2167 | int ch = 0; | |
2168 | GetClientSize( &cw, &ch ); | |
4832f7c0 | 2169 | |
bbe0af5b RR |
2170 | wxRect rect; |
2171 | rect.x = dc.LogicalToDeviceX( 0 ); | |
2172 | rect.width = cw; | |
2173 | rect.y = dc.LogicalToDeviceY( item->GetY() ); | |
2174 | rect.height = ch; | |
f135ff73 | 2175 | |
bbe0af5b | 2176 | Refresh( TRUE, &rect ); |
f135ff73 | 2177 | |
bbe0af5b | 2178 | AdjustMyScrollbars(); |
edaa81ae | 2179 | } |
c801d85f KB |
2180 | |
2181 | void wxTreeCtrl::RefreshLine( wxGenericTreeItem *item ) | |
2182 | { | |
e6527f9d RR |
2183 | if (m_dirty) return; |
2184 | ||
bbe0af5b RR |
2185 | wxClientDC dc(this); |
2186 | PrepareDC( dc ); | |
2187 | ||
5391f772 SB |
2188 | int cw = 0; |
2189 | int ch = 0; | |
2190 | GetClientSize( &cw, &ch ); | |
2191 | ||
bbe0af5b | 2192 | wxRect rect; |
5391f772 SB |
2193 | rect.x = dc.LogicalToDeviceX( 0 ); |
2194 | rect.y = dc.LogicalToDeviceY( item->GetY() ); | |
2195 | rect.width = cw; | |
91b8de8d | 2196 | rect.height = GetLineHeight(item); //dc.GetCharHeight() + 6; |
978f38c2 | 2197 | |
bbe0af5b | 2198 | Refresh( TRUE, &rect ); |
edaa81ae | 2199 | } |
c801d85f | 2200 |