]> git.saurik.com Git - wxWidgets.git/blame - src/generic/treectrl.cpp
more fixes for paused thread termination
[wxWidgets.git] / src / generic / treectrl.cpp
CommitLineData
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
31#include "wx/generic/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"
37#include "wx/dcclient.h"
0659e7ee 38#include "wx/msgdlg.h"
c801d85f 39
f135ff73
VZ
40// -----------------------------------------------------------------------------
41// array types
42// -----------------------------------------------------------------------------
c801d85f 43
1e6d9499
JS
44class WXDLLEXPORT wxGenericTreeItem;
45
f135ff73 46WX_DEFINE_ARRAY(wxGenericTreeItem *, wxArrayTreeItems);
c801d85f 47
f135ff73
VZ
48// -----------------------------------------------------------------------------
49// private classes
50// -----------------------------------------------------------------------------
51
52// a tree item
53class WXDLLEXPORT wxGenericTreeItem
c801d85f 54{
f135ff73
VZ
55public:
56 // ctors & dtor
57 wxGenericTreeItem() { m_data = NULL; }
58 wxGenericTreeItem( wxGenericTreeItem *parent,
59 const wxString& text,
60 wxDC& dc,
61 int image, int selImage,
62 wxTreeItemData *data );
63
ff5bf259 64 ~wxGenericTreeItem();
f135ff73
VZ
65
66 // trivial accessors
67 wxArrayTreeItems& GetChildren() { return m_children; }
68
69 const wxString& GetText() const { return m_text; }
70 int GetImage() const { return m_image; }
71 int GetSelectedImage() const { return m_selImage; }
72 wxTreeItemData *GetData() const { return m_data; }
73
74 void SetText( const wxString &text, wxDC& dc );
75 void SetImage(int image) { m_image = image; }
76 void SetSelectedImage(int image) { m_selImage = image; }
77 void SetData(wxTreeItemData *data) { m_data = data; }
78
79 void SetHasPlus(bool has = TRUE) { m_hasPlus = has; }
80
ef44a621
VZ
81 void SetBold(bool bold) { m_isBold = bold; }
82
f135ff73
VZ
83 int GetX() const { return m_x; }
84 int GetY() const { return m_y; }
85
86 void SetHeight(int h) { m_height = h; }
87
88 void SetX(int x) { m_x = x; }
89 void SetY(int y) { m_y = y; }
90
91 wxGenericTreeItem *GetParent() const { return m_parent; }
c801d85f 92
f135ff73 93 // operations
a43a4f9d
VZ
94 // deletes all children notifying the treectrl about it if !NULL pointer
95 // given
96 void DeleteChildren(wxTreeCtrl *tree = NULL);
97 // FIXME don't know what is it for
f135ff73
VZ
98 void Reset();
99
4832f7c0
VZ
100 // get count of all children (and grand children if 'recursively')
101 size_t GetChildrenCount(bool recursively = TRUE) const;
f135ff73
VZ
102
103 void Insert(wxGenericTreeItem *child, size_t index)
104 { m_children.Insert(child, index); }
105
106 void SetCross( int x, int y );
107 void GetSize( int &x, int &y );
108
109 // return the item at given position (or NULL if no item), onButton is TRUE
110 // if the point belongs to the item's button, otherwise it lies on the
111 // button's label
112 wxGenericTreeItem *HitTest( const wxPoint& point, bool &onButton );
113
114 void Expand() { m_isCollapsed = FALSE; }
115 void Collapse() { m_isCollapsed = TRUE; }
116
117 void SetHilight( bool set = TRUE ) { m_hasHilight = set; }
118
119 // status inquiries
120 bool HasChildren() const { return !m_children.IsEmpty(); }
121 bool HasHilight() const { return m_hasHilight; }
122 bool IsExpanded() const { return !m_isCollapsed; }
123 bool HasPlus() const { return m_hasPlus || HasChildren(); }
ef44a621 124 bool IsBold() const { return m_isBold; }
f135ff73
VZ
125
126private:
127 wxString m_text;
128
129 int m_image,
130 m_selImage;
131
132 wxTreeItemData *m_data;
4832f7c0 133
ef44a621
VZ
134 // use bitfields to save size
135 int m_isCollapsed :1;
136 int m_hasHilight :1; // same as focused
137 int m_hasPlus :1; // used for item which doesn't have
138 // children but still has a [+] button
139 int m_isBold :1; // render the label in bold font
f135ff73
VZ
140
141 int m_x, m_y;
142 long m_height, m_width;
143 int m_xCross, m_yCross;
144 int m_level;
145 wxArrayTreeItems m_children;
146 wxGenericTreeItem *m_parent;
147};
148
149// =============================================================================
150// implementation
151// =============================================================================
152
153// -----------------------------------------------------------------------------
c801d85f 154// wxTreeEvent
f135ff73 155// -----------------------------------------------------------------------------
c801d85f 156
92976ab6 157IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent, wxNotifyEvent)
c801d85f 158
f135ff73 159wxTreeEvent::wxTreeEvent( wxEventType commandType, int id )
92976ab6 160 : wxNotifyEvent( commandType, id )
c801d85f
KB
161{
162 m_code = 0;
f135ff73 163 m_itemOld = (wxGenericTreeItem *)NULL;
edaa81ae 164}
c801d85f 165
f135ff73 166// -----------------------------------------------------------------------------
c801d85f 167// wxGenericTreeItem
f135ff73 168// -----------------------------------------------------------------------------
c801d85f 169
f135ff73
VZ
170wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem *parent,
171 const wxString& text,
172 wxDC& dc,
173 int image, int selImage,
174 wxTreeItemData *data)
175 : m_text(text)
c801d85f 176{
f135ff73
VZ
177 m_image = image;
178 m_selImage = selImage;
179 m_data = data;
180 m_x = m_y = 0;
181 m_xCross = m_yCross = 0;
182
183 m_level = 0;
184
185 m_isCollapsed = TRUE;
c801d85f 186 m_hasHilight = FALSE;
df875e59 187 m_hasPlus = FALSE;
ef44a621 188 m_isBold = FALSE;
c801d85f 189
c801d85f 190 m_parent = parent;
f135ff73
VZ
191
192 dc.GetTextExtent( m_text, &m_width, &m_height );
edaa81ae 193}
c801d85f 194
f135ff73 195wxGenericTreeItem::~wxGenericTreeItem()
c801d85f 196{
f135ff73 197 delete m_data;
4832f7c0 198
a43a4f9d
VZ
199 wxASSERT_MSG( m_children.IsEmpty(),
200 "please call DeleteChildren() before deleting the item" );
372edb9d
VZ
201}
202
a43a4f9d 203void wxGenericTreeItem::DeleteChildren(wxTreeCtrl *tree)
372edb9d 204{
f135ff73
VZ
205 size_t count = m_children.Count();
206 for ( size_t n = 0; n < count; n++ )
a43a4f9d
VZ
207 {
208 wxGenericTreeItem *child = m_children[n];
209 if ( tree )
210 {
211 tree->SendDeleteEvent(child);
212 }
213
214 child->DeleteChildren(tree);
215 delete child;
216 }
372edb9d
VZ
217
218 m_children.Empty();
edaa81ae 219}
c801d85f 220
f135ff73 221void wxGenericTreeItem::SetText( const wxString &text, wxDC& dc )
c801d85f
KB
222{
223 m_text = text;
f135ff73
VZ
224
225 dc.GetTextExtent( m_text, &m_width, &m_height );
edaa81ae 226}
c801d85f 227
74bedbeb 228void wxGenericTreeItem::Reset()
c801d85f 229{
f135ff73
VZ
230 m_text.Empty();
231 m_image =
232 m_selImage = -1;
233 m_data = NULL;
234 m_x = m_y =
235 m_height = m_width = 0;
236 m_xCross =
c801d85f 237 m_yCross = 0;
74bedbeb 238
f135ff73 239 m_level = 0;
c801d85f 240
372edb9d 241 DeleteChildren();
f135ff73 242 m_isCollapsed = TRUE;
c801d85f 243
f135ff73 244 m_parent = (wxGenericTreeItem *)NULL;
edaa81ae 245}
c801d85f 246
4832f7c0 247size_t wxGenericTreeItem::GetChildrenCount(bool recursively) const
c801d85f 248{
f135ff73 249 size_t count = m_children.Count();
4832f7c0
VZ
250 if ( !recursively )
251 return count;
252
f135ff73
VZ
253 size_t total = count;
254 for ( size_t n = 0; n < count; n++ )
c801d85f 255 {
4832f7c0 256 total += m_children[n]->GetChildrenCount();
edaa81ae 257 }
c801d85f 258
f135ff73 259 return total;
edaa81ae 260}
c801d85f
KB
261
262void wxGenericTreeItem::SetCross( int x, int y )
263{
264 m_xCross = x;
265 m_yCross = y;
edaa81ae 266}
c801d85f
KB
267
268void wxGenericTreeItem::GetSize( int &x, int &y )
269{
df875e59 270 if ( y < m_y ) y = m_y;
c801d85f
KB
271 int width = m_x + m_width;
272 if (width > x) x = width;
f135ff73 273
df875e59 274 if (IsExpanded())
c801d85f 275 {
df875e59
RR
276 size_t count = m_children.Count();
277 for ( size_t n = 0; n < count; n++ )
4832f7c0 278 {
df875e59
RR
279 m_children[n]->GetSize( x, y );
280 }
edaa81ae
RR
281 }
282}
c801d85f 283
f135ff73
VZ
284wxGenericTreeItem *wxGenericTreeItem::HitTest( const wxPoint& point,
285 bool &onButton )
c801d85f 286{
f135ff73 287 if ((point.y > m_y) && (point.y < m_y + m_height))
c801d85f 288 {
f135ff73
VZ
289 // FIXME why +5?
290 if ((point.x > m_xCross-5) && (point.x < m_xCross+5) &&
291 (point.y > m_yCross-5) && (point.y < m_yCross+5) &&
f9f950fc 292 (IsExpanded() || HasPlus()))
c801d85f 293 {
f135ff73
VZ
294 onButton = TRUE;
295 return this;
edaa81ae 296 }
978f38c2 297
a93109d5
RR
298 int w = m_width;
299 if (m_image != -1) w += 20;
f135ff73 300
a93109d5 301 if ((point.x > m_x) && (point.x < m_x+w))
c801d85f 302 {
f135ff73
VZ
303 onButton = FALSE;
304 return this;
edaa81ae 305 }
c801d85f
KB
306 }
307 else
308 {
e2414cbe 309 if (!m_isCollapsed)
c801d85f 310 {
f135ff73
VZ
311 size_t count = m_children.Count();
312 for ( size_t n = 0; n < count; n++ )
e2414cbe 313 {
f135ff73
VZ
314 wxGenericTreeItem *res = m_children[n]->HitTest( point, onButton );
315 if ( res != NULL )
316 return res;
edaa81ae
RR
317 }
318 }
319 }
f135ff73
VZ
320
321 return NULL;
edaa81ae 322}
c801d85f 323
f135ff73
VZ
324// -----------------------------------------------------------------------------
325// wxTreeCtrl implementation
326// -----------------------------------------------------------------------------
327
328IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxScrolledWindow)
329
330BEGIN_EVENT_TABLE(wxTreeCtrl,wxScrolledWindow)
331 EVT_PAINT (wxTreeCtrl::OnPaint)
332 EVT_MOUSE_EVENTS (wxTreeCtrl::OnMouse)
333 EVT_CHAR (wxTreeCtrl::OnChar)
334 EVT_SET_FOCUS (wxTreeCtrl::OnSetFocus)
335 EVT_KILL_FOCUS (wxTreeCtrl::OnKillFocus)
3db7be80 336 EVT_IDLE (wxTreeCtrl::OnIdle)
f135ff73
VZ
337END_EVENT_TABLE()
338
339// -----------------------------------------------------------------------------
340// construction/destruction
341// -----------------------------------------------------------------------------
342void wxTreeCtrl::Init()
c801d85f 343{
f135ff73
VZ
344 m_current =
345 m_anchor = (wxGenericTreeItem *) NULL;
346 m_hasFocus = FALSE;
3db7be80 347 m_dirty = FALSE;
f135ff73
VZ
348
349 m_xScroll = 0;
350 m_yScroll = 0;
351 m_lineHeight = 10;
352 m_indent = 15;
353
354 m_hilightBrush = new wxBrush
355 (
356 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT),
357 wxSOLID
358 );
359
360 m_imageListNormal =
361 m_imageListState = (wxImageList *) NULL;
978f38c2 362
bbe0af5b 363 m_dragCount = 0;
edaa81ae 364}
c801d85f 365
f135ff73
VZ
366bool wxTreeCtrl::Create(wxWindow *parent, wxWindowID id,
367 const wxPoint& pos, const wxSize& size,
978f38c2
VZ
368 long style,
369 const wxValidator &validator,
370 const wxString& name )
c801d85f 371{
f135ff73
VZ
372 Init();
373
a367b9b3 374 wxScrolledWindow::Create( parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name );
978f38c2 375
4f22cf8d 376 SetValidator( validator );
f135ff73
VZ
377
378 SetBackgroundColour( *wxWHITE );
379 m_dottedPen = wxPen( *wxBLACK, 0, 0 );
380
381 return TRUE;
edaa81ae 382}
c801d85f 383
f135ff73 384wxTreeCtrl::~wxTreeCtrl()
c801d85f 385{
f135ff73 386 wxDELETE( m_hilightBrush );
a43a4f9d
VZ
387
388 DeleteAllItems();
edaa81ae 389}
c801d85f 390
f135ff73
VZ
391// -----------------------------------------------------------------------------
392// accessors
393// -----------------------------------------------------------------------------
394
395size_t wxTreeCtrl::GetCount() const
c801d85f 396{
4832f7c0 397 return m_anchor == NULL ? 0u : m_anchor->GetChildrenCount();
edaa81ae 398}
c801d85f 399
f135ff73 400void wxTreeCtrl::SetIndent(unsigned int indent)
c801d85f 401{
f135ff73
VZ
402 m_indent = indent;
403 Refresh();
404}
74bedbeb 405
4832f7c0
VZ
406size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId& item, bool recursively)
407{
408 wxCHECK_MSG( item.IsOk(), 0u, "invalid tree item" );
409
410 return item.m_pItem->GetChildrenCount(recursively);
411}
412
f135ff73
VZ
413// -----------------------------------------------------------------------------
414// functions to work with tree items
415// -----------------------------------------------------------------------------
74bedbeb 416
f135ff73
VZ
417wxString wxTreeCtrl::GetItemText(const wxTreeItemId& item) const
418{
4832f7c0
VZ
419 wxCHECK_MSG( item.IsOk(), "", "invalid tree item" );
420
f135ff73 421 return item.m_pItem->GetText();
edaa81ae 422}
74bedbeb 423
f135ff73 424int wxTreeCtrl::GetItemImage(const wxTreeItemId& item) const
74bedbeb 425{
4832f7c0
VZ
426 wxCHECK_MSG( item.IsOk(), -1, "invalid tree item" );
427
f135ff73 428 return item.m_pItem->GetImage();
edaa81ae 429}
c801d85f 430
f135ff73 431int wxTreeCtrl::GetItemSelectedImage(const wxTreeItemId& item) const
c801d85f 432{
4832f7c0
VZ
433 wxCHECK_MSG( item.IsOk(), -1, "invalid tree item" );
434
f135ff73 435 return item.m_pItem->GetSelectedImage();
edaa81ae 436}
c801d85f 437
f135ff73 438wxTreeItemData *wxTreeCtrl::GetItemData(const wxTreeItemId& item) const
c801d85f 439{
4832f7c0
VZ
440 wxCHECK_MSG( item.IsOk(), NULL, "invalid tree item" );
441
f135ff73 442 return item.m_pItem->GetData();
edaa81ae 443}
c801d85f 444
f135ff73
VZ
445void wxTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
446{
4832f7c0
VZ
447 wxCHECK_RET( item.IsOk(), "invalid tree item" );
448
f135ff73 449 wxClientDC dc(this);
f992adf9
VZ
450 wxGenericTreeItem *pItem = item.m_pItem;
451 pItem->SetText(text, dc);
452 RefreshLine(pItem);
f135ff73 453}
c801d85f 454
f135ff73
VZ
455void wxTreeCtrl::SetItemImage(const wxTreeItemId& item, int image)
456{
4832f7c0
VZ
457 wxCHECK_RET( item.IsOk(), "invalid tree item" );
458
f992adf9
VZ
459 wxGenericTreeItem *pItem = item.m_pItem;
460 pItem->SetImage(image);
461 RefreshLine(pItem);
f135ff73 462}
c801d85f 463
f135ff73 464void wxTreeCtrl::SetItemSelectedImage(const wxTreeItemId& item, int image)
c801d85f 465{
4832f7c0
VZ
466 wxCHECK_RET( item.IsOk(), "invalid tree item" );
467
f992adf9
VZ
468 wxGenericTreeItem *pItem = item.m_pItem;
469 pItem->SetSelectedImage(image);
470 RefreshLine(pItem);
edaa81ae 471}
c801d85f 472
f135ff73 473void wxTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data)
c801d85f 474{
4832f7c0
VZ
475 wxCHECK_RET( item.IsOk(), "invalid tree item" );
476
de646ed1 477 item.m_pItem->SetData(data);
edaa81ae 478}
c801d85f 479
f135ff73 480void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has)
c801d85f 481{
4832f7c0
VZ
482 wxCHECK_RET( item.IsOk(), "invalid tree item" );
483
f992adf9
VZ
484 wxGenericTreeItem *pItem = item.m_pItem;
485 pItem->SetHasPlus(has);
486 RefreshLine(pItem);
edaa81ae 487}
c801d85f 488
ef44a621
VZ
489void wxTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold)
490{
491 wxCHECK_RET( item.IsOk(), "invalid tree item" );
492
493 // avoid redrawing the tree if no real change
494 wxGenericTreeItem *pItem = item.m_pItem;
495 if ( pItem->IsBold() != bold )
496 {
497 pItem->SetBold(bold);
498 RefreshLine(pItem);
499 }
500}
501
f135ff73
VZ
502// -----------------------------------------------------------------------------
503// item status inquiries
504// -----------------------------------------------------------------------------
505
df875e59 506bool wxTreeCtrl::IsVisible(const wxTreeItemId& WXUNUSED(item)) const
c801d85f 507{
f135ff73
VZ
508 wxFAIL_MSG("not implemented");
509
c801d85f 510 return TRUE;
edaa81ae 511}
c801d85f 512
f135ff73 513bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const
c801d85f 514{
4832f7c0
VZ
515 wxCHECK_MSG( item.IsOk(), FALSE, "invalid tree item" );
516
f135ff73 517 return !item.m_pItem->GetChildren().IsEmpty();
edaa81ae 518}
c801d85f 519
f135ff73 520bool wxTreeCtrl::IsExpanded(const wxTreeItemId& item) const
c801d85f 521{
4832f7c0
VZ
522 wxCHECK_MSG( item.IsOk(), FALSE, "invalid tree item" );
523
f135ff73
VZ
524 return item.m_pItem->IsExpanded();
525}
29d87bba 526
f135ff73
VZ
527bool wxTreeCtrl::IsSelected(const wxTreeItemId& item) const
528{
4832f7c0
VZ
529 wxCHECK_MSG( item.IsOk(), FALSE, "invalid tree item" );
530
f135ff73
VZ
531 return item.m_pItem->HasHilight();
532}
29d87bba 533
ef44a621
VZ
534bool wxTreeCtrl::IsBold(const wxTreeItemId& item) const
535{
536 wxCHECK_MSG( item.IsOk(), FALSE, "invalid tree item" );
537
538 return item.m_pItem->IsBold();
539}
540
f135ff73
VZ
541// -----------------------------------------------------------------------------
542// navigation
543// -----------------------------------------------------------------------------
29d87bba 544
f135ff73
VZ
545wxTreeItemId wxTreeCtrl::GetParent(const wxTreeItemId& item) const
546{
1e6d9499 547 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
389cdc7a 548
f135ff73
VZ
549 return item.m_pItem->GetParent();
550}
29d87bba 551
f135ff73
VZ
552wxTreeItemId wxTreeCtrl::GetFirstChild(const wxTreeItemId& item, long& cookie) const
553{
1e6d9499 554 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
29d87bba 555
f135ff73
VZ
556 cookie = 0;
557 return GetNextChild(item, cookie);
558}
29d87bba 559
f135ff73
VZ
560wxTreeItemId wxTreeCtrl::GetNextChild(const wxTreeItemId& item, long& cookie) const
561{
1e6d9499 562 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
29d87bba 563
4832f7c0
VZ
564 wxArrayTreeItems& children = item.m_pItem->GetChildren();
565 if ( (size_t)cookie < children.Count() )
566 {
978f38c2 567 return children.Item(cookie++);
4832f7c0
VZ
568 }
569 else
570 {
571 // there are no more of them
1e6d9499 572 return wxTreeItemId();
4832f7c0 573 }
f135ff73 574}
29d87bba 575
978f38c2
VZ
576wxTreeItemId wxTreeCtrl::GetLastChild(const wxTreeItemId& item) const
577{
578 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
579
580 wxArrayTreeItems& children = item.m_pItem->GetChildren();
0a240683 581 return (children.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children.Last()));
978f38c2
VZ
582}
583
f135ff73
VZ
584wxTreeItemId wxTreeCtrl::GetNextSibling(const wxTreeItemId& item) const
585{
1e6d9499 586 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
f135ff73
VZ
587
588 wxGenericTreeItem *i = item.m_pItem;
589 wxGenericTreeItem *parent = i->GetParent();
590 if ( parent == NULL )
591 {
592 // root item doesn't have any siblings
1e6d9499 593 return wxTreeItemId();
edaa81ae 594 }
4832f7c0 595
f135ff73
VZ
596 wxArrayTreeItems& siblings = parent->GetChildren();
597 int index = siblings.Index(i);
3c67202d 598 wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent?
29d87bba 599
f135ff73 600 size_t n = (size_t)(index + 1);
fdd8d7b5 601 return n == siblings.Count() ? wxTreeItemId() : wxTreeItemId(siblings[n]);
edaa81ae 602}
c801d85f 603
f135ff73 604wxTreeItemId wxTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const
c801d85f 605{
1e6d9499 606 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
f135ff73
VZ
607
608 wxGenericTreeItem *i = item.m_pItem;
609 wxGenericTreeItem *parent = i->GetParent();
610 if ( parent == NULL )
c801d85f 611 {
f135ff73 612 // root item doesn't have any siblings
1e6d9499 613 return wxTreeItemId();
edaa81ae 614 }
4832f7c0 615
f135ff73
VZ
616 wxArrayTreeItems& siblings = parent->GetChildren();
617 int index = siblings.Index(i);
3c67202d 618 wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent?
29d87bba 619
fdd8d7b5
VZ
620 return index == 0 ? wxTreeItemId()
621 : wxTreeItemId(siblings[(size_t)(index - 1)]);
f135ff73 622}
389cdc7a 623
f135ff73
VZ
624wxTreeItemId wxTreeCtrl::GetFirstVisibleItem() const
625{
626 wxFAIL_MSG("not implemented");
29d87bba 627
1e6d9499 628 return wxTreeItemId();
f135ff73 629}
29d87bba 630
f135ff73
VZ
631wxTreeItemId wxTreeCtrl::GetNextVisible(const wxTreeItemId& item) const
632{
1e6d9499 633 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
29d87bba 634
f135ff73 635 wxFAIL_MSG("not implemented");
29d87bba 636
1e6d9499 637 return wxTreeItemId();
f135ff73 638}
29d87bba 639
f135ff73
VZ
640wxTreeItemId wxTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const
641{
1e6d9499 642 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), "invalid tree item" );
29d87bba 643
f135ff73 644 wxFAIL_MSG("not implemented");
29d87bba 645
1e6d9499 646 return wxTreeItemId();
edaa81ae 647}
c801d85f 648
f135ff73
VZ
649// -----------------------------------------------------------------------------
650// operations
651// -----------------------------------------------------------------------------
652
653wxTreeItemId wxTreeCtrl::DoInsertItem(const wxTreeItemId& parentId,
654 size_t previous,
655 const wxString& text,
656 int image, int selImage,
657 wxTreeItemData *data)
c801d85f 658{
f135ff73
VZ
659 wxGenericTreeItem *parent = parentId.m_pItem;
660 if ( !parent )
661 {
662 // should we give a warning here?
663 return AddRoot(text, image, selImage, data);
664 }
4832f7c0 665
f135ff73
VZ
666 wxClientDC dc(this);
667 wxGenericTreeItem *item = new wxGenericTreeItem(parent,
668 text, dc,
669 image, selImage,
670 data);
74bedbeb 671
f135ff73 672 if ( data != NULL )
c801d85f 673 {
f135ff73
VZ
674 data->m_pItem = item;
675 }
74bedbeb 676
f135ff73 677 parent->Insert( item, previous );
ef44a621 678
3db7be80 679 m_dirty = TRUE;
389cdc7a 680
f135ff73 681 return item;
4c681997
RR
682}
683
f135ff73
VZ
684wxTreeItemId wxTreeCtrl::AddRoot(const wxString& text,
685 int image, int selImage,
686 wxTreeItemData *data)
4c681997 687{
1e6d9499 688 wxCHECK_MSG( !m_anchor, wxTreeItemId(), "tree can have only one root" );
389cdc7a 689
f135ff73
VZ
690 wxClientDC dc(this);
691 m_anchor = new wxGenericTreeItem((wxGenericTreeItem *)NULL, text, dc,
692 image, selImage, data);
693 if ( data != NULL )
694 {
695 data->m_pItem = m_anchor;
696 }
389cdc7a 697
f135ff73 698 AdjustMyScrollbars();
a32dd690 699 Refresh();
a32dd690 700
f135ff73 701 return m_anchor;
edaa81ae 702}
c801d85f 703
f135ff73
VZ
704wxTreeItemId wxTreeCtrl::PrependItem(const wxTreeItemId& parent,
705 const wxString& text,
706 int image, int selImage,
707 wxTreeItemData *data)
c801d85f 708{
f135ff73 709 return DoInsertItem(parent, 0u, text, image, selImage, data);
edaa81ae 710}
c801d85f 711
f135ff73
VZ
712wxTreeItemId wxTreeCtrl::InsertItem(const wxTreeItemId& parentId,
713 const wxTreeItemId& idPrevious,
714 const wxString& text,
715 int image, int selImage,
716 wxTreeItemData *data)
c801d85f 717{
f135ff73
VZ
718 wxGenericTreeItem *parent = parentId.m_pItem;
719 if ( !parent )
720 {
721 // should we give a warning here?
722 return AddRoot(text, image, selImage, data);
723 }
c801d85f 724
f135ff73 725 int index = parent->GetChildren().Index(idPrevious.m_pItem);
3c67202d 726 wxASSERT_MSG( index != wxNOT_FOUND,
f135ff73
VZ
727 "previous item in wxTreeCtrl::InsertItem() is not a sibling" );
728 return DoInsertItem(parentId, (size_t)index, text, image, selImage, data);
edaa81ae 729}
c801d85f 730
f135ff73
VZ
731wxTreeItemId wxTreeCtrl::AppendItem(const wxTreeItemId& parentId,
732 const wxString& text,
733 int image, int selImage,
734 wxTreeItemData *data)
74bedbeb 735{
f135ff73
VZ
736 wxGenericTreeItem *parent = parentId.m_pItem;
737 if ( !parent )
738 {
739 // should we give a warning here?
740 return AddRoot(text, image, selImage, data);
741 }
742
743 return DoInsertItem(parent, parent->GetChildren().Count(), text,
744 image, selImage, data);
74bedbeb
VZ
745}
746
a43a4f9d
VZ
747void wxTreeCtrl::SendDeleteEvent(wxGenericTreeItem *item)
748{
749 wxTreeEvent event( wxEVT_COMMAND_TREE_DELETE_ITEM, GetId() );
750 event.m_item = item;
751 event.SetEventObject( this );
752 ProcessEvent( event );
753}
754
372edb9d
VZ
755void wxTreeCtrl::DeleteChildren(const wxTreeItemId& itemId)
756{
757 wxGenericTreeItem *item = itemId.m_pItem;
a43a4f9d 758 item->DeleteChildren(this);
372edb9d
VZ
759
760 m_dirty = TRUE;
761}
762
f135ff73 763void wxTreeCtrl::Delete(const wxTreeItemId& itemId)
c801d85f 764{
f135ff73 765 wxGenericTreeItem *item = itemId.m_pItem;
ff5bf259
VZ
766 wxGenericTreeItem *parent = item->GetParent();
767
768 if ( parent )
769 {
770 parent->GetChildren().Remove(item);
771 }
f135ff73 772
a43a4f9d
VZ
773 item->DeleteChildren(this);
774 SendDeleteEvent(item);
f135ff73
VZ
775 delete item;
776
4bb19cfb 777 m_dirty = TRUE;
edaa81ae 778}
c801d85f 779
f135ff73 780void wxTreeCtrl::DeleteAllItems()
c801d85f 781{
f135ff73
VZ
782 if ( m_anchor )
783 {
a43a4f9d 784 m_anchor->DeleteChildren(this);
f135ff73 785 delete m_anchor;
a43a4f9d 786
f135ff73
VZ
787 m_anchor = NULL;
788
4bb19cfb 789 m_dirty = TRUE;
f135ff73 790 }
edaa81ae
RR
791}
792
f135ff73 793void wxTreeCtrl::Expand(const wxTreeItemId& itemId)
edaa81ae 794{
f135ff73
VZ
795 wxGenericTreeItem *item = itemId.m_pItem;
796
978f38c2 797 if ( !item->HasPlus() )
4bb19cfb 798 return;
978f38c2 799
f135ff73
VZ
800 if ( item->IsExpanded() )
801 return;
802
803 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_EXPANDING, GetId() );
804 event.m_item = item;
805 event.SetEventObject( this );
806 if ( ProcessEvent( event ) && event.m_code )
807 {
808 // cancelled by program
809 return;
810 }
4832f7c0 811
f135ff73 812 item->Expand();
28ab302b 813 CalculatePositions();
f135ff73
VZ
814
815 RefreshSubtree(item);
816
817 event.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED);
818 ProcessEvent( event );
edaa81ae
RR
819}
820
f135ff73 821void wxTreeCtrl::Collapse(const wxTreeItemId& itemId)
edaa81ae 822{
f135ff73
VZ
823 wxGenericTreeItem *item = itemId.m_pItem;
824
825 if ( !item->IsExpanded() )
826 return;
827
828 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING, GetId() );
829 event.m_item = item;
830 event.SetEventObject( this );
831 if ( ProcessEvent( event ) && event.m_code )
edaa81ae 832 {
f135ff73
VZ
833 // cancelled by program
834 return;
835 }
4832f7c0 836
f135ff73
VZ
837 item->Collapse();
838
839 wxArrayTreeItems& children = item->GetChildren();
840 size_t count = children.Count();
841 for ( size_t n = 0; n < count; n++ )
842 {
843 Collapse(children[n]);
edaa81ae 844 }
f135ff73
VZ
845
846 CalculatePositions();
847
848 RefreshSubtree(item);
849
850 event.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED);
851 ProcessEvent( event );
edaa81ae 852}
c801d85f 853
f135ff73 854void wxTreeCtrl::CollapseAndReset(const wxTreeItemId& item)
c801d85f 855{
f135ff73 856 Collapse(item);
372edb9d 857 DeleteChildren(item);
edaa81ae 858}
c801d85f 859
f135ff73 860void wxTreeCtrl::Toggle(const wxTreeItemId& itemId)
c801d85f 861{
f135ff73 862 wxGenericTreeItem *item = itemId.m_pItem;
389cdc7a 863
f135ff73
VZ
864 if ( item->IsExpanded() )
865 Collapse(itemId);
866 else
867 Expand(itemId);
868}
389cdc7a 869
f135ff73
VZ
870void wxTreeCtrl::Unselect()
871{
872 if ( m_current )
873 {
874 m_current->SetHilight( FALSE );
875 RefreshLine( m_current );
876 }
edaa81ae 877}
c801d85f 878
f135ff73 879void wxTreeCtrl::SelectItem(const wxTreeItemId& itemId)
389cdc7a 880{
f135ff73
VZ
881 wxGenericTreeItem *item = itemId.m_pItem;
882
883 if ( m_current != item )
389cdc7a 884 {
f135ff73
VZ
885 wxTreeEvent event( wxEVT_COMMAND_TREE_SEL_CHANGING, GetId() );
886 event.m_item = item;
887 event.m_itemOld = m_current;
888 event.SetEventObject( this );
6daa0637 889 if ( GetEventHandler()->ProcessEvent( event ) && event.WasVetoed() )
f135ff73
VZ
890 return;
891
892 if ( m_current )
389cdc7a
VZ
893 {
894 m_current->SetHilight( FALSE );
895 RefreshLine( m_current );
edaa81ae 896 }
f135ff73 897
389cdc7a
VZ
898 m_current = item;
899 m_current->SetHilight( TRUE );
900 RefreshLine( m_current );
901
f135ff73 902 event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED);
6daa0637 903 GetEventHandler()->ProcessEvent( event );
389cdc7a
VZ
904 }
905}
906
6daa0637 907void wxTreeCtrl::EnsureVisible(const wxTreeItemId& item)
c801d85f 908{
0659e7ee 909 wxGenericTreeItem *gitem = item.m_pItem;
ef44a621 910
0659e7ee 911 int item_y = gitem->GetY();
ef44a621 912
0659e7ee
RR
913 int start_x = 0;
914 int start_y = 0;
915 ViewStart( &start_x, &start_y );
916 start_y *= 10;
978f38c2 917
a93109d5
RR
918 int client_h = 0;
919 int client_w = 0;
920 GetClientSize( &client_w, &client_h );
ef44a621 921
0659e7ee
RR
922 if (item_y < start_y+3)
923 {
924 int x = 0;
925 int y = 0;
926 m_anchor->GetSize( x, y );
927 y += 2*m_lineHeight;
928 int x_pos = GetScrollPos( wxHORIZONTAL );
978f38c2 929 SetScrollbars( 10, 10, x/10, y/10, x_pos, (item_y-client_h/2)/10 );
0659e7ee
RR
930 return;
931 }
ef44a621 932
a93109d5 933 if (item_y > start_y+client_h-16)
0659e7ee
RR
934 {
935 int x = 0;
936 int y = 0;
937 m_anchor->GetSize( x, y );
938 y += 2*m_lineHeight;
939 int x_pos = GetScrollPos( wxHORIZONTAL );
a93109d5 940 SetScrollbars( 10, 10, x/10, y/10, x_pos, (item_y-client_h/2)/10 );
0659e7ee
RR
941 return;
942 }
edaa81ae 943}
c801d85f 944
df875e59 945void wxTreeCtrl::ScrollTo(const wxTreeItemId& WXUNUSED(item))
c801d85f 946{
bbe0af5b 947 wxFAIL_MSG("not implemented");
edaa81ae 948}
c801d85f 949
df875e59
RR
950wxTextCtrl *wxTreeCtrl::EditLabel( const wxTreeItemId& WXUNUSED(item),
951 wxClassInfo* WXUNUSED(textCtrlClass) )
c801d85f 952{
bbe0af5b 953 wxFAIL_MSG("not implemented");
c801d85f 954
bbe0af5b 955 return (wxTextCtrl*)NULL;
edaa81ae 956}
c801d85f 957
f135ff73 958wxTextCtrl *wxTreeCtrl::GetEditControl() const
c801d85f 959{
0659e7ee 960 wxFAIL_MSG("not implemented");
c801d85f 961
0659e7ee 962 return (wxTextCtrl*)NULL;
edaa81ae 963}
c801d85f 964
df875e59 965void wxTreeCtrl::EndEditLabel(const wxTreeItemId& WXUNUSED(item), bool WXUNUSED(discardChanges))
74bedbeb 966{
0659e7ee 967 wxFAIL_MSG("not implemented");
74bedbeb
VZ
968}
969
e1ee62bd
VZ
970// FIXME: tree sorting functions are not reentrant and not MT-safe!
971static wxTreeCtrl *s_treeBeingSorted = NULL;
0659e7ee 972
e1ee62bd
VZ
973static int tree_ctrl_compare_func(wxGenericTreeItem **item1,
974 wxGenericTreeItem **item2)
edaa81ae 975{
e1ee62bd
VZ
976 wxCHECK_MSG( s_treeBeingSorted, 0, "bug in wxTreeCtrl::SortChildren()" );
977
978 return s_treeBeingSorted->OnCompareItems(*item1, *item2);
0659e7ee
RR
979}
980
e1ee62bd
VZ
981int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1,
982 const wxTreeItemId& item2)
0659e7ee 983{
e1ee62bd
VZ
984 return strcmp(GetItemText(item1), GetItemText(item2));
985}
986
987void wxTreeCtrl::SortChildren(const wxTreeItemId& itemId)
988{
989 wxCHECK_RET( itemId.IsOk(), "invalid tree item" );
990
991 wxGenericTreeItem *item = itemId.m_pItem;
978f38c2 992
e1ee62bd
VZ
993 wxCHECK_RET( !s_treeBeingSorted,
994 "wxTreeCtrl::SortChildren is not reentrant" );
995
996 wxArrayTreeItems& children = item->GetChildren();
997 if ( children.Count() > 1 )
998 {
999 s_treeBeingSorted = this;
1000 children.Sort(tree_ctrl_compare_func);
1001 s_treeBeingSorted = NULL;
978f38c2 1002
e1ee62bd
VZ
1003 m_dirty = TRUE;
1004 }
1005 //else: don't make the tree dirty as nothing changed
edaa81ae
RR
1006}
1007
f135ff73 1008wxImageList *wxTreeCtrl::GetImageList() const
edaa81ae 1009{
f135ff73 1010 return m_imageListNormal;
edaa81ae
RR
1011}
1012
f135ff73 1013wxImageList *wxTreeCtrl::GetStateImageList() const
c801d85f 1014{
f135ff73 1015 return m_imageListState;
edaa81ae 1016}
c801d85f 1017
f135ff73 1018void wxTreeCtrl::SetImageList(wxImageList *imageList)
e2414cbe 1019{
f135ff73 1020 m_imageListNormal = imageList;
edaa81ae 1021}
e2414cbe 1022
f135ff73 1023void wxTreeCtrl::SetStateImageList(wxImageList *imageList)
e2414cbe 1024{
f135ff73 1025 m_imageListState = imageList;
edaa81ae 1026}
e2414cbe 1027
f135ff73
VZ
1028// -----------------------------------------------------------------------------
1029// helpers
1030// -----------------------------------------------------------------------------
0659e7ee 1031
74bedbeb 1032void wxTreeCtrl::AdjustMyScrollbars()
c801d85f 1033{
0659e7ee
RR
1034 if (m_anchor)
1035 {
1036 int x = 0;
1037 int y = 0;
1038 m_anchor->GetSize( x, y );
1039 y += 2*m_lineHeight;
1040 int x_pos = GetScrollPos( wxHORIZONTAL );
1041 int y_pos = GetScrollPos( wxVERTICAL );
1042 SetScrollbars( 10, 10, x/10, y/10, x_pos, y_pos );
1043 }
1044 else
1045 {
1046 SetScrollbars( 0, 0, 0, 0 );
1047 }
edaa81ae 1048}
c801d85f 1049
ef44a621
VZ
1050void wxTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
1051{
bbe0af5b
RR
1052 /* render bold items in bold */
1053 wxFont fontOld;
1054 wxFont fontNew;
978f38c2 1055
bbe0af5b
RR
1056 if (item->IsBold())
1057 {
1058 fontOld = dc.GetFont();
1059 if (fontOld.Ok())
1060 {
1061 /* @@ is there any better way to make a bold variant of old font? */
1062 fontNew = wxFont( fontOld.GetPointSize(),
1063 fontOld.GetFamily(),
1064 fontOld.GetStyle(),
1065 wxBOLD,
1066 fontOld.GetUnderlined());
1067 dc.SetFont(fontNew);
1068 }
1069 else
1070 {
1071 wxFAIL_MSG("wxDC::GetFont() failed!");
1072 }
1073 }
ef44a621 1074
bbe0af5b
RR
1075 long text_w = 0;
1076 long text_h = 0;
1077 dc.GetTextExtent( item->GetText(), &text_w, &text_h );
ef44a621 1078
bbe0af5b
RR
1079 int image_h = 0;
1080 int image_w = 0;
1081 if ((item->IsExpanded()) && (item->GetSelectedImage() != -1))
1082 {
1083 m_imageListNormal->GetSize( item->GetSelectedImage(), image_w, image_h );
1084 image_w += 4;
978f38c2 1085 }
bbe0af5b
RR
1086 else if (item->GetImage() != -1)
1087 {
1088 m_imageListNormal->GetSize( item->GetImage(), image_w, image_h );
1089 image_w += 4;
1090 }
ef44a621 1091
bbe0af5b 1092 dc.DrawRectangle( item->GetX()-2, item->GetY()-2, image_w+text_w+4, text_h+4 );
ef44a621 1093
bbe0af5b
RR
1094 if ((item->IsExpanded()) && (item->GetSelectedImage() != -1))
1095 {
1096 dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, text_h );
1097 m_imageListNormal->Draw( item->GetSelectedImage(), dc,
1098 item->GetX(), item->GetY()-1,
1099 wxIMAGELIST_DRAW_TRANSPARENT );
1100 dc.DestroyClippingRegion();
1101 }
1102 else if (item->GetImage() != -1)
1103 {
1104 dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, text_h );
1105 m_imageListNormal->Draw( item->GetImage(), dc,
1106 item->GetX(), item->GetY()-1,
1107 wxIMAGELIST_DRAW_TRANSPARENT );
1108 dc.DestroyClippingRegion();
1109 }
ef44a621 1110
bbe0af5b
RR
1111 dc.SetBackgroundMode(wxTRANSPARENT);
1112 dc.DrawText( item->GetText(), image_w + item->GetX(), item->GetY() );
ef44a621 1113
bbe0af5b
RR
1114 /* restore normal font for bold items */
1115 if (fontOld.Ok())
1116 {
1117 dc.SetFont( fontOld);
1118 }
ef44a621
VZ
1119}
1120
16c1f7f3 1121void wxTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y )
c801d85f 1122{
bbe0af5b 1123 int horizX = level*m_indent;
389cdc7a 1124
bbe0af5b
RR
1125 item->SetX( horizX+33 );
1126 item->SetY( y-m_lineHeight/3 );
1127 item->SetHeight( m_lineHeight );
389cdc7a 1128
bbe0af5b 1129 item->SetCross( horizX+15, y );
4c681997 1130
bbe0af5b 1131 int oldY = y;
389cdc7a 1132
bbe0af5b
RR
1133 int exposed_x = dc.LogicalToDeviceX( 0 );
1134 int exposed_y = dc.LogicalToDeviceY( item->GetY()-2 );
4832f7c0 1135
bbe0af5b
RR
1136 if (IsExposed( exposed_x, exposed_y, 10000, m_lineHeight+4 )) // 10000 = very much
1137 {
1138 int startX = horizX;
1139 int endX = horizX + 10;
29d87bba 1140
bbe0af5b 1141 if (!item->HasChildren()) endX += 20;
4832f7c0 1142
bbe0af5b 1143 dc.DrawLine( startX, y, endX, y );
29d87bba 1144
bbe0af5b
RR
1145 if (item->HasPlus())
1146 {
1147 dc.DrawLine( horizX+20, y, horizX+30, y );
1148 dc.SetPen( *wxGREY_PEN );
1149 dc.SetBrush( *wxWHITE_BRUSH );
1150 dc.DrawRectangle( horizX+10, y-4, 11, 9 );
1151 dc.SetPen( *wxBLACK_PEN );
1152 dc.DrawLine( horizX+13, y, horizX+18, y );
1153
1154 if (!item->IsExpanded())
978f38c2 1155 {
bbe0af5b 1156 dc.DrawLine( horizX+15, y-2, horizX+15, y+3 );
978f38c2 1157 }
bbe0af5b 1158 }
c801d85f 1159
bbe0af5b
RR
1160 if (item->HasHilight())
1161 {
1162 dc.SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT ) );
a367b9b3 1163
bbe0af5b 1164 dc.SetBrush( *m_hilightBrush );
4832f7c0 1165
bbe0af5b
RR
1166 if (m_hasFocus)
1167 dc.SetPen( *wxBLACK_PEN );
1168 else
1169 dc.SetPen( *wxTRANSPARENT_PEN );
4832f7c0 1170
bbe0af5b 1171 PaintItem(item, dc);
f135ff73 1172
bbe0af5b
RR
1173 dc.SetPen( *wxBLACK_PEN );
1174 dc.SetTextForeground( *wxBLACK );
1175 dc.SetBrush( *wxWHITE_BRUSH );
1176 }
1177 else
1178 {
1179 dc.SetBrush( *wxWHITE_BRUSH );
1180 dc.SetPen( *wxTRANSPARENT_PEN );
4832f7c0 1181
bbe0af5b 1182 PaintItem(item, dc);
4832f7c0 1183
bbe0af5b
RR
1184 dc.SetPen( *wxBLACK_PEN );
1185 }
f135ff73 1186 }
e2414cbe 1187
bbe0af5b
RR
1188 if (item->IsExpanded())
1189 {
1190 int semiOldY = y;
389cdc7a 1191
bbe0af5b
RR
1192 wxArrayTreeItems& children = item->GetChildren();
1193 size_t count = children.Count();
1194 for ( size_t n = 0; n < count; n++ )
1195 {
1196 y += m_lineHeight;
1197 semiOldY = y;
1198 PaintLevel( children[n], dc, level+1, y );
1199 }
389cdc7a 1200
bbe0af5b
RR
1201 /* it may happen that the item is expanded but has no items (when you
1202 * delete all its children for example) - don't draw the vertical line
1203 * in this case */
1204 if (count > 0) dc.DrawLine( horizX+15, oldY+5, horizX+15, semiOldY );
1205 }
4c681997 1206}
c801d85f 1207
f135ff73
VZ
1208// -----------------------------------------------------------------------------
1209// wxWindows callbacks
1210// -----------------------------------------------------------------------------
1211
3db7be80 1212void wxTreeCtrl::OnPaint( wxPaintEvent &WXUNUSED(event) )
c801d85f 1213{
0659e7ee
RR
1214 if ( !m_anchor )
1215 return;
c801d85f 1216
0659e7ee
RR
1217 wxPaintDC dc(this);
1218 PrepareDC( dc );
29d87bba 1219
f60d0f94 1220 dc.SetFont( wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT ) );
29d87bba 1221
0659e7ee
RR
1222 dc.SetPen( m_dottedPen );
1223 m_lineHeight = (int)(dc.GetCharHeight() + 4);
29d87bba 1224
0659e7ee
RR
1225 int y = m_lineHeight / 2 + 2;
1226 PaintLevel( m_anchor, dc, 0, y );
edaa81ae 1227}
c801d85f 1228
3db7be80 1229void wxTreeCtrl::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
c801d85f 1230{
0659e7ee 1231 m_hasFocus = TRUE;
978f38c2 1232
bbe0af5b 1233 if (m_current) RefreshLine( m_current );
edaa81ae 1234}
c801d85f 1235
3db7be80 1236void wxTreeCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
c801d85f 1237{
0659e7ee 1238 m_hasFocus = FALSE;
978f38c2 1239
bbe0af5b 1240 if (m_current) RefreshLine( m_current );
edaa81ae 1241}
c801d85f
KB
1242
1243void wxTreeCtrl::OnChar( wxKeyEvent &event )
1244{
978f38c2
VZ
1245 wxTreeEvent te( wxEVT_COMMAND_TREE_KEY_DOWN, GetId() );
1246 te.m_code = event.KeyCode();
1247 te.SetEventObject( this );
1248 GetEventHandler()->ProcessEvent( te );
435fe83e 1249
978f38c2
VZ
1250 if (m_current == 0)
1251 {
1252 event.Skip();
1253 return;
1254 }
ef44a621 1255
978f38c2
VZ
1256 switch (event.KeyCode())
1257 {
1258 case '+':
1259 case WXK_ADD:
1260 if (m_current->HasPlus() && !IsExpanded(m_current))
1261 {
1262 Expand(m_current);
1263 }
1264 break;
ef44a621 1265
978f38c2
VZ
1266 case '-':
1267 case WXK_SUBTRACT:
1268 if (IsExpanded(m_current))
1269 {
1270 Collapse(m_current);
1271 }
1272 break;
ef44a621 1273
978f38c2
VZ
1274 case '*':
1275 case WXK_MULTIPLY:
1276 Toggle(m_current);
1277 break;
ef44a621 1278
978f38c2
VZ
1279 case ' ':
1280 case WXK_RETURN:
1281 {
1282 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() );
1283 event.m_item = m_current;
1284 event.m_code = 0;
1285 event.SetEventObject( this );
1286 GetEventHandler()->ProcessEvent( event );
1287 }
1288 break;
ef44a621 1289
978f38c2
VZ
1290 // up goes to the previous sibling or to the last of its children if
1291 // it's expanded
1292 case WXK_UP:
1293 {
1294 wxTreeItemId prev = GetPrevSibling( m_current );
1295 if (!prev)
1296 {
1297 prev = GetParent( m_current );
1298 long cockie = 0;
1299 wxTreeItemId current = m_current;
1300 if (current == GetFirstChild( prev, cockie ))
1301 {
1302 // otherwise we return to where we came from
1303 SelectItem( prev );
1304 EnsureVisible( prev );
1305 break;
1306 }
1307 }
1308 if (prev)
1309 {
69a282d4 1310 while ( IsExpanded(prev) && HasChildren(prev) )
978f38c2 1311 {
69a282d4
VZ
1312 wxTreeItemId child = GetLastChild(prev);
1313 if ( child )
1314 {
1315 prev = child;
1316 }
978f38c2 1317 }
69a282d4 1318
978f38c2
VZ
1319 SelectItem( prev );
1320 EnsureVisible( prev );
1321 }
1322 }
1323 break;
ef44a621 1324
978f38c2
VZ
1325 // left arrow goes to the parent
1326 case WXK_LEFT:
1327 {
1328 wxTreeItemId prev = GetParent( m_current );
1329 if (prev)
1330 {
1331 EnsureVisible( prev );
1332 SelectItem( prev );
1333 }
1334 }
1335 break;
ef44a621 1336
978f38c2
VZ
1337 case WXK_RIGHT:
1338 // this works the same as the down arrow except that we also expand the
1339 // item if it wasn't expanded yet
1340 Expand(m_current);
1341 // fall through
1342
1343 case WXK_DOWN:
ef44a621 1344 {
69a282d4 1345 if (IsExpanded(m_current) && HasChildren(m_current))
978f38c2
VZ
1346 {
1347 long cookie = 0;
1348 wxTreeItemId child = GetFirstChild( m_current, cookie );
1349 SelectItem( child );
1350 EnsureVisible( child );
1351 }
1352 else
1353 {
1354 wxTreeItemId next = GetNextSibling( m_current );
1355 if (next == 0)
1356 {
1357 wxTreeItemId current = m_current;
1358 while (current && !next)
1359 {
1360 current = GetParent( current );
1361 if (current) next = GetNextSibling( current );
1362 }
1363 }
1364 if (next != 0)
1365 {
1366 SelectItem( next );
1367 EnsureVisible( next );
1368 }
1369 }
ef44a621 1370 }
978f38c2 1371 break;
ef44a621 1372
978f38c2
VZ
1373 // <End> selects the last visible tree item
1374 case WXK_END:
1375 {
1376 wxTreeItemId last = GetRootItem();
1377
1378 while ( last.IsOk() && IsExpanded(last) )
1379 {
1380 wxTreeItemId lastChild = GetLastChild(last);
1381
1382 // it may happen if the item was expanded but then all of
1383 // its children have been deleted - so IsExpanded() returned
1384 // TRUE, but GetLastChild() returned invalid item
1385 if ( !lastChild )
1386 break;
1387
1388 last = lastChild;
1389 }
1390
1391 if ( last.IsOk() )
1392 {
1393 EnsureVisible( last );
1394 SelectItem( last );
1395 }
1396 }
1397 break;
1398
1399 // <Home> selects the root item
1400 case WXK_HOME:
1401 {
1402 wxTreeItemId prev = GetRootItem();
1403 if (prev)
1404 {
1405 EnsureVisible( prev );
1406 SelectItem( prev );
1407 }
1408 }
1409 break;
1410
1411 default:
1412 event.Skip();
1413 }
edaa81ae 1414}
c801d85f 1415
4f22cf8d
RR
1416wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& WXUNUSED(flags))
1417{
bbe0af5b
RR
1418 bool onButton = FALSE;
1419 return m_anchor->HitTest( point, onButton );
4f22cf8d
RR
1420}
1421
3db7be80 1422void wxTreeCtrl::OnMouse( wxMouseEvent &event )
c801d85f 1423{
bbe0af5b 1424 if (!event.LeftIsDown()) m_dragCount = 0;
f135ff73 1425
bbe0af5b 1426 if ( !(event.LeftDown() || event.LeftDClick() || event.Dragging()) ) return;
29d87bba 1427
bbe0af5b 1428 if ( !m_anchor ) return;
978f38c2 1429
bbe0af5b
RR
1430 wxClientDC dc(this);
1431 PrepareDC(dc);
1432 long x = dc.DeviceToLogicalX( (long)event.GetX() );
1433 long y = dc.DeviceToLogicalY( (long)event.GetY() );
29d87bba 1434
bbe0af5b
RR
1435 bool onButton = FALSE;
1436 wxGenericTreeItem *item = m_anchor->HitTest( wxPoint(x,y), onButton );
978f38c2 1437
bbe0af5b 1438 if (item == NULL) return; /* we hit the blank area */
29d87bba 1439
bbe0af5b
RR
1440 if (event.Dragging())
1441 {
1442 if (m_dragCount == 2) /* small drag latency (3?) */
1443 {
1444 m_dragCount = 0;
978f38c2 1445
bbe0af5b
RR
1446 wxTreeEvent nevent(wxEVT_COMMAND_TREE_BEGIN_DRAG, GetId());
1447 nevent.m_item = m_current;
1448 nevent.SetEventObject(this);
1449 GetEventHandler()->ProcessEvent(nevent);
1450 }
1451 else
1452 {
1453 m_dragCount++;
1454 }
1455 return;
1456 }
978f38c2 1457
bbe0af5b 1458 if (!IsSelected(item)) SelectItem(item); /* we dont support multiple selections, BTW */
29d87bba 1459
bbe0af5b
RR
1460 if (event.LeftDClick())
1461 {
1462 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() );
1463 event.m_item = item;
1464 event.m_code = 0;
1465 event.SetEventObject( this );
1466 GetEventHandler()->ProcessEvent( event );
1467 }
29d87bba 1468
bbe0af5b
RR
1469 if (onButton)
1470 {
1471 Toggle( item );
1472 }
edaa81ae 1473}
c801d85f 1474
3db7be80
RR
1475void wxTreeCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) )
1476{
bbe0af5b
RR
1477 /* after all changes have been done to the tree control,
1478 * we actually redraw the tree when everything is over */
ef44a621 1479
bbe0af5b 1480 if (!m_dirty) return;
ef44a621 1481
bbe0af5b 1482 m_dirty = FALSE;
3db7be80 1483
bbe0af5b
RR
1484 CalculatePositions();
1485
1486 AdjustMyScrollbars();
3db7be80
RR
1487}
1488
f135ff73 1489// -----------------------------------------------------------------------------
bbe0af5b
RR
1490
1491void wxTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y )
c801d85f 1492{
bbe0af5b 1493 int horizX = level*m_indent;
389cdc7a 1494
bbe0af5b
RR
1495 item->SetX( horizX+33 );
1496 item->SetY( y-m_lineHeight/3-2 );
1497 item->SetHeight( m_lineHeight );
4c681997 1498
bbe0af5b
RR
1499 if ( !item->IsExpanded() )
1500 {
978f38c2 1501 /* we dont need to calculate collapsed branches */
bbe0af5b
RR
1502 return;
1503 }
389cdc7a 1504
bbe0af5b
RR
1505 wxArrayTreeItems& children = item->GetChildren();
1506 size_t count = children.Count();
1507 for ( size_t n = 0; n < count; n++ )
1508 {
1509 y += m_lineHeight;
1510 CalculateLevel( children[n], dc, level+1, y ); /* recurse */
1511 }
edaa81ae 1512}
c801d85f 1513
74bedbeb 1514void wxTreeCtrl::CalculatePositions()
c801d85f 1515{
bbe0af5b 1516 if ( !m_anchor ) return;
29d87bba 1517
bbe0af5b
RR
1518 wxClientDC dc(this);
1519 PrepareDC( dc );
29d87bba 1520
bbe0af5b 1521 dc.SetFont( wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT ) );
29d87bba 1522
bbe0af5b
RR
1523 dc.SetPen( m_dottedPen );
1524 m_lineHeight = (int)(dc.GetCharHeight() + 4);
29d87bba 1525
bbe0af5b
RR
1526 int y = m_lineHeight / 2 + 2;
1527 CalculateLevel( m_anchor, dc, 0, y ); /* start recursion */
edaa81ae 1528}
c801d85f 1529
f135ff73 1530void wxTreeCtrl::RefreshSubtree(wxGenericTreeItem *item)
c801d85f 1531{
bbe0af5b
RR
1532 wxClientDC dc(this);
1533 PrepareDC(dc);
4832f7c0 1534
bbe0af5b
RR
1535 int cw = 0;
1536 int ch = 0;
1537 GetClientSize( &cw, &ch );
4832f7c0 1538
bbe0af5b
RR
1539 wxRect rect;
1540 rect.x = dc.LogicalToDeviceX( 0 );
1541 rect.width = cw;
1542 rect.y = dc.LogicalToDeviceY( item->GetY() );
1543 rect.height = ch;
f135ff73 1544
bbe0af5b 1545 Refresh( TRUE, &rect );
f135ff73 1546
bbe0af5b 1547 AdjustMyScrollbars();
edaa81ae 1548}
c801d85f
KB
1549
1550void wxTreeCtrl::RefreshLine( wxGenericTreeItem *item )
1551{
bbe0af5b
RR
1552 wxClientDC dc(this);
1553 PrepareDC( dc );
1554
1555 wxRect rect;
1556 rect.x = dc.LogicalToDeviceX( item->GetX() - 2 );
1557 rect.y = dc.LogicalToDeviceY( item->GetY() - 2 );
1558 rect.width = 1000;
1559 rect.height = dc.GetCharHeight() + 6;
978f38c2 1560
bbe0af5b 1561 Refresh( TRUE, &rect );
edaa81ae 1562}
c801d85f 1563