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"
33 #include "wx/treebase.h"
34 #include "wx/generic/treectlg.h"
36 #include "wx/textctrl.h"
37 #include "wx/imaglist.h"
38 #include "wx/settings.h"
39 #include "wx/dcclient.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 // ----------------------------------------------------------------------------
63 static char *aqua_arrow_right
[] = {
64 /* columns rows colors chars-per-pixel */
85 static char *aqua_arrow_down
[] = {
86 /* columns rows colors chars-per-pixel */
106 // -----------------------------------------------------------------------------
108 // -----------------------------------------------------------------------------
110 // timer used for enabling in-place edit
111 class WXDLLEXPORT wxTreeRenameTimer
: public wxTimer
114 wxTreeRenameTimer( wxGenericTreeCtrl
*owner
);
119 wxGenericTreeCtrl
*m_owner
;
122 // control used for in-place edit
123 class WXDLLEXPORT wxTreeTextCtrl
: public wxTextCtrl
126 wxTreeTextCtrl( wxWindow
*parent
,
130 wxGenericTreeCtrl
*owner
,
131 const wxString
&value
= wxEmptyString
,
132 const wxPoint
&pos
= wxDefaultPosition
,
133 const wxSize
&size
= wxDefaultSize
,
134 int style
= wxSIMPLE_BORDER
,
135 const wxValidator
& validator
= wxDefaultValidator
,
136 const wxString
&name
= wxTextCtrlNameStr
);
138 void OnChar( wxKeyEvent
&event
);
139 void OnKeyUp( wxKeyEvent
&event
);
140 void OnKillFocus( wxFocusEvent
&event
);
145 wxGenericTreeCtrl
*m_owner
;
146 wxString m_startValue
;
149 DECLARE_EVENT_TABLE()
153 class WXDLLEXPORT wxGenericTreeItem
157 wxGenericTreeItem() { m_data
= NULL
; }
158 wxGenericTreeItem( wxGenericTreeItem
*parent
,
159 const wxString
& text
,
162 wxTreeItemData
*data
);
164 ~wxGenericTreeItem();
167 wxArrayGenericTreeItems
& GetChildren() { return m_children
; }
169 const wxString
& GetText() const { return m_text
; }
170 int GetImage(wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
171 { return m_images
[which
]; }
172 wxTreeItemData
*GetData() const { return m_data
; }
174 // returns the current image for the item (depending on its
175 // selected/expanded/whatever state)
176 int GetCurrentImage() const;
178 void SetText( const wxString
&text
);
179 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
180 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
182 void SetHasPlus(bool has
= TRUE
) { m_hasPlus
= has
; }
184 void SetBold(bool bold
) { m_isBold
= bold
; }
186 int GetX() const { return m_x
; }
187 int GetY() const { return m_y
; }
189 void SetX(int x
) { m_x
= x
; }
190 void SetY(int y
) { m_y
= y
; }
192 int GetHeight() const { return m_height
; }
193 int GetWidth() const { return m_width
; }
195 void SetHeight(int h
) { m_height
= h
; }
196 void SetWidth(int w
) { m_width
= w
; }
198 wxGenericTreeItem
*GetParent() const { return m_parent
; }
201 // deletes all children notifying the treectrl about it if !NULL
203 void DeleteChildren(wxGenericTreeCtrl
*tree
= NULL
);
205 // get count of all children (and grand children if 'recursively')
206 size_t GetChildrenCount(bool recursively
= TRUE
) const;
208 void Insert(wxGenericTreeItem
*child
, size_t index
)
209 { m_children
.Insert(child
, index
); }
211 void GetSize( int &x
, int &y
, const wxGenericTreeCtrl
* );
213 // return the item at given position (or NULL if no item), onButton is
214 // TRUE if the point belongs to the item's button, otherwise it lies
215 // on the button's label
216 wxGenericTreeItem
*HitTest( const wxPoint
& point
,
217 const wxGenericTreeCtrl
*,
221 void Expand() { m_isCollapsed
= FALSE
; }
222 void Collapse() { m_isCollapsed
= TRUE
; }
224 void SetHilight( bool set
= TRUE
) { m_hasHilight
= set
; }
227 bool HasChildren() const { return !m_children
.IsEmpty(); }
228 bool IsSelected() const { return m_hasHilight
!= 0; }
229 bool IsExpanded() const { return !m_isCollapsed
; }
230 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
231 bool IsBold() const { return m_isBold
!= 0; }
234 // get them - may be NULL
235 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
236 // get them ensuring that the pointer is not NULL
237 wxTreeItemAttr
& Attr()
241 m_attr
= new wxTreeItemAttr
;
247 void SetAttributes(wxTreeItemAttr
*attr
)
249 if ( m_ownsAttr
) delete m_attr
;
253 // set them and delete when done
254 void AssignAttributes(wxTreeItemAttr
*attr
)
261 // since there can be very many of these, we save size by chosing
262 // the smallest representation for the elements and by ordering
263 // the members to avoid padding.
264 wxString m_text
; // label to be rendered for item
266 wxTreeItemData
*m_data
; // user-provided data
268 wxArrayGenericTreeItems m_children
; // list of children
269 wxGenericTreeItem
*m_parent
; // parent of this item
271 wxTreeItemAttr
*m_attr
; // attributes???
273 // tree ctrl images for the normal, selected, expanded and
274 // expanded+selected states
275 short m_images
[wxTreeItemIcon_Max
];
277 wxCoord m_x
; // (virtual) offset from top
278 short m_y
; // (virtual) offset from left
279 short m_width
; // width of this item
280 unsigned char m_height
; // height of this item
282 // use bitfields to save size
283 int m_isCollapsed
:1;
284 int m_hasHilight
:1; // same as focused
285 int m_hasPlus
:1; // used for item which doesn't have
286 // children but has a [+] button
287 int m_isBold
:1; // render the label in bold font
288 int m_ownsAttr
:1; // delete attribute when done
291 // =============================================================================
293 // =============================================================================
295 // ----------------------------------------------------------------------------
297 // ----------------------------------------------------------------------------
299 // translate the key or mouse event flags to the type of selection we're
301 static void EventFlagsToSelType(long style
,
305 bool &extended_select
,
306 bool &unselect_others
)
308 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
309 extended_select
= shiftDown
&& is_multiple
;
310 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
313 // -----------------------------------------------------------------------------
314 // wxTreeRenameTimer (internal)
315 // -----------------------------------------------------------------------------
317 wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl
*owner
)
322 void wxTreeRenameTimer::Notify()
324 m_owner
->OnRenameTimer();
327 //-----------------------------------------------------------------------------
328 // wxTreeTextCtrl (internal)
329 //-----------------------------------------------------------------------------
331 BEGIN_EVENT_TABLE(wxTreeTextCtrl
,wxTextCtrl
)
332 EVT_CHAR (wxTreeTextCtrl::OnChar
)
333 EVT_KEY_UP (wxTreeTextCtrl::OnKeyUp
)
334 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus
)
337 wxTreeTextCtrl::wxTreeTextCtrl( wxWindow
*parent
,
341 wxGenericTreeCtrl
*owner
,
342 const wxString
&value
,
346 const wxValidator
& validator
,
347 const wxString
&name
)
348 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
354 (*m_res
) = wxEmptyString
;
355 m_startValue
= value
;
359 void wxTreeTextCtrl::OnChar( wxKeyEvent
&event
)
361 if (event
.m_keyCode
== WXK_RETURN
)
364 (*m_res
) = GetValue();
366 if ((*m_res
) != m_startValue
)
367 m_owner
->OnRenameAccept();
369 if (!wxPendingDelete
.Member(this))
370 wxPendingDelete
.Append(this);
373 m_owner
->SetFocus(); // This doesn't work. TODO.
377 if (event
.m_keyCode
== WXK_ESCAPE
)
382 if (!wxPendingDelete
.Member(this))
383 wxPendingDelete
.Append(this);
386 m_owner
->SetFocus(); // This doesn't work. TODO.
393 void wxTreeTextCtrl::OnKeyUp( wxKeyEvent
&event
)
401 // auto-grow the textctrl:
402 wxSize parentSize
= m_owner
->GetSize();
403 wxPoint myPos
= GetPosition();
404 wxSize mySize
= GetSize();
406 GetTextExtent(GetValue() + _T("M"), &sx
, &sy
);
407 if (myPos
.x
+ sx
> parentSize
.x
) sx
= parentSize
.x
- myPos
.x
;
408 if (mySize
.x
> sx
) sx
= mySize
.x
;
414 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent
&event
)
422 if (!wxPendingDelete
.Member(this))
423 wxPendingDelete
.Append(this);
426 (*m_res
) = GetValue();
428 if ((*m_res
) != m_startValue
)
429 m_owner
->OnRenameAccept();
432 // -----------------------------------------------------------------------------
434 // -----------------------------------------------------------------------------
436 wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem
*parent
,
437 const wxString
& text
,
438 int image
, int selImage
,
439 wxTreeItemData
*data
)
442 m_images
[wxTreeItemIcon_Normal
] = image
;
443 m_images
[wxTreeItemIcon_Selected
] = selImage
;
444 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
445 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
450 m_isCollapsed
= TRUE
;
451 m_hasHilight
= FALSE
;
457 m_attr
= (wxTreeItemAttr
*)NULL
;
460 // We don't know the height here yet.
465 wxGenericTreeItem::~wxGenericTreeItem()
469 if (m_ownsAttr
) delete m_attr
;
471 wxASSERT_MSG( m_children
.IsEmpty(),
472 wxT("please call DeleteChildren() before deleting the item") );
475 void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl
*tree
)
477 size_t count
= m_children
.Count();
478 for ( size_t n
= 0; n
< count
; n
++ )
480 wxGenericTreeItem
*child
= m_children
[n
];
482 tree
->SendDeleteEvent(child
);
484 child
->DeleteChildren(tree
);
491 void wxGenericTreeItem::SetText( const wxString
&text
)
496 size_t wxGenericTreeItem::GetChildrenCount(bool recursively
) const
498 size_t count
= m_children
.Count();
502 size_t total
= count
;
503 for (size_t n
= 0; n
< count
; ++n
)
505 total
+= m_children
[n
]->GetChildrenCount();
511 void wxGenericTreeItem::GetSize( int &x
, int &y
,
512 const wxGenericTreeCtrl
*theButton
)
514 int bottomY
=m_y
+theButton
->GetLineHeight(this);
515 if ( y
< bottomY
) y
= bottomY
;
516 int width
= m_x
+ m_width
;
517 if ( x
< width
) x
= width
;
521 size_t count
= m_children
.Count();
522 for ( size_t n
= 0; n
< count
; ++n
)
524 m_children
[n
]->GetSize( x
, y
, theButton
);
529 wxGenericTreeItem
*wxGenericTreeItem::HitTest(const wxPoint
& point
,
530 const wxGenericTreeCtrl
*theCtrl
,
534 // for a hidden root node, don't evaluate it, but do evaluate children
535 if ( !(level
== 0 && theCtrl
->HasFlag(wxTR_HIDE_ROOT
)) )
538 int h
= theCtrl
->GetLineHeight(this);
539 if ((point
.y
> m_y
) && (point
.y
< m_y
+ h
))
541 int y_mid
= m_y
+ h
/2;
542 if (point
.y
< y_mid
)
543 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
545 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
547 // 5 is the size of the plus sign
548 int xCross
= m_x
- theCtrl
->GetSpacing();
549 if ((point
.x
> xCross
-5) && (point
.x
< xCross
+5) &&
550 (point
.y
> y_mid
-5) && (point
.y
< y_mid
+5) &&
551 HasPlus() && theCtrl
->HasButtons() )
553 flags
|= wxTREE_HITTEST_ONITEMBUTTON
;
557 if ((point
.x
>= m_x
) && (point
.x
<= m_x
+m_width
))
562 // assuming every image (normal and selected) has the same size!
563 if ( (GetImage() != NO_IMAGE
) && theCtrl
->m_imageListNormal
)
564 theCtrl
->m_imageListNormal
->GetSize(GetImage(),
567 if ((image_w
!= -1) && (point
.x
<= m_x
+ image_w
+ 1))
568 flags
|= wxTREE_HITTEST_ONITEMICON
;
570 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
576 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
577 if (point
.x
> m_x
+m_width
)
578 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
583 // if children are expanded, fall through to evaluate them
584 if (m_isCollapsed
) return (wxGenericTreeItem
*) NULL
;
588 size_t count
= m_children
.Count();
589 for ( size_t n
= 0; n
< count
; n
++ )
591 wxGenericTreeItem
*res
= m_children
[n
]->HitTest( point
,
599 return (wxGenericTreeItem
*) NULL
;
602 int wxGenericTreeItem::GetCurrentImage() const
604 int image
= NO_IMAGE
;
609 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
612 if ( image
== NO_IMAGE
)
614 // we usually fall back to the normal item, but try just the
615 // expanded one (and not selected) first in this case
616 image
= GetImage(wxTreeItemIcon_Expanded
);
622 image
= GetImage(wxTreeItemIcon_Selected
);
625 // maybe it doesn't have the specific image we want,
626 // try the default one instead
627 if ( image
== NO_IMAGE
) image
= GetImage();
632 // -----------------------------------------------------------------------------
633 // wxGenericTreeCtrl implementation
634 // -----------------------------------------------------------------------------
636 IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl
, wxScrolledWindow
)
638 BEGIN_EVENT_TABLE(wxGenericTreeCtrl
,wxScrolledWindow
)
639 EVT_PAINT (wxGenericTreeCtrl::OnPaint
)
640 EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse
)
641 EVT_CHAR (wxGenericTreeCtrl::OnChar
)
642 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus
)
643 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus
)
644 EVT_IDLE (wxGenericTreeCtrl::OnIdle
)
647 #if !defined(__WXMSW__) || defined(__WIN16__) || defined(__WXUNIVERSAL__)
649 * wxTreeCtrl has to be a real class or we have problems with
650 * the run-time information.
653 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxGenericTreeCtrl
)
656 // -----------------------------------------------------------------------------
657 // construction/destruction
658 // -----------------------------------------------------------------------------
660 void wxGenericTreeCtrl::Init()
662 m_current
= m_key_current
= m_anchor
= (wxGenericTreeItem
*) NULL
;
670 m_hilightBrush
= new wxBrush
672 wxSystemSettings::GetSystemColour
674 wxSYS_COLOUR_HIGHLIGHT
679 m_hilightUnfocusedBrush
= new wxBrush
681 wxSystemSettings::GetSystemColour
683 wxSYS_COLOUR_BTNSHADOW
688 m_imageListNormal
= m_imageListButtons
=
689 m_imageListState
= (wxImageList
*) NULL
;
690 m_ownsImageListNormal
= m_ownsImageListButtons
=
691 m_ownsImageListState
= FALSE
;
694 m_isDragging
= FALSE
;
695 m_dropTarget
= m_oldSelection
= (wxGenericTreeItem
*)NULL
;
697 m_renameTimer
= new wxTreeRenameTimer( this );
698 m_lastOnSame
= FALSE
;
700 m_normalFont
= wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT
);
701 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
702 m_normalFont
.GetFamily(),
703 m_normalFont
.GetStyle(),
705 m_normalFont
.GetUnderlined());
708 bool wxGenericTreeCtrl::Create(wxWindow
*parent
,
713 const wxValidator
&validator
,
714 const wxString
& name
)
718 wxGetOsVersion( &major
, &minor
);
720 if (style
& wxTR_HAS_BUTTONS
) style
|= wxTR_MAC_BUTTONS
;
721 if (style
& wxTR_HAS_BUTTONS
) style
&= ~wxTR_HAS_BUTTONS
;
722 style
&= ~wxTR_LINES_AT_ROOT
;
723 style
|= wxTR_NO_LINES
;
725 style
|= wxTR_ROW_LINES
;
727 style
|= wxTR_AQUA_BUTTONS
;
730 if (style
& wxTR_AQUA_BUTTONS
)
732 m_arrowRight
= new wxBitmap( aqua_arrow_right
);
733 m_arrowDown
= new wxBitmap( aqua_arrow_down
);
741 wxScrolledWindow::Create( parent
, id
, pos
, size
,
742 style
|wxHSCROLL
|wxVSCROLL
, name
);
744 // If the tree display has no buttons, but does have
745 // connecting lines, we can use a narrower layout.
746 // It may not be a good idea to force this...
747 if (!HasButtons() && !HasFlag(wxTR_NO_LINES
))
754 SetValidator( validator
);
757 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
759 // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
760 m_dottedPen
= wxPen( wxT("grey"), 0, 0 );
765 wxGenericTreeCtrl::~wxGenericTreeCtrl()
767 delete m_hilightBrush
;
768 delete m_hilightUnfocusedBrush
;
770 if (m_arrowRight
) delete m_arrowRight
;
771 if (m_arrowDown
) delete m_arrowDown
;
775 delete m_renameTimer
;
776 if (m_ownsImageListNormal
) delete m_imageListNormal
;
777 if (m_ownsImageListState
) delete m_imageListState
;
778 if (m_ownsImageListButtons
) delete m_imageListButtons
;
781 // -----------------------------------------------------------------------------
783 // -----------------------------------------------------------------------------
785 size_t wxGenericTreeCtrl::GetCount() const
787 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
790 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
796 void wxGenericTreeCtrl::SetSpacing(unsigned int spacing
)
802 size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool recursively
)
804 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
806 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
809 void wxGenericTreeCtrl::SetWindowStyle(const long styles
)
811 // right now, just sets the styles. Eventually, we may
812 // want to update the inherited styles, but right now
813 // none of the parents has updatable styles
814 m_windowStyle
= styles
;
818 // -----------------------------------------------------------------------------
819 // functions to work with tree items
820 // -----------------------------------------------------------------------------
822 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
824 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
826 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
829 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
830 wxTreeItemIcon which
) const
832 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
834 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
837 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
839 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
841 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
844 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
846 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
849 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
850 pItem
->SetText(text
);
851 CalculateSize(pItem
, dc
);
855 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
857 wxTreeItemIcon which
)
859 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
861 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
862 pItem
->SetImage(image
, which
);
865 CalculateSize(pItem
, dc
);
869 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
871 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
873 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
876 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
878 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
880 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
881 pItem
->SetHasPlus(has
);
885 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
887 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
889 // avoid redrawing the tree if no real change
890 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
891 if ( pItem
->IsBold() != bold
)
893 pItem
->SetBold(bold
);
898 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
901 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
903 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
904 pItem
->Attr().SetTextColour(col
);
908 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
911 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
913 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
914 pItem
->Attr().SetBackgroundColour(col
);
918 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
920 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
922 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
923 pItem
->Attr().SetFont(font
);
927 bool wxGenericTreeCtrl::SetFont( const wxFont
&font
)
929 wxScrolledWindow::SetFont(font
);
931 m_normalFont
= font
;
932 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
933 m_normalFont
.GetFamily(),
934 m_normalFont
.GetStyle(),
936 m_normalFont
.GetUnderlined());
942 // -----------------------------------------------------------------------------
943 // item status inquiries
944 // -----------------------------------------------------------------------------
946 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
948 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
950 // An item is only visible if it's not a descendant of a collapsed item
951 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
952 wxGenericTreeItem
* parent
= pItem
->GetParent();
955 if (!parent
->IsExpanded())
957 parent
= parent
->GetParent();
961 GetViewStart(& startX
, & startY
);
963 wxSize clientSize
= GetClientSize();
966 if (!GetBoundingRect(item
, rect
))
968 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
970 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
972 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
978 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
980 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
982 // consider that the item does have children if it has the "+" button: it
983 // might not have them (if it had never been expanded yet) but then it
984 // could have them as well and it's better to err on this side rather than
985 // disabling some operations which are restricted to the items with
986 // children for an item which does have them
987 return ((wxGenericTreeItem
*) item
.m_pItem
)->HasPlus();
990 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
992 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
994 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
997 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
999 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
1001 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
1004 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1006 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
1008 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
1011 // -----------------------------------------------------------------------------
1013 // -----------------------------------------------------------------------------
1015 wxTreeItemId
wxGenericTreeCtrl::GetParent(const wxTreeItemId
& item
) const
1017 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1019 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
1022 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const
1024 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1027 return GetNextChild(item
, cookie
);
1030 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
, long& cookie
) const
1032 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1034 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1035 if ( (size_t)cookie
< children
.Count() )
1037 return children
.Item((size_t)cookie
++);
1041 // there are no more of them
1042 return wxTreeItemId();
1046 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1048 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1050 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1051 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
1054 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1056 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1058 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1059 wxGenericTreeItem
*parent
= i
->GetParent();
1060 if ( parent
== NULL
)
1062 // root item doesn't have any siblings
1063 return wxTreeItemId();
1066 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1067 int index
= siblings
.Index(i
);
1068 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1070 size_t n
= (size_t)(index
+ 1);
1071 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
1074 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1076 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1078 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1079 wxGenericTreeItem
*parent
= i
->GetParent();
1080 if ( parent
== NULL
)
1082 // root item doesn't have any siblings
1083 return wxTreeItemId();
1086 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1087 int index
= siblings
.Index(i
);
1088 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1090 return index
== 0 ? wxTreeItemId()
1091 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
1094 // Only for internal use right now, but should probably be public
1095 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
1097 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1099 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1101 // First see if there are any children.
1102 wxArrayGenericTreeItems
& children
= i
->GetChildren();
1103 if (children
.GetCount() > 0)
1105 return children
.Item(0);
1109 // Try a sibling of this or ancestor instead
1110 wxTreeItemId p
= item
;
1111 wxTreeItemId toFind
;
1114 toFind
= GetNextSibling(p
);
1116 } while (p
.IsOk() && !toFind
.IsOk());
1121 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1123 wxTreeItemId id
= GetRootItem();
1132 } while (id
.IsOk());
1134 return wxTreeItemId();
1137 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1139 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1141 wxTreeItemId id
= item
;
1144 while (id
= GetNext(id
), id
.IsOk())
1150 return wxTreeItemId();
1153 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1155 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1157 wxFAIL_MSG(wxT("not implemented"));
1159 return wxTreeItemId();
1162 // -----------------------------------------------------------------------------
1164 // -----------------------------------------------------------------------------
1166 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1168 const wxString
& text
,
1169 int image
, int selImage
,
1170 wxTreeItemData
*data
)
1172 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1175 // should we give a warning here?
1176 return AddRoot(text
, image
, selImage
, data
);
1179 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1181 wxGenericTreeItem
*item
=
1182 new wxGenericTreeItem( parent
, text
, image
, selImage
, data
);
1186 data
->m_pItem
= (long) item
;
1189 parent
->Insert( item
, previous
);
1194 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1195 int image
, int selImage
,
1196 wxTreeItemData
*data
)
1198 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1200 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1202 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
,
1203 image
, selImage
, data
);
1204 if (HasFlag(wxTR_HIDE_ROOT
))
1206 // if root is hidden, make sure we can navigate
1208 m_anchor
->SetHasPlus();
1213 data
->m_pItem
= (long) m_anchor
;
1216 if (!HasFlag(wxTR_MULTIPLE
))
1218 m_current
= m_key_current
= m_anchor
;
1219 m_current
->SetHilight( TRUE
);
1225 wxTreeItemId
wxGenericTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1226 const wxString
& text
,
1227 int image
, int selImage
,
1228 wxTreeItemData
*data
)
1230 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
1233 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1234 const wxTreeItemId
& idPrevious
,
1235 const wxString
& text
,
1236 int image
, int selImage
,
1237 wxTreeItemData
*data
)
1239 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1242 // should we give a warning here?
1243 return AddRoot(text
, image
, selImage
, data
);
1246 int index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1247 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1248 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1250 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1253 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1255 const wxString
& text
,
1256 int image
, int selImage
,
1257 wxTreeItemData
*data
)
1259 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1262 // should we give a warning here?
1263 return AddRoot(text
, image
, selImage
, data
);
1266 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
1269 wxTreeItemId
wxGenericTreeCtrl::AppendItem(const wxTreeItemId
& parentId
,
1270 const wxString
& text
,
1271 int image
, int selImage
,
1272 wxTreeItemData
*data
)
1274 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1277 // should we give a warning here?
1278 return AddRoot(text
, image
, selImage
, data
);
1281 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
1282 image
, selImage
, data
);
1285 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1287 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, GetId() );
1288 event
.m_item
= (long) item
;
1289 event
.SetEventObject( this );
1290 ProcessEvent( event
);
1293 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1295 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1297 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1298 item
->DeleteChildren(this);
1301 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1303 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1305 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1307 // don't stay with invalid m_key_current or we will crash in
1308 // the next call to OnChar()
1309 bool changeKeyCurrent
= FALSE
;
1310 wxGenericTreeItem
*itemKey
= m_key_current
;
1313 if ( itemKey
== item
)
1315 // m_key_current is a descendant of the item being deleted
1316 changeKeyCurrent
= TRUE
;
1319 itemKey
= itemKey
->GetParent();
1322 wxGenericTreeItem
*parent
= item
->GetParent();
1325 parent
->GetChildren().Remove( item
); // remove by value
1328 if ( changeKeyCurrent
)
1330 // may be NULL or not
1331 m_key_current
= parent
;
1334 item
->DeleteChildren(this);
1335 SendDeleteEvent(item
);
1339 void wxGenericTreeCtrl::DeleteAllItems()
1345 m_anchor
->DeleteChildren(this);
1352 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1354 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1356 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1358 if ( !item
->HasPlus() )
1361 if ( item
->IsExpanded() )
1364 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, GetId() );
1365 event
.m_item
= (long) item
;
1366 event
.SetEventObject( this );
1368 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1370 // cancelled by program
1375 CalculatePositions();
1377 RefreshSubtree(item
);
1379 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1380 ProcessEvent( event
);
1383 void wxGenericTreeCtrl::ExpandAll(const wxTreeItemId
& item
)
1386 if ( IsExpanded(item
) )
1389 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1390 while ( child
.IsOk() )
1394 child
= GetNextChild(item
, cookie
);
1399 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1401 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1403 if ( !item
->IsExpanded() )
1406 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, GetId() );
1407 event
.m_item
= (long) item
;
1408 event
.SetEventObject( this );
1409 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1411 // cancelled by program
1417 #if 0 // TODO why should items be collapsed recursively?
1418 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1419 size_t count
= children
.Count();
1420 for ( size_t n
= 0; n
< count
; n
++ )
1422 Collapse(children
[n
]);
1426 CalculatePositions();
1428 RefreshSubtree(item
);
1430 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1431 ProcessEvent( event
);
1434 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1437 DeleteChildren(item
);
1440 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1442 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1444 if (item
->IsExpanded())
1450 void wxGenericTreeCtrl::Unselect()
1454 m_current
->SetHilight( FALSE
);
1455 RefreshLine( m_current
);
1459 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1461 if (item
->IsSelected())
1463 item
->SetHilight(FALSE
);
1467 if (item
->HasChildren())
1469 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1470 size_t count
= children
.Count();
1471 for ( size_t n
= 0; n
< count
; ++n
)
1473 UnselectAllChildren(children
[n
]);
1478 void wxGenericTreeCtrl::UnselectAll()
1480 UnselectAllChildren((wxGenericTreeItem
*) GetRootItem().m_pItem
);
1483 // Recursive function !
1484 // To stop we must have crt_item<last_item
1486 // Tag all next children, when no more children,
1487 // Move to parent (not to tag)
1488 // Keep going... if we found last_item, we stop.
1489 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1491 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1493 if (parent
== NULL
) // This is root item
1494 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1496 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1497 int index
= children
.Index(crt_item
);
1498 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1500 size_t count
= children
.Count();
1501 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1503 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
1506 return TagNextChildren(parent
, last_item
, select
);
1509 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1511 crt_item
->SetHilight(select
);
1512 RefreshLine(crt_item
);
1514 if (crt_item
==last_item
)
1517 if (crt_item
->HasChildren())
1519 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1520 size_t count
= children
.Count();
1521 for ( size_t n
= 0; n
< count
; ++n
)
1523 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1531 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1533 // item2 is not necessary after item1
1534 wxGenericTreeItem
*first
=NULL
, *last
=NULL
;
1536 // choice first' and 'last' between item1 and item2
1537 if (item1
->GetY()<item2
->GetY())
1548 bool select
= m_current
->IsSelected();
1550 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1553 TagNextChildren(first
,last
,select
);
1556 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
,
1557 bool unselect_others
,
1558 bool extended_select
)
1560 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1562 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1563 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1565 //wxCHECK_RET( ( (!unselect_others) && is_single),
1566 // wxT("this is a single selection tree") );
1568 // to keep going anyhow !!!
1571 if (item
->IsSelected())
1572 return; // nothing to do
1573 unselect_others
= TRUE
;
1574 extended_select
= FALSE
;
1576 else if ( unselect_others
&& item
->IsSelected() )
1578 // selection change if there is more than one item currently selected
1579 wxArrayTreeItemIds selected_items
;
1580 if ( GetSelections(selected_items
) == 1 )
1584 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, GetId() );
1585 event
.m_item
= (long) item
;
1586 event
.m_itemOld
= (long) m_current
;
1587 event
.SetEventObject( this );
1588 // TODO : Here we don't send any selection mode yet !
1590 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1593 wxTreeItemId parent
= GetParent( itemId
);
1594 while (parent
.IsOk())
1596 if (!IsExpanded(parent
))
1599 parent
= GetParent( parent
);
1602 EnsureVisible( itemId
);
1605 if (unselect_others
)
1607 if (is_single
) Unselect(); // to speed up thing
1612 if (extended_select
)
1616 m_current
= m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1619 // don't change the mark (m_current)
1620 SelectItemRange(m_current
, item
);
1624 bool select
=TRUE
; // the default
1626 // Check if we need to toggle hilight (ctrl mode)
1627 if (!unselect_others
)
1628 select
=!item
->IsSelected();
1630 m_current
= m_key_current
= item
;
1631 m_current
->SetHilight(select
);
1632 RefreshLine( m_current
);
1635 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1636 GetEventHandler()->ProcessEvent( event
);
1639 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1640 wxArrayTreeItemIds
&array
) const
1642 if ( item
->IsSelected() )
1643 array
.Add(wxTreeItemId(item
));
1645 if ( item
->HasChildren() )
1647 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1648 size_t count
= children
.GetCount();
1649 for ( size_t n
= 0; n
< count
; ++n
)
1650 FillArray(children
[n
], array
);
1654 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1657 wxTreeItemId idRoot
= GetRootItem();
1658 if ( idRoot
.IsOk() )
1660 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1662 //else: the tree is empty, so no selections
1664 return array
.Count();
1667 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1669 if (!item
.IsOk()) return;
1671 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1673 // first expand all parent branches
1674 wxGenericTreeItem
*parent
= gitem
->GetParent();
1678 parent
= parent
->GetParent();
1681 //if (parent) CalculatePositions();
1686 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1688 if (!item
.IsOk()) return;
1690 // We have to call this here because the label in
1691 // question might just have been added and no screen
1692 // update taken place.
1693 if (m_dirty
) wxYieldIfNeeded();
1695 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1697 // now scroll to the item
1698 int item_y
= gitem
->GetY();
1702 GetViewStart( &start_x
, &start_y
);
1703 start_y
*= PIXELS_PER_UNIT
;
1707 GetClientSize( &client_w
, &client_h
);
1709 if (item_y
< start_y
+3)
1714 m_anchor
->GetSize( x
, y
, this );
1715 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1716 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1717 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1718 // Item should appear at top
1719 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1721 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1726 m_anchor
->GetSize( x
, y
, this );
1727 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1728 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1729 item_y
+= PIXELS_PER_UNIT
+2;
1730 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1731 // Item should appear at bottom
1732 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
);
1736 // FIXME: tree sorting functions are not reentrant and not MT-safe!
1737 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
1739 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
1740 wxGenericTreeItem
**item2
)
1742 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
1744 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
1747 int wxGenericTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1748 const wxTreeItemId
& item2
)
1750 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1753 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
1755 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1757 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1759 wxCHECK_RET( !s_treeBeingSorted
,
1760 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
1762 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1763 if ( children
.Count() > 1 )
1767 s_treeBeingSorted
= this;
1768 children
.Sort(tree_ctrl_compare_func
);
1769 s_treeBeingSorted
= NULL
;
1771 //else: don't make the tree dirty as nothing changed
1774 wxImageList
*wxGenericTreeCtrl::GetImageList() const
1776 return m_imageListNormal
;
1779 wxImageList
*wxGenericTreeCtrl::GetButtonsImageList() const
1781 return m_imageListButtons
;
1784 wxImageList
*wxGenericTreeCtrl::GetStateImageList() const
1786 return m_imageListState
;
1789 void wxGenericTreeCtrl::CalculateLineHeight()
1791 wxClientDC
dc(this);
1792 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
1794 if ( m_imageListNormal
)
1796 // Calculate a m_lineHeight value from the normal Image sizes.
1797 // May be toggle off. Then wxGenericTreeCtrl will spread when
1798 // necessary (which might look ugly).
1799 int n
= m_imageListNormal
->GetImageCount();
1800 for (int i
= 0; i
< n
; i
++)
1802 int width
= 0, height
= 0;
1803 m_imageListNormal
->GetSize(i
, width
, height
);
1804 if (height
> m_lineHeight
) m_lineHeight
= height
;
1808 if (m_imageListButtons
)
1810 // Calculate a m_lineHeight value from the Button image sizes.
1811 // May be toggle off. Then wxGenericTreeCtrl will spread when
1812 // necessary (which might look ugly).
1813 int n
= m_imageListButtons
->GetImageCount();
1814 for (int i
= 0; i
< n
; i
++)
1816 int width
= 0, height
= 0;
1817 m_imageListButtons
->GetSize(i
, width
, height
);
1818 if (height
> m_lineHeight
) m_lineHeight
= height
;
1822 if (m_lineHeight
< 30)
1823 m_lineHeight
+= 2; // at least 2 pixels
1825 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
1828 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
1830 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1831 m_imageListNormal
= imageList
;
1832 m_ownsImageListNormal
= FALSE
;
1834 CalculateLineHeight();
1837 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
1839 if (m_ownsImageListState
) delete m_imageListState
;
1840 m_imageListState
= imageList
;
1841 m_ownsImageListState
= FALSE
;
1844 void wxGenericTreeCtrl::SetButtonsImageList(wxImageList
*imageList
)
1846 if (m_ownsImageListButtons
) delete m_imageListButtons
;
1847 m_imageListButtons
= imageList
;
1848 m_ownsImageListButtons
= FALSE
;
1850 CalculateLineHeight();
1853 void wxGenericTreeCtrl::AssignImageList(wxImageList
*imageList
)
1855 SetImageList(imageList
);
1856 m_ownsImageListNormal
= TRUE
;
1859 void wxGenericTreeCtrl::AssignStateImageList(wxImageList
*imageList
)
1861 SetStateImageList(imageList
);
1862 m_ownsImageListState
= TRUE
;
1865 void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList
*imageList
)
1867 SetButtonsImageList(imageList
);
1868 m_ownsImageListButtons
= TRUE
;
1871 // -----------------------------------------------------------------------------
1873 // -----------------------------------------------------------------------------
1875 void wxGenericTreeCtrl::AdjustMyScrollbars()
1880 m_anchor
->GetSize( x
, y
, this );
1881 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1882 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1883 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1884 int y_pos
= GetScrollPos( wxVERTICAL
);
1885 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
1889 SetScrollbars( 0, 0, 0, 0 );
1893 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
1895 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
1896 return item
->GetHeight();
1898 return m_lineHeight
;
1901 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
1903 // TODO implement "state" icon on items
1905 wxTreeItemAttr
*attr
= item
->GetAttributes();
1906 if ( attr
&& attr
->HasFont() )
1907 dc
.SetFont(attr
->GetFont());
1908 else if (item
->IsBold())
1909 dc
.SetFont(m_boldFont
);
1911 long text_w
= 0, text_h
= 0;
1912 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
1914 int image_h
= 0, image_w
= 0;
1915 int image
= item
->GetCurrentImage();
1916 if ( image
!= NO_IMAGE
)
1918 if ( m_imageListNormal
)
1920 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
1929 int total_h
= GetLineHeight(item
);
1931 if ( item
->IsSelected() )
1933 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
1938 if ( attr
&& attr
->HasBackgroundColour() )
1939 colBg
= attr
->GetBackgroundColour();
1941 colBg
= m_backgroundColour
;
1942 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
1945 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
1947 if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT
) )
1951 DoGetPosition(&x
, &y
);
1953 dc
.DrawRectangle(x
, item
->GetY()+offset
, w
, total_h
-offset
);
1957 if ( item
->IsSelected() && image
!= NO_IMAGE
)
1959 // If it's selected, and there's an image, then we should
1960 // take care to leave the area under the image painted in the
1961 // background colour.
1962 dc
.DrawRectangle( item
->GetX() + image_w
- 2, item
->GetY()+offset
,
1963 item
->GetWidth() - image_w
+ 2, total_h
-offset
);
1967 dc
.DrawRectangle( item
->GetX()-2, item
->GetY()+offset
,
1968 item
->GetWidth()+2, total_h
-offset
);
1972 if ( image
!= NO_IMAGE
)
1974 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
1975 m_imageListNormal
->Draw( image
, dc
,
1977 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
1978 wxIMAGELIST_DRAW_TRANSPARENT
);
1979 dc
.DestroyClippingRegion();
1982 dc
.SetBackgroundMode(wxTRANSPARENT
);
1983 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
1984 dc
.DrawText( item
->GetText(),
1985 (wxCoord
)(image_w
+ item
->GetX()),
1986 (wxCoord
)(item
->GetY() + extraH
));
1988 // restore normal font
1989 dc
.SetFont( m_normalFont
);
1992 // Now y stands for the top of the item, whereas it used to stand for middle !
1993 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
1995 int x
= level
*m_indent
;
1996 if (!HasFlag(wxTR_HIDE_ROOT
))
2000 else if (level
== 0)
2002 // always expand hidden root
2004 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2005 int count
= children
.Count();
2011 PaintLevel(children
[n
], dc
, 1, y
);
2012 } while (++n
< count
);
2014 if (!HasFlag(wxTR_NO_LINES
) && HasFlag(wxTR_LINES_AT_ROOT
) && count
> 0)
2016 // draw line down to last child
2017 origY
+= GetLineHeight(children
[0])>>1;
2018 oldY
+= GetLineHeight(children
[n
-1])>>1;
2019 dc
.DrawLine(3, origY
, 3, oldY
);
2025 item
->SetX(x
+m_spacing
);
2028 int h
= GetLineHeight(item
);
2030 int y_mid
= y_top
+ (h
>>1);
2033 int exposed_x
= dc
.LogicalToDeviceX(0);
2034 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
2036 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
2040 // don't draw rect outline if we already have the
2041 // background color under Mac
2042 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
2043 #endif // !__WXMAC__
2047 if ( item
->IsSelected() )
2049 colText
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2053 wxTreeItemAttr
*attr
= item
->GetAttributes();
2054 if (attr
&& attr
->HasTextColour())
2055 colText
= attr
->GetTextColour();
2057 colText
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT
);
2061 dc
.SetTextForeground(colText
);
2065 PaintItem(item
, dc
);
2067 if (HasFlag(wxTR_ROW_LINES
))
2069 // if the background colour is white, choose a
2070 // contrasting color for the lines
2071 dc
.SetPen(*((GetBackgroundColour() == *wxWHITE
)
2072 ? wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
2073 dc
.DrawLine(0, y_top
, 10000, y_top
);
2074 dc
.DrawLine(0, y
, 10000, y
);
2077 // restore DC objects
2078 dc
.SetBrush(*wxWHITE_BRUSH
);
2079 dc
.SetPen(m_dottedPen
);
2080 dc
.SetTextForeground(*wxBLACK
);
2082 if (item
->HasPlus() && HasButtons()) // should the item show a button?
2084 if (!HasFlag(wxTR_NO_LINES
))
2086 if (x
> (signed)m_indent
)
2087 dc
.DrawLine(x
- m_indent
, y_mid
, x
- 5, y_mid
);
2088 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2089 dc
.DrawLine(3, y_mid
, x
- 5, y_mid
);
2090 dc
.DrawLine(x
+ 5, y_mid
, x
+ m_spacing
, y_mid
);
2093 if (m_imageListButtons
!= NULL
)
2095 // draw the image button here
2096 int image_h
= 0, image_w
= 0, image
= wxTreeItemIcon_Normal
;
2097 if (item
->IsExpanded()) image
= wxTreeItemIcon_Expanded
;
2098 if (item
->IsSelected())
2099 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
2100 m_imageListButtons
->GetSize(image
, image_w
, image_h
);
2101 int xx
= x
- (image_w
>>1);
2102 int yy
= y_mid
- (image_h
>>1);
2103 dc
.SetClippingRegion(xx
, yy
, image_w
, image_h
);
2104 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
2105 wxIMAGELIST_DRAW_TRANSPARENT
);
2106 dc
.DestroyClippingRegion();
2108 else if (HasFlag(wxTR_TWIST_BUTTONS
))
2110 // draw the twisty button here
2112 if (HasFlag(wxTR_AQUA_BUTTONS
))
2114 if (item
->IsExpanded())
2115 dc
.DrawBitmap( *m_arrowDown
, x
-5, y_mid
-6, TRUE
);
2117 dc
.DrawBitmap( *m_arrowRight
, x
-5, y_mid
-6, TRUE
);
2121 dc
.SetBrush(*m_hilightBrush
);
2122 dc
.SetPen(*wxBLACK_PEN
);
2125 if (item
->IsExpanded())
2128 button
[0].y
= y_mid
-2;
2130 button
[1].y
= y_mid
-2;
2132 button
[2].y
= y_mid
+3;
2136 button
[0].y
= y_mid
-5;
2138 button
[1].y
= y_mid
+5;
2140 button
[2].y
= y_mid
;
2143 dc
.DrawPolygon(3, button
);
2144 dc
.SetPen(m_dottedPen
);
2147 else // if (HasFlag(wxTR_HAS_BUTTONS))
2149 // draw the plus sign here
2150 dc
.SetPen(*wxGREY_PEN
);
2151 dc
.SetBrush(*wxWHITE_BRUSH
);
2152 dc
.DrawRectangle(x
-5, y_mid
-4, 11, 9);
2153 dc
.SetPen(*wxBLACK_PEN
);
2154 dc
.DrawLine(x
-2, y_mid
, x
+3, y_mid
);
2155 if (!item
->IsExpanded())
2156 dc
.DrawLine(x
, y_mid
-2, x
, y_mid
+3);
2157 dc
.SetPen(m_dottedPen
);
2160 else if (!HasFlag(wxTR_NO_LINES
)) // no button; maybe a line?
2162 // draw the horizontal line here
2164 if (x
> (signed)m_indent
)
2165 x_start
-= m_indent
;
2166 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2168 dc
.DrawLine(x_start
, y_mid
, x
+ m_spacing
, y_mid
);
2172 if (item
->IsExpanded())
2174 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2175 int count
= children
.Count();
2182 PaintLevel(children
[n
], dc
, level
, y
);
2183 } while (++n
< count
);
2185 if (!HasFlag(wxTR_NO_LINES
) && count
> 0)
2187 // draw line down to last child
2188 oldY
+= GetLineHeight(children
[n
-1])>>1;
2189 if (HasButtons()) y_mid
+= 5;
2190 dc
.DrawLine(x
, y_mid
, x
, oldY
);
2196 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
2200 if ( item
->HasPlus() )
2202 // it's a folder, indicate it by a border
2207 // draw a line under the drop target because the item will be
2209 DrawLine(item
, TRUE
/* below */);
2212 SetCursor(wxCURSOR_BULLSEYE
);
2217 SetCursor(wxCURSOR_NO_ENTRY
);
2221 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
2223 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2225 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2227 wxClientDC
dc(this);
2229 dc
.SetLogicalFunction(wxINVERT
);
2230 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2232 int w
= i
->GetWidth() + 2;
2233 int h
= GetLineHeight(i
) + 2;
2235 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
2238 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
2240 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2242 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2244 wxClientDC
dc(this);
2246 dc
.SetLogicalFunction(wxINVERT
);
2252 y
+= GetLineHeight(i
) - 1;
2255 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
2258 // -----------------------------------------------------------------------------
2259 // wxWindows callbacks
2260 // -----------------------------------------------------------------------------
2262 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2270 dc
.SetFont( m_normalFont
);
2271 dc
.SetPen( m_dottedPen
);
2273 // this is now done dynamically
2274 //if(GetImageList() == NULL)
2275 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2278 PaintLevel( m_anchor
, dc
, 0, y
);
2281 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&event
)
2290 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&event
)
2299 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2301 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, GetId() );
2302 te
.m_evtKey
= event
;
2303 te
.SetEventObject( this );
2304 if ( GetEventHandler()->ProcessEvent( te
) )
2306 // intercepted by the user code
2310 if ( (m_current
== 0) || (m_key_current
== 0) )
2316 // how should the selection work for this event?
2317 bool is_multiple
, extended_select
, unselect_others
;
2318 EventFlagsToSelType(GetWindowStyleFlag(),
2320 event
.ControlDown(),
2321 is_multiple
, extended_select
, unselect_others
);
2325 // * : Expand all/Collapse all
2326 // ' ' | return : activate
2327 // up : go up (not last children!)
2329 // left : go to parent
2330 // right : open if parent and go next
2331 // home : go to root
2332 // end : go to last item without opening parents
2333 switch (event
.KeyCode())
2337 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2345 if ( !IsExpanded(m_current
) )
2348 ExpandAll(m_current
);
2351 //else: fall through to Collapse() it
2355 if (IsExpanded(m_current
))
2357 Collapse(m_current
);
2364 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2365 event
.m_item
= (long) m_current
;
2366 event
.SetEventObject( this );
2367 GetEventHandler()->ProcessEvent( event
);
2371 // up goes to the previous sibling or to the last
2372 // of its children if it's expanded
2375 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2378 prev
= GetParent( m_key_current
);
2379 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2381 break; // don't go to root if it is hidden
2386 wxTreeItemId current
= m_key_current
;
2387 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
2388 if (current
== GetFirstChild( prev
, cookie
))
2390 // otherwise we return to where we came from
2391 SelectItem( prev
, unselect_others
, extended_select
);
2392 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2393 EnsureVisible( prev
);
2400 while ( IsExpanded(prev
) && HasChildren(prev
) )
2402 wxTreeItemId child
= GetLastChild(prev
);
2409 SelectItem( prev
, unselect_others
, extended_select
);
2410 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2411 EnsureVisible( prev
);
2416 // left arrow goes to the parent
2419 wxTreeItemId prev
= GetParent( m_current
);
2420 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2422 // don't go to root if it is hidden
2423 prev
= GetPrevSibling( m_current
);
2427 EnsureVisible( prev
);
2428 SelectItem( prev
, unselect_others
, extended_select
);
2434 // this works the same as the down arrow except that we
2435 // also expand the item if it wasn't expanded yet
2441 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2444 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2445 SelectItem( child
, unselect_others
, extended_select
);
2446 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2447 EnsureVisible( child
);
2451 wxTreeItemId next
= GetNextSibling( m_key_current
);
2454 wxTreeItemId current
= m_key_current
;
2455 while (current
&& !next
)
2457 current
= GetParent( current
);
2458 if (current
) next
= GetNextSibling( current
);
2463 SelectItem( next
, unselect_others
, extended_select
);
2464 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2465 EnsureVisible( next
);
2471 // <End> selects the last visible tree item
2474 wxTreeItemId last
= GetRootItem();
2476 while ( last
.IsOk() && IsExpanded(last
) )
2478 wxTreeItemId lastChild
= GetLastChild(last
);
2480 // it may happen if the item was expanded but then all of
2481 // its children have been deleted - so IsExpanded() returned
2482 // TRUE, but GetLastChild() returned invalid item
2491 EnsureVisible( last
);
2492 SelectItem( last
, unselect_others
, extended_select
);
2497 // <Home> selects the root item
2500 wxTreeItemId prev
= GetRootItem();
2502 if (HasFlag(wxTR_HIDE_ROOT
))
2505 prev
= GetFirstChild(prev
, dummy
);
2508 EnsureVisible( prev
);
2509 SelectItem( prev
, unselect_others
, extended_select
);
2518 wxTreeItemId
wxGenericTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
2520 // JACS: removed wxYieldIfNeeded() because it can cause the window
2521 // to be deleted from under us if a close window event is pending
2526 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
2527 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
2528 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
2529 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
2530 if (flags
) return wxTreeItemId();
2532 if (m_anchor
== NULL
)
2534 flags
= wxTREE_HITTEST_NOWHERE
;
2535 return wxTreeItemId();
2538 wxClientDC
dc(this);
2540 wxCoord x
= dc
.DeviceToLogicalX( point
.x
);
2541 wxCoord y
= dc
.DeviceToLogicalY( point
.y
);
2542 wxGenericTreeItem
*hit
= m_anchor
->HitTest(wxPoint(x
, y
),
2548 flags
= wxTREE_HITTEST_NOWHERE
;
2549 return wxTreeItemId();
2554 // get the bounding rectangle of the item (or of its label only)
2555 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2557 bool WXUNUSED(textOnly
)) const
2559 wxCHECK_MSG( item
.IsOk(), FALSE
, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2561 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2564 GetViewStart(& startX
, & startY
);
2566 rect
.x
= i
->GetX() - startX
*PIXELS_PER_UNIT
;
2567 rect
.y
= i
->GetY() - startY
*PIXELS_PER_UNIT
;
2568 rect
.width
= i
->GetWidth();
2569 //rect.height = i->GetHeight();
2570 rect
.height
= GetLineHeight(i
);
2577 void wxGenericTreeCtrl::Edit( const wxTreeItemId
& item
)
2579 if (!item
.IsOk()) return;
2581 m_currentEdit
= (wxGenericTreeItem
*) item
.m_pItem
;
2583 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, GetId() );
2584 te
.m_item
= (long) m_currentEdit
;
2585 te
.SetEventObject( this );
2586 GetEventHandler()->ProcessEvent( te
);
2588 if (!te
.IsAllowed()) return;
2590 // We have to call this here because the label in
2591 // question might just have been added and no screen
2592 // update taken place.
2593 if (m_dirty
) wxYieldIfNeeded();
2595 wxString s
= m_currentEdit
->GetText();
2596 int x
= m_currentEdit
->GetX();
2597 int y
= m_currentEdit
->GetY();
2598 int w
= m_currentEdit
->GetWidth();
2599 int h
= m_currentEdit
->GetHeight();
2604 int image
= m_currentEdit
->GetCurrentImage();
2605 if ( image
!= NO_IMAGE
)
2607 if ( m_imageListNormal
)
2609 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2614 wxFAIL_MSG(_T("you must create an image list to use images!"));
2618 w
-= image_w
+ 4; // I don't know why +4 is needed
2620 wxClientDC
dc(this);
2622 x
= dc
.LogicalToDeviceX( x
);
2623 y
= dc
.LogicalToDeviceY( y
);
2625 wxTreeTextCtrl
*text
= new wxTreeTextCtrl(this, -1,
2635 void wxGenericTreeCtrl::OnRenameTimer()
2640 void wxGenericTreeCtrl::OnRenameAccept()
2642 // TODO if the validator fails this causes a crash
2643 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, GetId() );
2644 le
.m_item
= (long) m_currentEdit
;
2645 le
.SetEventObject( this );
2646 le
.m_label
= m_renameRes
;
2647 GetEventHandler()->ProcessEvent( le
);
2649 if (!le
.IsAllowed()) return;
2651 SetItemText( m_currentEdit
, m_renameRes
);
2654 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
2656 if ( !m_anchor
) return;
2658 // we process left mouse up event (enables in-place edit), right down
2659 // (pass to the user code), left dbl click (activate item) and
2660 // dragging/moving events for items drag-and-drop
2661 if ( !(event
.LeftDown() ||
2663 event
.RightDown() ||
2664 event
.LeftDClick() ||
2666 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
2673 wxClientDC
dc(this);
2675 wxCoord x
= dc
.DeviceToLogicalX( event
.GetX() );
2676 wxCoord y
= dc
.DeviceToLogicalY( event
.GetY() );
2679 wxGenericTreeItem
*item
= m_anchor
->HitTest( wxPoint(x
,y
),
2684 if ( event
.Dragging() && !m_isDragging
)
2686 if (m_dragCount
== 0)
2687 m_dragStart
= wxPoint(x
,y
);
2691 if (m_dragCount
!= 3)
2693 // wait until user drags a bit further...
2697 wxEventType command
= event
.RightIsDown()
2698 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2699 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2701 wxTreeEvent
nevent( command
, GetId() );
2702 nevent
.m_item
= (long) m_current
;
2703 nevent
.SetEventObject(this);
2705 // by default the dragging is not supported, the user code must
2706 // explicitly allow the event for it to take place
2709 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
2711 // we're going to drag this item
2712 m_isDragging
= TRUE
;
2714 // remember the old cursor because we will change it while
2716 m_oldCursor
= m_cursor
;
2718 // in a single selection control, hide the selection temporarily
2719 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
2721 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
2723 if ( m_oldSelection
)
2725 m_oldSelection
->SetHilight(FALSE
);
2726 RefreshLine(m_oldSelection
);
2733 else if ( event
.Moving() )
2735 if ( item
!= m_dropTarget
)
2737 // unhighlight the previous drop target
2738 DrawDropEffect(m_dropTarget
);
2740 m_dropTarget
= item
;
2742 // highlight the current drop target if any
2743 DrawDropEffect(m_dropTarget
);
2748 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
2750 // erase the highlighting
2751 DrawDropEffect(m_dropTarget
);
2753 if ( m_oldSelection
)
2755 m_oldSelection
->SetHilight(TRUE
);
2756 RefreshLine(m_oldSelection
);
2757 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
2760 // generate the drag end event
2761 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, GetId());
2763 event
.m_item
= (long) item
;
2764 event
.m_pointDrag
= wxPoint(x
, y
);
2765 event
.SetEventObject(this);
2767 (void)GetEventHandler()->ProcessEvent(event
);
2769 m_isDragging
= FALSE
;
2770 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
2774 SetCursor(m_oldCursor
);
2780 // here we process only the messages which happen on tree items
2784 if (item
== NULL
) return; /* we hit the blank area */
2786 if ( event
.RightDown() )
2788 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, GetId());
2789 nevent
.m_item
= (long) item
;
2790 CalcScrolledPosition(x
, y
,
2791 &nevent
.m_pointDrag
.x
,
2792 &nevent
.m_pointDrag
.y
);
2793 nevent
.SetEventObject(this);
2794 GetEventHandler()->ProcessEvent(nevent
);
2796 else if ( event
.LeftUp() )
2800 if ( (item
== m_current
) &&
2801 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
2802 HasFlag(wxTR_EDIT_LABELS
) )
2804 if ( m_renameTimer
->IsRunning() )
2805 m_renameTimer
->Stop();
2807 m_renameTimer
->Start( 100, TRUE
);
2810 m_lastOnSame
= FALSE
;
2813 else // !RightDown() && !LeftUp() ==> LeftDown() || LeftDClick()
2815 if ( event
.LeftDown() )
2817 m_lastOnSame
= item
== m_current
;
2820 if ( flags
& wxTREE_HITTEST_ONITEMBUTTON
)
2822 // only toggle the item for a single click, double click on
2823 // the button doesn't do anything (it toggles the item twice)
2824 if ( event
.LeftDown() )
2829 // don't select the item if the button was clicked
2833 // how should the selection work for this event?
2834 bool is_multiple
, extended_select
, unselect_others
;
2835 EventFlagsToSelType(GetWindowStyleFlag(),
2837 event
.ControlDown(),
2838 is_multiple
, extended_select
, unselect_others
);
2840 SelectItem(item
, unselect_others
, extended_select
);
2842 // For some reason, Windows isn't recognizing a left double-click,
2843 // so we need to simulate it here. Allow 200 milliseconds for now.
2844 if ( event
.LeftDClick() )
2846 // double clicking should not start editing the item label
2847 m_renameTimer
->Stop();
2848 m_lastOnSame
= FALSE
;
2850 // send activate event first
2851 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2852 nevent
.m_item
= (long) item
;
2853 CalcScrolledPosition(x
, y
,
2854 &nevent
.m_pointDrag
.x
,
2855 &nevent
.m_pointDrag
.y
);
2856 nevent
.SetEventObject( this );
2857 if ( !GetEventHandler()->ProcessEvent( nevent
) )
2859 // if the user code didn't process the activate event,
2860 // handle it ourselves by toggling the item when it is
2862 if ( item
->HasPlus() )
2872 void wxGenericTreeCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2874 /* after all changes have been done to the tree control,
2875 * we actually redraw the tree when everything is over */
2877 if (!m_dirty
) return;
2881 CalculatePositions();
2883 AdjustMyScrollbars();
2886 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
2892 dc
.SetFont(m_boldFont
);
2894 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2897 // restore normal font
2898 dc
.SetFont( m_normalFont
);
2902 int image
= item
->GetCurrentImage();
2903 if ( image
!= NO_IMAGE
)
2905 if ( m_imageListNormal
)
2907 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2912 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
2915 total_h
+= 2; // at least 2 pixels
2917 total_h
+= total_h
/10; // otherwise 10% extra spacing
2919 item
->SetHeight(total_h
);
2920 if (total_h
>m_lineHeight
)
2921 m_lineHeight
=total_h
;
2923 item
->SetWidth(image_w
+text_w
+2);
2926 // -----------------------------------------------------------------------------
2927 // for developper : y is now the top of the level
2928 // not the middle of it !
2929 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2931 int x
= level
*m_indent
;
2932 if (!HasFlag(wxTR_HIDE_ROOT
))
2936 else if (level
== 0)
2938 // a hidden root is not evaluated, but its
2939 // children are always calculated
2943 CalculateSize( item
, dc
);
2946 item
->SetX( x
+m_spacing
);
2948 y
+= GetLineHeight(item
);
2950 if ( !item
->IsExpanded() )
2952 // we don't need to calculate collapsed branches
2957 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2958 size_t n
, count
= children
.Count();
2960 for (n
= 0; n
< count
; ++n
)
2961 CalculateLevel( children
[n
], dc
, level
, y
); // recurse
2964 void wxGenericTreeCtrl::CalculatePositions()
2966 if ( !m_anchor
) return;
2968 wxClientDC
dc(this);
2971 dc
.SetFont( m_normalFont
);
2973 dc
.SetPen( m_dottedPen
);
2974 //if(GetImageList() == NULL)
2975 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2978 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
2981 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
2983 if (m_dirty
) return;
2985 wxClientDC
dc(this);
2990 GetClientSize( &cw
, &ch
);
2993 rect
.x
= dc
.LogicalToDeviceX( 0 );
2995 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2998 Refresh( TRUE
, &rect
);
3000 AdjustMyScrollbars();
3003 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
3005 if (m_dirty
) return;
3007 wxClientDC
dc(this);
3012 GetClientSize( &cw
, &ch
);
3015 rect
.x
= dc
.LogicalToDeviceX( 0 );
3016 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
3018 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
3020 Refresh( TRUE
, &rect
);
3023 void wxGenericTreeCtrl::RefreshSelected()
3025 // TODO: this is awfully inefficient, we should keep the list of all
3026 // selected items internally, should be much faster
3028 RefreshSelectedUnder(m_anchor
);
3031 void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem
*item
)
3033 if ( item
->IsSelected() )
3036 const wxArrayGenericTreeItems
& children
= item
->GetChildren();
3037 size_t count
= children
.GetCount();
3038 for ( size_t n
= 0; n
< count
; n
++ )
3040 RefreshSelectedUnder(children
[n
]);
3044 // ----------------------------------------------------------------------------
3045 // changing colours: we need to refresh the tree control
3046 // ----------------------------------------------------------------------------
3048 bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour
& colour
)
3050 if ( !wxWindow::SetBackgroundColour(colour
) )
3058 bool wxGenericTreeCtrl::SetForegroundColour(const wxColour
& colour
)
3060 if ( !wxWindow::SetForegroundColour(colour
) )
3068 #endif // wxUSE_TREECTRL