]> git.saurik.com Git - wxWidgets.git/blame - src/generic/treectrl.cpp
GetViews() documented
[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
f65635b5
VZ
911 // first expand all parent branches
912 wxGenericTreeItem *parent = gitem->GetParent();
913 while ( parent && !parent->IsExpanded() )
914 {
915 Expand(parent);
916
917 parent = parent->GetParent();
918 }
919
920 // now scroll to the item
0659e7ee 921 int item_y = gitem->GetY();
ef44a621 922
0659e7ee
RR
923 int start_x = 0;
924 int start_y = 0;
925 ViewStart( &start_x, &start_y );
926 start_y *= 10;
978f38c2 927
a93109d5
RR
928 int client_h = 0;
929 int client_w = 0;
930 GetClientSize( &client_w, &client_h );
ef44a621 931
0659e7ee
RR
932 if (item_y < start_y+3)
933 {
934 int x = 0;
935 int y = 0;
936 m_anchor->GetSize( x, y );
937 y += 2*m_lineHeight;
938 int x_pos = GetScrollPos( wxHORIZONTAL );
f65635b5 939 SetScrollbars( 10, 10, x/10, y/10, x_pos, (item_y-client_h/2)/10 );
0659e7ee 940 }
f65635b5 941 else if (item_y > start_y+client_h-16)
0659e7ee
RR
942 {
943 int x = 0;
944 int y = 0;
945 m_anchor->GetSize( x, y );
946 y += 2*m_lineHeight;
947 int x_pos = GetScrollPos( wxHORIZONTAL );
a93109d5 948 SetScrollbars( 10, 10, x/10, y/10, x_pos, (item_y-client_h/2)/10 );
0659e7ee 949 }
edaa81ae 950}
c801d85f 951
df875e59 952void wxTreeCtrl::ScrollTo(const wxTreeItemId& WXUNUSED(item))
c801d85f 953{
bbe0af5b 954 wxFAIL_MSG("not implemented");
edaa81ae 955}
c801d85f 956
df875e59
RR
957wxTextCtrl *wxTreeCtrl::EditLabel( const wxTreeItemId& WXUNUSED(item),
958 wxClassInfo* WXUNUSED(textCtrlClass) )
c801d85f 959{
bbe0af5b 960 wxFAIL_MSG("not implemented");
c801d85f 961
bbe0af5b 962 return (wxTextCtrl*)NULL;
edaa81ae 963}
c801d85f 964
f135ff73 965wxTextCtrl *wxTreeCtrl::GetEditControl() const
c801d85f 966{
0659e7ee 967 wxFAIL_MSG("not implemented");
c801d85f 968
0659e7ee 969 return (wxTextCtrl*)NULL;
edaa81ae 970}
c801d85f 971
df875e59 972void wxTreeCtrl::EndEditLabel(const wxTreeItemId& WXUNUSED(item), bool WXUNUSED(discardChanges))
74bedbeb 973{
0659e7ee 974 wxFAIL_MSG("not implemented");
74bedbeb
VZ
975}
976
e1ee62bd
VZ
977// FIXME: tree sorting functions are not reentrant and not MT-safe!
978static wxTreeCtrl *s_treeBeingSorted = NULL;
0659e7ee 979
e1ee62bd
VZ
980static int tree_ctrl_compare_func(wxGenericTreeItem **item1,
981 wxGenericTreeItem **item2)
edaa81ae 982{
e1ee62bd
VZ
983 wxCHECK_MSG( s_treeBeingSorted, 0, "bug in wxTreeCtrl::SortChildren()" );
984
985 return s_treeBeingSorted->OnCompareItems(*item1, *item2);
0659e7ee
RR
986}
987
e1ee62bd
VZ
988int wxTreeCtrl::OnCompareItems(const wxTreeItemId& item1,
989 const wxTreeItemId& item2)
0659e7ee 990{
e1ee62bd
VZ
991 return strcmp(GetItemText(item1), GetItemText(item2));
992}
993
994void wxTreeCtrl::SortChildren(const wxTreeItemId& itemId)
995{
996 wxCHECK_RET( itemId.IsOk(), "invalid tree item" );
997
998 wxGenericTreeItem *item = itemId.m_pItem;
978f38c2 999
e1ee62bd
VZ
1000 wxCHECK_RET( !s_treeBeingSorted,
1001 "wxTreeCtrl::SortChildren is not reentrant" );
1002
1003 wxArrayTreeItems& children = item->GetChildren();
1004 if ( children.Count() > 1 )
1005 {
1006 s_treeBeingSorted = this;
1007 children.Sort(tree_ctrl_compare_func);
1008 s_treeBeingSorted = NULL;
978f38c2 1009
e1ee62bd
VZ
1010 m_dirty = TRUE;
1011 }
1012 //else: don't make the tree dirty as nothing changed
edaa81ae
RR
1013}
1014
f135ff73 1015wxImageList *wxTreeCtrl::GetImageList() const
edaa81ae 1016{
f135ff73 1017 return m_imageListNormal;
edaa81ae
RR
1018}
1019
f135ff73 1020wxImageList *wxTreeCtrl::GetStateImageList() const
c801d85f 1021{
f135ff73 1022 return m_imageListState;
edaa81ae 1023}
c801d85f 1024
f135ff73 1025void wxTreeCtrl::SetImageList(wxImageList *imageList)
e2414cbe 1026{
d30b4d20
KB
1027 m_imageListNormal = imageList;
1028 // calculate a m_lineHeight value from the image sizes
1029 wxPaintDC dc(this);
1030 PrepareDC( dc );
1031 m_lineHeight = (int)(dc.GetCharHeight() + 4);
1032 int
1033 width = 0,
1034 height = 0,
1035 n = m_imageListNormal->GetImageCount();
1036 for(int i = 0; i < n ; i++)
1037 {
1038 m_imageListNormal->GetSize(i, width, height);
f0594f42 1039 height += height/5; //20% extra spacing
d30b4d20
KB
1040 if(height > m_lineHeight) m_lineHeight = height;
1041 }
edaa81ae 1042}
e2414cbe 1043
f135ff73 1044void wxTreeCtrl::SetStateImageList(wxImageList *imageList)
e2414cbe 1045{
f135ff73 1046 m_imageListState = imageList;
edaa81ae 1047}
e2414cbe 1048
f135ff73
VZ
1049// -----------------------------------------------------------------------------
1050// helpers
1051// -----------------------------------------------------------------------------
0659e7ee 1052
74bedbeb 1053void wxTreeCtrl::AdjustMyScrollbars()
c801d85f 1054{
0659e7ee
RR
1055 if (m_anchor)
1056 {
1057 int x = 0;
1058 int y = 0;
1059 m_anchor->GetSize( x, y );
1060 y += 2*m_lineHeight;
1061 int x_pos = GetScrollPos( wxHORIZONTAL );
1062 int y_pos = GetScrollPos( wxVERTICAL );
1063 SetScrollbars( 10, 10, x/10, y/10, x_pos, y_pos );
1064 }
1065 else
1066 {
1067 SetScrollbars( 0, 0, 0, 0 );
1068 }
edaa81ae 1069}
c801d85f 1070
ef44a621
VZ
1071void wxTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
1072{
f65635b5 1073 // render bold items in bold
bbe0af5b
RR
1074 wxFont fontOld;
1075 wxFont fontNew;
978f38c2 1076
bbe0af5b
RR
1077 if (item->IsBold())
1078 {
1079 fontOld = dc.GetFont();
1080 if (fontOld.Ok())
1081 {
f65635b5 1082 // VZ: is there any better way to make a bold variant of old font?
bbe0af5b
RR
1083 fontNew = wxFont( fontOld.GetPointSize(),
1084 fontOld.GetFamily(),
1085 fontOld.GetStyle(),
1086 wxBOLD,
1087 fontOld.GetUnderlined());
1088 dc.SetFont(fontNew);
1089 }
1090 else
1091 {
1092 wxFAIL_MSG("wxDC::GetFont() failed!");
1093 }
1094 }
ef44a621 1095
bbe0af5b
RR
1096 long text_w = 0;
1097 long text_h = 0;
1098 dc.GetTextExtent( item->GetText(), &text_w, &text_h );
ef44a621 1099
bbe0af5b
RR
1100 int image_h = 0;
1101 int image_w = 0;
1102 if ((item->IsExpanded()) && (item->GetSelectedImage() != -1))
1103 {
1104 m_imageListNormal->GetSize( item->GetSelectedImage(), image_w, image_h );
1105 image_w += 4;
978f38c2 1106 }
bbe0af5b
RR
1107 else if (item->GetImage() != -1)
1108 {
1109 m_imageListNormal->GetSize( item->GetImage(), image_w, image_h );
1110 image_w += 4;
1111 }
ef44a621 1112
d30b4d20 1113 int total_h = (image_h > text_h) ? image_h : text_h;
f0594f42
KB
1114 if(m_lineHeight > total_h) total_h = m_lineHeight;
1115
1116 dc.DrawRectangle( item->GetX()-2, item->GetY(), image_w+text_w+2, total_h );
ef44a621 1117
bbe0af5b
RR
1118 if ((item->IsExpanded()) && (item->GetSelectedImage() != -1))
1119 {
d30b4d20 1120 dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h );
bbe0af5b 1121 m_imageListNormal->Draw( item->GetSelectedImage(), dc,
49cd56ef 1122 item->GetX(),
d701d432 1123 item->GetY() +((total_h > image_h)?((total_h-image_h)/2):0),
bbe0af5b
RR
1124 wxIMAGELIST_DRAW_TRANSPARENT );
1125 dc.DestroyClippingRegion();
1126 }
1127 else if (item->GetImage() != -1)
1128 {
d30b4d20 1129 dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h );
bbe0af5b 1130 m_imageListNormal->Draw( item->GetImage(), dc,
49cd56ef 1131 item->GetX(),
d701d432 1132 item->GetY() +((total_h > image_h)?((total_h-image_h)/2):0),
bbe0af5b
RR
1133 wxIMAGELIST_DRAW_TRANSPARENT );
1134 dc.DestroyClippingRegion();
1135 }
ef44a621 1136
bbe0af5b 1137 dc.SetBackgroundMode(wxTRANSPARENT);
d30b4d20 1138 dc.DrawText( item->GetText(), image_w + item->GetX(), item->GetY()
49cd56ef 1139 + ((total_h > text_h) ? (total_h - text_h)/2 : 0));
ef44a621 1140
f65635b5 1141 // restore normal font for bold items
bbe0af5b
RR
1142 if (fontOld.Ok())
1143 {
1144 dc.SetFont( fontOld);
1145 }
ef44a621
VZ
1146}
1147
16c1f7f3 1148void wxTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y )
c801d85f 1149{
bbe0af5b 1150 int horizX = level*m_indent;
389cdc7a 1151
bbe0af5b 1152 item->SetX( horizX+33 );
f0594f42 1153 item->SetY( y-m_lineHeight/2 );
bbe0af5b 1154 item->SetHeight( m_lineHeight );
389cdc7a 1155
bbe0af5b 1156 item->SetCross( horizX+15, y );
4c681997 1157
bbe0af5b 1158 int oldY = y;
389cdc7a 1159
bbe0af5b
RR
1160 int exposed_x = dc.LogicalToDeviceX( 0 );
1161 int exposed_y = dc.LogicalToDeviceY( item->GetY()-2 );
4832f7c0 1162
bbe0af5b
RR
1163 if (IsExposed( exposed_x, exposed_y, 10000, m_lineHeight+4 )) // 10000 = very much
1164 {
1165 int startX = horizX;
1166 int endX = horizX + 10;
29d87bba 1167
bbe0af5b 1168 if (!item->HasChildren()) endX += 20;
4832f7c0 1169
bbe0af5b 1170 dc.DrawLine( startX, y, endX, y );
29d87bba 1171
bbe0af5b
RR
1172 if (item->HasPlus())
1173 {
1174 dc.DrawLine( horizX+20, y, horizX+30, y );
1175 dc.SetPen( *wxGREY_PEN );
1176 dc.SetBrush( *wxWHITE_BRUSH );
1177 dc.DrawRectangle( horizX+10, y-4, 11, 9 );
1178 dc.SetPen( *wxBLACK_PEN );
1179 dc.DrawLine( horizX+13, y, horizX+18, y );
1180
1181 if (!item->IsExpanded())
d30b4d20 1182 {
bbe0af5b 1183 dc.DrawLine( horizX+15, y-2, horizX+15, y+3 );
d30b4d20 1184 }
bbe0af5b 1185 }
c801d85f 1186
bbe0af5b
RR
1187 if (item->HasHilight())
1188 {
1189 dc.SetTextForeground( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT ) );
a367b9b3 1190
bbe0af5b 1191 dc.SetBrush( *m_hilightBrush );
4832f7c0 1192
bbe0af5b
RR
1193 if (m_hasFocus)
1194 dc.SetPen( *wxBLACK_PEN );
1195 else
1196 dc.SetPen( *wxTRANSPARENT_PEN );
4832f7c0 1197
bbe0af5b 1198 PaintItem(item, dc);
f135ff73 1199
bbe0af5b
RR
1200 dc.SetPen( *wxBLACK_PEN );
1201 dc.SetTextForeground( *wxBLACK );
1202 dc.SetBrush( *wxWHITE_BRUSH );
1203 }
1204 else
1205 {
1206 dc.SetBrush( *wxWHITE_BRUSH );
1207 dc.SetPen( *wxTRANSPARENT_PEN );
4832f7c0 1208
bbe0af5b 1209 PaintItem(item, dc);
4832f7c0 1210
bbe0af5b
RR
1211 dc.SetPen( *wxBLACK_PEN );
1212 }
f135ff73 1213 }
e2414cbe 1214
bbe0af5b
RR
1215 if (item->IsExpanded())
1216 {
1217 int semiOldY = y;
389cdc7a 1218
bbe0af5b
RR
1219 wxArrayTreeItems& children = item->GetChildren();
1220 size_t count = children.Count();
1221 for ( size_t n = 0; n < count; n++ )
1222 {
1223 y += m_lineHeight;
1224 semiOldY = y;
1225 PaintLevel( children[n], dc, level+1, y );
1226 }
389cdc7a 1227
f65635b5
VZ
1228 // it may happen that the item is expanded but has no items (when you
1229 // delete all its children for example) - don't draw the vertical line
1230 // in this case
1231 if (count > 0)
1232 dc.DrawLine( horizX+15, oldY+5, horizX+15, semiOldY );
bbe0af5b 1233 }
4c681997 1234}
c801d85f 1235
f135ff73
VZ
1236// -----------------------------------------------------------------------------
1237// wxWindows callbacks
1238// -----------------------------------------------------------------------------
1239
3db7be80 1240void wxTreeCtrl::OnPaint( wxPaintEvent &WXUNUSED(event) )
c801d85f 1241{
0659e7ee
RR
1242 if ( !m_anchor )
1243 return;
c801d85f 1244
0659e7ee
RR
1245 wxPaintDC dc(this);
1246 PrepareDC( dc );
29d87bba 1247
f60d0f94 1248 dc.SetFont( wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT ) );
29d87bba 1249
0659e7ee 1250 dc.SetPen( m_dottedPen );
d30b4d20
KB
1251 if(GetImageList() == NULL)
1252 m_lineHeight = (int)(dc.GetCharHeight() + 4);
29d87bba 1253
0659e7ee
RR
1254 int y = m_lineHeight / 2 + 2;
1255 PaintLevel( m_anchor, dc, 0, y );
edaa81ae 1256}
c801d85f 1257
3db7be80 1258void wxTreeCtrl::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
c801d85f 1259{
0659e7ee 1260 m_hasFocus = TRUE;
978f38c2 1261
bbe0af5b 1262 if (m_current) RefreshLine( m_current );
edaa81ae 1263}
c801d85f 1264
3db7be80 1265void wxTreeCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
c801d85f 1266{
0659e7ee 1267 m_hasFocus = FALSE;
978f38c2 1268
bbe0af5b 1269 if (m_current) RefreshLine( m_current );
edaa81ae 1270}
c801d85f
KB
1271
1272void wxTreeCtrl::OnChar( wxKeyEvent &event )
1273{
978f38c2
VZ
1274 wxTreeEvent te( wxEVT_COMMAND_TREE_KEY_DOWN, GetId() );
1275 te.m_code = event.KeyCode();
1276 te.SetEventObject( this );
1277 GetEventHandler()->ProcessEvent( te );
435fe83e 1278
978f38c2
VZ
1279 if (m_current == 0)
1280 {
1281 event.Skip();
1282 return;
1283 }
ef44a621 1284
978f38c2
VZ
1285 switch (event.KeyCode())
1286 {
1287 case '+':
1288 case WXK_ADD:
1289 if (m_current->HasPlus() && !IsExpanded(m_current))
1290 {
1291 Expand(m_current);
1292 }
1293 break;
ef44a621 1294
978f38c2
VZ
1295 case '-':
1296 case WXK_SUBTRACT:
1297 if (IsExpanded(m_current))
1298 {
1299 Collapse(m_current);
1300 }
1301 break;
ef44a621 1302
978f38c2
VZ
1303 case '*':
1304 case WXK_MULTIPLY:
1305 Toggle(m_current);
1306 break;
ef44a621 1307
978f38c2
VZ
1308 case ' ':
1309 case WXK_RETURN:
1310 {
1311 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() );
1312 event.m_item = m_current;
1313 event.m_code = 0;
1314 event.SetEventObject( this );
1315 GetEventHandler()->ProcessEvent( event );
1316 }
1317 break;
ef44a621 1318
978f38c2
VZ
1319 // up goes to the previous sibling or to the last of its children if
1320 // it's expanded
1321 case WXK_UP:
1322 {
1323 wxTreeItemId prev = GetPrevSibling( m_current );
1324 if (!prev)
1325 {
1326 prev = GetParent( m_current );
1327 long cockie = 0;
1328 wxTreeItemId current = m_current;
1329 if (current == GetFirstChild( prev, cockie ))
1330 {
1331 // otherwise we return to where we came from
1332 SelectItem( prev );
1333 EnsureVisible( prev );
1334 break;
1335 }
1336 }
1337 if (prev)
1338 {
69a282d4 1339 while ( IsExpanded(prev) && HasChildren(prev) )
978f38c2 1340 {
69a282d4
VZ
1341 wxTreeItemId child = GetLastChild(prev);
1342 if ( child )
1343 {
1344 prev = child;
1345 }
978f38c2 1346 }
69a282d4 1347
978f38c2
VZ
1348 SelectItem( prev );
1349 EnsureVisible( prev );
1350 }
1351 }
1352 break;
ef44a621 1353
978f38c2
VZ
1354 // left arrow goes to the parent
1355 case WXK_LEFT:
1356 {
1357 wxTreeItemId prev = GetParent( m_current );
1358 if (prev)
1359 {
1360 EnsureVisible( prev );
1361 SelectItem( prev );
1362 }
1363 }
1364 break;
ef44a621 1365
978f38c2
VZ
1366 case WXK_RIGHT:
1367 // this works the same as the down arrow except that we also expand the
1368 // item if it wasn't expanded yet
1369 Expand(m_current);
1370 // fall through
1371
1372 case WXK_DOWN:
ef44a621 1373 {
69a282d4 1374 if (IsExpanded(m_current) && HasChildren(m_current))
978f38c2
VZ
1375 {
1376 long cookie = 0;
1377 wxTreeItemId child = GetFirstChild( m_current, cookie );
1378 SelectItem( child );
1379 EnsureVisible( child );
1380 }
1381 else
1382 {
1383 wxTreeItemId next = GetNextSibling( m_current );
1384 if (next == 0)
1385 {
1386 wxTreeItemId current = m_current;
1387 while (current && !next)
1388 {
1389 current = GetParent( current );
1390 if (current) next = GetNextSibling( current );
1391 }
1392 }
1393 if (next != 0)
1394 {
1395 SelectItem( next );
1396 EnsureVisible( next );
1397 }
1398 }
ef44a621 1399 }
978f38c2 1400 break;
ef44a621 1401
978f38c2
VZ
1402 // <End> selects the last visible tree item
1403 case WXK_END:
1404 {
1405 wxTreeItemId last = GetRootItem();
1406
1407 while ( last.IsOk() && IsExpanded(last) )
1408 {
1409 wxTreeItemId lastChild = GetLastChild(last);
1410
1411 // it may happen if the item was expanded but then all of
1412 // its children have been deleted - so IsExpanded() returned
1413 // TRUE, but GetLastChild() returned invalid item
1414 if ( !lastChild )
1415 break;
1416
1417 last = lastChild;
1418 }
1419
1420 if ( last.IsOk() )
1421 {
1422 EnsureVisible( last );
1423 SelectItem( last );
1424 }
1425 }
1426 break;
1427
1428 // <Home> selects the root item
1429 case WXK_HOME:
1430 {
1431 wxTreeItemId prev = GetRootItem();
1432 if (prev)
1433 {
1434 EnsureVisible( prev );
1435 SelectItem( prev );
1436 }
1437 }
1438 break;
1439
1440 default:
1441 event.Skip();
1442 }
edaa81ae 1443}
c801d85f 1444
4f22cf8d
RR
1445wxTreeItemId wxTreeCtrl::HitTest(const wxPoint& point, int& WXUNUSED(flags))
1446{
bbe0af5b
RR
1447 bool onButton = FALSE;
1448 return m_anchor->HitTest( point, onButton );
4f22cf8d
RR
1449}
1450
3db7be80 1451void wxTreeCtrl::OnMouse( wxMouseEvent &event )
c801d85f 1452{
bbe0af5b 1453 if (!event.LeftIsDown()) m_dragCount = 0;
f135ff73 1454
bbe0af5b 1455 if ( !(event.LeftDown() || event.LeftDClick() || event.Dragging()) ) return;
29d87bba 1456
bbe0af5b 1457 if ( !m_anchor ) return;
978f38c2 1458
bbe0af5b
RR
1459 wxClientDC dc(this);
1460 PrepareDC(dc);
1461 long x = dc.DeviceToLogicalX( (long)event.GetX() );
1462 long y = dc.DeviceToLogicalY( (long)event.GetY() );
29d87bba 1463
bbe0af5b
RR
1464 bool onButton = FALSE;
1465 wxGenericTreeItem *item = m_anchor->HitTest( wxPoint(x,y), onButton );
978f38c2 1466
bbe0af5b 1467 if (item == NULL) return; /* we hit the blank area */
29d87bba 1468
bbe0af5b
RR
1469 if (event.Dragging())
1470 {
1471 if (m_dragCount == 2) /* small drag latency (3?) */
1472 {
1473 m_dragCount = 0;
978f38c2 1474
bbe0af5b
RR
1475 wxTreeEvent nevent(wxEVT_COMMAND_TREE_BEGIN_DRAG, GetId());
1476 nevent.m_item = m_current;
1477 nevent.SetEventObject(this);
1478 GetEventHandler()->ProcessEvent(nevent);
1479 }
1480 else
1481 {
1482 m_dragCount++;
1483 }
1484 return;
1485 }
978f38c2 1486
f65635b5
VZ
1487 if (!IsSelected(item))
1488 SelectItem(item); /* we dont support multiple selections, BTW */
29d87bba 1489
bbe0af5b
RR
1490 if (event.LeftDClick())
1491 {
1492 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() );
1493 event.m_item = item;
1494 event.m_code = 0;
1495 event.SetEventObject( this );
1496 GetEventHandler()->ProcessEvent( event );
1497 }
29d87bba 1498
bbe0af5b
RR
1499 if (onButton)
1500 {
1501 Toggle( item );
1502 }
edaa81ae 1503}
c801d85f 1504
3db7be80
RR
1505void wxTreeCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) )
1506{
bbe0af5b
RR
1507 /* after all changes have been done to the tree control,
1508 * we actually redraw the tree when everything is over */
ef44a621 1509
f65635b5
VZ
1510 if (!m_dirty)
1511 return;
ef44a621 1512
bbe0af5b 1513 m_dirty = FALSE;
3db7be80 1514
bbe0af5b
RR
1515 CalculatePositions();
1516
1517 AdjustMyScrollbars();
3db7be80
RR
1518}
1519
f135ff73 1520// -----------------------------------------------------------------------------
bbe0af5b
RR
1521
1522void wxTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y )
c801d85f 1523{
bbe0af5b 1524 int horizX = level*m_indent;
389cdc7a 1525
bbe0af5b 1526 item->SetX( horizX+33 );
f0594f42 1527 item->SetY( y-m_lineHeight/2 );
bbe0af5b 1528 item->SetHeight( m_lineHeight );
4c681997 1529
bbe0af5b
RR
1530 if ( !item->IsExpanded() )
1531 {
f65635b5 1532 // we dont need to calculate collapsed branches
bbe0af5b
RR
1533 return;
1534 }
389cdc7a 1535
bbe0af5b
RR
1536 wxArrayTreeItems& children = item->GetChildren();
1537 size_t count = children.Count();
1538 for ( size_t n = 0; n < count; n++ )
1539 {
1540 y += m_lineHeight;
f65635b5 1541 CalculateLevel( children[n], dc, level+1, y ); // recurse
bbe0af5b 1542 }
edaa81ae 1543}
c801d85f 1544
74bedbeb 1545void wxTreeCtrl::CalculatePositions()
c801d85f 1546{
bbe0af5b 1547 if ( !m_anchor ) return;
29d87bba 1548
bbe0af5b
RR
1549 wxClientDC dc(this);
1550 PrepareDC( dc );
29d87bba 1551
bbe0af5b 1552 dc.SetFont( wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT ) );
29d87bba 1553
bbe0af5b 1554 dc.SetPen( m_dottedPen );
d30b4d20
KB
1555 if(GetImageList() == NULL)
1556 m_lineHeight = (int)(dc.GetCharHeight() + 4);
29d87bba 1557
bbe0af5b 1558 int y = m_lineHeight / 2 + 2;
f65635b5 1559 CalculateLevel( m_anchor, dc, 0, y ); // start recursion
edaa81ae 1560}
c801d85f 1561
f135ff73 1562void wxTreeCtrl::RefreshSubtree(wxGenericTreeItem *item)
c801d85f 1563{
bbe0af5b
RR
1564 wxClientDC dc(this);
1565 PrepareDC(dc);
4832f7c0 1566
bbe0af5b
RR
1567 int cw = 0;
1568 int ch = 0;
1569 GetClientSize( &cw, &ch );
4832f7c0 1570
bbe0af5b
RR
1571 wxRect rect;
1572 rect.x = dc.LogicalToDeviceX( 0 );
1573 rect.width = cw;
1574 rect.y = dc.LogicalToDeviceY( item->GetY() );
1575 rect.height = ch;
f135ff73 1576
bbe0af5b 1577 Refresh( TRUE, &rect );
f135ff73 1578
bbe0af5b 1579 AdjustMyScrollbars();
edaa81ae 1580}
c801d85f
KB
1581
1582void wxTreeCtrl::RefreshLine( wxGenericTreeItem *item )
1583{
bbe0af5b
RR
1584 wxClientDC dc(this);
1585 PrepareDC( dc );
1586
1587 wxRect rect;
1588 rect.x = dc.LogicalToDeviceX( item->GetX() - 2 );
1589 rect.y = dc.LogicalToDeviceY( item->GetY() - 2 );
1590 rect.width = 1000;
1591 rect.height = dc.GetCharHeight() + 6;
978f38c2 1592
bbe0af5b 1593 Refresh( TRUE, &rect );
edaa81ae 1594}
c801d85f 1595