]> git.saurik.com Git - wxWidgets.git/blame - src/generic/treectlg.cpp
several mac fixes (Mark Newsams patches)
[wxWidgets.git] / src / generic / treectlg.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
941830cb 2// Name: treectlg.cpp
f135ff73 3// Purpose: generic tree control implementation
c801d85f
KB
4// Author: Robert Roebling
5// Created: 01/02/97
f135ff73 6// Modified: 22/10/98 - almost total rewrite, simpler interface (VZ)
389cdc7a 7// Id: $Id$
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__
941830cb 21 #pragma implementation "treectlg.h"
c801d85f
KB
22#endif
23
1e6d9499
JS
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
1e6feb95 28 #pragma hdrstop
1e6d9499
JS
29#endif
30
1e6feb95
VZ
31#if wxUSE_TREECTRL
32
941830cb
JS
33#include "wx/generic/treectlg.h"
34#include "wx/imaglist.h"
c801d85f 35#include "wx/settings.h"
389cdc7a 36#include "wx/log.h"
f135ff73
VZ
37#include "wx/intl.h"
38#include "wx/dynarray.h"
91b8de8d 39#include "wx/arrimpl.cpp"
f135ff73 40#include "wx/dcclient.h"
0659e7ee 41#include "wx/msgdlg.h"
c801d85f 42
f135ff73
VZ
43// -----------------------------------------------------------------------------
44// array types
45// -----------------------------------------------------------------------------
c801d85f 46
1e6d9499
JS
47class WXDLLEXPORT wxGenericTreeItem;
48
8a985b84 49WX_DEFINE_EXPORTED_ARRAY(wxGenericTreeItem *, wxArrayGenericTreeItems);
941830cb 50//WX_DEFINE_OBJARRAY(wxArrayTreeItemIds);
c801d85f 51
8dc99046
VZ
52// ----------------------------------------------------------------------------
53// constants
54// ----------------------------------------------------------------------------
55
56static const int NO_IMAGE = -1;
57
3dbeaa52
VZ
58#define PIXELS_PER_UNIT 10
59
f135ff73
VZ
60// -----------------------------------------------------------------------------
61// private classes
62// -----------------------------------------------------------------------------
63
3dbeaa52
VZ
64// timer used for enabling in-place edit
65class WXDLLEXPORT wxTreeRenameTimer: public wxTimer
66{
67public:
941830cb 68 wxTreeRenameTimer( wxGenericTreeCtrl *owner );
3dbeaa52
VZ
69
70 void Notify();
71
72private:
941830cb 73 wxGenericTreeCtrl *m_owner;
3dbeaa52
VZ
74};
75
76// control used for in-place edit
77class WXDLLEXPORT wxTreeTextCtrl: public wxTextCtrl
78{
79public:
80 wxTreeTextCtrl() { }
81 wxTreeTextCtrl( wxWindow *parent,
82 const wxWindowID id,
83 bool *accept,
84 wxString *res,
941830cb 85 wxGenericTreeCtrl *owner,
3dbeaa52
VZ
86 const wxString &value = wxEmptyString,
87 const wxPoint &pos = wxDefaultPosition,
88 const wxSize &size = wxDefaultSize,
27316302 89 int style = wxSIMPLE_BORDER,
3dbeaa52
VZ
90 const wxValidator& validator = wxDefaultValidator,
91 const wxString &name = wxTextCtrlNameStr );
92
93 void OnChar( wxKeyEvent &event );
c13cace1 94 void OnKeyUp( wxKeyEvent &event );
3dbeaa52
VZ
95 void OnKillFocus( wxFocusEvent &event );
96
97private:
98 bool *m_accept;
99 wxString *m_res;
941830cb 100 wxGenericTreeCtrl *m_owner;
3dbeaa52
VZ
101 wxString m_startValue;
102
103 DECLARE_EVENT_TABLE()
104 DECLARE_DYNAMIC_CLASS(wxTreeTextCtrl);
105};
106
f135ff73
VZ
107// a tree item
108class WXDLLEXPORT wxGenericTreeItem
c801d85f 109{
f135ff73 110public:
9ec64fa7
VZ
111 // ctors & dtor
112 wxGenericTreeItem() { m_data = NULL; }
113 wxGenericTreeItem( wxGenericTreeItem *parent,
114 const wxString& text,
115 wxDC& dc,
116 int image, int selImage,
117 wxTreeItemData *data );
f135ff73 118
9ec64fa7 119 ~wxGenericTreeItem();
f135ff73 120
9ec64fa7
VZ
121 // trivial accessors
122 wxArrayGenericTreeItems& GetChildren() { return m_children; }
f135ff73 123
9ec64fa7
VZ
124 const wxString& GetText() const { return m_text; }
125 int GetImage(wxTreeItemIcon which = wxTreeItemIcon_Normal) const
3dbeaa52 126 { return m_images[which]; }
9ec64fa7 127 wxTreeItemData *GetData() const { return m_data; }
f135ff73 128
9ec64fa7
VZ
129 // returns the current image for the item (depending on its
130 // selected/expanded/whatever state)
131 int GetCurrentImage() const;
8dc99046 132
9ec64fa7
VZ
133 void SetText( const wxString &text );
134 void SetImage(int image, wxTreeItemIcon which) { m_images[which] = image; }
135 void SetData(wxTreeItemData *data) { m_data = data; }
f135ff73 136
9ec64fa7 137 void SetHasPlus(bool has = TRUE) { m_hasPlus = has; }
f135ff73 138
9ec64fa7 139 void SetBold(bool bold) { m_isBold = bold; }
ef44a621 140
9ec64fa7
VZ
141 int GetX() const { return m_x; }
142 int GetY() const { return m_y; }
f135ff73 143
9ec64fa7
VZ
144 void SetX(int x) { m_x = x; }
145 void SetY(int y) { m_y = y; }
f135ff73 146
9ec64fa7
VZ
147 int GetHeight() const { return m_height; }
148 int GetWidth() const { return m_width; }
91b8de8d 149
9ec64fa7
VZ
150 void SetHeight(int h) { m_height = h; }
151 void SetWidth(int w) { m_width = w; }
91b8de8d
RR
152
153
9ec64fa7 154 wxGenericTreeItem *GetParent() const { return m_parent; }
c801d85f 155
9ec64fa7
VZ
156 // operations
157 // deletes all children notifying the treectrl about it if !NULL
158 // pointer given
941830cb 159 void DeleteChildren(wxGenericTreeCtrl *tree = NULL);
9ec64fa7
VZ
160 // FIXME don't know what is it for
161 void Reset();
f135ff73 162
9ec64fa7
VZ
163 // get count of all children (and grand children if 'recursively')
164 size_t GetChildrenCount(bool recursively = TRUE) const;
f135ff73 165
9ec64fa7 166 void Insert(wxGenericTreeItem *child, size_t index)
f135ff73
VZ
167 { m_children.Insert(child, index); }
168
9ec64fa7 169 void SetCross( int x, int y );
941830cb 170 void GetSize( int &x, int &y, const wxGenericTreeCtrl* );
f135ff73 171
9ec64fa7
VZ
172 // return the item at given position (or NULL if no item), onButton is
173 // TRUE if the point belongs to the item's button, otherwise it lies
174 // on the button's label
941830cb 175 wxGenericTreeItem *HitTest( const wxPoint& point, const wxGenericTreeCtrl *, int &flags);
f135ff73 176
9ec64fa7
VZ
177 void Expand() { m_isCollapsed = FALSE; }
178 void Collapse() { m_isCollapsed = TRUE; }
f135ff73 179
9ec64fa7 180 void SetHilight( bool set = TRUE ) { m_hasHilight = set; }
f135ff73 181
9ec64fa7
VZ
182 // status inquiries
183 bool HasChildren() const { return !m_children.IsEmpty(); }
ef8698d6 184 bool IsSelected() const { return m_hasHilight != 0; }
9ec64fa7
VZ
185 bool IsExpanded() const { return !m_isCollapsed; }
186 bool HasPlus() const { return m_hasPlus || HasChildren(); }
ef8698d6 187 bool IsBold() const { return m_isBold != 0; }
9ec64fa7
VZ
188
189 // attributes
190 // get them - may be NULL
191 wxTreeItemAttr *GetAttributes() const { return m_attr; }
192 // get them ensuring that the pointer is not NULL
193 wxTreeItemAttr& Attr()
194 {
195 if ( !m_attr )
196 m_attr = new wxTreeItemAttr;
197
198 return *m_attr;
199 }
f135ff73
VZ
200
201private:
9ec64fa7
VZ
202 wxString m_text;
203
204 // tree ctrl images for the normal, selected, expanded and
205 // expanded+selected states
206 int m_images[wxTreeItemIcon_Max];
207
208 wxTreeItemData *m_data;
209
210 // use bitfields to save size
211 int m_isCollapsed :1;
212 int m_hasHilight :1; // same as focused
213 int m_hasPlus :1; // used for item which doesn't have
214 // children but has a [+] button
215 int m_isBold :1; // render the label in bold font
216
6f2a55e3
VZ
217 wxCoord m_x, m_y;
218 wxCoord m_height, m_width;
9ec64fa7
VZ
219 int m_xCross, m_yCross;
220 int m_level;
221
222 wxArrayGenericTreeItems m_children;
223 wxGenericTreeItem *m_parent;
224
225 wxTreeItemAttr *m_attr;
f135ff73
VZ
226};
227
228// =============================================================================
229// implementation
230// =============================================================================
231
06b466c7
VZ
232// ----------------------------------------------------------------------------
233// private functions
234// ----------------------------------------------------------------------------
235
236// translate the key or mouse event flags to the type of selection we're
237// dealing with
238static void EventFlagsToSelType(long style,
239 bool shiftDown,
240 bool ctrlDown,
dfc6cd93
SB
241 bool &is_multiple,
242 bool &extended_select,
243 bool &unselect_others)
06b466c7 244{
dfc6cd93
SB
245 is_multiple = (style & wxTR_MULTIPLE) != 0;
246 extended_select = shiftDown && is_multiple;
247 unselect_others = !(extended_select || (ctrlDown && is_multiple));
06b466c7 248}
e179bd65
RR
249
250// -----------------------------------------------------------------------------
251// wxTreeRenameTimer (internal)
252// -----------------------------------------------------------------------------
253
941830cb 254wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl *owner )
e179bd65
RR
255{
256 m_owner = owner;
257}
258
259void wxTreeRenameTimer::Notify()
260{
261 m_owner->OnRenameTimer();
262}
263
264//-----------------------------------------------------------------------------
265// wxTreeTextCtrl (internal)
266//-----------------------------------------------------------------------------
267
268IMPLEMENT_DYNAMIC_CLASS(wxTreeTextCtrl,wxTextCtrl);
269
270BEGIN_EVENT_TABLE(wxTreeTextCtrl,wxTextCtrl)
271 EVT_CHAR (wxTreeTextCtrl::OnChar)
c13cace1 272 EVT_KEY_UP (wxTreeTextCtrl::OnKeyUp)
e179bd65
RR
273 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus)
274END_EVENT_TABLE()
275
674ac8b9
VZ
276wxTreeTextCtrl::wxTreeTextCtrl( wxWindow *parent,
277 const wxWindowID id,
278 bool *accept,
279 wxString *res,
941830cb 280 wxGenericTreeCtrl *owner,
674ac8b9
VZ
281 const wxString &value,
282 const wxPoint &pos,
283 const wxSize &size,
284 int style,
285 const wxValidator& validator,
286 const wxString &name )
287 : wxTextCtrl( parent, id, value, pos, size, style, validator, name )
e179bd65
RR
288{
289 m_res = res;
290 m_accept = accept;
291 m_owner = owner;
5f1ea0ee 292 (*m_accept) = FALSE;
3dbeaa52 293 (*m_res) = wxEmptyString;
5f1ea0ee 294 m_startValue = value;
e179bd65
RR
295}
296
297void wxTreeTextCtrl::OnChar( wxKeyEvent &event )
298{
299 if (event.m_keyCode == WXK_RETURN)
300 {
301 (*m_accept) = TRUE;
302 (*m_res) = GetValue();
33ac7e6f 303
bce1406b
RR
304 if (!wxPendingDelete.Member(this))
305 wxPendingDelete.Append(this);
306
307 if ((*m_accept) && ((*m_res) != m_startValue))
308 m_owner->OnRenameAccept();
33ac7e6f 309
e179bd65
RR
310 return;
311 }
312 if (event.m_keyCode == WXK_ESCAPE)
313 {
314 (*m_accept) = FALSE;
315 (*m_res) = "";
33ac7e6f 316
bce1406b
RR
317 if (!wxPendingDelete.Member(this))
318 wxPendingDelete.Append(this);
33ac7e6f 319
e179bd65
RR
320 return;
321 }
322 event.Skip();
c13cace1
VS
323}
324
325void wxTreeTextCtrl::OnKeyUp( wxKeyEvent &event )
326{
327 // auto-grow the textctrl:
328 wxSize parentSize = m_owner->GetSize();
329 wxPoint myPos = GetPosition();
330 wxSize mySize = GetSize();
331 int sx, sy;
332 GetTextExtent(GetValue() + _T("MM"), &sx, &sy);
333 if (myPos.x + sx > parentSize.x) sx = parentSize.x - myPos.x;
334 if (mySize.x > sx) sx = mySize.x;
335 SetSize(sx, -1);
33ac7e6f 336
c13cace1 337 event.Skip();
e179bd65
RR
338}
339
340void wxTreeTextCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
341{
bce1406b
RR
342 if (!wxPendingDelete.Member(this))
343 wxPendingDelete.Append(this);
9dfbf520 344
5f1ea0ee
RR
345 if ((*m_accept) && ((*m_res) != m_startValue))
346 m_owner->OnRenameAccept();
e179bd65
RR
347}
348
941830cb 349#if 0
f135ff73 350// -----------------------------------------------------------------------------
c801d85f 351// wxTreeEvent
f135ff73 352// -----------------------------------------------------------------------------
c801d85f 353
e179bd65 354IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent, wxNotifyEvent)
9dfbf520 355
f135ff73 356wxTreeEvent::wxTreeEvent( wxEventType commandType, int id )
92976ab6 357 : wxNotifyEvent( commandType, id )
c801d85f 358{
00e12320
RR
359 m_code = 0;
360 m_itemOld = (wxGenericTreeItem *)NULL;
edaa81ae 361}
941830cb 362#endif
c801d85f 363
f135ff73 364// -----------------------------------------------------------------------------
c801d85f 365// wxGenericTreeItem
f135ff73 366// -----------------------------------------------------------------------------
c801d85f 367
f135ff73
VZ
368wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem *parent,
369 const wxString& text,
406005d2 370 wxDC& WXUNUSED(dc),
f135ff73
VZ
371 int image, int selImage,
372 wxTreeItemData *data)
373 : m_text(text)
c801d85f 374{
00e12320
RR
375 m_images[wxTreeItemIcon_Normal] = image;
376 m_images[wxTreeItemIcon_Selected] = selImage;
377 m_images[wxTreeItemIcon_Expanded] = NO_IMAGE;
378 m_images[wxTreeItemIcon_SelectedExpanded] = NO_IMAGE;
8dc99046 379
00e12320
RR
380 m_data = data;
381 m_x = m_y = 0;
382 m_xCross = m_yCross = 0;
f135ff73 383
00e12320 384 m_level = 0;
f135ff73 385
00e12320
RR
386 m_isCollapsed = TRUE;
387 m_hasHilight = FALSE;
388 m_hasPlus = FALSE;
389 m_isBold = FALSE;
c801d85f 390
00e12320 391 m_parent = parent;
f135ff73 392
00e12320 393 m_attr = (wxTreeItemAttr *)NULL;
06b466c7 394
00e12320
RR
395 // We don't know the height here yet.
396 m_width = 0;
397 m_height = 0;
edaa81ae 398}
c801d85f 399
f135ff73 400wxGenericTreeItem::~wxGenericTreeItem()
c801d85f 401{
00e12320 402 delete m_data;
4832f7c0 403
00e12320 404 delete m_attr;
9ec64fa7 405
00e12320
RR
406 wxASSERT_MSG( m_children.IsEmpty(),
407 wxT("please call DeleteChildren() before deleting the item") );
372edb9d
VZ
408}
409
941830cb 410void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl *tree)
372edb9d 411{
00e12320
RR
412 size_t count = m_children.Count();
413 for ( size_t n = 0; n < count; n++ )
a43a4f9d 414 {
00e12320
RR
415 wxGenericTreeItem *child = m_children[n];
416 if (tree)
417 tree->SendDeleteEvent(child);
a43a4f9d 418
00e12320
RR
419 child->DeleteChildren(tree);
420 delete child;
421 }
372edb9d 422
00e12320 423 m_children.Empty();
edaa81ae 424}
c801d85f 425
91b8de8d 426void wxGenericTreeItem::SetText( const wxString &text )
c801d85f 427{
00e12320 428 m_text = text;
edaa81ae 429}
c801d85f 430
74bedbeb 431void wxGenericTreeItem::Reset()
c801d85f 432{
00e12320
RR
433 m_text.Empty();
434 for ( int i = 0; i < wxTreeItemIcon_Max; i++ )
435 {
436 m_images[i] = NO_IMAGE;
437 }
8dc99046 438
00e12320
RR
439 m_data = NULL;
440 m_x = m_y =
441 m_height = m_width = 0;
442 m_xCross =
443 m_yCross = 0;
74bedbeb 444
00e12320 445 m_level = 0;
c801d85f 446
00e12320
RR
447 DeleteChildren();
448 m_isCollapsed = TRUE;
c801d85f 449
00e12320 450 m_parent = (wxGenericTreeItem *)NULL;
edaa81ae 451}
c801d85f 452
4832f7c0 453size_t wxGenericTreeItem::GetChildrenCount(bool recursively) const
c801d85f 454{
00e12320
RR
455 size_t count = m_children.Count();
456 if ( !recursively )
457 return count;
4832f7c0 458
00e12320 459 size_t total = count;
f2593d0d 460 for (size_t n = 0; n < count; ++n)
00e12320
RR
461 {
462 total += m_children[n]->GetChildrenCount();
463 }
c801d85f 464
00e12320 465 return total;
edaa81ae 466}
c801d85f
KB
467
468void wxGenericTreeItem::SetCross( int x, int y )
469{
00e12320
RR
470 m_xCross = x;
471 m_yCross = y;
edaa81ae 472}
c801d85f 473
941830cb 474void wxGenericTreeItem::GetSize( int &x, int &y, const wxGenericTreeCtrl *theTree )
c801d85f 475{
00e12320
RR
476 int bottomY=m_y+theTree->GetLineHeight(this);
477 if ( y < bottomY ) y = bottomY;
478 int width = m_x + m_width;
479 if ( x < width ) x = width;
f135ff73 480
00e12320 481 if (IsExpanded())
4832f7c0 482 {
00e12320
RR
483 size_t count = m_children.Count();
484 for ( size_t n = 0; n < count; ++n )
485 {
486 m_children[n]->GetSize( x, y, theTree );
487 }
df875e59 488 }
edaa81ae 489}
c801d85f 490
f135ff73 491wxGenericTreeItem *wxGenericTreeItem::HitTest( const wxPoint& point,
941830cb 492 const wxGenericTreeCtrl *theTree,
c193b707 493 int &flags)
c801d85f 494{
f2593d0d 495 if ((point.y > m_y) && (point.y < m_y + theTree->GetLineHeight(this)))
c801d85f 496 {
3dbeaa52 497 if (point.y < m_y+theTree->GetLineHeight(this)/2 )
f2593d0d
RR
498 flags |= wxTREE_HITTEST_ONITEMUPPERPART;
499 else
500 flags |= wxTREE_HITTEST_ONITEMLOWERPART;
978f38c2 501
f2593d0d
RR
502 // 5 is the size of the plus sign
503 if ((point.x > m_xCross-5) && (point.x < m_xCross+5) &&
504 (point.y > m_yCross-5) && (point.y < m_yCross+5) &&
505 (IsExpanded() || HasPlus()))
506 {
507 flags|=wxTREE_HITTEST_ONITEMBUTTON;
508 return this;
509 }
d3a9f4af 510
f2593d0d
RR
511 if ((point.x >= m_x) && (point.x <= m_x+m_width))
512 {
513 int image_w = -1;
514 int image_h;
0ae7f2a2 515
f2593d0d
RR
516 // assuming every image (normal and selected ) has the same size !
517 if ( (GetImage() != NO_IMAGE) && theTree->m_imageListNormal )
518 theTree->m_imageListNormal->GetSize(GetImage(), image_w, image_h);
91b8de8d 519
f2593d0d
RR
520 if ((image_w != -1) && (point.x <= m_x + image_w + 1))
521 flags |= wxTREE_HITTEST_ONITEMICON;
522 else
523 flags |= wxTREE_HITTEST_ONITEMLABEL;
91b8de8d 524
f2593d0d
RR
525 return this;
526 }
91b8de8d 527
f2593d0d
RR
528 if (point.x < m_x)
529 flags |= wxTREE_HITTEST_ONITEMINDENT;
530 if (point.x > m_x+m_width)
531 flags |= wxTREE_HITTEST_ONITEMRIGHT;
532
533 return this;
534 }
535 else
c801d85f 536 {
f2593d0d
RR
537 if (!m_isCollapsed)
538 {
539 size_t count = m_children.Count();
540 for ( size_t n = 0; n < count; n++ )
541 {
542 wxGenericTreeItem *res = m_children[n]->HitTest( point, theTree, flags );
543 if ( res != NULL )
544 return res;
545 }
546 }
edaa81ae 547 }
f135ff73 548
f2593d0d 549 flags|=wxTREE_HITTEST_NOWHERE;
06b466c7 550
f2593d0d 551 return (wxGenericTreeItem*) NULL;
edaa81ae 552}
c801d85f 553
8dc99046
VZ
554int wxGenericTreeItem::GetCurrentImage() const
555{
556 int image = NO_IMAGE;
557 if ( IsExpanded() )
558 {
559 if ( IsSelected() )
560 {
561 image = GetImage(wxTreeItemIcon_SelectedExpanded);
562 }
563
564 if ( image == NO_IMAGE )
565 {
566 // we usually fall back to the normal item, but try just the
567 // expanded one (and not selected) first in this case
568 image = GetImage(wxTreeItemIcon_Expanded);
569 }
570 }
571 else // not expanded
572 {
573 if ( IsSelected() )
574 image = GetImage(wxTreeItemIcon_Selected);
575 }
576
577 // may be it doesn't have the specific image we want, try the default one
578 // instead
579 if ( image == NO_IMAGE )
580 {
581 image = GetImage();
582 }
583
584 return image;
585}
586
f135ff73 587// -----------------------------------------------------------------------------
941830cb 588// wxGenericTreeCtrl implementation
f135ff73
VZ
589// -----------------------------------------------------------------------------
590
941830cb 591IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl, wxScrolledWindow)
f135ff73 592
941830cb
JS
593BEGIN_EVENT_TABLE(wxGenericTreeCtrl,wxScrolledWindow)
594 EVT_PAINT (wxGenericTreeCtrl::OnPaint)
595 EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse)
596 EVT_CHAR (wxGenericTreeCtrl::OnChar)
597 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus)
598 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus)
599 EVT_IDLE (wxGenericTreeCtrl::OnIdle)
f135ff73
VZ
600END_EVENT_TABLE()
601
233058c7
JS
602#if !defined(__WXMSW__) || defined(__WIN16__)
603/*
604 * wxTreeCtrl has to be a real class or we have problems with
605 * the run-time information.
606 */
607
608IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl, wxGenericTreeCtrl)
609#endif
610
f135ff73
VZ
611// -----------------------------------------------------------------------------
612// construction/destruction
613// -----------------------------------------------------------------------------
91b8de8d 614
941830cb 615void wxGenericTreeCtrl::Init()
c801d85f 616{
00e12320
RR
617 m_current =
618 m_key_current =
619 m_anchor = (wxGenericTreeItem *) NULL;
620 m_hasFocus = FALSE;
621 m_dirty = FALSE;
f135ff73 622
00e12320
RR
623 m_xScroll = 0;
624 m_yScroll = 0;
625 m_lineHeight = 10;
626 m_indent = 15;
627 m_spacing = 18;
f135ff73 628
00e12320 629 m_hilightBrush = new wxBrush
f135ff73
VZ
630 (
631 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT),
632 wxSOLID
633 );
634
00e12320
RR
635 m_imageListNormal =
636 m_imageListState = (wxImageList *) NULL;
33ac7e6f 637 m_ownsImageListNormal =
46cd520d 638 m_ownsImageListState = FALSE;
978f38c2 639
00e12320 640 m_dragCount = 0;
3dbeaa52 641 m_isDragging = FALSE;
b3a7510d
VZ
642 m_dropTarget =
643 m_oldSelection = (wxGenericTreeItem *)NULL;
9dfbf520 644
00e12320 645 m_renameTimer = new wxTreeRenameTimer( this );
f6bcfd97 646 m_lastOnSame = FALSE;
f38374d0 647
00e12320
RR
648 m_normalFont = wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT );
649 m_boldFont = wxFont( m_normalFont.GetPointSize(),
eff869aa
RR
650 m_normalFont.GetFamily(),
651 m_normalFont.GetStyle(),
652 wxBOLD,
653 m_normalFont.GetUnderlined());
edaa81ae 654}
c801d85f 655
941830cb 656bool wxGenericTreeCtrl::Create(wxWindow *parent, wxWindowID id,
f135ff73 657 const wxPoint& pos, const wxSize& size,
978f38c2 658 long style,
674ac8b9
VZ
659 const wxValidator &validator,
660 const wxString& name )
c801d85f 661{
00e12320 662 wxScrolledWindow::Create( parent, id, pos, size, style|wxHSCROLL|wxVSCROLL, name );
978f38c2 663
ce4169a4 664#if wxUSE_VALIDATORS
00e12320 665 SetValidator( validator );
ce4169a4 666#endif
f135ff73 667
91fc2bdc 668 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX ) );
c22886bd 669
00e12320
RR
670// m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
671 m_dottedPen = wxPen( "grey", 0, 0 );
f135ff73 672
00e12320 673 return TRUE;
edaa81ae 674}
c801d85f 675
941830cb 676wxGenericTreeCtrl::~wxGenericTreeCtrl()
c801d85f 677{
00e12320 678 wxDELETE( m_hilightBrush );
a43a4f9d 679
00e12320 680 DeleteAllItems();
9dfbf520 681
00e12320 682 delete m_renameTimer;
46cd520d
VS
683 if (m_ownsImageListNormal) delete m_imageListNormal;
684 if (m_ownsImageListState) delete m_imageListState;
edaa81ae 685}
c801d85f 686
f135ff73
VZ
687// -----------------------------------------------------------------------------
688// accessors
689// -----------------------------------------------------------------------------
690
941830cb 691size_t wxGenericTreeCtrl::GetCount() const
c801d85f 692{
f2593d0d 693 return m_anchor == NULL ? 0u : m_anchor->GetChildrenCount();
edaa81ae 694}
c801d85f 695
941830cb 696void wxGenericTreeCtrl::SetIndent(unsigned int indent)
c801d85f 697{
f2593d0d
RR
698 m_indent = indent;
699 m_dirty = TRUE;
cf724bce
RR
700}
701
941830cb 702void wxGenericTreeCtrl::SetSpacing(unsigned int spacing)
cf724bce 703{
f2593d0d
RR
704 m_spacing = spacing;
705 m_dirty = TRUE;
f135ff73 706}
74bedbeb 707
941830cb 708size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId& item, bool recursively)
4832f7c0 709{
f2593d0d 710 wxCHECK_MSG( item.IsOk(), 0u, wxT("invalid tree item") );
4832f7c0 711
941830cb 712 return ((wxGenericTreeItem*) item.m_pItem)->GetChildrenCount(recursively);
4832f7c0
VZ
713}
714
f135ff73
VZ
715// -----------------------------------------------------------------------------
716// functions to work with tree items
717// -----------------------------------------------------------------------------
74bedbeb 718
941830cb 719wxString wxGenericTreeCtrl::GetItemText(const wxTreeItemId& item) const
f135ff73 720{
f2593d0d 721 wxCHECK_MSG( item.IsOk(), wxT(""), wxT("invalid tree item") );
4832f7c0 722
941830cb 723 return ((wxGenericTreeItem*) item.m_pItem)->GetText();
edaa81ae 724}
74bedbeb 725
941830cb 726int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId& item,
8dc99046 727 wxTreeItemIcon which) const
74bedbeb 728{
f2593d0d 729 wxCHECK_MSG( item.IsOk(), -1, wxT("invalid tree item") );
4832f7c0 730
941830cb 731 return ((wxGenericTreeItem*) item.m_pItem)->GetImage(which);
edaa81ae 732}
c801d85f 733
941830cb 734wxTreeItemData *wxGenericTreeCtrl::GetItemData(const wxTreeItemId& item) const
c801d85f 735{
f2593d0d 736 wxCHECK_MSG( item.IsOk(), NULL, wxT("invalid tree item") );
4832f7c0 737
941830cb 738 return ((wxGenericTreeItem*) item.m_pItem)->GetData();
edaa81ae 739}
c801d85f 740
941830cb 741void wxGenericTreeCtrl::SetItemText(const wxTreeItemId& item, const wxString& text)
f135ff73 742{
f2593d0d 743 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
4832f7c0 744
f2593d0d 745 wxClientDC dc(this);
941830cb 746 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
f2593d0d
RR
747 pItem->SetText(text);
748 CalculateSize(pItem, dc);
749 RefreshLine(pItem);
f135ff73 750}
c801d85f 751
941830cb 752void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId& item,
8dc99046
VZ
753 int image,
754 wxTreeItemIcon which)
f135ff73 755{
223d09f6 756 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
4832f7c0 757
941830cb 758 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
8dc99046 759 pItem->SetImage(image, which);
4832f7c0 760
8dc99046
VZ
761 wxClientDC dc(this);
762 CalculateSize(pItem, dc);
763 RefreshLine(pItem);
edaa81ae 764}
c801d85f 765
941830cb 766void wxGenericTreeCtrl::SetItemData(const wxTreeItemId& item, wxTreeItemData *data)
c801d85f 767{
f2593d0d 768 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
4832f7c0 769
941830cb 770 ((wxGenericTreeItem*) item.m_pItem)->SetData(data);
edaa81ae 771}
c801d85f 772
941830cb 773void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId& item, bool has)
c801d85f 774{
f2593d0d 775 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
4832f7c0 776
941830cb 777 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
f2593d0d
RR
778 pItem->SetHasPlus(has);
779 RefreshLine(pItem);
edaa81ae 780}
c801d85f 781
941830cb 782void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId& item, bool bold)
ef44a621 783{
9ec64fa7 784 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
ef44a621 785
9ec64fa7 786 // avoid redrawing the tree if no real change
941830cb 787 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
9ec64fa7
VZ
788 if ( pItem->IsBold() != bold )
789 {
790 pItem->SetBold(bold);
791 RefreshLine(pItem);
792 }
793}
794
941830cb 795void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId& item,
9ec64fa7
VZ
796 const wxColour& col)
797{
798 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
799
941830cb 800 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
9ec64fa7
VZ
801 pItem->Attr().SetTextColour(col);
802 RefreshLine(pItem);
803}
804
941830cb 805void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId& item,
9ec64fa7
VZ
806 const wxColour& col)
807{
808 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
809
941830cb 810 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
9ec64fa7
VZ
811 pItem->Attr().SetBackgroundColour(col);
812 RefreshLine(pItem);
813}
814
941830cb 815void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId& item, const wxFont& font)
9ec64fa7
VZ
816{
817 wxCHECK_RET( item.IsOk(), wxT("invalid tree item") );
818
941830cb 819 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
9ec64fa7 820 pItem->Attr().SetFont(font);
ef44a621 821 RefreshLine(pItem);
ef44a621
VZ
822}
823
3da2715f
JS
824bool wxGenericTreeCtrl::SetFont( const wxFont &font )
825{
826 wxScrolledWindow::SetFont(font);
827
828 m_normalFont = font ;
829 m_boldFont = wxFont( m_normalFont.GetPointSize(),
830 m_normalFont.GetFamily(),
831 m_normalFont.GetStyle(),
832 wxBOLD,
833 m_normalFont.GetUnderlined());
834
835 return TRUE;
836}
837
838
f135ff73
VZ
839// -----------------------------------------------------------------------------
840// item status inquiries
841// -----------------------------------------------------------------------------
842
1ed01484 843bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId& item) const
c801d85f 844{
1ed01484
JS
845 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
846
c22886bd 847 // An item is only visible if it's not a descendant of a collapsed item
1ed01484 848 wxGenericTreeItem *pItem = (wxGenericTreeItem*) item.m_pItem;
c22886bd
RR
849 wxGenericTreeItem* parent = pItem->GetParent();
850 while (parent)
851 {
852 if (!parent->IsExpanded())
853 return FALSE;
854 parent = parent->GetParent();
855 }
1ed01484
JS
856
857 int startX, startY;
858 GetViewStart(& startX, & startY);
859
860 wxSize clientSize = GetClientSize();
861
862 wxRect rect;
863 if (!GetBoundingRect(item, rect))
864 return FALSE;
c22886bd
RR
865 if (rect.GetWidth() == 0 || rect.GetHeight() == 0)
866 return FALSE;
1ed01484
JS
867 if (rect.GetBottom() < 0 || rect.GetTop() > clientSize.y)
868 return FALSE;
869 if (rect.GetRight() < 0 || rect.GetLeft() > clientSize.x)
870 return FALSE;
f135ff73 871
f2593d0d 872 return TRUE;
edaa81ae 873}
c801d85f 874
941830cb 875bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId& item) const
c801d85f 876{
f2593d0d 877 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
4832f7c0 878
941830cb 879 return !((wxGenericTreeItem*) item.m_pItem)->GetChildren().IsEmpty();
edaa81ae 880}
c801d85f 881
941830cb 882bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId& item) const
c801d85f 883{
f2593d0d 884 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
4832f7c0 885
941830cb 886 return ((wxGenericTreeItem*) item.m_pItem)->IsExpanded();
f135ff73 887}
29d87bba 888
941830cb 889bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId& item) const
f135ff73 890{
f2593d0d 891 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
4832f7c0 892
941830cb 893 return ((wxGenericTreeItem*) item.m_pItem)->IsSelected();
f135ff73 894}
29d87bba 895
941830cb 896bool wxGenericTreeCtrl::IsBold(const wxTreeItemId& item) const
ef44a621 897{
f2593d0d 898 wxCHECK_MSG( item.IsOk(), FALSE, wxT("invalid tree item") );
ef44a621 899
941830cb 900 return ((wxGenericTreeItem*) item.m_pItem)->IsBold();
ef44a621
VZ
901}
902
f135ff73
VZ
903// -----------------------------------------------------------------------------
904// navigation
905// -----------------------------------------------------------------------------
29d87bba 906
941830cb 907wxTreeItemId wxGenericTreeCtrl::GetParent(const wxTreeItemId& item) const
f135ff73 908{
223d09f6 909 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
389cdc7a 910
941830cb 911 return ((wxGenericTreeItem*) item.m_pItem)->GetParent();
f135ff73 912}
29d87bba 913
941830cb 914wxTreeItemId wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId& item, long& cookie) const
f135ff73 915{
223d09f6 916 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
29d87bba 917
f135ff73
VZ
918 cookie = 0;
919 return GetNextChild(item, cookie);
920}
29d87bba 921
941830cb 922wxTreeItemId wxGenericTreeCtrl::GetNextChild(const wxTreeItemId& item, long& cookie) const
f135ff73 923{
223d09f6 924 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
29d87bba 925
941830cb 926 wxArrayGenericTreeItems& children = ((wxGenericTreeItem*) item.m_pItem)->GetChildren();
4832f7c0
VZ
927 if ( (size_t)cookie < children.Count() )
928 {
06b466c7 929 return children.Item((size_t)cookie++);
4832f7c0
VZ
930 }
931 else
932 {
933 // there are no more of them
1e6d9499 934 return wxTreeItemId();
4832f7c0 935 }
f135ff73 936}
29d87bba 937
941830cb 938wxTreeItemId wxGenericTreeCtrl::GetLastChild(const wxTreeItemId& item) const
978f38c2 939{
223d09f6 940 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
978f38c2 941
941830cb 942 wxArrayGenericTreeItems& children = ((wxGenericTreeItem*) item.m_pItem)->GetChildren();
0a240683 943 return (children.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children.Last()));
978f38c2
VZ
944}
945
941830cb 946wxTreeItemId wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId& item) const
f135ff73 947{
223d09f6 948 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
f135ff73 949
941830cb 950 wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
f135ff73
VZ
951 wxGenericTreeItem *parent = i->GetParent();
952 if ( parent == NULL )
953 {
954 // root item doesn't have any siblings
1e6d9499 955 return wxTreeItemId();
edaa81ae 956 }
4832f7c0 957
91b8de8d 958 wxArrayGenericTreeItems& siblings = parent->GetChildren();
f135ff73 959 int index = siblings.Index(i);
3c67202d 960 wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent?
29d87bba 961
f135ff73 962 size_t n = (size_t)(index + 1);
fdd8d7b5 963 return n == siblings.Count() ? wxTreeItemId() : wxTreeItemId(siblings[n]);
edaa81ae 964}
c801d85f 965
941830cb 966wxTreeItemId wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId& item) const
c801d85f 967{
223d09f6 968 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
f135ff73 969
941830cb 970 wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
f135ff73
VZ
971 wxGenericTreeItem *parent = i->GetParent();
972 if ( parent == NULL )
c801d85f 973 {
f135ff73 974 // root item doesn't have any siblings
1e6d9499 975 return wxTreeItemId();
edaa81ae 976 }
4832f7c0 977
91b8de8d 978 wxArrayGenericTreeItems& siblings = parent->GetChildren();
f135ff73 979 int index = siblings.Index(i);
3c67202d 980 wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent?
29d87bba 981
fdd8d7b5
VZ
982 return index == 0 ? wxTreeItemId()
983 : wxTreeItemId(siblings[(size_t)(index - 1)]);
f135ff73 984}
389cdc7a 985
1ed01484
JS
986// Only for internal use right now, but should probably be public
987wxTreeItemId wxGenericTreeCtrl::GetNext(const wxTreeItemId& item) const
f135ff73 988{
1ed01484
JS
989 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
990
991 wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
992
993 // First see if there are any children.
994 wxArrayGenericTreeItems& children = i->GetChildren();
995 if (children.GetCount() > 0)
996 {
997 return children.Item(0);
998 }
999 else
1000 {
1001 // Try a sibling of this or ancestor instead
1002 wxTreeItemId p = item;
1003 wxTreeItemId toFind;
1004 do
1005 {
1006 toFind = GetNextSibling(p);
1007 p = GetParent(p);
1008 } while (p.IsOk() && !toFind.IsOk());
1009 return toFind;
1010 }
1011}
1012
1013wxTreeItemId wxGenericTreeCtrl::GetPrev(const wxTreeItemId& item) const
1014{
1015 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1016
223d09f6 1017 wxFAIL_MSG(wxT("not implemented"));
29d87bba 1018
1e6d9499 1019 return wxTreeItemId();
f135ff73 1020}
29d87bba 1021
1ed01484
JS
1022wxTreeItemId wxGenericTreeCtrl::GetFirstVisibleItem() const
1023{
1024 wxTreeItemId id = GetRootItem();
1025 if (!id.IsOk())
1026 return id;
1027
1028 do
1029 {
1030 if (IsVisible(id))
1031 return id;
1032 id = GetNext(id);
1033 } while (id.IsOk());
1034
1035 return wxTreeItemId();
1036}
1037
941830cb 1038wxTreeItemId wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId& item) const
f135ff73 1039{
223d09f6 1040 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
29d87bba 1041
1ed01484
JS
1042 wxTreeItemId id = item;
1043 while (id.IsOk())
1044 {
c22886bd 1045 id = GetNext(id);
29d87bba 1046
c22886bd
RR
1047 if (id.IsOk() && IsVisible(id))
1048 return id;
1ed01484 1049 }
1e6d9499 1050 return wxTreeItemId();
f135ff73 1051}
29d87bba 1052
941830cb 1053wxTreeItemId wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId& item) const
f135ff73 1054{
223d09f6 1055 wxCHECK_MSG( item.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
29d87bba 1056
223d09f6 1057 wxFAIL_MSG(wxT("not implemented"));
29d87bba 1058
1e6d9499 1059 return wxTreeItemId();
edaa81ae 1060}
c801d85f 1061
f135ff73
VZ
1062// -----------------------------------------------------------------------------
1063// operations
1064// -----------------------------------------------------------------------------
1065
941830cb 1066wxTreeItemId wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId& parentId,
f135ff73
VZ
1067 size_t previous,
1068 const wxString& text,
1069 int image, int selImage,
1070 wxTreeItemData *data)
c801d85f 1071{
941830cb 1072 wxGenericTreeItem *parent = (wxGenericTreeItem*) parentId.m_pItem;
f49f2b0c
RR
1073 if ( !parent )
1074 {
1075 // should we give a warning here?
1076 return AddRoot(text, image, selImage, data);
1077 }
4832f7c0 1078
f49f2b0c 1079 wxClientDC dc(this);
f38374d0 1080 wxGenericTreeItem *item =
f49f2b0c 1081 new wxGenericTreeItem( parent, text, dc, image, selImage, data );
74bedbeb 1082
f49f2b0c
RR
1083 if ( data != NULL )
1084 {
40fab78b 1085 data->m_pItem = (long) item;
f49f2b0c 1086 }
74bedbeb 1087
f49f2b0c 1088 parent->Insert( item, previous );
ef44a621 1089
f49f2b0c 1090 m_dirty = TRUE;
389cdc7a 1091
f49f2b0c 1092 return item;
4c681997
RR
1093}
1094
941830cb 1095wxTreeItemId wxGenericTreeCtrl::AddRoot(const wxString& text,
f135ff73
VZ
1096 int image, int selImage,
1097 wxTreeItemData *data)
4c681997 1098{
f49f2b0c 1099 wxCHECK_MSG( !m_anchor, wxTreeItemId(), wxT("tree can have only one root") );
389cdc7a 1100
f49f2b0c
RR
1101 wxClientDC dc(this);
1102 m_anchor = new wxGenericTreeItem((wxGenericTreeItem *)NULL, text, dc,
f135ff73 1103 image, selImage, data);
f49f2b0c
RR
1104 if ( data != NULL )
1105 {
40fab78b 1106 data->m_pItem = (long) m_anchor;
f49f2b0c 1107 }
f38374d0 1108
f49f2b0c
RR
1109 if (!HasFlag(wxTR_MULTIPLE))
1110 {
1111 m_current = m_key_current = m_anchor;
06b466c7 1112 m_current->SetHilight( TRUE );
f49f2b0c 1113 }
389cdc7a 1114
f6bcfd97 1115 m_dirty = TRUE;
a32dd690 1116
f49f2b0c 1117 return m_anchor;
edaa81ae 1118}
c801d85f 1119
941830cb 1120wxTreeItemId wxGenericTreeCtrl::PrependItem(const wxTreeItemId& parent,
f135ff73
VZ
1121 const wxString& text,
1122 int image, int selImage,
1123 wxTreeItemData *data)
c801d85f 1124{
f2593d0d 1125 return DoInsertItem(parent, 0u, text, image, selImage, data);
edaa81ae 1126}
c801d85f 1127
941830cb 1128wxTreeItemId wxGenericTreeCtrl::InsertItem(const wxTreeItemId& parentId,
f135ff73
VZ
1129 const wxTreeItemId& idPrevious,
1130 const wxString& text,
1131 int image, int selImage,
1132 wxTreeItemData *data)
c801d85f 1133{
941830cb 1134 wxGenericTreeItem *parent = (wxGenericTreeItem*) parentId.m_pItem;
f2593d0d
RR
1135 if ( !parent )
1136 {
1137 // should we give a warning here?
1138 return AddRoot(text, image, selImage, data);
1139 }
c801d85f 1140
941830cb 1141 int index = parent->GetChildren().Index((wxGenericTreeItem*) idPrevious.m_pItem);
f2593d0d 1142 wxASSERT_MSG( index != wxNOT_FOUND,
941830cb 1143 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
06b466c7 1144
f2593d0d
RR
1145 return DoInsertItem(parentId, (size_t)++index, text, image, selImage, data);
1146}
1147
941830cb 1148wxTreeItemId wxGenericTreeCtrl::InsertItem(const wxTreeItemId& parentId,
f2593d0d
RR
1149 size_t before,
1150 const wxString& text,
1151 int image, int selImage,
1152 wxTreeItemData *data)
1153{
941830cb 1154 wxGenericTreeItem *parent = (wxGenericTreeItem*) parentId.m_pItem;
f2593d0d
RR
1155 if ( !parent )
1156 {
1157 // should we give a warning here?
1158 return AddRoot(text, image, selImage, data);
1159 }
1160
1161 return DoInsertItem(parentId, before, text, image, selImage, data);
edaa81ae 1162}
c801d85f 1163
941830cb 1164wxTreeItemId wxGenericTreeCtrl::AppendItem(const wxTreeItemId& parentId,
f135ff73
VZ
1165 const wxString& text,
1166 int image, int selImage,
1167 wxTreeItemData *data)
74bedbeb 1168{
941830cb 1169 wxGenericTreeItem *parent = (wxGenericTreeItem*) parentId.m_pItem;
f2593d0d
RR
1170 if ( !parent )
1171 {
1172 // should we give a warning here?
1173 return AddRoot(text, image, selImage, data);
1174 }
f135ff73 1175
f2593d0d
RR
1176 return DoInsertItem( parent, parent->GetChildren().Count(), text,
1177 image, selImage, data);
74bedbeb
VZ
1178}
1179
941830cb 1180void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem *item)
a43a4f9d 1181{
f2593d0d 1182 wxTreeEvent event( wxEVT_COMMAND_TREE_DELETE_ITEM, GetId() );
40fab78b 1183 event.m_item = (long) item;
f2593d0d
RR
1184 event.SetEventObject( this );
1185 ProcessEvent( event );
a43a4f9d
VZ
1186}
1187
941830cb 1188void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId& itemId)
372edb9d 1189{
941830cb 1190 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
a43a4f9d 1191 item->DeleteChildren(this);
372edb9d
VZ
1192
1193 m_dirty = TRUE;
1194}
1195
941830cb 1196void wxGenericTreeCtrl::Delete(const wxTreeItemId& itemId)
c801d85f 1197{
941830cb 1198 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
ff5bf259 1199
aaa2f297
VZ
1200 // don't stay with invalid m_key_current or we will crash in the next call
1201 // to OnChar()
1202 bool changeKeyCurrent = FALSE;
1203 wxGenericTreeItem *itemKey = m_key_current;
1204 while ( itemKey && !changeKeyCurrent )
1205 {
1206 if ( itemKey == item )
1207 {
1208 // m_key_current is a descendant of the item being deleted
1209 changeKeyCurrent = TRUE;
1210 }
1211 else
1212 {
1213 itemKey = itemKey->GetParent();
1214 }
1215 }
1216
1217 wxGenericTreeItem *parent = item->GetParent();
97d7bfb8
RR
1218 if ( parent )
1219 {
1220 parent->GetChildren().Remove( item ); // remove by value
1221 }
f135ff73 1222
aaa2f297
VZ
1223 if ( changeKeyCurrent )
1224 {
1225 // may be NULL or not
1226 m_key_current = parent;
1227 }
1228
97d7bfb8
RR
1229 item->DeleteChildren(this);
1230 SendDeleteEvent(item);
1231 delete item;
f135ff73 1232
97d7bfb8 1233 m_dirty = TRUE;
edaa81ae 1234}
c801d85f 1235
941830cb 1236void wxGenericTreeCtrl::DeleteAllItems()
c801d85f 1237{
97d7bfb8
RR
1238 if ( m_anchor )
1239 {
1240 m_anchor->DeleteChildren(this);
1241 delete m_anchor;
a43a4f9d 1242
97d7bfb8 1243 m_anchor = NULL;
f135ff73 1244
97d7bfb8
RR
1245 m_dirty = TRUE;
1246 }
edaa81ae
RR
1247}
1248
941830cb 1249void wxGenericTreeCtrl::Expand(const wxTreeItemId& itemId)
edaa81ae 1250{
941830cb 1251 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
f135ff73 1252
941830cb 1253 wxCHECK_RET( item, _T("invalid item in wxGenericTreeCtrl::Expand") );
f6bcfd97 1254
f2593d0d
RR
1255 if ( !item->HasPlus() )
1256 return;
978f38c2 1257
f2593d0d
RR
1258 if ( item->IsExpanded() )
1259 return;
f135ff73 1260
f2593d0d 1261 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_EXPANDING, GetId() );
40fab78b 1262 event.m_item = (long) item;
f2593d0d 1263 event.SetEventObject( this );
004fd0c8 1264
f2593d0d
RR
1265 if ( ProcessEvent( event ) && !event.IsAllowed() )
1266 {
1267 // cancelled by program
1268 return;
1269 }
4832f7c0 1270
f2593d0d
RR
1271 item->Expand();
1272 CalculatePositions();
f135ff73 1273
f2593d0d 1274 RefreshSubtree(item);
f135ff73 1275
f2593d0d
RR
1276 event.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED);
1277 ProcessEvent( event );
edaa81ae
RR
1278}
1279
941830cb 1280void wxGenericTreeCtrl::ExpandAll(const wxTreeItemId& item)
f6bcfd97
BP
1281{
1282 Expand(item);
1283 if ( IsExpanded(item) )
1284 {
1285 long cookie;
1286 wxTreeItemId child = GetFirstChild(item, cookie);
1287 while ( child.IsOk() )
1288 {
1289 ExpandAll(child);
1290
1291 child = GetNextChild(item, cookie);
1292 }
1293 }
1294}
1295
941830cb 1296void wxGenericTreeCtrl::Collapse(const wxTreeItemId& itemId)
edaa81ae 1297{
941830cb 1298 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
f135ff73 1299
f2593d0d
RR
1300 if ( !item->IsExpanded() )
1301 return;
f135ff73 1302
f2593d0d 1303 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING, GetId() );
40fab78b 1304 event.m_item = (long) item;
f2593d0d
RR
1305 event.SetEventObject( this );
1306 if ( ProcessEvent( event ) && !event.IsAllowed() )
1307 {
1308 // cancelled by program
1309 return;
1310 }
4832f7c0 1311
f2593d0d 1312 item->Collapse();
f135ff73 1313
f2593d0d
RR
1314 wxArrayGenericTreeItems& children = item->GetChildren();
1315 size_t count = children.Count();
1316 for ( size_t n = 0; n < count; n++ )
1317 {
1318 Collapse(children[n]);
1319 }
f135ff73 1320
f2593d0d 1321 CalculatePositions();
f135ff73 1322
f2593d0d 1323 RefreshSubtree(item);
f135ff73 1324
f2593d0d
RR
1325 event.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED);
1326 ProcessEvent( event );
edaa81ae 1327}
c801d85f 1328
941830cb 1329void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId& item)
c801d85f 1330{
00e12320
RR
1331 Collapse(item);
1332 DeleteChildren(item);
edaa81ae 1333}
c801d85f 1334
941830cb 1335void wxGenericTreeCtrl::Toggle(const wxTreeItemId& itemId)
c801d85f 1336{
941830cb 1337 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
389cdc7a 1338
00e12320
RR
1339 if (item->IsExpanded())
1340 Collapse(itemId);
1341 else
1342 Expand(itemId);
f135ff73 1343}
389cdc7a 1344
941830cb 1345void wxGenericTreeCtrl::Unselect()
f135ff73 1346{
00e12320
RR
1347 if (m_current)
1348 {
1349 m_current->SetHilight( FALSE );
1350 RefreshLine( m_current );
1351 }
edaa81ae 1352}
c801d85f 1353
941830cb 1354void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem *item)
389cdc7a 1355{
00e12320
RR
1356 if (item->IsSelected())
1357 {
1358 item->SetHilight(FALSE);
1359 RefreshLine(item);
1360 }
d3a9f4af 1361
00e12320 1362 if (item->HasChildren())
88ac883a 1363 {
00e12320
RR
1364 wxArrayGenericTreeItems& children = item->GetChildren();
1365 size_t count = children.Count();
1366 for ( size_t n = 0; n < count; ++n )
1367 {
1368 UnselectAllChildren(children[n]);
1369 }
88ac883a
VZ
1370 }
1371}
f135ff73 1372
941830cb 1373void wxGenericTreeCtrl::UnselectAll()
88ac883a 1374{
941830cb 1375 UnselectAllChildren((wxGenericTreeItem*) GetRootItem().m_pItem);
88ac883a
VZ
1376}
1377
1378// Recursive function !
1379// To stop we must have crt_item<last_item
91b8de8d 1380// Algorithm :
88ac883a 1381// Tag all next children, when no more children,
d3a9f4af 1382// Move to parent (not to tag)
91b8de8d 1383// Keep going... if we found last_item, we stop.
941830cb 1384bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select)
88ac883a
VZ
1385{
1386 wxGenericTreeItem *parent = crt_item->GetParent();
1387
00e12320
RR
1388 if (parent == NULL) // This is root item
1389 return TagAllChildrenUntilLast(crt_item, last_item, select);
88ac883a 1390
91b8de8d 1391 wxArrayGenericTreeItems& children = parent->GetChildren();
88ac883a
VZ
1392 int index = children.Index(crt_item);
1393 wxASSERT( index != wxNOT_FOUND ); // I'm not a child of my parent?
1394
1395 size_t count = children.Count();
1396 for (size_t n=(size_t)(index+1); n<count; ++n)
00e12320
RR
1397 {
1398 if (TagAllChildrenUntilLast(children[n], last_item, select)) return TRUE;
1399 }
88ac883a
VZ
1400
1401 return TagNextChildren(parent, last_item, select);
1402}
1403
941830cb 1404bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem *crt_item, wxGenericTreeItem *last_item, bool select)
88ac883a 1405{
00e12320
RR
1406 crt_item->SetHilight(select);
1407 RefreshLine(crt_item);
d3a9f4af 1408
06b466c7 1409 if (crt_item==last_item)
00e12320 1410 return TRUE;
88ac883a 1411
00e12320 1412 if (crt_item->HasChildren())
88ac883a 1413 {
00e12320
RR
1414 wxArrayGenericTreeItems& children = crt_item->GetChildren();
1415 size_t count = children.Count();
1416 for ( size_t n = 0; n < count; ++n )
1417 {
06b466c7 1418 if (TagAllChildrenUntilLast(children[n], last_item, select))
00e12320 1419 return TRUE;
06b466c7 1420 }
88ac883a 1421 }
d3a9f4af 1422
c0de7af4 1423 return FALSE;
88ac883a
VZ
1424}
1425
941830cb 1426void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem *item1, wxGenericTreeItem *item2)
88ac883a 1427{
f2593d0d
RR
1428 // item2 is not necessary after item1
1429 wxGenericTreeItem *first=NULL, *last=NULL;
88ac883a 1430
f2593d0d
RR
1431 // choice first' and 'last' between item1 and item2
1432 if (item1->GetY()<item2->GetY())
06b466c7 1433 {
f2593d0d
RR
1434 first=item1;
1435 last=item2;
1436 }
1437 else
1438 {
1439 first=item2;
1440 last=item1;
1441 }
88ac883a 1442
f2593d0d 1443 bool select = m_current->IsSelected();
d3a9f4af 1444
f2593d0d
RR
1445 if ( TagAllChildrenUntilLast(first,last,select) )
1446 return;
88ac883a 1447
f2593d0d 1448 TagNextChildren(first,last,select);
88ac883a
VZ
1449}
1450
941830cb 1451void wxGenericTreeCtrl::SelectItem(const wxTreeItemId& itemId,
c193b707
VZ
1452 bool unselect_others,
1453 bool extended_select)
d3a9f4af 1454{
223d09f6 1455 wxCHECK_RET( itemId.IsOk(), wxT("invalid tree item") );
8b04a037 1456
88ac883a 1457 bool is_single=!(GetWindowStyleFlag() & wxTR_MULTIPLE);
941830cb 1458 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
88ac883a
VZ
1459
1460 //wxCHECK_RET( ( (!unselect_others) && is_single),
223d09f6 1461 // wxT("this is a single selection tree") );
88ac883a
VZ
1462
1463 // to keep going anyhow !!!
d3a9f4af 1464 if (is_single)
8dc99046
VZ
1465 {
1466 if (item->IsSelected())
1467 return; // nothing to do
1468 unselect_others = TRUE;
1469 extended_select = FALSE;
1470 }
1471 else if ( unselect_others && item->IsSelected() )
1472 {
1473 // selection change if there is more than one item currently selected
1474 wxArrayTreeItemIds selected_items;
1475 if ( GetSelections(selected_items) == 1 )
1476 return;
1477 }
d3a9f4af 1478
f135ff73 1479 wxTreeEvent event( wxEVT_COMMAND_TREE_SEL_CHANGING, GetId() );
40fab78b
JS
1480 event.m_item = (long) item;
1481 event.m_itemOld = (long) m_current;
f135ff73 1482 event.SetEventObject( this );
91b8de8d 1483 // TODO : Here we don't send any selection mode yet !
d3a9f4af 1484
f98e2558 1485 if ( GetEventHandler()->ProcessEvent( event ) && !event.IsAllowed() )
f135ff73
VZ
1486 return;
1487
88ac883a
VZ
1488 // ctrl press
1489 if (unselect_others)
389cdc7a 1490 {
88ac883a 1491 if (is_single) Unselect(); // to speed up thing
c193b707 1492 else UnselectAll();
edaa81ae 1493 }
f135ff73 1494
88ac883a 1495 // shift press
d3a9f4af 1496 if (extended_select)
88ac883a 1497 {
aaa2f297
VZ
1498 if ( !m_current )
1499 {
1500 m_current =
941830cb 1501 m_key_current = (wxGenericTreeItem*) GetRootItem().m_pItem;
aaa2f297
VZ
1502 }
1503
88ac883a
VZ
1504 // don't change the mark (m_current)
1505 SelectItemRange(m_current, item);
1506 }
1507 else
1508 {
c0de7af4 1509 bool select=TRUE; // the default
88ac883a 1510
c193b707
VZ
1511 // Check if we need to toggle hilight (ctrl mode)
1512 if (!unselect_others)
8dc99046 1513 select=!item->IsSelected();
88ac883a 1514
91b8de8d 1515 m_current = m_key_current = item;
c193b707
VZ
1516 m_current->SetHilight(select);
1517 RefreshLine( m_current );
88ac883a 1518 }
389cdc7a 1519
f135ff73 1520 event.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED);
6daa0637 1521 GetEventHandler()->ProcessEvent( event );
389cdc7a
VZ
1522}
1523
941830cb 1524void wxGenericTreeCtrl::FillArray(wxGenericTreeItem *item,
9dfbf520 1525 wxArrayTreeItemIds &array) const
c801d85f 1526{
8dc99046 1527 if ( item->IsSelected() )
9dfbf520 1528 array.Add(wxTreeItemId(item));
91b8de8d 1529
9dfbf520 1530 if ( item->HasChildren() )
91b8de8d 1531 {
9dfbf520
VZ
1532 wxArrayGenericTreeItems& children = item->GetChildren();
1533 size_t count = children.GetCount();
1534 for ( size_t n = 0; n < count; ++n )
f6bcfd97 1535 FillArray(children[n], array);
91b8de8d
RR
1536 }
1537}
1538
941830cb 1539size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds &array) const
91b8de8d
RR
1540{
1541 array.Empty();
f6bcfd97
BP
1542 wxTreeItemId idRoot = GetRootItem();
1543 if ( idRoot.IsOk() )
1544 {
941830cb 1545 FillArray((wxGenericTreeItem*) idRoot.m_pItem, array);
f6bcfd97
BP
1546 }
1547 //else: the tree is empty, so no selections
91b8de8d
RR
1548
1549 return array.Count();
1550}
1551
941830cb 1552void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId& item)
d3a9f4af 1553{
91b8de8d
RR
1554 if (!item.IsOk()) return;
1555
941830cb 1556 wxGenericTreeItem *gitem = (wxGenericTreeItem*) item.m_pItem;
ef44a621 1557
f65635b5
VZ
1558 // first expand all parent branches
1559 wxGenericTreeItem *parent = gitem->GetParent();
5391f772 1560 while ( parent )
f65635b5 1561 {
8dc99046 1562 Expand(parent);
f65635b5
VZ
1563 parent = parent->GetParent();
1564 }
1565
5391f772 1566 //if (parent) CalculatePositions();
91b8de8d
RR
1567
1568 ScrollTo(item);
1569}
1570
941830cb 1571void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId &item)
91b8de8d
RR
1572{
1573 if (!item.IsOk()) return;
1574
dc6c62a9
RR
1575 // We have to call this here because the label in
1576 // question might just have been added and no screen
1577 // update taken place.
cd66f45b 1578 if (m_dirty) wxYieldIfNeeded();
dc6c62a9 1579
941830cb 1580 wxGenericTreeItem *gitem = (wxGenericTreeItem*) item.m_pItem;
91b8de8d 1581
f65635b5 1582 // now scroll to the item
0659e7ee 1583 int item_y = gitem->GetY();
8dc99046 1584
0659e7ee
RR
1585 int start_x = 0;
1586 int start_y = 0;
1e6feb95 1587 GetViewStart( &start_x, &start_y );
91b8de8d 1588 start_y *= PIXELS_PER_UNIT;
978f38c2 1589
a93109d5
RR
1590 int client_h = 0;
1591 int client_w = 0;
1592 GetClientSize( &client_w, &client_h );
ef44a621 1593
0659e7ee
RR
1594 if (item_y < start_y+3)
1595 {
91b8de8d 1596 // going down
0659e7ee
RR
1597 int x = 0;
1598 int y = 0;
91b8de8d
RR
1599 m_anchor->GetSize( x, y, this );
1600 y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
c7a9fa36 1601 x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
0659e7ee 1602 int x_pos = GetScrollPos( wxHORIZONTAL );
c193b707 1603 // Item should appear at top
91b8de8d 1604 SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, item_y/PIXELS_PER_UNIT );
0659e7ee 1605 }
91b8de8d 1606 else if (item_y+GetLineHeight(gitem) > start_y+client_h)
0659e7ee 1607 {
c7a9fa36
RR
1608 // going up
1609 int x = 0;
1610 int y = 0;
1611 m_anchor->GetSize( x, y, this );
1612 y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
1613 x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
1614 item_y += PIXELS_PER_UNIT+2;
1615 int x_pos = GetScrollPos( wxHORIZONTAL );
c193b707 1616 // Item should appear at bottom
c7a9fa36 1617 SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, (item_y+GetLineHeight(gitem)-client_h)/PIXELS_PER_UNIT );
0659e7ee 1618 }
edaa81ae 1619}
c801d85f 1620
e1ee62bd 1621// FIXME: tree sorting functions are not reentrant and not MT-safe!
941830cb 1622static wxGenericTreeCtrl *s_treeBeingSorted = NULL;
0659e7ee 1623
004fd0c8 1624static int LINKAGEMODE tree_ctrl_compare_func(wxGenericTreeItem **item1,
e1ee62bd 1625 wxGenericTreeItem **item2)
edaa81ae 1626{
941830cb 1627 wxCHECK_MSG( s_treeBeingSorted, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
e1ee62bd
VZ
1628
1629 return s_treeBeingSorted->OnCompareItems(*item1, *item2);
0659e7ee
RR
1630}
1631
941830cb 1632int wxGenericTreeCtrl::OnCompareItems(const wxTreeItemId& item1,
e1ee62bd 1633 const wxTreeItemId& item2)
0659e7ee 1634{
87138c52 1635 return wxStrcmp(GetItemText(item1), GetItemText(item2));
e1ee62bd
VZ
1636}
1637
941830cb 1638void wxGenericTreeCtrl::SortChildren(const wxTreeItemId& itemId)
e1ee62bd 1639{
223d09f6 1640 wxCHECK_RET( itemId.IsOk(), wxT("invalid tree item") );
e1ee62bd 1641
941830cb 1642 wxGenericTreeItem *item = (wxGenericTreeItem*) itemId.m_pItem;
978f38c2 1643
e1ee62bd 1644 wxCHECK_RET( !s_treeBeingSorted,
941830cb 1645 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
e1ee62bd 1646
91b8de8d 1647 wxArrayGenericTreeItems& children = item->GetChildren();
e1ee62bd
VZ
1648 if ( children.Count() > 1 )
1649 {
1650 s_treeBeingSorted = this;
1651 children.Sort(tree_ctrl_compare_func);
1652 s_treeBeingSorted = NULL;
978f38c2 1653
e1ee62bd
VZ
1654 m_dirty = TRUE;
1655 }
1656 //else: don't make the tree dirty as nothing changed
edaa81ae
RR
1657}
1658
941830cb 1659wxImageList *wxGenericTreeCtrl::GetImageList() const
edaa81ae 1660{
f135ff73 1661 return m_imageListNormal;
edaa81ae
RR
1662}
1663
941830cb 1664wxImageList *wxGenericTreeCtrl::GetStateImageList() const
c801d85f 1665{
f135ff73 1666 return m_imageListState;
edaa81ae 1667}
c801d85f 1668
941830cb 1669void wxGenericTreeCtrl::SetImageList(wxImageList *imageList)
e2414cbe 1670{
46cd520d
VS
1671 if (m_ownsImageListNormal) delete m_imageListNormal;
1672
f2593d0d 1673 m_imageListNormal = imageList;
46cd520d 1674 m_ownsImageListNormal = FALSE;
91b8de8d 1675
2c8e4738
VZ
1676 if ( !m_imageListNormal )
1677 return;
1678
f2593d0d 1679 // Calculate a m_lineHeight value from the image sizes.
941830cb 1680 // May be toggle off. Then wxGenericTreeCtrl will spread when
f2593d0d 1681 // necessary (which might look ugly).
f2593d0d
RR
1682 wxClientDC dc(this);
1683 m_lineHeight = (int)(dc.GetCharHeight() + 4);
1684 int width = 0, height = 0,
1685 n = m_imageListNormal->GetImageCount();
06b466c7 1686
f2593d0d
RR
1687 for (int i = 0; i < n ; i++)
1688 {
1689 m_imageListNormal->GetSize(i, width, height);
1690 if (height > m_lineHeight) m_lineHeight = height;
1691 }
91b8de8d 1692
06b466c7 1693 if (m_lineHeight < 40)
f2593d0d 1694 m_lineHeight += 2; // at least 2 pixels
06b466c7 1695 else
f2593d0d 1696 m_lineHeight += m_lineHeight/10; // otherwise 10% extra spacing
edaa81ae 1697}
e2414cbe 1698
941830cb 1699void wxGenericTreeCtrl::SetStateImageList(wxImageList *imageList)
e2414cbe 1700{
46cd520d 1701 if (m_ownsImageListState) delete m_imageListState;
f135ff73 1702 m_imageListState = imageList;
46cd520d
VS
1703 m_ownsImageListState = FALSE;
1704}
1705
1706void wxGenericTreeCtrl::AssignImageList(wxImageList *imageList)
1707{
1708 SetImageList(imageList);
1709 m_ownsImageListNormal = TRUE;
1710}
1711
1712void wxGenericTreeCtrl::AssignStateImageList(wxImageList *imageList)
1713{
1714 SetStateImageList(imageList);
1715 m_ownsImageListState = TRUE;
edaa81ae 1716}
e2414cbe 1717
f135ff73
VZ
1718// -----------------------------------------------------------------------------
1719// helpers
1720// -----------------------------------------------------------------------------
0659e7ee 1721
941830cb 1722void wxGenericTreeCtrl::AdjustMyScrollbars()
c801d85f 1723{
0659e7ee
RR
1724 if (m_anchor)
1725 {
1726 int x = 0;
1727 int y = 0;
91b8de8d 1728 m_anchor->GetSize( x, y, this );
c193b707 1729 y += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
c7a9fa36 1730 x += PIXELS_PER_UNIT+2; // one more scrollbar unit + 2 pixels
0659e7ee
RR
1731 int x_pos = GetScrollPos( wxHORIZONTAL );
1732 int y_pos = GetScrollPos( wxVERTICAL );
91b8de8d 1733 SetScrollbars( PIXELS_PER_UNIT, PIXELS_PER_UNIT, x/PIXELS_PER_UNIT, y/PIXELS_PER_UNIT, x_pos, y_pos );
0659e7ee
RR
1734 }
1735 else
1736 {
1737 SetScrollbars( 0, 0, 0, 0 );
1738 }
edaa81ae 1739}
c801d85f 1740
941830cb 1741int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem *item) const
91b8de8d 1742{
dc6c62a9
RR
1743 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT)
1744 return item->GetHeight();
1745 else
1746 return m_lineHeight;
91b8de8d
RR
1747}
1748
941830cb 1749void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem *item, wxDC& dc)
ef44a621 1750{
9ec64fa7
VZ
1751 wxTreeItemAttr *attr = item->GetAttributes();
1752 if ( attr && attr->HasFont() )
1753 dc.SetFont(attr->GetFont());
1754 else if (item->IsBold())
eff869aa 1755 dc.SetFont(m_boldFont);
ef44a621 1756
bbe0af5b
RR
1757 long text_w = 0;
1758 long text_h = 0;
1759 dc.GetTextExtent( item->GetText(), &text_w, &text_h );
ef44a621 1760
bbe0af5b
RR
1761 int image_h = 0;
1762 int image_w = 0;
8dc99046
VZ
1763 int image = item->GetCurrentImage();
1764 if ( image != NO_IMAGE )
bbe0af5b 1765 {
2c8e4738
VZ
1766 if ( m_imageListNormal )
1767 {
1768 m_imageListNormal->GetSize( image, image_w, image_h );
1769 image_w += 4;
1770 }
1771 else
1772 {
1773 image = NO_IMAGE;
1774 }
bbe0af5b 1775 }
ef44a621 1776
91b8de8d
RR
1777 int total_h = GetLineHeight(item);
1778
c0fba4d1
VS
1779 if (item->IsSelected())
1780 dc.SetBrush(*m_hilightBrush);
afa6a1a1 1781 else
c0fba4d1
VS
1782 {
1783 wxColour colBg;
1784 if ( attr && attr->HasBackgroundColour() )
1785 colBg = attr->GetBackgroundColour();
1786 else
1787 colBg = m_backgroundColour;
1788 dc.SetBrush(wxBrush(colBg, wxSOLID));
1789 }
afa6a1a1 1790
b77d9650
RR
1791 int offset = 0;
1792 if (HasFlag(wxTR_ROW_LINES)) offset = 1;
1793
a69cb1cc
JS
1794 if (item->IsSelected() && image != NO_IMAGE)
1795 {
1796 // If it's selected, and there's an image, then we should
1797 // take care to leave the area under the image painted in the
1798 // background colour.
b77d9650
RR
1799 dc.DrawRectangle( item->GetX() + image_w - 2, item->GetY()+offset,
1800 item->GetWidth() - image_w + 2, total_h-offset );
a69cb1cc
JS
1801 }
1802 else
b77d9650
RR
1803 {
1804 dc.DrawRectangle( item->GetX()-2, item->GetY()+offset,
1805 item->GetWidth()+2, total_h-offset );
1806 }
ef44a621 1807
8dc99046 1808 if ( image != NO_IMAGE )
bbe0af5b 1809 {
d30b4d20 1810 dc.SetClippingRegion( item->GetX(), item->GetY(), image_w-2, total_h );
8dc99046 1811 m_imageListNormal->Draw( image, dc,
49cd56ef 1812 item->GetX(),
d701d432 1813 item->GetY() +((total_h > image_h)?((total_h-image_h)/2):0),
bbe0af5b
RR
1814 wxIMAGELIST_DRAW_TRANSPARENT );
1815 dc.DestroyClippingRegion();
1816 }
ef44a621 1817
afa6a1a1 1818 dc.SetBackgroundMode(wxTRANSPARENT);
f6bcfd97
BP
1819 int extraH = (total_h > text_h) ? (total_h - text_h)/2 : 0;
1820 dc.DrawText( item->GetText(),
1821 (wxCoord)(image_w + item->GetX()),
1822 (wxCoord)(item->GetY() + extraH));
ef44a621 1823
eff869aa
RR
1824 // restore normal font
1825 dc.SetFont( m_normalFont );
ef44a621
VZ
1826}
1827
91b8de8d 1828// Now y stands for the top of the item, whereas it used to stand for middle !
941830cb 1829void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y )
c801d85f 1830{
b77d9650 1831 int x = (level+1)*m_indent;
389cdc7a 1832
b77d9650 1833 item->SetX( x+m_spacing );
91b8de8d 1834 item->SetY( y );
4c681997 1835
bbe0af5b 1836 int oldY = y;
91b8de8d
RR
1837 y+=GetLineHeight(item)/2;
1838
b77d9650 1839 item->SetCross( x, y );
389cdc7a 1840
bbe0af5b 1841 int exposed_x = dc.LogicalToDeviceX( 0 );
5391f772 1842 int exposed_y = dc.LogicalToDeviceY( item->GetY() );
4832f7c0 1843
87dde0b5 1844 bool drawLines = (!HasFlag(wxTR_NO_LINES) && !HasFlag(wxTR_MAC_BUTTONS));
233058c7 1845
5391f772 1846 if (IsExposed( exposed_x, exposed_y, 10000, GetLineHeight(item) )) // 10000 = very much
bbe0af5b 1847 {
b77d9650
RR
1848 int startX = x - m_indent;
1849 int endX = x-5;
29d87bba 1850
bbe0af5b 1851 if (!item->HasChildren()) endX += 20;
c22886bd
RR
1852
1853 if (HasFlag( wxTR_MAC_BUTTONS ))
b77d9650 1854 {
c22886bd
RR
1855 if (item->HasPlus())
1856 {
1857 dc.SetPen( *wxBLACK_PEN );
1858 dc.SetBrush( *m_hilightBrush );
1859
1860 wxPoint button[3];
c22886bd
RR
1861
1862 if (item->IsExpanded())
1863 {
1864 button[0].x = x-5;
1865 button[0].y = y-2;
1866 button[1].x = x+5;
1867 button[1].y = y-2;
1868 button[2].x = x;
1869 button[2].y = y+3;
1870 }
1871 else
1872 {
1873 button[0].y = y-5;
1874 button[0].x = x-2;
1875 button[1].y = y+5;
1876 button[1].x = x-2;
1877 button[2].y = y;
1878 button[2].x = x+3;
1879 }
1880 dc.DrawPolygon( 3, button );
1881
1882 dc.SetPen( m_dottedPen );
1883 }
1884 }
1885 else
bbe0af5b 1886 {
233058c7 1887 if (drawLines)
c22886bd 1888 dc.DrawLine( startX, y, endX, y );
9dfbf520 1889
c22886bd
RR
1890 if (item->HasPlus())
1891 {
1892 if (drawLines)
b77d9650 1893 dc.DrawLine( x+5, y, x+15, y );
c22886bd
RR
1894 dc.SetPen( *wxGREY_PEN );
1895 dc.SetBrush( *wxWHITE_BRUSH );
b77d9650 1896 dc.DrawRectangle( x-5, y-4, 11, 9 );
c22886bd
RR
1897
1898 dc.SetPen( *wxBLACK_PEN );
b77d9650 1899 dc.DrawLine( x-2, y, x+3, y );
c22886bd 1900 if (!item->IsExpanded())
b77d9650 1901 dc.DrawLine( x, y-2, x, y+3 );
c22886bd
RR
1902 dc.SetPen( m_dottedPen );
1903 }
bbe0af5b 1904 }
c801d85f 1905
9ec64fa7 1906 wxPen *pen = wxTRANSPARENT_PEN;
9ec64fa7 1907 wxColour colText;
a367b9b3 1908
9ec64fa7
VZ
1909 if ( item->IsSelected() )
1910 {
1911 colText = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT );
4832f7c0 1912
9ec64fa7
VZ
1913 if ( m_hasFocus )
1914 pen = wxBLACK_PEN;
f135ff73 1915
bbe0af5b
RR
1916 }
1917 else
1918 {
9ec64fa7
VZ
1919 wxTreeItemAttr *attr = item->GetAttributes();
1920 if ( attr && attr->HasTextColour() )
1921 colText = attr->GetTextColour();
1922 else
37d403aa 1923 colText = wxSystemSettings::GetSystemColour( wxSYS_COLOUR_WINDOWTEXT );
bbe0af5b 1924 }
9ec64fa7
VZ
1925
1926 // prepare to draw
1927 dc.SetTextForeground(colText);
1928 dc.SetPen(*pen);
9ec64fa7
VZ
1929
1930 // draw
1931 PaintItem(item, dc);
1932
b77d9650
RR
1933 if (HasFlag( wxTR_ROW_LINES ))
1934 {
1935 dc.SetPen( *wxWHITE_PEN );
1936 dc.DrawLine( 0, oldY, 10000, oldY );
1937 dc.DrawLine( 0, oldY + GetLineHeight(item), 10000, oldY + GetLineHeight(item) );
1938 }
1939
9ec64fa7
VZ
1940 // restore DC objects
1941 dc.SetBrush( *wxWHITE_BRUSH );
1942 dc.SetPen( m_dottedPen );
1943 dc.SetTextForeground( *wxBLACK );
f135ff73 1944 }
d3a9f4af 1945
91b8de8d 1946 y = oldY+GetLineHeight(item);
e2414cbe 1947
bbe0af5b
RR
1948 if (item->IsExpanded())
1949 {
91b8de8d 1950 oldY+=GetLineHeight(item)/2;
9ec64fa7 1951 int semiOldY=0;
389cdc7a 1952
91b8de8d
RR
1953 wxArrayGenericTreeItems& children = item->GetChildren();
1954 size_t n, count = children.Count();
1955 for ( n = 0; n < count; ++n )
c193b707
VZ
1956 {
1957 semiOldY=y;
1958 PaintLevel( children[n], dc, level+1, y );
1959 }
389cdc7a 1960
f65635b5
VZ
1961 // it may happen that the item is expanded but has no items (when you
1962 // delete all its children for example) - don't draw the vertical line
1963 // in this case
1964 if (count > 0)
9ec64fa7 1965 {
c193b707 1966 semiOldY+=GetLineHeight(children[--n])/2;
233058c7 1967 if (drawLines)
b77d9650 1968 dc.DrawLine( x, oldY+5, x, semiOldY );
9ec64fa7 1969 }
bbe0af5b 1970 }
4c681997 1971}
c801d85f 1972
941830cb 1973void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem *item)
3dbeaa52
VZ
1974{
1975 if ( item )
1976 {
1977 if ( item->HasPlus() )
1978 {
1979 // it's a folder, indicate it by a border
1980 DrawBorder(item);
1981 }
1982 else
1983 {
1984 // draw a line under the drop target because the item will be
1985 // dropped there
1986 DrawLine(item, TRUE /* below */);
1987 }
1988
1989 SetCursor(wxCURSOR_BULLSEYE);
1990 }
1991 else
1992 {
1993 // can't drop here
1994 SetCursor(wxCURSOR_NO_ENTRY);
1995 }
1996}
1997
941830cb 1998void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId &item)
91b8de8d 1999{
941830cb 2000 wxCHECK_RET( item.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
91b8de8d 2001
941830cb 2002 wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
91b8de8d 2003
1044a386 2004 wxClientDC dc(this);
91b8de8d
RR
2005 PrepareDC( dc );
2006 dc.SetLogicalFunction(wxINVERT);
3dbeaa52 2007 dc.SetBrush(*wxTRANSPARENT_BRUSH);
91b8de8d 2008
3dbeaa52
VZ
2009 int w = i->GetWidth() + 2;
2010 int h = GetLineHeight(i) + 2;
91b8de8d 2011
3dbeaa52 2012 dc.DrawRectangle( i->GetX() - 1, i->GetY() - 1, w, h);
91b8de8d
RR
2013}
2014
941830cb 2015void wxGenericTreeCtrl::DrawLine(const wxTreeItemId &item, bool below)
91b8de8d 2016{
941830cb 2017 wxCHECK_RET( item.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
91b8de8d 2018
941830cb 2019 wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
91b8de8d 2020
1044a386 2021 wxClientDC dc(this);
91b8de8d
RR
2022 PrepareDC( dc );
2023 dc.SetLogicalFunction(wxINVERT);
d3a9f4af 2024
3dbeaa52
VZ
2025 int x = i->GetX(),
2026 y = i->GetY();
2027 if ( below )
2028 {
2029 y += GetLineHeight(i) - 1;
2030 }
91b8de8d 2031
3dbeaa52 2032 dc.DrawLine( x, y, x + i->GetWidth(), y);
91b8de8d
RR
2033}
2034
f135ff73
VZ
2035// -----------------------------------------------------------------------------
2036// wxWindows callbacks
2037// -----------------------------------------------------------------------------
2038
941830cb 2039void wxGenericTreeCtrl::OnPaint( wxPaintEvent &WXUNUSED(event) )
c801d85f 2040{
0659e7ee
RR
2041 wxPaintDC dc(this);
2042 PrepareDC( dc );
29d87bba 2043
941830cb
JS
2044 if ( !m_anchor)
2045 return;
2046
eff869aa 2047 dc.SetFont( m_normalFont );
0659e7ee 2048 dc.SetPen( m_dottedPen );
f38374d0 2049
eff869aa 2050 // this is now done dynamically
91b8de8d
RR
2051 //if(GetImageList() == NULL)
2052 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
29d87bba 2053
91b8de8d 2054 int y = 2;
0659e7ee 2055 PaintLevel( m_anchor, dc, 0, y );
edaa81ae 2056}
c801d85f 2057
941830cb 2058void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent &WXUNUSED(event) )
c801d85f 2059{
0659e7ee 2060 m_hasFocus = TRUE;
978f38c2 2061
bbe0af5b 2062 if (m_current) RefreshLine( m_current );
edaa81ae 2063}
c801d85f 2064
941830cb 2065void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent &WXUNUSED(event) )
c801d85f 2066{
0659e7ee 2067 m_hasFocus = FALSE;
978f38c2 2068
bbe0af5b 2069 if (m_current) RefreshLine( m_current );
edaa81ae 2070}
c801d85f 2071
941830cb 2072void wxGenericTreeCtrl::OnChar( wxKeyEvent &event )
c801d85f 2073{
978f38c2 2074 wxTreeEvent te( wxEVT_COMMAND_TREE_KEY_DOWN, GetId() );
06b466c7 2075 te.m_code = (int)event.KeyCode();
978f38c2
VZ
2076 te.SetEventObject( this );
2077 GetEventHandler()->ProcessEvent( te );
435fe83e 2078
91b8de8d 2079 if ( (m_current == 0) || (m_key_current == 0) )
978f38c2
VZ
2080 {
2081 event.Skip();
2082 return;
2083 }
ef44a621 2084
06b466c7
VZ
2085 // how should the selection work for this event?
2086 bool is_multiple, extended_select, unselect_others;
2087 EventFlagsToSelType(GetWindowStyleFlag(),
2088 event.ShiftDown(),
2089 event.ControlDown(),
dfc6cd93
SB
2090 is_multiple, extended_select, unselect_others);
2091
2092 // + : Expand
2093 // - : Collaspe
f6bcfd97 2094 // * : Expand all/Collapse all
dfc6cd93
SB
2095 // ' ' | return : activate
2096 // up : go up (not last children!)
2097 // down : go down
2098 // left : go to parent
2099 // right : open if parent and go next
2100 // home : go to root
2101 // end : go to last item without opening parents
978f38c2
VZ
2102 switch (event.KeyCode())
2103 {
2104 case '+':
2105 case WXK_ADD:
2106 if (m_current->HasPlus() && !IsExpanded(m_current))
2107 {
2108 Expand(m_current);
2109 }
2110 break;
ef44a621 2111
f6bcfd97
BP
2112 case '*':
2113 case WXK_MULTIPLY:
2114 if ( !IsExpanded(m_current) )
2115 {
2116 // expand all
2117 ExpandAll(m_current);
2118 break;
2119 }
2120 //else: fall through to Collapse() it
2121
978f38c2
VZ
2122 case '-':
2123 case WXK_SUBTRACT:
2124 if (IsExpanded(m_current))
2125 {
2126 Collapse(m_current);
2127 }
2128 break;
ef44a621 2129
978f38c2
VZ
2130 case ' ':
2131 case WXK_RETURN:
2132 {
2133 wxTreeEvent event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() );
40fab78b 2134 event.m_item = (long) m_current;
978f38c2
VZ
2135 event.m_code = 0;
2136 event.SetEventObject( this );
2137 GetEventHandler()->ProcessEvent( event );
2138 }
2139 break;
ef44a621 2140
978f38c2
VZ
2141 // up goes to the previous sibling or to the last of its children if
2142 // it's expanded
2143 case WXK_UP:
2144 {
91b8de8d 2145 wxTreeItemId prev = GetPrevSibling( m_key_current );
978f38c2
VZ
2146 if (!prev)
2147 {
91b8de8d 2148 prev = GetParent( m_key_current );
c193b707
VZ
2149 if (prev)
2150 {
90e58684 2151 long cockie = 0;
91b8de8d 2152 wxTreeItemId current = m_key_current;
90e58684
RR
2153 if (current == GetFirstChild( prev, cockie ))
2154 {
2155 // otherwise we return to where we came from
88ac883a 2156 SelectItem( prev, unselect_others, extended_select );
941830cb 2157 m_key_current= (wxGenericTreeItem*) prev.m_pItem;
c193b707 2158 EnsureVisible( prev );
90e58684 2159 break;
c193b707 2160 }
978f38c2
VZ
2161 }
2162 }
2163 if (prev)
2164 {
69a282d4 2165 while ( IsExpanded(prev) && HasChildren(prev) )
978f38c2 2166 {
69a282d4
VZ
2167 wxTreeItemId child = GetLastChild(prev);
2168 if ( child )
2169 {
2170 prev = child;
2171 }
978f38c2 2172 }
69a282d4 2173
88ac883a 2174 SelectItem( prev, unselect_others, extended_select );
941830cb 2175 m_key_current=(wxGenericTreeItem*) prev.m_pItem;
978f38c2
VZ
2176 EnsureVisible( prev );
2177 }
2178 }
2179 break;
ef44a621 2180
978f38c2
VZ
2181 // left arrow goes to the parent
2182 case WXK_LEFT:
2183 {
2184 wxTreeItemId prev = GetParent( m_current );
2185 if (prev)
2186 {
2187 EnsureVisible( prev );
88ac883a 2188 SelectItem( prev, unselect_others, extended_select );
978f38c2
VZ
2189 }
2190 }
2191 break;
ef44a621 2192
978f38c2
VZ
2193 case WXK_RIGHT:
2194 // this works the same as the down arrow except that we also expand the
2195 // item if it wasn't expanded yet
2196 Expand(m_current);
2197 // fall through
2198
2199 case WXK_DOWN:
ef44a621 2200 {
91b8de8d 2201 if (IsExpanded(m_key_current) && HasChildren(m_key_current))
978f38c2
VZ
2202 {
2203 long cookie = 0;
91b8de8d 2204 wxTreeItemId child = GetFirstChild( m_key_current, cookie );
88ac883a 2205 SelectItem( child, unselect_others, extended_select );
941830cb 2206 m_key_current=(wxGenericTreeItem*) child.m_pItem;
978f38c2
VZ
2207 EnsureVisible( child );
2208 }
2209 else
2210 {
91b8de8d 2211 wxTreeItemId next = GetNextSibling( m_key_current );
b62c3631 2212 if (!next)
978f38c2 2213 {
91b8de8d 2214 wxTreeItemId current = m_key_current;
978f38c2
VZ
2215 while (current && !next)
2216 {
2217 current = GetParent( current );
2218 if (current) next = GetNextSibling( current );
2219 }
2220 }
b62c3631 2221 if (next)
978f38c2 2222 {
88ac883a 2223 SelectItem( next, unselect_others, extended_select );
941830cb 2224 m_key_current=(wxGenericTreeItem*) next.m_pItem;
978f38c2
VZ
2225 EnsureVisible( next );
2226 }
2227 }
ef44a621 2228 }
978f38c2 2229 break;
ef44a621 2230
978f38c2
VZ
2231 // <End> selects the last visible tree item
2232 case WXK_END:
2233 {
2234 wxTreeItemId last = GetRootItem();
2235
2236 while ( last.IsOk() && IsExpanded(last) )
2237 {
2238 wxTreeItemId lastChild = GetLastChild(last);
2239
2240 // it may happen if the item was expanded but then all of
2241 // its children have been deleted - so IsExpanded() returned
2242 // TRUE, but GetLastChild() returned invalid item
2243 if ( !lastChild )
2244 break;
2245
2246 last = lastChild;
2247 }
2248
2249 if ( last.IsOk() )
2250 {
2251 EnsureVisible( last );
88ac883a 2252 SelectItem( last, unselect_others, extended_select );
978f38c2
VZ
2253 }
2254 }
2255 break;
2256
2257 // <Home> selects the root item
2258 case WXK_HOME:
2259 {
2260 wxTreeItemId prev = GetRootItem();
2261 if (prev)
2262 {
2263 EnsureVisible( prev );
88ac883a 2264 SelectItem( prev, unselect_others, extended_select );
978f38c2
VZ
2265 }
2266 }
2267 break;
2268
2269 default:
2270 event.Skip();
2271 }
edaa81ae 2272}
c801d85f 2273
941830cb 2274wxTreeItemId wxGenericTreeCtrl::HitTest(const wxPoint& point, int& flags)
4f22cf8d 2275{
dc6c62a9
RR
2276 // We have to call this here because the label in
2277 // question might just have been added and no screen
2278 // update taken place.
3d5aff50
JS
2279 // JACS: removed this because the yield can cause the window to be
2280 // deleted from under us if a close window event is pending
2281 // if (m_dirty) wxYieldIfNeeded();
dc6c62a9 2282
67a7abf7
VZ
2283 wxClientDC dc(this);
2284 PrepareDC(dc);
06b466c7
VZ
2285 wxCoord x = dc.DeviceToLogicalX( point.x );
2286 wxCoord y = dc.DeviceToLogicalY( point.y );
91b8de8d
RR
2287 int w, h;
2288 GetSize(&w, &h);
2289
2290 flags=0;
2291 if (point.x<0) flags|=wxTREE_HITTEST_TOLEFT;
2292 if (point.x>w) flags|=wxTREE_HITTEST_TORIGHT;
2293 if (point.y<0) flags|=wxTREE_HITTEST_ABOVE;
2294 if (point.y>h) flags|=wxTREE_HITTEST_BELOW;
d3a9f4af 2295
c3c979c7
JS
2296 if (m_anchor)
2297 return m_anchor->HitTest( wxPoint(x, y), this, flags);
2298 else
2299 return wxTreeItemId();
4f22cf8d
RR
2300}
2301
8fb3bfe2
JS
2302// get the bounding rectangle of the item (or of its label only)
2303bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId& item,
2304 wxRect& rect,
33ac7e6f 2305 bool WXUNUSED(textOnly)) const
8fb3bfe2 2306{
601c163b 2307 wxCHECK_MSG( item.IsOk(), FALSE, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
8fb3bfe2
JS
2308
2309 wxGenericTreeItem *i = (wxGenericTreeItem*) item.m_pItem;
2310
2311 int startX, startY;
2312 GetViewStart(& startX, & startY);
2313
1ed01484 2314 rect.x = i->GetX() - startX*PIXELS_PER_UNIT;
c22886bd 2315 rect.y = i->GetY() - startY*PIXELS_PER_UNIT;
1ed01484 2316 rect.width = i->GetWidth();
c22886bd
RR
2317 //rect.height = i->GetHeight();
2318 rect.height = GetLineHeight(i);
8fb3bfe2
JS
2319
2320 return TRUE;
8fb3bfe2
JS
2321}
2322
e179bd65
RR
2323/* **** */
2324
941830cb 2325void wxGenericTreeCtrl::Edit( const wxTreeItemId& item )
e179bd65
RR
2326{
2327 if (!item.IsOk()) return;
2328
941830cb 2329 m_currentEdit = (wxGenericTreeItem*) item.m_pItem;
9dfbf520 2330
e179bd65 2331 wxTreeEvent te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, GetId() );
40fab78b 2332 te.m_item = (long) m_currentEdit;
e179bd65
RR
2333 te.SetEventObject( this );
2334 GetEventHandler()->ProcessEvent( te );
2335
2336 if (!te.IsAllowed()) return;
8dc99046 2337
dc6c62a9
RR
2338 // We have to call this here because the label in
2339 // question might just have been added and no screen
2340 // update taken place.
cd66f45b 2341 if (m_dirty) wxYieldIfNeeded();
9dfbf520 2342
e179bd65
RR
2343 wxString s = m_currentEdit->GetText();
2344 int x = m_currentEdit->GetX();
2345 int y = m_currentEdit->GetY();
2346 int w = m_currentEdit->GetWidth();
2347 int h = m_currentEdit->GetHeight();
9dfbf520 2348
5f1ea0ee
RR
2349 int image_h = 0;
2350 int image_w = 0;
8dc99046
VZ
2351
2352 int image = m_currentEdit->GetCurrentImage();
2353 if ( image != NO_IMAGE )
5f1ea0ee 2354 {
2c8e4738
VZ
2355 if ( m_imageListNormal )
2356 {
2357 m_imageListNormal->GetSize( image, image_w, image_h );
2358 image_w += 4;
2359 }
6359fa0e 2360 else
2c8e4738
VZ
2361 {
2362 wxFAIL_MSG(_T("you must create an image list to use images!"));
2363 }
5f1ea0ee
RR
2364 }
2365 x += image_w;
2366 w -= image_w + 4; // I don't know why +4 is needed
e179bd65
RR
2367
2368 wxClientDC dc(this);
2369 PrepareDC( dc );
2370 x = dc.LogicalToDeviceX( x );
2371 y = dc.LogicalToDeviceY( y );
2372
6359fa0e
VZ
2373 wxTreeTextCtrl *text = new wxTreeTextCtrl(this, -1,
2374 &m_renameAccept,
2375 &m_renameRes,
2376 this,
2377 s,
2378 wxPoint(x-4,y-4),
2379 wxSize(w+11,h+8));
e179bd65
RR
2380 text->SetFocus();
2381}
2382
941830cb 2383void wxGenericTreeCtrl::OnRenameTimer()
e179bd65
RR
2384{
2385 Edit( m_current );
2386}
2387
941830cb 2388void wxGenericTreeCtrl::OnRenameAccept()
e179bd65
RR
2389{
2390 wxTreeEvent le( wxEVT_COMMAND_TREE_END_LABEL_EDIT, GetId() );
40fab78b 2391 le.m_item = (long) m_currentEdit;
e179bd65
RR
2392 le.SetEventObject( this );
2393 le.m_label = m_renameRes;
2394 GetEventHandler()->ProcessEvent( le );
9dfbf520 2395
e179bd65 2396 if (!le.IsAllowed()) return;
9dfbf520 2397
5f1ea0ee 2398 SetItemText( m_currentEdit, m_renameRes );
e179bd65 2399}
9dfbf520 2400
941830cb 2401void wxGenericTreeCtrl::OnMouse( wxMouseEvent &event )
c801d85f 2402{
bbe0af5b 2403 if ( !m_anchor ) return;
978f38c2 2404
3dbeaa52
VZ
2405 // we process left mouse up event (enables in-place edit), right down
2406 // (pass to the user code), left dbl click (activate item) and
2407 // dragging/moving events for items drag-and-drop
f6bcfd97
BP
2408 if ( !(event.LeftDown() ||
2409 event.LeftUp() ||
3dbeaa52
VZ
2410 event.RightDown() ||
2411 event.LeftDClick() ||
2412 event.Dragging() ||
2413 ((event.Moving() || event.RightUp()) && m_isDragging)) )
2414 {
2415 event.Skip();
2416
2417 return;
2418 }
2419
bbe0af5b
RR
2420 wxClientDC dc(this);
2421 PrepareDC(dc);
06b466c7
VZ
2422 wxCoord x = dc.DeviceToLogicalX( event.GetX() );
2423 wxCoord y = dc.DeviceToLogicalY( event.GetY() );
29d87bba 2424
3dbeaa52 2425 int flags = 0;
91b8de8d 2426 wxGenericTreeItem *item = m_anchor->HitTest( wxPoint(x,y), this, flags);
3dbeaa52 2427
3dbeaa52 2428 if ( event.Dragging() && !m_isDragging )
bbe0af5b 2429 {
fd9811b1 2430 if (m_dragCount == 0)
8dc99046
VZ
2431 m_dragStart = wxPoint(x,y);
2432
fd9811b1 2433 m_dragCount++;
8dc99046 2434
3dbeaa52
VZ
2435 if (m_dragCount != 3)
2436 {
2437 // wait until user drags a bit further...
2438 return;
2439 }
8dc99046 2440
3dbeaa52
VZ
2441 wxEventType command = event.RightIsDown()
2442 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2443 : wxEVT_COMMAND_TREE_BEGIN_DRAG;
8dc99046 2444
fd9811b1 2445 wxTreeEvent nevent( command, GetId() );
40fab78b 2446 nevent.m_item = (long) m_current;
fd9811b1 2447 nevent.SetEventObject(this);
3dbeaa52
VZ
2448
2449 // by default the dragging is not supported, the user code must
2450 // explicitly allow the event for it to take place
2451 nevent.Veto();
2452
2453 if ( GetEventHandler()->ProcessEvent(nevent) && nevent.IsAllowed() )
2454 {
2455 // we're going to drag this item
2456 m_isDragging = TRUE;
2457
b3a7510d
VZ
2458 // remember the old cursor because we will change it while
2459 // dragging
2460 m_oldCursor = m_cursor;
2461
2462 // in a single selection control, hide the selection temporarily
2463 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE) )
2464 {
941830cb 2465 m_oldSelection = (wxGenericTreeItem*) GetSelection().m_pItem;
b3a7510d
VZ
2466
2467 if ( m_oldSelection )
2468 {
2469 m_oldSelection->SetHilight(FALSE);
2470 RefreshLine(m_oldSelection);
2471 }
2472 }
2473
3dbeaa52
VZ
2474 CaptureMouse();
2475 }
bbe0af5b 2476 }
3dbeaa52 2477 else if ( event.Moving() )
fd9811b1 2478 {
3dbeaa52
VZ
2479 if ( item != m_dropTarget )
2480 {
2481 // unhighlight the previous drop target
2482 DrawDropEffect(m_dropTarget);
fd9811b1 2483
3dbeaa52 2484 m_dropTarget = item;
978f38c2 2485
3dbeaa52
VZ
2486 // highlight the current drop target if any
2487 DrawDropEffect(m_dropTarget);
fb882e1c 2488
cd66f45b 2489 wxYieldIfNeeded();
3dbeaa52 2490 }
e179bd65 2491 }
3dbeaa52
VZ
2492 else if ( (event.LeftUp() || event.RightUp()) && m_isDragging )
2493 {
2494 // erase the highlighting
2495 DrawDropEffect(m_dropTarget);
9dfbf520 2496
3dbeaa52
VZ
2497 // generate the drag end event
2498 wxTreeEvent event(wxEVT_COMMAND_TREE_END_DRAG, GetId());
88ac883a 2499
40fab78b 2500 event.m_item = (long) item;
3dbeaa52
VZ
2501 event.m_pointDrag = wxPoint(x, y);
2502 event.SetEventObject(this);
91b8de8d 2503
3dbeaa52 2504 (void)GetEventHandler()->ProcessEvent(event);
29d87bba 2505
3dbeaa52
VZ
2506 m_isDragging = FALSE;
2507 m_dropTarget = (wxGenericTreeItem *)NULL;
2508
b3a7510d
VZ
2509 if ( m_oldSelection )
2510 {
2511 m_oldSelection->SetHilight(TRUE);
2512 RefreshLine(m_oldSelection);
2513 m_oldSelection = (wxGenericTreeItem *)NULL;
2514 }
2515
3dbeaa52
VZ
2516 ReleaseMouse();
2517
b3a7510d 2518 SetCursor(m_oldCursor);
3dbeaa52 2519
cd66f45b 2520 wxYieldIfNeeded();
3dbeaa52
VZ
2521 }
2522 else
bbe0af5b 2523 {
3dbeaa52
VZ
2524 // here we process only the messages which happen on tree items
2525
2526 m_dragCount = 0;
2527
2528 if (item == NULL) return; /* we hit the blank area */
2529
2530 if ( event.RightDown() )
2531 {
2532 wxTreeEvent nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, GetId());
40fab78b 2533 nevent.m_item = (long) item;
3dbeaa52 2534 nevent.m_code = 0;
05a7f61d
VZ
2535 CalcScrolledPosition(x, y,
2536 &nevent.m_pointDrag.x,
2537 &nevent.m_pointDrag.y);
3dbeaa52
VZ
2538 nevent.SetEventObject(this);
2539 GetEventHandler()->ProcessEvent(nevent);
2540 }
80d2803f 2541 else if ( event.LeftUp() )
f6bcfd97 2542 {
80d2803f 2543 if ( m_lastOnSame )
f6bcfd97 2544 {
80d2803f
VZ
2545 if ( (item == m_current) &&
2546 (flags & wxTREE_HITTEST_ONITEMLABEL) &&
2547 HasFlag(wxTR_EDIT_LABELS) )
2548 {
bdb310a7
VZ
2549 if ( m_renameTimer->IsRunning() )
2550 m_renameTimer->Stop();
2551
80d2803f
VZ
2552 m_renameTimer->Start( 100, TRUE );
2553 }
f6bcfd97 2554
80d2803f
VZ
2555 m_lastOnSame = FALSE;
2556 }
3dbeaa52 2557 }
0326c494 2558 else // !RightDown() && !LeftUp() ==> LeftDown() || LeftDClick()
3dbeaa52 2559 {
f6bcfd97
BP
2560 if ( event.LeftDown() )
2561 {
2562 m_lastOnSame = item == m_current;
2563 }
2564
0326c494
VZ
2565 if ( flags & wxTREE_HITTEST_ONITEMBUTTON )
2566 {
2567 // only toggle the item for a single click, double click on
2568 // the button doesn't do anything (it toggles the item twice)
2569 if ( event.LeftDown() )
2570 {
2571 Toggle( item );
2572 }
2573
2574 // don't select the item if the button was clicked
2575 return;
2576 }
2577
3dbeaa52
VZ
2578 // how should the selection work for this event?
2579 bool is_multiple, extended_select, unselect_others;
2580 EventFlagsToSelType(GetWindowStyleFlag(),
2581 event.ShiftDown(),
2582 event.ControlDown(),
dfc6cd93 2583 is_multiple, extended_select, unselect_others);
3dbeaa52 2584
3dbeaa52
VZ
2585 SelectItem(item, unselect_others, extended_select);
2586
2587 if ( event.LeftDClick() )
2588 {
f6bcfd97
BP
2589 // double clicking should not start editing the item label
2590 m_renameTimer->Stop();
2591 m_lastOnSame = FALSE;
2592
3dbeaa52 2593 wxTreeEvent nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, GetId() );
40fab78b 2594 nevent.m_item = (long) item;
3dbeaa52 2595 nevent.m_code = 0;
05a7f61d
VZ
2596 CalcScrolledPosition(x, y,
2597 &nevent.m_pointDrag.x,
2598 &nevent.m_pointDrag.y);
3dbeaa52
VZ
2599 nevent.SetEventObject( this );
2600 GetEventHandler()->ProcessEvent( nevent );
2601 }
2602 }
bbe0af5b 2603 }
edaa81ae 2604}
c801d85f 2605
941830cb 2606void wxGenericTreeCtrl::OnIdle( wxIdleEvent &WXUNUSED(event) )
3db7be80 2607{
bbe0af5b
RR
2608 /* after all changes have been done to the tree control,
2609 * we actually redraw the tree when everything is over */
ef44a621 2610
f65635b5
VZ
2611 if (!m_dirty)
2612 return;
ef44a621 2613
bbe0af5b 2614 m_dirty = FALSE;
3db7be80 2615
bbe0af5b 2616 CalculatePositions();
91b8de8d 2617 Refresh();
bbe0af5b 2618 AdjustMyScrollbars();
3db7be80
RR
2619}
2620
941830cb 2621void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem *item, wxDC &dc )
d3a9f4af 2622{
e06b9569
JS
2623 wxCoord text_w = 0;
2624 wxCoord text_h = 0;
9dfbf520 2625
a62867a5 2626 if (item->IsBold())
eff869aa 2627 dc.SetFont(m_boldFont);
9dfbf520 2628
91b8de8d 2629 dc.GetTextExtent( item->GetText(), &text_w, &text_h );
a62867a5 2630 text_h+=2;
91b8de8d 2631
eff869aa
RR
2632 // restore normal font
2633 dc.SetFont( m_normalFont );
9dfbf520 2634
91b8de8d
RR
2635 int image_h = 0;
2636 int image_w = 0;
8dc99046
VZ
2637 int image = item->GetCurrentImage();
2638 if ( image != NO_IMAGE )
91b8de8d 2639 {
2c8e4738
VZ
2640 if ( m_imageListNormal )
2641 {
2642 m_imageListNormal->GetSize( image, image_w, image_h );
2643 image_w += 4;
2644 }
91b8de8d
RR
2645 }
2646
2647 int total_h = (image_h > text_h) ? image_h : text_h;
2648
06b466c7 2649 if (total_h < 40)
f2593d0d 2650 total_h += 2; // at least 2 pixels
06b466c7 2651 else
f2593d0d 2652 total_h += total_h/10; // otherwise 10% extra spacing
91b8de8d
RR
2653
2654 item->SetHeight(total_h);
6cedba09
VZ
2655 if (total_h>m_lineHeight)
2656 m_lineHeight=total_h;
bbe0af5b 2657
91b8de8d
RR
2658 item->SetWidth(image_w+text_w+2);
2659}
2660
2661// -----------------------------------------------------------------------------
2662// for developper : y is now the top of the level
2663// not the middle of it !
941830cb 2664void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem *item, wxDC &dc, int level, int &y )
c801d85f 2665{
bbe0af5b 2666 int horizX = level*m_indent;
389cdc7a 2667
91b8de8d 2668 CalculateSize( item, dc );
d3a9f4af 2669
91b8de8d 2670 // set its position
cf724bce 2671 item->SetX( horizX+m_indent+m_spacing );
91b8de8d
RR
2672 item->SetY( y );
2673 y+=GetLineHeight(item);
4c681997 2674
bbe0af5b
RR
2675 if ( !item->IsExpanded() )
2676 {
f65635b5 2677 // we dont need to calculate collapsed branches
bbe0af5b
RR
2678 return;
2679 }
389cdc7a 2680
91b8de8d
RR
2681 wxArrayGenericTreeItems& children = item->GetChildren();
2682 size_t n, count = children.Count();
2683 for (n = 0; n < count; ++n )
f2593d0d 2684 CalculateLevel( children[n], dc, level+1, y ); // recurse
edaa81ae 2685}
c801d85f 2686
941830cb 2687void wxGenericTreeCtrl::CalculatePositions()
c801d85f 2688{
bbe0af5b 2689 if ( !m_anchor ) return;
29d87bba 2690
bbe0af5b
RR
2691 wxClientDC dc(this);
2692 PrepareDC( dc );
29d87bba 2693
eff869aa 2694 dc.SetFont( m_normalFont );
29d87bba 2695
bbe0af5b 2696 dc.SetPen( m_dottedPen );
91b8de8d
RR
2697 //if(GetImageList() == NULL)
2698 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
29d87bba 2699
8dc99046 2700 int y = 2;
f65635b5 2701 CalculateLevel( m_anchor, dc, 0, y ); // start recursion
edaa81ae 2702}
c801d85f 2703
941830cb 2704void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem *item)
c801d85f 2705{
e6527f9d
RR
2706 if (m_dirty) return;
2707
bbe0af5b
RR
2708 wxClientDC dc(this);
2709 PrepareDC(dc);
4832f7c0 2710
bbe0af5b
RR
2711 int cw = 0;
2712 int ch = 0;
2713 GetClientSize( &cw, &ch );
4832f7c0 2714
bbe0af5b
RR
2715 wxRect rect;
2716 rect.x = dc.LogicalToDeviceX( 0 );
2717 rect.width = cw;
2718 rect.y = dc.LogicalToDeviceY( item->GetY() );
2719 rect.height = ch;
f135ff73 2720
bbe0af5b 2721 Refresh( TRUE, &rect );
f135ff73 2722
bbe0af5b 2723 AdjustMyScrollbars();
edaa81ae 2724}
c801d85f 2725
941830cb 2726void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem *item )
c801d85f 2727{
e6527f9d
RR
2728 if (m_dirty) return;
2729
bbe0af5b
RR
2730 wxClientDC dc(this);
2731 PrepareDC( dc );
2732
5391f772
SB
2733 int cw = 0;
2734 int ch = 0;
2735 GetClientSize( &cw, &ch );
2736
bbe0af5b 2737 wxRect rect;
5391f772
SB
2738 rect.x = dc.LogicalToDeviceX( 0 );
2739 rect.y = dc.LogicalToDeviceY( item->GetY() );
2740 rect.width = cw;
91b8de8d 2741 rect.height = GetLineHeight(item); //dc.GetCharHeight() + 6;
978f38c2 2742
bbe0af5b 2743 Refresh( TRUE, &rect );
edaa81ae 2744}
c801d85f 2745
1e6feb95 2746#endif // wxUSE_TREECTRL