1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: generic tree control implementation
4 // Author: Robert Roebling
6 // Modified: 22/10/98 - almost total rewrite, simpler interface (VZ)
8 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // =============================================================================
14 // =============================================================================
16 // -----------------------------------------------------------------------------
18 // -----------------------------------------------------------------------------
21 #pragma implementation "treectlg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #include "wx/generic/treectlg.h"
32 #include "wx/imaglist.h"
33 #include "wx/settings.h"
36 #include "wx/dynarray.h"
37 #include "wx/arrimpl.cpp"
38 #include "wx/dcclient.h"
39 #include "wx/msgdlg.h"
41 // -----------------------------------------------------------------------------
43 // -----------------------------------------------------------------------------
45 class WXDLLEXPORT wxGenericTreeItem
;
47 WX_DEFINE_EXPORTED_ARRAY(wxGenericTreeItem
*, wxArrayGenericTreeItems
);
48 //WX_DEFINE_OBJARRAY(wxArrayTreeItemIds);
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 static const int NO_IMAGE
= -1;
56 #define PIXELS_PER_UNIT 10
58 // -----------------------------------------------------------------------------
60 // -----------------------------------------------------------------------------
62 // timer used for enabling in-place edit
63 class WXDLLEXPORT wxTreeRenameTimer
: public wxTimer
66 wxTreeRenameTimer( wxGenericTreeCtrl
*owner
);
71 wxGenericTreeCtrl
*m_owner
;
74 // control used for in-place edit
75 class WXDLLEXPORT wxTreeTextCtrl
: public wxTextCtrl
79 wxTreeTextCtrl( wxWindow
*parent
,
83 wxGenericTreeCtrl
*owner
,
84 const wxString
&value
= wxEmptyString
,
85 const wxPoint
&pos
= wxDefaultPosition
,
86 const wxSize
&size
= wxDefaultSize
,
87 int style
= wxSIMPLE_BORDER
,
88 const wxValidator
& validator
= wxDefaultValidator
,
89 const wxString
&name
= wxTextCtrlNameStr
);
91 void OnChar( wxKeyEvent
&event
);
92 void OnKeyUp( wxKeyEvent
&event
);
93 void OnKillFocus( wxFocusEvent
&event
);
98 wxGenericTreeCtrl
*m_owner
;
99 wxString m_startValue
;
101 DECLARE_EVENT_TABLE()
102 DECLARE_DYNAMIC_CLASS(wxTreeTextCtrl
);
106 class WXDLLEXPORT wxGenericTreeItem
110 wxGenericTreeItem() { m_data
= NULL
; }
111 wxGenericTreeItem( wxGenericTreeItem
*parent
,
112 const wxString
& text
,
114 int image
, int selImage
,
115 wxTreeItemData
*data
);
117 ~wxGenericTreeItem();
120 wxArrayGenericTreeItems
& GetChildren() { return m_children
; }
122 const wxString
& GetText() const { return m_text
; }
123 int GetImage(wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
124 { return m_images
[which
]; }
125 wxTreeItemData
*GetData() const { return m_data
; }
127 // returns the current image for the item (depending on its
128 // selected/expanded/whatever state)
129 int GetCurrentImage() const;
131 void SetText( const wxString
&text
);
132 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
133 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
135 void SetHasPlus(bool has
= TRUE
) { m_hasPlus
= has
; }
137 void SetBold(bool bold
) { m_isBold
= bold
; }
139 int GetX() const { return m_x
; }
140 int GetY() const { return m_y
; }
142 void SetX(int x
) { m_x
= x
; }
143 void SetY(int y
) { m_y
= y
; }
145 int GetHeight() const { return m_height
; }
146 int GetWidth() const { return m_width
; }
148 void SetHeight(int h
) { m_height
= h
; }
149 void SetWidth(int w
) { m_width
= w
; }
152 wxGenericTreeItem
*GetParent() const { return m_parent
; }
155 // deletes all children notifying the treectrl about it if !NULL
157 void DeleteChildren(wxGenericTreeCtrl
*tree
= NULL
);
158 // FIXME don't know what is it for
161 // get count of all children (and grand children if 'recursively')
162 size_t GetChildrenCount(bool recursively
= TRUE
) const;
164 void Insert(wxGenericTreeItem
*child
, size_t index
)
165 { m_children
.Insert(child
, index
); }
167 void SetCross( int x
, int y
);
168 void GetSize( int &x
, int &y
, const wxGenericTreeCtrl
* );
170 // return the item at given position (or NULL if no item), onButton is
171 // TRUE if the point belongs to the item's button, otherwise it lies
172 // on the button's label
173 wxGenericTreeItem
*HitTest( const wxPoint
& point
, const wxGenericTreeCtrl
*, int &flags
);
175 void Expand() { m_isCollapsed
= FALSE
; }
176 void Collapse() { m_isCollapsed
= TRUE
; }
178 void SetHilight( bool set
= TRUE
) { m_hasHilight
= set
; }
181 bool HasChildren() const { return !m_children
.IsEmpty(); }
182 bool IsSelected() const { return m_hasHilight
!= 0; }
183 bool IsExpanded() const { return !m_isCollapsed
; }
184 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
185 bool IsBold() const { return m_isBold
!= 0; }
188 // get them - may be NULL
189 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
190 // get them ensuring that the pointer is not NULL
191 wxTreeItemAttr
& Attr()
194 m_attr
= new wxTreeItemAttr
;
202 // tree ctrl images for the normal, selected, expanded and
203 // expanded+selected states
204 int m_images
[wxTreeItemIcon_Max
];
206 wxTreeItemData
*m_data
;
208 // use bitfields to save size
209 int m_isCollapsed
:1;
210 int m_hasHilight
:1; // same as focused
211 int m_hasPlus
:1; // used for item which doesn't have
212 // children but has a [+] button
213 int m_isBold
:1; // render the label in bold font
216 wxCoord m_height
, m_width
;
217 int m_xCross
, m_yCross
;
220 wxArrayGenericTreeItems m_children
;
221 wxGenericTreeItem
*m_parent
;
223 wxTreeItemAttr
*m_attr
;
226 // =============================================================================
228 // =============================================================================
230 // ----------------------------------------------------------------------------
232 // ----------------------------------------------------------------------------
234 // translate the key or mouse event flags to the type of selection we're
236 static void EventFlagsToSelType(long style
,
240 bool &extended_select
,
241 bool &unselect_others
)
243 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
244 extended_select
= shiftDown
&& is_multiple
;
245 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
248 // -----------------------------------------------------------------------------
249 // wxTreeRenameTimer (internal)
250 // -----------------------------------------------------------------------------
252 wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl
*owner
)
257 void wxTreeRenameTimer::Notify()
259 m_owner
->OnRenameTimer();
262 //-----------------------------------------------------------------------------
263 // wxTreeTextCtrl (internal)
264 //-----------------------------------------------------------------------------
266 IMPLEMENT_DYNAMIC_CLASS(wxTreeTextCtrl
,wxTextCtrl
);
268 BEGIN_EVENT_TABLE(wxTreeTextCtrl
,wxTextCtrl
)
269 EVT_CHAR (wxTreeTextCtrl::OnChar
)
270 EVT_KEY_UP (wxTreeTextCtrl::OnKeyUp
)
271 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus
)
274 wxTreeTextCtrl::wxTreeTextCtrl( wxWindow
*parent
,
278 wxGenericTreeCtrl
*owner
,
279 const wxString
&value
,
283 const wxValidator
& validator
,
284 const wxString
&name
)
285 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
291 (*m_res
) = wxEmptyString
;
292 m_startValue
= value
;
295 void wxTreeTextCtrl::OnChar( wxKeyEvent
&event
)
297 if (event
.m_keyCode
== WXK_RETURN
)
300 (*m_res
) = GetValue();
302 if (!wxPendingDelete
.Member(this))
303 wxPendingDelete
.Append(this);
305 if ((*m_accept
) && ((*m_res
) != m_startValue
))
306 m_owner
->OnRenameAccept();
310 if (event
.m_keyCode
== WXK_ESCAPE
)
315 if (!wxPendingDelete
.Member(this))
316 wxPendingDelete
.Append(this);
323 void wxTreeTextCtrl::OnKeyUp( wxKeyEvent
&event
)
325 // auto-grow the textctrl:
326 wxSize parentSize
= m_owner
->GetSize();
327 wxPoint myPos
= GetPosition();
328 wxSize mySize
= GetSize();
330 GetTextExtent(GetValue() + _T("MM"), &sx
, &sy
);
331 if (myPos
.x
+ sx
> parentSize
.x
) sx
= parentSize
.x
- myPos
.x
;
332 if (mySize
.x
> sx
) sx
= mySize
.x
;
338 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
340 if (!wxPendingDelete
.Member(this))
341 wxPendingDelete
.Append(this);
343 if ((*m_accept
) && ((*m_res
) != m_startValue
))
344 m_owner
->OnRenameAccept();
348 // -----------------------------------------------------------------------------
350 // -----------------------------------------------------------------------------
352 IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent
, wxNotifyEvent
)
354 wxTreeEvent::wxTreeEvent( wxEventType commandType
, int id
)
355 : wxNotifyEvent( commandType
, id
)
358 m_itemOld
= (wxGenericTreeItem
*)NULL
;
362 // -----------------------------------------------------------------------------
364 // -----------------------------------------------------------------------------
366 wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem
*parent
,
367 const wxString
& text
,
369 int image
, int selImage
,
370 wxTreeItemData
*data
)
373 m_images
[wxTreeItemIcon_Normal
] = image
;
374 m_images
[wxTreeItemIcon_Selected
] = selImage
;
375 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
376 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
380 m_xCross
= m_yCross
= 0;
384 m_isCollapsed
= TRUE
;
385 m_hasHilight
= FALSE
;
391 m_attr
= (wxTreeItemAttr
*)NULL
;
393 // We don't know the height here yet.
398 wxGenericTreeItem::~wxGenericTreeItem()
404 wxASSERT_MSG( m_children
.IsEmpty(),
405 wxT("please call DeleteChildren() before deleting the item") );
408 void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl
*tree
)
410 size_t count
= m_children
.Count();
411 for ( size_t n
= 0; n
< count
; n
++ )
413 wxGenericTreeItem
*child
= m_children
[n
];
415 tree
->SendDeleteEvent(child
);
417 child
->DeleteChildren(tree
);
424 void wxGenericTreeItem::SetText( const wxString
&text
)
429 void wxGenericTreeItem::Reset()
432 for ( int i
= 0; i
< wxTreeItemIcon_Max
; i
++ )
434 m_images
[i
] = NO_IMAGE
;
439 m_height
= m_width
= 0;
446 m_isCollapsed
= TRUE
;
448 m_parent
= (wxGenericTreeItem
*)NULL
;
451 size_t wxGenericTreeItem::GetChildrenCount(bool recursively
) const
453 size_t count
= m_children
.Count();
457 size_t total
= count
;
458 for (size_t n
= 0; n
< count
; ++n
)
460 total
+= m_children
[n
]->GetChildrenCount();
466 void wxGenericTreeItem::SetCross( int x
, int y
)
472 void wxGenericTreeItem::GetSize( int &x
, int &y
, const wxGenericTreeCtrl
*theTree
)
474 int bottomY
=m_y
+theTree
->GetLineHeight(this);
475 if ( y
< bottomY
) y
= bottomY
;
476 int width
= m_x
+ m_width
;
477 if ( x
< width
) x
= width
;
481 size_t count
= m_children
.Count();
482 for ( size_t n
= 0; n
< count
; ++n
)
484 m_children
[n
]->GetSize( x
, y
, theTree
);
489 wxGenericTreeItem
*wxGenericTreeItem::HitTest( const wxPoint
& point
,
490 const wxGenericTreeCtrl
*theTree
,
493 if ((point
.y
> m_y
) && (point
.y
< m_y
+ theTree
->GetLineHeight(this)))
495 if (point
.y
< m_y
+theTree
->GetLineHeight(this)/2 )
496 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
498 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
500 // 5 is the size of the plus sign
501 if ((point
.x
> m_xCross
-5) && (point
.x
< m_xCross
+5) &&
502 (point
.y
> m_yCross
-5) && (point
.y
< m_yCross
+5) &&
503 (IsExpanded() || HasPlus()))
505 flags
|=wxTREE_HITTEST_ONITEMBUTTON
;
509 if ((point
.x
>= m_x
) && (point
.x
<= m_x
+m_width
))
514 // assuming every image (normal and selected ) has the same size !
515 if ( (GetImage() != NO_IMAGE
) && theTree
->m_imageListNormal
)
516 theTree
->m_imageListNormal
->GetSize(GetImage(), image_w
, image_h
);
518 if ((image_w
!= -1) && (point
.x
<= m_x
+ image_w
+ 1))
519 flags
|= wxTREE_HITTEST_ONITEMICON
;
521 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
527 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
528 if (point
.x
> m_x
+m_width
)
529 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
537 size_t count
= m_children
.Count();
538 for ( size_t n
= 0; n
< count
; n
++ )
540 wxGenericTreeItem
*res
= m_children
[n
]->HitTest( point
, theTree
, flags
);
547 flags
|=wxTREE_HITTEST_NOWHERE
;
549 return (wxGenericTreeItem
*) NULL
;
552 int wxGenericTreeItem::GetCurrentImage() const
554 int image
= NO_IMAGE
;
559 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
562 if ( image
== NO_IMAGE
)
564 // we usually fall back to the normal item, but try just the
565 // expanded one (and not selected) first in this case
566 image
= GetImage(wxTreeItemIcon_Expanded
);
572 image
= GetImage(wxTreeItemIcon_Selected
);
575 // may be it doesn't have the specific image we want, try the default one
577 if ( image
== NO_IMAGE
)
585 // -----------------------------------------------------------------------------
586 // wxGenericTreeCtrl implementation
587 // -----------------------------------------------------------------------------
589 IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl
, wxScrolledWindow
)
591 BEGIN_EVENT_TABLE(wxGenericTreeCtrl
,wxScrolledWindow
)
592 EVT_PAINT (wxGenericTreeCtrl::OnPaint
)
593 EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse
)
594 EVT_CHAR (wxGenericTreeCtrl::OnChar
)
595 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus
)
596 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus
)
597 EVT_IDLE (wxGenericTreeCtrl::OnIdle
)
600 #if !defined(__WXMSW__) || defined(__WIN16__)
602 * wxTreeCtrl has to be a real class or we have problems with
603 * the run-time information.
606 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxGenericTreeCtrl
)
609 // -----------------------------------------------------------------------------
610 // construction/destruction
611 // -----------------------------------------------------------------------------
613 void wxGenericTreeCtrl::Init()
617 m_anchor
= (wxGenericTreeItem
*) NULL
;
627 m_hilightBrush
= new wxBrush
629 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
),
634 m_imageListState
= (wxImageList
*) NULL
;
635 m_ownsImageListNormal
=
636 m_ownsImageListState
= FALSE
;
639 m_isDragging
= FALSE
;
641 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
643 m_renameTimer
= new wxTreeRenameTimer( this );
644 m_lastOnSame
= FALSE
;
646 m_normalFont
= wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT
);
647 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
648 m_normalFont
.GetFamily(),
649 m_normalFont
.GetStyle(),
651 m_normalFont
.GetUnderlined());
654 bool wxGenericTreeCtrl::Create(wxWindow
*parent
, wxWindowID id
,
655 const wxPoint
& pos
, const wxSize
& size
,
657 const wxValidator
&validator
,
658 const wxString
& name
)
660 wxScrolledWindow::Create( parent
, id
, pos
, size
, style
|wxHSCROLL
|wxVSCROLL
, name
);
663 SetValidator( validator
);
666 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
667 // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
668 m_dottedPen
= wxPen( "grey", 0, 0 );
673 wxGenericTreeCtrl::~wxGenericTreeCtrl()
675 wxDELETE( m_hilightBrush
);
679 delete m_renameTimer
;
680 if (m_ownsImageListNormal
) delete m_imageListNormal
;
681 if (m_ownsImageListState
) delete m_imageListState
;
684 // -----------------------------------------------------------------------------
686 // -----------------------------------------------------------------------------
688 size_t wxGenericTreeCtrl::GetCount() const
690 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
693 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
699 void wxGenericTreeCtrl::SetSpacing(unsigned int spacing
)
705 size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool recursively
)
707 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
709 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
712 // -----------------------------------------------------------------------------
713 // functions to work with tree items
714 // -----------------------------------------------------------------------------
716 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
718 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
720 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
723 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
724 wxTreeItemIcon which
) const
726 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
728 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
731 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
733 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
735 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
738 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
740 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
743 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
744 pItem
->SetText(text
);
745 CalculateSize(pItem
, dc
);
749 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
751 wxTreeItemIcon which
)
753 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
755 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
756 pItem
->SetImage(image
, which
);
759 CalculateSize(pItem
, dc
);
763 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
765 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
767 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
770 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
772 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
774 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
775 pItem
->SetHasPlus(has
);
779 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
781 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
783 // avoid redrawing the tree if no real change
784 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
785 if ( pItem
->IsBold() != bold
)
787 pItem
->SetBold(bold
);
792 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
795 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
797 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
798 pItem
->Attr().SetTextColour(col
);
802 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
805 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
807 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
808 pItem
->Attr().SetBackgroundColour(col
);
812 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
814 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
816 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
817 pItem
->Attr().SetFont(font
);
821 // -----------------------------------------------------------------------------
822 // item status inquiries
823 // -----------------------------------------------------------------------------
825 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
827 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
829 // An item is only visible if it's not a descendant of a collapsed item
830 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
831 wxGenericTreeItem
* parent
= pItem
->GetParent();
834 if (!parent
->IsExpanded())
836 parent
= parent
->GetParent();
840 GetViewStart(& startX
, & startY
);
842 wxSize clientSize
= GetClientSize();
845 if (!GetBoundingRect(item
, rect
))
847 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
849 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
851 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
857 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
859 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
861 return !((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren().IsEmpty();
864 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
866 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
868 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
871 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
873 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
875 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
878 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
880 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
882 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
885 // -----------------------------------------------------------------------------
887 // -----------------------------------------------------------------------------
889 wxTreeItemId
wxGenericTreeCtrl::GetParent(const wxTreeItemId
& item
) const
891 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
893 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
896 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const
898 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
901 return GetNextChild(item
, cookie
);
904 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
, long& cookie
) const
906 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
908 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
909 if ( (size_t)cookie
< children
.Count() )
911 return children
.Item((size_t)cookie
++);
915 // there are no more of them
916 return wxTreeItemId();
920 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
922 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
924 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
925 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
928 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
930 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
932 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
933 wxGenericTreeItem
*parent
= i
->GetParent();
934 if ( parent
== NULL
)
936 // root item doesn't have any siblings
937 return wxTreeItemId();
940 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
941 int index
= siblings
.Index(i
);
942 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
944 size_t n
= (size_t)(index
+ 1);
945 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
948 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
950 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
952 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
953 wxGenericTreeItem
*parent
= i
->GetParent();
954 if ( parent
== NULL
)
956 // root item doesn't have any siblings
957 return wxTreeItemId();
960 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
961 int index
= siblings
.Index(i
);
962 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
964 return index
== 0 ? wxTreeItemId()
965 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
968 // Only for internal use right now, but should probably be public
969 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
971 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
973 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
975 // First see if there are any children.
976 wxArrayGenericTreeItems
& children
= i
->GetChildren();
977 if (children
.GetCount() > 0)
979 return children
.Item(0);
983 // Try a sibling of this or ancestor instead
984 wxTreeItemId p
= item
;
988 toFind
= GetNextSibling(p
);
990 } while (p
.IsOk() && !toFind
.IsOk());
995 wxTreeItemId
wxGenericTreeCtrl::GetPrev(const wxTreeItemId
& item
) const
997 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
999 wxFAIL_MSG(wxT("not implemented"));
1001 return wxTreeItemId();
1004 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1006 wxTreeItemId id
= GetRootItem();
1015 } while (id
.IsOk());
1017 return wxTreeItemId();
1020 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1022 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1024 wxTreeItemId id
= item
;
1029 if (id
.IsOk() && IsVisible(id
))
1032 return wxTreeItemId();
1035 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1037 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1039 wxFAIL_MSG(wxT("not implemented"));
1041 return wxTreeItemId();
1044 // -----------------------------------------------------------------------------
1046 // -----------------------------------------------------------------------------
1048 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1050 const wxString
& text
,
1051 int image
, int selImage
,
1052 wxTreeItemData
*data
)
1054 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1057 // should we give a warning here?
1058 return AddRoot(text
, image
, selImage
, data
);
1061 wxClientDC
dc(this);
1062 wxGenericTreeItem
*item
=
1063 new wxGenericTreeItem( parent
, text
, dc
, image
, selImage
, data
);
1067 data
->m_pItem
= (long) item
;
1070 parent
->Insert( item
, previous
);
1077 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1078 int image
, int selImage
,
1079 wxTreeItemData
*data
)
1081 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1083 wxClientDC
dc(this);
1084 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
, dc
,
1085 image
, selImage
, data
);
1088 data
->m_pItem
= (long) m_anchor
;
1091 if (!HasFlag(wxTR_MULTIPLE
))
1093 m_current
= m_key_current
= m_anchor
;
1094 m_current
->SetHilight( TRUE
);
1102 wxTreeItemId
wxGenericTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1103 const wxString
& text
,
1104 int image
, int selImage
,
1105 wxTreeItemData
*data
)
1107 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
1110 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1111 const wxTreeItemId
& idPrevious
,
1112 const wxString
& text
,
1113 int image
, int selImage
,
1114 wxTreeItemData
*data
)
1116 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1119 // should we give a warning here?
1120 return AddRoot(text
, image
, selImage
, data
);
1123 int index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1124 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1125 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1127 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1130 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1132 const wxString
& text
,
1133 int image
, int selImage
,
1134 wxTreeItemData
*data
)
1136 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1139 // should we give a warning here?
1140 return AddRoot(text
, image
, selImage
, data
);
1143 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
1146 wxTreeItemId
wxGenericTreeCtrl::AppendItem(const wxTreeItemId
& parentId
,
1147 const wxString
& text
,
1148 int image
, int selImage
,
1149 wxTreeItemData
*data
)
1151 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1154 // should we give a warning here?
1155 return AddRoot(text
, image
, selImage
, data
);
1158 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
1159 image
, selImage
, data
);
1162 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1164 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, GetId() );
1165 event
.m_item
= (long) item
;
1166 event
.SetEventObject( this );
1167 ProcessEvent( event
);
1170 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1172 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1173 item
->DeleteChildren(this);
1178 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1180 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1182 // don't stay with invalid m_key_current or we will crash in the next call
1184 bool changeKeyCurrent
= FALSE
;
1185 wxGenericTreeItem
*itemKey
= m_key_current
;
1186 while ( itemKey
&& !changeKeyCurrent
)
1188 if ( itemKey
== item
)
1190 // m_key_current is a descendant of the item being deleted
1191 changeKeyCurrent
= TRUE
;
1195 itemKey
= itemKey
->GetParent();
1199 wxGenericTreeItem
*parent
= item
->GetParent();
1202 parent
->GetChildren().Remove( item
); // remove by value
1205 if ( changeKeyCurrent
)
1207 // may be NULL or not
1208 m_key_current
= parent
;
1211 item
->DeleteChildren(this);
1212 SendDeleteEvent(item
);
1218 void wxGenericTreeCtrl::DeleteAllItems()
1222 m_anchor
->DeleteChildren(this);
1231 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1233 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1235 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1237 if ( !item
->HasPlus() )
1240 if ( item
->IsExpanded() )
1243 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, GetId() );
1244 event
.m_item
= (long) item
;
1245 event
.SetEventObject( this );
1247 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1249 // cancelled by program
1254 CalculatePositions();
1256 RefreshSubtree(item
);
1258 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1259 ProcessEvent( event
);
1262 void wxGenericTreeCtrl::ExpandAll(const wxTreeItemId
& item
)
1265 if ( IsExpanded(item
) )
1268 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1269 while ( child
.IsOk() )
1273 child
= GetNextChild(item
, cookie
);
1278 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1280 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1282 if ( !item
->IsExpanded() )
1285 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, GetId() );
1286 event
.m_item
= (long) item
;
1287 event
.SetEventObject( this );
1288 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1290 // cancelled by program
1296 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1297 size_t count
= children
.Count();
1298 for ( size_t n
= 0; n
< count
; n
++ )
1300 Collapse(children
[n
]);
1303 CalculatePositions();
1305 RefreshSubtree(item
);
1307 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1308 ProcessEvent( event
);
1311 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1314 DeleteChildren(item
);
1317 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1319 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1321 if (item
->IsExpanded())
1327 void wxGenericTreeCtrl::Unselect()
1331 m_current
->SetHilight( FALSE
);
1332 RefreshLine( m_current
);
1336 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1338 if (item
->IsSelected())
1340 item
->SetHilight(FALSE
);
1344 if (item
->HasChildren())
1346 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1347 size_t count
= children
.Count();
1348 for ( size_t n
= 0; n
< count
; ++n
)
1350 UnselectAllChildren(children
[n
]);
1355 void wxGenericTreeCtrl::UnselectAll()
1357 UnselectAllChildren((wxGenericTreeItem
*) GetRootItem().m_pItem
);
1360 // Recursive function !
1361 // To stop we must have crt_item<last_item
1363 // Tag all next children, when no more children,
1364 // Move to parent (not to tag)
1365 // Keep going... if we found last_item, we stop.
1366 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1368 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1370 if (parent
== NULL
) // This is root item
1371 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1373 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1374 int index
= children
.Index(crt_item
);
1375 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1377 size_t count
= children
.Count();
1378 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1380 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
1383 return TagNextChildren(parent
, last_item
, select
);
1386 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1388 crt_item
->SetHilight(select
);
1389 RefreshLine(crt_item
);
1391 if (crt_item
==last_item
)
1394 if (crt_item
->HasChildren())
1396 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1397 size_t count
= children
.Count();
1398 for ( size_t n
= 0; n
< count
; ++n
)
1400 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1408 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1410 // item2 is not necessary after item1
1411 wxGenericTreeItem
*first
=NULL
, *last
=NULL
;
1413 // choice first' and 'last' between item1 and item2
1414 if (item1
->GetY()<item2
->GetY())
1425 bool select
= m_current
->IsSelected();
1427 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1430 TagNextChildren(first
,last
,select
);
1433 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
,
1434 bool unselect_others
,
1435 bool extended_select
)
1437 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1439 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1440 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1442 //wxCHECK_RET( ( (!unselect_others) && is_single),
1443 // wxT("this is a single selection tree") );
1445 // to keep going anyhow !!!
1448 if (item
->IsSelected())
1449 return; // nothing to do
1450 unselect_others
= TRUE
;
1451 extended_select
= FALSE
;
1453 else if ( unselect_others
&& item
->IsSelected() )
1455 // selection change if there is more than one item currently selected
1456 wxArrayTreeItemIds selected_items
;
1457 if ( GetSelections(selected_items
) == 1 )
1461 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, GetId() );
1462 event
.m_item
= (long) item
;
1463 event
.m_itemOld
= (long) m_current
;
1464 event
.SetEventObject( this );
1465 // TODO : Here we don't send any selection mode yet !
1467 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1471 if (unselect_others
)
1473 if (is_single
) Unselect(); // to speed up thing
1478 if (extended_select
)
1483 m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1486 // don't change the mark (m_current)
1487 SelectItemRange(m_current
, item
);
1491 bool select
=TRUE
; // the default
1493 // Check if we need to toggle hilight (ctrl mode)
1494 if (!unselect_others
)
1495 select
=!item
->IsSelected();
1497 m_current
= m_key_current
= item
;
1498 m_current
->SetHilight(select
);
1499 RefreshLine( m_current
);
1502 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1503 GetEventHandler()->ProcessEvent( event
);
1506 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1507 wxArrayTreeItemIds
&array
) const
1509 if ( item
->IsSelected() )
1510 array
.Add(wxTreeItemId(item
));
1512 if ( item
->HasChildren() )
1514 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1515 size_t count
= children
.GetCount();
1516 for ( size_t n
= 0; n
< count
; ++n
)
1517 FillArray(children
[n
], array
);
1521 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1524 wxTreeItemId idRoot
= GetRootItem();
1525 if ( idRoot
.IsOk() )
1527 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1529 //else: the tree is empty, so no selections
1531 return array
.Count();
1534 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1536 if (!item
.IsOk()) return;
1538 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1540 // first expand all parent branches
1541 wxGenericTreeItem
*parent
= gitem
->GetParent();
1545 parent
= parent
->GetParent();
1548 //if (parent) CalculatePositions();
1553 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1555 if (!item
.IsOk()) return;
1557 // We have to call this here because the label in
1558 // question might just have been added and no screen
1559 // update taken place.
1560 if (m_dirty
) wxYield();
1562 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1564 // now scroll to the item
1565 int item_y
= gitem
->GetY();
1569 ViewStart( &start_x
, &start_y
);
1570 start_y
*= PIXELS_PER_UNIT
;
1574 GetClientSize( &client_w
, &client_h
);
1576 if (item_y
< start_y
+3)
1581 m_anchor
->GetSize( x
, y
, this );
1582 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1583 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1584 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1585 // Item should appear at top
1586 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1588 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1593 m_anchor
->GetSize( x
, y
, this );
1594 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1595 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1596 item_y
+= PIXELS_PER_UNIT
+2;
1597 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1598 // Item should appear at bottom
1599 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
);
1603 // FIXME: tree sorting functions are not reentrant and not MT-safe!
1604 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
1606 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
1607 wxGenericTreeItem
**item2
)
1609 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
1611 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
1614 int wxGenericTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1615 const wxTreeItemId
& item2
)
1617 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1620 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
1622 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1624 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1626 wxCHECK_RET( !s_treeBeingSorted
,
1627 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
1629 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1630 if ( children
.Count() > 1 )
1632 s_treeBeingSorted
= this;
1633 children
.Sort(tree_ctrl_compare_func
);
1634 s_treeBeingSorted
= NULL
;
1638 //else: don't make the tree dirty as nothing changed
1641 wxImageList
*wxGenericTreeCtrl::GetImageList() const
1643 return m_imageListNormal
;
1646 wxImageList
*wxGenericTreeCtrl::GetStateImageList() const
1648 return m_imageListState
;
1651 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
1653 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1655 m_imageListNormal
= imageList
;
1656 m_ownsImageListNormal
= FALSE
;
1658 if ( !m_imageListNormal
)
1661 // Calculate a m_lineHeight value from the image sizes.
1662 // May be toggle off. Then wxGenericTreeCtrl will spread when
1663 // necessary (which might look ugly).
1664 wxClientDC
dc(this);
1665 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
1666 int width
= 0, height
= 0,
1667 n
= m_imageListNormal
->GetImageCount();
1669 for (int i
= 0; i
< n
; i
++)
1671 m_imageListNormal
->GetSize(i
, width
, height
);
1672 if (height
> m_lineHeight
) m_lineHeight
= height
;
1675 if (m_lineHeight
< 40)
1676 m_lineHeight
+= 2; // at least 2 pixels
1678 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
1681 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
1683 if (m_ownsImageListState
) delete m_imageListState
;
1684 m_imageListState
= imageList
;
1685 m_ownsImageListState
= FALSE
;
1688 void wxGenericTreeCtrl::AssignImageList(wxImageList
*imageList
)
1690 SetImageList(imageList
);
1691 m_ownsImageListNormal
= TRUE
;
1694 void wxGenericTreeCtrl::AssignStateImageList(wxImageList
*imageList
)
1696 SetStateImageList(imageList
);
1697 m_ownsImageListState
= TRUE
;
1700 // -----------------------------------------------------------------------------
1702 // -----------------------------------------------------------------------------
1704 void wxGenericTreeCtrl::AdjustMyScrollbars()
1710 m_anchor
->GetSize( x
, y
, this );
1711 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1712 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1713 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1714 int y_pos
= GetScrollPos( wxVERTICAL
);
1715 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
1719 SetScrollbars( 0, 0, 0, 0 );
1723 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
1725 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
1726 return item
->GetHeight();
1728 return m_lineHeight
;
1731 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
1733 wxTreeItemAttr
*attr
= item
->GetAttributes();
1734 if ( attr
&& attr
->HasFont() )
1735 dc
.SetFont(attr
->GetFont());
1736 else if (item
->IsBold())
1737 dc
.SetFont(m_boldFont
);
1741 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
1745 int image
= item
->GetCurrentImage();
1746 if ( image
!= NO_IMAGE
)
1748 if ( m_imageListNormal
)
1750 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
1759 int total_h
= GetLineHeight(item
);
1761 if (item
->IsSelected())
1762 dc
.SetBrush(*m_hilightBrush
);
1766 if ( attr
&& attr
->HasBackgroundColour() )
1767 colBg
= attr
->GetBackgroundColour();
1769 colBg
= m_backgroundColour
;
1770 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
1773 dc
.DrawRectangle( item
->GetX()-2, item
->GetY(), item
->GetWidth()+2, total_h
);
1775 if ( image
!= NO_IMAGE
)
1777 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
1778 m_imageListNormal
->Draw( image
, dc
,
1780 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
1781 wxIMAGELIST_DRAW_TRANSPARENT
);
1782 dc
.DestroyClippingRegion();
1785 dc
.SetBackgroundMode(wxTRANSPARENT
);
1786 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
1787 dc
.DrawText( item
->GetText(),
1788 (wxCoord
)(image_w
+ item
->GetX()),
1789 (wxCoord
)(item
->GetY() + extraH
));
1791 // restore normal font
1792 dc
.SetFont( m_normalFont
);
1795 // Now y stands for the top of the item, whereas it used to stand for middle !
1796 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
1798 int horizX
= level
*m_indent
;
1800 item
->SetX( horizX
+m_indent
+m_spacing
);
1804 y
+=GetLineHeight(item
)/2;
1806 item
->SetCross( horizX
+m_indent
, y
);
1808 int exposed_x
= dc
.LogicalToDeviceX( 0 );
1809 int exposed_y
= dc
.LogicalToDeviceY( item
->GetY() );
1811 bool drawLines
= ((GetWindowStyle() & wxTR_NO_LINES
) == 0);
1813 if (IsExposed( exposed_x
, exposed_y
, 10000, GetLineHeight(item
) )) // 10000 = very much
1815 int startX
= horizX
;
1816 int endX
= horizX
+ (m_indent
-5);
1818 // if (!item->HasChildren()) endX += (m_indent+5);
1819 if (!item
->HasChildren()) endX
+= 20;
1822 dc
.DrawLine( startX
, y
, endX
, y
);
1824 if (item
->HasPlus())
1827 dc
.DrawLine( horizX
+(m_indent
+5), y
, horizX
+(m_indent
+15), y
);
1828 dc
.SetPen( *wxGREY_PEN
);
1829 dc
.SetBrush( *wxWHITE_BRUSH
);
1830 dc
.DrawRectangle( horizX
+(m_indent
-5), y
-4, 11, 9 );
1832 dc
.SetPen( *wxBLACK_PEN
);
1833 dc
.DrawLine( horizX
+(m_indent
-2), y
, horizX
+(m_indent
+3), y
);
1834 if (!item
->IsExpanded())
1835 dc
.DrawLine( horizX
+m_indent
, y
-2, horizX
+m_indent
, y
+3 );
1837 dc
.SetPen( m_dottedPen
);
1840 wxPen
*pen
= wxTRANSPARENT_PEN
;
1843 if ( item
->IsSelected() )
1845 colText
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1853 wxTreeItemAttr
*attr
= item
->GetAttributes();
1854 if ( attr
&& attr
->HasTextColour() )
1855 colText
= attr
->GetTextColour();
1857 colText
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_WINDOWTEXT
);
1861 dc
.SetTextForeground(colText
);
1865 PaintItem(item
, dc
);
1867 // restore DC objects
1868 dc
.SetBrush( *wxWHITE_BRUSH
);
1869 dc
.SetPen( m_dottedPen
);
1870 dc
.SetTextForeground( *wxBLACK
);
1873 y
= oldY
+GetLineHeight(item
);
1875 if (item
->IsExpanded())
1877 oldY
+=GetLineHeight(item
)/2;
1880 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1881 size_t n
, count
= children
.Count();
1882 for ( n
= 0; n
< count
; ++n
)
1885 PaintLevel( children
[n
], dc
, level
+1, y
);
1888 // it may happen that the item is expanded but has no items (when you
1889 // delete all its children for example) - don't draw the vertical line
1893 semiOldY
+=GetLineHeight(children
[--n
])/2;
1895 dc
.DrawLine( horizX
+m_indent
, oldY
+5, horizX
+m_indent
, semiOldY
);
1900 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
1904 if ( item
->HasPlus() )
1906 // it's a folder, indicate it by a border
1911 // draw a line under the drop target because the item will be
1913 DrawLine(item
, TRUE
/* below */);
1916 SetCursor(wxCURSOR_BULLSEYE
);
1921 SetCursor(wxCURSOR_NO_ENTRY
);
1925 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
1927 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
1929 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1931 wxClientDC
dc(this);
1933 dc
.SetLogicalFunction(wxINVERT
);
1934 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1936 int w
= i
->GetWidth() + 2;
1937 int h
= GetLineHeight(i
) + 2;
1939 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
1942 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
1944 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
1946 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1948 wxClientDC
dc(this);
1950 dc
.SetLogicalFunction(wxINVERT
);
1956 y
+= GetLineHeight(i
) - 1;
1959 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
1962 // -----------------------------------------------------------------------------
1963 // wxWindows callbacks
1964 // -----------------------------------------------------------------------------
1966 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1974 dc
.SetFont( m_normalFont
);
1975 dc
.SetPen( m_dottedPen
);
1977 // this is now done dynamically
1978 //if(GetImageList() == NULL)
1979 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
1982 PaintLevel( m_anchor
, dc
, 0, y
);
1985 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1989 if (m_current
) RefreshLine( m_current
);
1992 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1996 if (m_current
) RefreshLine( m_current
);
1999 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2001 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, GetId() );
2002 te
.m_code
= (int)event
.KeyCode();
2003 te
.SetEventObject( this );
2004 GetEventHandler()->ProcessEvent( te
);
2006 if ( (m_current
== 0) || (m_key_current
== 0) )
2012 // how should the selection work for this event?
2013 bool is_multiple
, extended_select
, unselect_others
;
2014 EventFlagsToSelType(GetWindowStyleFlag(),
2016 event
.ControlDown(),
2017 is_multiple
, extended_select
, unselect_others
);
2021 // * : Expand all/Collapse all
2022 // ' ' | return : activate
2023 // up : go up (not last children!)
2025 // left : go to parent
2026 // right : open if parent and go next
2027 // home : go to root
2028 // end : go to last item without opening parents
2029 switch (event
.KeyCode())
2033 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2041 if ( !IsExpanded(m_current
) )
2044 ExpandAll(m_current
);
2047 //else: fall through to Collapse() it
2051 if (IsExpanded(m_current
))
2053 Collapse(m_current
);
2060 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2061 event
.m_item
= (long) m_current
;
2063 event
.SetEventObject( this );
2064 GetEventHandler()->ProcessEvent( event
);
2068 // up goes to the previous sibling or to the last of its children if
2072 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2075 prev
= GetParent( m_key_current
);
2079 wxTreeItemId current
= m_key_current
;
2080 if (current
== GetFirstChild( prev
, cockie
))
2082 // otherwise we return to where we came from
2083 SelectItem( prev
, unselect_others
, extended_select
);
2084 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2085 EnsureVisible( prev
);
2092 while ( IsExpanded(prev
) && HasChildren(prev
) )
2094 wxTreeItemId child
= GetLastChild(prev
);
2101 SelectItem( prev
, unselect_others
, extended_select
);
2102 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2103 EnsureVisible( prev
);
2108 // left arrow goes to the parent
2111 wxTreeItemId prev
= GetParent( m_current
);
2114 EnsureVisible( prev
);
2115 SelectItem( prev
, unselect_others
, extended_select
);
2121 // this works the same as the down arrow except that we also expand the
2122 // item if it wasn't expanded yet
2128 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2131 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2132 SelectItem( child
, unselect_others
, extended_select
);
2133 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2134 EnsureVisible( child
);
2138 wxTreeItemId next
= GetNextSibling( m_key_current
);
2141 wxTreeItemId current
= m_key_current
;
2142 while (current
&& !next
)
2144 current
= GetParent( current
);
2145 if (current
) next
= GetNextSibling( current
);
2150 SelectItem( next
, unselect_others
, extended_select
);
2151 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2152 EnsureVisible( next
);
2158 // <End> selects the last visible tree item
2161 wxTreeItemId last
= GetRootItem();
2163 while ( last
.IsOk() && IsExpanded(last
) )
2165 wxTreeItemId lastChild
= GetLastChild(last
);
2167 // it may happen if the item was expanded but then all of
2168 // its children have been deleted - so IsExpanded() returned
2169 // TRUE, but GetLastChild() returned invalid item
2178 EnsureVisible( last
);
2179 SelectItem( last
, unselect_others
, extended_select
);
2184 // <Home> selects the root item
2187 wxTreeItemId prev
= GetRootItem();
2190 EnsureVisible( prev
);
2191 SelectItem( prev
, unselect_others
, extended_select
);
2201 wxTreeItemId
wxGenericTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
2203 // We have to call this here because the label in
2204 // question might just have been added and no screen
2205 // update taken place.
2206 if (m_dirty
) wxYield();
2208 wxClientDC
dc(this);
2210 wxCoord x
= dc
.DeviceToLogicalX( point
.x
);
2211 wxCoord y
= dc
.DeviceToLogicalY( point
.y
);
2216 if (point
.x
<0) flags
|=wxTREE_HITTEST_TOLEFT
;
2217 if (point
.x
>w
) flags
|=wxTREE_HITTEST_TORIGHT
;
2218 if (point
.y
<0) flags
|=wxTREE_HITTEST_ABOVE
;
2219 if (point
.y
>h
) flags
|=wxTREE_HITTEST_BELOW
;
2222 return m_anchor
->HitTest( wxPoint(x
, y
), this, flags
);
2224 return wxTreeItemId();
2227 // get the bounding rectangle of the item (or of its label only)
2228 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2230 bool textOnly
) const
2232 wxCHECK_MSG( item
.IsOk(), FALSE
, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2234 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2237 GetViewStart(& startX
, & startY
);
2239 rect
.x
= i
->GetX() - startX
*PIXELS_PER_UNIT
;
2240 rect
.y
= i
->GetY() - startY
*PIXELS_PER_UNIT
;
2241 rect
.width
= i
->GetWidth();
2242 //rect.height = i->GetHeight();
2243 rect
.height
= GetLineHeight(i
);
2250 void wxGenericTreeCtrl::Edit( const wxTreeItemId
& item
)
2252 if (!item
.IsOk()) return;
2254 m_currentEdit
= (wxGenericTreeItem
*) item
.m_pItem
;
2256 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, GetId() );
2257 te
.m_item
= (long) m_currentEdit
;
2258 te
.SetEventObject( this );
2259 GetEventHandler()->ProcessEvent( te
);
2261 if (!te
.IsAllowed()) return;
2263 // We have to call this here because the label in
2264 // question might just have been added and no screen
2265 // update taken place.
2266 if (m_dirty
) wxYield();
2268 wxString s
= m_currentEdit
->GetText();
2269 int x
= m_currentEdit
->GetX();
2270 int y
= m_currentEdit
->GetY();
2271 int w
= m_currentEdit
->GetWidth();
2272 int h
= m_currentEdit
->GetHeight();
2277 int image
= m_currentEdit
->GetCurrentImage();
2278 if ( image
!= NO_IMAGE
)
2280 if ( m_imageListNormal
)
2282 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2287 wxFAIL_MSG(_T("you must create an image list to use images!"));
2291 w
-= image_w
+ 4; // I don't know why +4 is needed
2293 wxClientDC
dc(this);
2295 x
= dc
.LogicalToDeviceX( x
);
2296 y
= dc
.LogicalToDeviceY( y
);
2298 wxTreeTextCtrl
*text
= new wxTreeTextCtrl(
2299 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
2303 void wxGenericTreeCtrl::OnRenameTimer()
2308 void wxGenericTreeCtrl::OnRenameAccept()
2310 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, GetId() );
2311 le
.m_item
= (long) m_currentEdit
;
2312 le
.SetEventObject( this );
2313 le
.m_label
= m_renameRes
;
2314 GetEventHandler()->ProcessEvent( le
);
2316 if (!le
.IsAllowed()) return;
2318 SetItemText( m_currentEdit
, m_renameRes
);
2321 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
2323 if ( !m_anchor
) return;
2325 // we process left mouse up event (enables in-place edit), right down
2326 // (pass to the user code), left dbl click (activate item) and
2327 // dragging/moving events for items drag-and-drop
2328 if ( !(event
.LeftDown() ||
2330 event
.RightDown() ||
2331 event
.LeftDClick() ||
2333 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
2340 wxClientDC
dc(this);
2342 wxCoord x
= dc
.DeviceToLogicalX( event
.GetX() );
2343 wxCoord y
= dc
.DeviceToLogicalY( event
.GetY() );
2346 wxGenericTreeItem
*item
= m_anchor
->HitTest( wxPoint(x
,y
), this, flags
);
2348 if ( event
.Dragging() && !m_isDragging
)
2350 if (m_dragCount
== 0)
2351 m_dragStart
= wxPoint(x
,y
);
2355 if (m_dragCount
!= 3)
2357 // wait until user drags a bit further...
2361 wxEventType command
= event
.RightIsDown()
2362 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2363 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2365 wxTreeEvent
nevent( command
, GetId() );
2366 nevent
.m_item
= (long) m_current
;
2367 nevent
.SetEventObject(this);
2369 // by default the dragging is not supported, the user code must
2370 // explicitly allow the event for it to take place
2373 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
2375 // we're going to drag this item
2376 m_isDragging
= TRUE
;
2378 // remember the old cursor because we will change it while
2380 m_oldCursor
= m_cursor
;
2382 // in a single selection control, hide the selection temporarily
2383 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
2385 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
2387 if ( m_oldSelection
)
2389 m_oldSelection
->SetHilight(FALSE
);
2390 RefreshLine(m_oldSelection
);
2397 else if ( event
.Moving() )
2399 if ( item
!= m_dropTarget
)
2401 // unhighlight the previous drop target
2402 DrawDropEffect(m_dropTarget
);
2404 m_dropTarget
= item
;
2406 // highlight the current drop target if any
2407 DrawDropEffect(m_dropTarget
);
2412 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
2414 // erase the highlighting
2415 DrawDropEffect(m_dropTarget
);
2417 // generate the drag end event
2418 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, GetId());
2420 event
.m_item
= (long) item
;
2421 event
.m_pointDrag
= wxPoint(x
, y
);
2422 event
.SetEventObject(this);
2424 (void)GetEventHandler()->ProcessEvent(event
);
2426 m_isDragging
= FALSE
;
2427 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
2429 if ( m_oldSelection
)
2431 m_oldSelection
->SetHilight(TRUE
);
2432 RefreshLine(m_oldSelection
);
2433 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
2438 SetCursor(m_oldCursor
);
2444 // here we process only the messages which happen on tree items
2448 if (item
== NULL
) return; /* we hit the blank area */
2450 if ( event
.RightDown() )
2452 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, GetId());
2453 nevent
.m_item
= (long) item
;
2455 CalcScrolledPosition(x
, y
,
2456 &nevent
.m_pointDrag
.x
,
2457 &nevent
.m_pointDrag
.y
);
2458 nevent
.SetEventObject(this);
2459 GetEventHandler()->ProcessEvent(nevent
);
2461 else if ( event
.LeftUp() )
2465 if ( (item
== m_current
) &&
2466 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
2467 HasFlag(wxTR_EDIT_LABELS
) )
2469 if ( m_renameTimer
->IsRunning() )
2470 m_renameTimer
->Stop();
2472 m_renameTimer
->Start( 100, TRUE
);
2475 m_lastOnSame
= FALSE
;
2480 if ( event
.LeftDown() )
2482 m_lastOnSame
= item
== m_current
;
2485 // how should the selection work for this event?
2486 bool is_multiple
, extended_select
, unselect_others
;
2487 EventFlagsToSelType(GetWindowStyleFlag(),
2489 event
.ControlDown(),
2490 is_multiple
, extended_select
, unselect_others
);
2492 if ( (flags
& wxTREE_HITTEST_ONITEMBUTTON
) && event
.LeftDown() )
2499 SelectItem(item
, unselect_others
, extended_select
);
2501 if ( event
.LeftDClick() )
2503 // double clicking should not start editing the item label
2504 m_renameTimer
->Stop();
2505 m_lastOnSame
= FALSE
;
2507 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2508 nevent
.m_item
= (long) item
;
2510 CalcScrolledPosition(x
, y
,
2511 &nevent
.m_pointDrag
.x
,
2512 &nevent
.m_pointDrag
.y
);
2513 nevent
.SetEventObject( this );
2514 GetEventHandler()->ProcessEvent( nevent
);
2520 void wxGenericTreeCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2522 /* after all changes have been done to the tree control,
2523 * we actually redraw the tree when everything is over */
2530 CalculatePositions();
2532 AdjustMyScrollbars();
2535 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
2541 dc
.SetFont(m_boldFont
);
2543 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2546 // restore normal font
2547 dc
.SetFont( m_normalFont
);
2551 int image
= item
->GetCurrentImage();
2552 if ( image
!= NO_IMAGE
)
2554 if ( m_imageListNormal
)
2556 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2561 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
2564 total_h
+= 2; // at least 2 pixels
2566 total_h
+= total_h
/10; // otherwise 10% extra spacing
2568 item
->SetHeight(total_h
);
2569 if (total_h
>m_lineHeight
)
2570 m_lineHeight
=total_h
;
2572 item
->SetWidth(image_w
+text_w
+2);
2575 // -----------------------------------------------------------------------------
2576 // for developper : y is now the top of the level
2577 // not the middle of it !
2578 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2580 int horizX
= level
*m_indent
;
2582 CalculateSize( item
, dc
);
2585 item
->SetX( horizX
+m_indent
+m_spacing
);
2587 y
+=GetLineHeight(item
);
2589 if ( !item
->IsExpanded() )
2591 // we dont need to calculate collapsed branches
2595 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2596 size_t n
, count
= children
.Count();
2597 for (n
= 0; n
< count
; ++n
)
2598 CalculateLevel( children
[n
], dc
, level
+1, y
); // recurse
2601 void wxGenericTreeCtrl::CalculatePositions()
2603 if ( !m_anchor
) return;
2605 wxClientDC
dc(this);
2608 dc
.SetFont( m_normalFont
);
2610 dc
.SetPen( m_dottedPen
);
2611 //if(GetImageList() == NULL)
2612 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2615 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
2618 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
2620 if (m_dirty
) return;
2622 wxClientDC
dc(this);
2627 GetClientSize( &cw
, &ch
);
2630 rect
.x
= dc
.LogicalToDeviceX( 0 );
2632 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2635 Refresh( TRUE
, &rect
);
2637 AdjustMyScrollbars();
2640 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
2642 if (m_dirty
) return;
2644 wxClientDC
dc(this);
2649 GetClientSize( &cw
, &ch
);
2652 rect
.x
= dc
.LogicalToDeviceX( 0 );
2653 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2655 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
2657 Refresh( TRUE
, &rect
);