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 // -----------------------------------------------------------------------------
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
78 wxTreeTextCtrl( wxWindow
*parent
,
82 wxGenericTreeCtrl
*owner
,
83 const wxString
&value
= wxEmptyString
,
84 const wxPoint
&pos
= wxDefaultPosition
,
85 const wxSize
&size
= wxDefaultSize
,
86 int style
= wxSIMPLE_BORDER
,
87 const wxValidator
& validator
= wxDefaultValidator
,
88 const wxString
&name
= wxTextCtrlNameStr
);
90 void OnChar( wxKeyEvent
&event
);
91 void OnKeyUp( wxKeyEvent
&event
);
92 void OnKillFocus( wxFocusEvent
&event
);
97 wxGenericTreeCtrl
*m_owner
;
98 wxString m_startValue
;
101 DECLARE_EVENT_TABLE()
105 class WXDLLEXPORT wxGenericTreeItem
109 wxGenericTreeItem() { m_data
= NULL
; }
110 wxGenericTreeItem( wxGenericTreeItem
*parent
,
111 const wxString
& text
,
114 wxTreeItemData
*data
);
116 ~wxGenericTreeItem();
119 wxArrayGenericTreeItems
& GetChildren() { return m_children
; }
121 const wxString
& GetText() const { return m_text
; }
122 int GetImage(wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
123 { return m_images
[which
]; }
124 wxTreeItemData
*GetData() const { return m_data
; }
126 // returns the current image for the item (depending on its
127 // selected/expanded/whatever state)
128 int GetCurrentImage() const;
130 void SetText( const wxString
&text
);
131 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
132 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
134 void SetHasPlus(bool has
= TRUE
) { m_hasPlus
= has
; }
136 void SetBold(bool bold
) { m_isBold
= bold
; }
138 int GetX() const { return m_x
; }
139 int GetY() const { return m_y
; }
141 void SetX(int x
) { m_x
= x
; }
142 void SetY(int y
) { m_y
= y
; }
144 int GetHeight() const { return m_height
; }
145 int GetWidth() const { return m_width
; }
147 void SetHeight(int h
) { m_height
= h
; }
148 void SetWidth(int w
) { m_width
= w
; }
150 wxGenericTreeItem
*GetParent() const { return m_parent
; }
153 // deletes all children notifying the treectrl about it if !NULL
155 void DeleteChildren(wxGenericTreeCtrl
*tree
= NULL
);
157 // get count of all children (and grand children if 'recursively')
158 size_t GetChildrenCount(bool recursively
= TRUE
) const;
160 void Insert(wxGenericTreeItem
*child
, size_t index
)
161 { m_children
.Insert(child
, index
); }
163 void GetSize( int &x
, int &y
, const wxGenericTreeCtrl
* );
165 // return the item at given position (or NULL if no item), onButton is
166 // TRUE if the point belongs to the item's button, otherwise it lies
167 // on the button's label
168 wxGenericTreeItem
*HitTest( const wxPoint
& point
,
169 const wxGenericTreeCtrl
*,
173 void Expand() { m_isCollapsed
= FALSE
; }
174 void Collapse() { m_isCollapsed
= TRUE
; }
176 void SetHilight( bool set
= TRUE
) { m_hasHilight
= set
; }
179 bool HasChildren() const { return !m_children
.IsEmpty(); }
180 bool IsSelected() const { return m_hasHilight
!= 0; }
181 bool IsExpanded() const { return !m_isCollapsed
; }
182 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
183 bool IsBold() const { return m_isBold
!= 0; }
186 // get them - may be NULL
187 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
188 // get them ensuring that the pointer is not NULL
189 wxTreeItemAttr
& Attr()
193 m_attr
= new wxTreeItemAttr
;
199 void SetAttributes(wxTreeItemAttr
*attr
)
201 if ( m_ownsAttr
) delete m_attr
;
205 // set them and delete when done
206 void AssignAttributes(wxTreeItemAttr
*attr
)
213 // since there can be very many of these, we save size by chosing
214 // the smallest representation for the elements and by ordering
215 // the members to avoid padding.
216 wxString m_text
; // label to be rendered for item
218 wxTreeItemData
*m_data
; // user-provided data
220 wxArrayGenericTreeItems m_children
; // list of children
221 wxGenericTreeItem
*m_parent
; // parent of this item
223 wxTreeItemAttr
*m_attr
; // attributes???
225 // tree ctrl images for the normal, selected, expanded and
226 // expanded+selected states
227 short m_images
[wxTreeItemIcon_Max
];
229 wxCoord m_x
; // (virtual) offset from top
230 short m_y
; // (virtual) offset from left
231 short m_width
; // width of this item
232 unsigned char m_height
; // height of this item
234 // use bitfields to save size
235 int m_isCollapsed
:1;
236 int m_hasHilight
:1; // same as focused
237 int m_hasPlus
:1; // used for item which doesn't have
238 // children but has a [+] button
239 int m_isBold
:1; // render the label in bold font
240 int m_ownsAttr
:1; // delete attribute when done
243 // =============================================================================
245 // =============================================================================
247 // ----------------------------------------------------------------------------
249 // ----------------------------------------------------------------------------
251 // translate the key or mouse event flags to the type of selection we're
253 static void EventFlagsToSelType(long style
,
257 bool &extended_select
,
258 bool &unselect_others
)
260 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
261 extended_select
= shiftDown
&& is_multiple
;
262 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
265 // -----------------------------------------------------------------------------
266 // wxTreeRenameTimer (internal)
267 // -----------------------------------------------------------------------------
269 wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl
*owner
)
274 void wxTreeRenameTimer::Notify()
276 m_owner
->OnRenameTimer();
279 //-----------------------------------------------------------------------------
280 // wxTreeTextCtrl (internal)
281 //-----------------------------------------------------------------------------
283 BEGIN_EVENT_TABLE(wxTreeTextCtrl
,wxTextCtrl
)
284 EVT_CHAR (wxTreeTextCtrl::OnChar
)
285 EVT_KEY_UP (wxTreeTextCtrl::OnKeyUp
)
286 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus
)
289 wxTreeTextCtrl::wxTreeTextCtrl( wxWindow
*parent
,
293 wxGenericTreeCtrl
*owner
,
294 const wxString
&value
,
298 const wxValidator
& validator
,
299 const wxString
&name
)
300 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
306 (*m_res
) = wxEmptyString
;
307 m_startValue
= value
;
311 void wxTreeTextCtrl::OnChar( wxKeyEvent
&event
)
313 if (event
.m_keyCode
== WXK_RETURN
)
316 (*m_res
) = GetValue();
318 if ((*m_res
) != m_startValue
)
319 m_owner
->OnRenameAccept();
321 if (!wxPendingDelete
.Member(this))
322 wxPendingDelete
.Append(this);
325 m_owner
->SetFocus(); // This doesn't work. TODO.
329 if (event
.m_keyCode
== WXK_ESCAPE
)
334 if (!wxPendingDelete
.Member(this))
335 wxPendingDelete
.Append(this);
338 m_owner
->SetFocus(); // This doesn't work. TODO.
345 void wxTreeTextCtrl::OnKeyUp( wxKeyEvent
&event
)
353 // auto-grow the textctrl:
354 wxSize parentSize
= m_owner
->GetSize();
355 wxPoint myPos
= GetPosition();
356 wxSize mySize
= GetSize();
358 GetTextExtent(GetValue() + _T("M"), &sx
, &sy
);
359 if (myPos
.x
+ sx
> parentSize
.x
) sx
= parentSize
.x
- myPos
.x
;
360 if (mySize
.x
> sx
) sx
= mySize
.x
;
366 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent
&event
)
374 if (!wxPendingDelete
.Member(this))
375 wxPendingDelete
.Append(this);
378 (*m_res
) = GetValue();
380 if ((*m_res
) != m_startValue
)
381 m_owner
->OnRenameAccept();
384 // -----------------------------------------------------------------------------
386 // -----------------------------------------------------------------------------
388 wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem
*parent
,
389 const wxString
& text
,
390 int image
, int selImage
,
391 wxTreeItemData
*data
)
394 m_images
[wxTreeItemIcon_Normal
] = image
;
395 m_images
[wxTreeItemIcon_Selected
] = selImage
;
396 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
397 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
402 m_isCollapsed
= TRUE
;
403 m_hasHilight
= FALSE
;
409 m_attr
= (wxTreeItemAttr
*)NULL
;
412 // We don't know the height here yet.
417 wxGenericTreeItem::~wxGenericTreeItem()
421 if (m_ownsAttr
) delete m_attr
;
423 wxASSERT_MSG( m_children
.IsEmpty(),
424 wxT("please call DeleteChildren() before deleting the item") );
427 void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl
*tree
)
429 size_t count
= m_children
.Count();
430 for ( size_t n
= 0; n
< count
; n
++ )
432 wxGenericTreeItem
*child
= m_children
[n
];
434 tree
->SendDeleteEvent(child
);
436 child
->DeleteChildren(tree
);
443 void wxGenericTreeItem::SetText( const wxString
&text
)
448 size_t wxGenericTreeItem::GetChildrenCount(bool recursively
) const
450 size_t count
= m_children
.Count();
454 size_t total
= count
;
455 for (size_t n
= 0; n
< count
; ++n
)
457 total
+= m_children
[n
]->GetChildrenCount();
463 void wxGenericTreeItem::GetSize( int &x
, int &y
,
464 const wxGenericTreeCtrl
*theButton
)
466 int bottomY
=m_y
+theButton
->GetLineHeight(this);
467 if ( y
< bottomY
) y
= bottomY
;
468 int width
= m_x
+ m_width
;
469 if ( x
< width
) x
= width
;
473 size_t count
= m_children
.Count();
474 for ( size_t n
= 0; n
< count
; ++n
)
476 m_children
[n
]->GetSize( x
, y
, theButton
);
481 wxGenericTreeItem
*wxGenericTreeItem::HitTest(const wxPoint
& point
,
482 const wxGenericTreeCtrl
*theCtrl
,
486 // for a hidden root node, don't evaluate it, but do evaluate children
487 if ( !(level
== 0 && theCtrl
->HasFlag(wxTR_HIDE_ROOT
)) )
490 int h
= theCtrl
->GetLineHeight(this);
491 if ((point
.y
> m_y
) && (point
.y
< m_y
+ h
))
493 int y_mid
= m_y
+ h
/2;
494 if (point
.y
< y_mid
)
495 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
497 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
499 // 5 is the size of the plus sign
500 int xCross
= m_x
- theCtrl
->GetSpacing();
501 if ((point
.x
> xCross
-5) && (point
.x
< xCross
+5) &&
502 (point
.y
> y_mid
-5) && (point
.y
< y_mid
+5) &&
503 HasPlus() && theCtrl
->HasButtons() )
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
) && theCtrl
->m_imageListNormal
)
516 theCtrl
->m_imageListNormal
->GetSize(GetImage(),
519 if ((image_w
!= -1) && (point
.x
<= m_x
+ image_w
+ 1))
520 flags
|= wxTREE_HITTEST_ONITEMICON
;
522 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
528 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
529 if (point
.x
> m_x
+m_width
)
530 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
535 // if children are expanded, fall through to evaluate them
536 if (m_isCollapsed
) return (wxGenericTreeItem
*) NULL
;
540 size_t count
= m_children
.Count();
541 for ( size_t n
= 0; n
< count
; n
++ )
543 wxGenericTreeItem
*res
= m_children
[n
]->HitTest( point
,
551 return (wxGenericTreeItem
*) NULL
;
554 int wxGenericTreeItem::GetCurrentImage() const
556 int image
= NO_IMAGE
;
561 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
564 if ( image
== NO_IMAGE
)
566 // we usually fall back to the normal item, but try just the
567 // expanded one (and not selected) first in this case
568 image
= GetImage(wxTreeItemIcon_Expanded
);
574 image
= GetImage(wxTreeItemIcon_Selected
);
577 // maybe it doesn't have the specific image we want,
578 // try the default one instead
579 if ( image
== NO_IMAGE
) image
= GetImage();
584 // -----------------------------------------------------------------------------
585 // wxGenericTreeCtrl implementation
586 // -----------------------------------------------------------------------------
588 IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl
, wxScrolledWindow
)
590 BEGIN_EVENT_TABLE(wxGenericTreeCtrl
,wxScrolledWindow
)
591 EVT_PAINT (wxGenericTreeCtrl::OnPaint
)
592 EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse
)
593 EVT_CHAR (wxGenericTreeCtrl::OnChar
)
594 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus
)
595 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus
)
596 EVT_IDLE (wxGenericTreeCtrl::OnIdle
)
599 #if !defined(__WXMSW__) || defined(__WIN16__) || defined(__WXUNIVERSAL__)
601 * wxTreeCtrl has to be a real class or we have problems with
602 * the run-time information.
605 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxGenericTreeCtrl
)
608 // -----------------------------------------------------------------------------
609 // construction/destruction
610 // -----------------------------------------------------------------------------
612 void wxGenericTreeCtrl::Init()
614 m_current
= m_key_current
= m_anchor
= (wxGenericTreeItem
*) NULL
;
622 m_hilightBrush
= new wxBrush
624 wxSystemSettings::GetSystemColour
626 wxSYS_COLOUR_HIGHLIGHT
631 m_hilightUnfocusedBrush
= new wxBrush
633 wxSystemSettings::GetSystemColour
635 wxSYS_COLOUR_BTNSHADOW
640 m_imageListNormal
= m_imageListButtons
=
641 m_imageListState
= (wxImageList
*) NULL
;
642 m_ownsImageListNormal
= m_ownsImageListButtons
=
643 m_ownsImageListState
= FALSE
;
646 m_isDragging
= FALSE
;
647 m_dropTarget
= m_oldSelection
= (wxGenericTreeItem
*)NULL
;
649 m_renameTimer
= new wxTreeRenameTimer( this );
650 m_lastOnSame
= FALSE
;
652 m_normalFont
= wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT
);
653 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
654 m_normalFont
.GetFamily(),
655 m_normalFont
.GetStyle(),
657 m_normalFont
.GetUnderlined());
660 bool wxGenericTreeCtrl::Create(wxWindow
*parent
,
665 const wxValidator
&validator
,
666 const wxString
& name
)
670 wxGetOsVersion( &major
, &minor
);
672 if (style
& wxTR_HAS_BUTTONS
) style
|= wxTR_MAC_BUTTONS
;
673 if (style
& wxTR_HAS_BUTTONS
) style
&= ~wxTR_HAS_BUTTONS
;
674 style
&= ~wxTR_LINES_AT_ROOT
;
675 style
|= wxTR_NO_LINES
;
677 style
|= wxTR_ROW_LINES
;
679 style
|= wxTR_AQUA_BUTTONS
;
683 wxScrolledWindow::Create( parent
, id
, pos
, size
,
684 style
|wxHSCROLL
|wxVSCROLL
, name
);
686 // If the tree display has no buttons, but does have
687 // connecting lines, we can use a narrower layout.
688 // It may not be a good idea to force this...
689 if (!HasButtons() && !HasFlag(wxTR_NO_LINES
))
696 SetValidator( validator
);
699 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
701 // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
702 m_dottedPen
= wxPen( wxT("grey"), 0, 0 );
707 wxGenericTreeCtrl::~wxGenericTreeCtrl()
709 delete m_hilightBrush
;
710 delete m_hilightUnfocusedBrush
;
714 delete m_renameTimer
;
715 if (m_ownsImageListNormal
) delete m_imageListNormal
;
716 if (m_ownsImageListState
) delete m_imageListState
;
717 if (m_ownsImageListButtons
) delete m_imageListButtons
;
720 // -----------------------------------------------------------------------------
722 // -----------------------------------------------------------------------------
724 size_t wxGenericTreeCtrl::GetCount() const
726 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
729 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
735 void wxGenericTreeCtrl::SetSpacing(unsigned int spacing
)
741 size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool recursively
)
743 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
745 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
748 void wxGenericTreeCtrl::SetWindowStyle(const long styles
)
750 // right now, just sets the styles. Eventually, we may
751 // want to update the inherited styles, but right now
752 // none of the parents has updatable styles
753 m_windowStyle
= styles
;
757 // -----------------------------------------------------------------------------
758 // functions to work with tree items
759 // -----------------------------------------------------------------------------
761 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
763 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
765 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
768 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
769 wxTreeItemIcon which
) const
771 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
773 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
776 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
778 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
780 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
783 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
785 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
788 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
789 pItem
->SetText(text
);
790 CalculateSize(pItem
, dc
);
794 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
796 wxTreeItemIcon which
)
798 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
800 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
801 pItem
->SetImage(image
, which
);
804 CalculateSize(pItem
, dc
);
808 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
810 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
812 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
815 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
817 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
819 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
820 pItem
->SetHasPlus(has
);
824 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
826 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
828 // avoid redrawing the tree if no real change
829 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
830 if ( pItem
->IsBold() != bold
)
832 pItem
->SetBold(bold
);
837 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
840 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
842 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
843 pItem
->Attr().SetTextColour(col
);
847 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
850 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
852 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
853 pItem
->Attr().SetBackgroundColour(col
);
857 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
859 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
861 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
862 pItem
->Attr().SetFont(font
);
866 bool wxGenericTreeCtrl::SetFont( const wxFont
&font
)
868 wxScrolledWindow::SetFont(font
);
870 m_normalFont
= font
;
871 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
872 m_normalFont
.GetFamily(),
873 m_normalFont
.GetStyle(),
875 m_normalFont
.GetUnderlined());
881 // -----------------------------------------------------------------------------
882 // item status inquiries
883 // -----------------------------------------------------------------------------
885 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
887 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
889 // An item is only visible if it's not a descendant of a collapsed item
890 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
891 wxGenericTreeItem
* parent
= pItem
->GetParent();
894 if (!parent
->IsExpanded())
896 parent
= parent
->GetParent();
900 GetViewStart(& startX
, & startY
);
902 wxSize clientSize
= GetClientSize();
905 if (!GetBoundingRect(item
, rect
))
907 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
909 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
911 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
917 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
919 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
921 // consider that the item does have children if it has the "+" button: it
922 // might not have them (if it had never been expanded yet) but then it
923 // could have them as well and it's better to err on this side rather than
924 // disabling some operations which are restricted to the items with
925 // children for an item which does have them
926 return ((wxGenericTreeItem
*) item
.m_pItem
)->HasPlus();
929 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
931 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
933 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
936 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
938 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
940 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
943 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
945 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
947 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
950 // -----------------------------------------------------------------------------
952 // -----------------------------------------------------------------------------
954 wxTreeItemId
wxGenericTreeCtrl::GetParent(const wxTreeItemId
& item
) const
956 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
958 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
961 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const
963 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
966 return GetNextChild(item
, cookie
);
969 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
, long& cookie
) const
971 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
973 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
974 if ( (size_t)cookie
< children
.Count() )
976 return children
.Item((size_t)cookie
++);
980 // there are no more of them
981 return wxTreeItemId();
985 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
987 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
989 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
990 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
993 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
995 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
997 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
998 wxGenericTreeItem
*parent
= i
->GetParent();
999 if ( parent
== NULL
)
1001 // root item doesn't have any siblings
1002 return wxTreeItemId();
1005 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1006 int index
= siblings
.Index(i
);
1007 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1009 size_t n
= (size_t)(index
+ 1);
1010 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
1013 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1015 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1017 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1018 wxGenericTreeItem
*parent
= i
->GetParent();
1019 if ( parent
== NULL
)
1021 // root item doesn't have any siblings
1022 return wxTreeItemId();
1025 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1026 int index
= siblings
.Index(i
);
1027 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1029 return index
== 0 ? wxTreeItemId()
1030 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
1033 // Only for internal use right now, but should probably be public
1034 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
1036 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1038 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1040 // First see if there are any children.
1041 wxArrayGenericTreeItems
& children
= i
->GetChildren();
1042 if (children
.GetCount() > 0)
1044 return children
.Item(0);
1048 // Try a sibling of this or ancestor instead
1049 wxTreeItemId p
= item
;
1050 wxTreeItemId toFind
;
1053 toFind
= GetNextSibling(p
);
1055 } while (p
.IsOk() && !toFind
.IsOk());
1060 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1062 wxTreeItemId id
= GetRootItem();
1071 } while (id
.IsOk());
1073 return wxTreeItemId();
1076 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1078 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1080 wxTreeItemId id
= item
;
1083 while (id
= GetNext(id
), id
.IsOk())
1089 return wxTreeItemId();
1092 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1094 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1096 wxFAIL_MSG(wxT("not implemented"));
1098 return wxTreeItemId();
1101 // -----------------------------------------------------------------------------
1103 // -----------------------------------------------------------------------------
1105 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1107 const wxString
& text
,
1108 int image
, int selImage
,
1109 wxTreeItemData
*data
)
1111 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1114 // should we give a warning here?
1115 return AddRoot(text
, image
, selImage
, data
);
1118 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1120 wxGenericTreeItem
*item
=
1121 new wxGenericTreeItem( parent
, text
, image
, selImage
, data
);
1125 data
->m_pItem
= (long) item
;
1128 parent
->Insert( item
, previous
);
1133 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1134 int image
, int selImage
,
1135 wxTreeItemData
*data
)
1137 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1139 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1141 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
,
1142 image
, selImage
, data
);
1143 if (HasFlag(wxTR_HIDE_ROOT
))
1145 // if root is hidden, make sure we can navigate
1147 m_anchor
->SetHasPlus();
1152 data
->m_pItem
= (long) m_anchor
;
1155 if (!HasFlag(wxTR_MULTIPLE
))
1157 m_current
= m_key_current
= m_anchor
;
1158 m_current
->SetHilight( TRUE
);
1164 wxTreeItemId
wxGenericTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1165 const wxString
& text
,
1166 int image
, int selImage
,
1167 wxTreeItemData
*data
)
1169 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
1172 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1173 const wxTreeItemId
& idPrevious
,
1174 const wxString
& text
,
1175 int image
, int selImage
,
1176 wxTreeItemData
*data
)
1178 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1181 // should we give a warning here?
1182 return AddRoot(text
, image
, selImage
, data
);
1185 int index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1186 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1187 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1189 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1192 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1194 const wxString
& text
,
1195 int image
, int selImage
,
1196 wxTreeItemData
*data
)
1198 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1201 // should we give a warning here?
1202 return AddRoot(text
, image
, selImage
, data
);
1205 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
1208 wxTreeItemId
wxGenericTreeCtrl::AppendItem(const wxTreeItemId
& parentId
,
1209 const wxString
& text
,
1210 int image
, int selImage
,
1211 wxTreeItemData
*data
)
1213 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1216 // should we give a warning here?
1217 return AddRoot(text
, image
, selImage
, data
);
1220 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
1221 image
, selImage
, data
);
1224 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1226 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, GetId() );
1227 event
.m_item
= (long) item
;
1228 event
.SetEventObject( this );
1229 ProcessEvent( event
);
1232 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1234 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1236 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1237 item
->DeleteChildren(this);
1240 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1242 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1244 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1246 // don't stay with invalid m_key_current or we will crash in
1247 // the next call to OnChar()
1248 bool changeKeyCurrent
= FALSE
;
1249 wxGenericTreeItem
*itemKey
= m_key_current
;
1252 if ( itemKey
== item
)
1254 // m_key_current is a descendant of the item being deleted
1255 changeKeyCurrent
= TRUE
;
1258 itemKey
= itemKey
->GetParent();
1261 wxGenericTreeItem
*parent
= item
->GetParent();
1264 parent
->GetChildren().Remove( item
); // remove by value
1267 if ( changeKeyCurrent
)
1269 // may be NULL or not
1270 m_key_current
= parent
;
1273 item
->DeleteChildren(this);
1274 SendDeleteEvent(item
);
1278 void wxGenericTreeCtrl::DeleteAllItems()
1284 m_anchor
->DeleteChildren(this);
1291 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1293 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1295 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1297 if ( !item
->HasPlus() )
1300 if ( item
->IsExpanded() )
1303 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, GetId() );
1304 event
.m_item
= (long) item
;
1305 event
.SetEventObject( this );
1307 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1309 // cancelled by program
1314 CalculatePositions();
1316 RefreshSubtree(item
);
1318 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1319 ProcessEvent( event
);
1322 void wxGenericTreeCtrl::ExpandAll(const wxTreeItemId
& item
)
1325 if ( IsExpanded(item
) )
1328 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1329 while ( child
.IsOk() )
1333 child
= GetNextChild(item
, cookie
);
1338 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1340 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1342 if ( !item
->IsExpanded() )
1345 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, GetId() );
1346 event
.m_item
= (long) item
;
1347 event
.SetEventObject( this );
1348 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1350 // cancelled by program
1356 #if 0 // TODO why should items be collapsed recursively?
1357 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1358 size_t count
= children
.Count();
1359 for ( size_t n
= 0; n
< count
; n
++ )
1361 Collapse(children
[n
]);
1365 CalculatePositions();
1367 RefreshSubtree(item
);
1369 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1370 ProcessEvent( event
);
1373 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1376 DeleteChildren(item
);
1379 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1381 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1383 if (item
->IsExpanded())
1389 void wxGenericTreeCtrl::Unselect()
1393 m_current
->SetHilight( FALSE
);
1394 RefreshLine( m_current
);
1398 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1400 if (item
->IsSelected())
1402 item
->SetHilight(FALSE
);
1406 if (item
->HasChildren())
1408 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1409 size_t count
= children
.Count();
1410 for ( size_t n
= 0; n
< count
; ++n
)
1412 UnselectAllChildren(children
[n
]);
1417 void wxGenericTreeCtrl::UnselectAll()
1419 UnselectAllChildren((wxGenericTreeItem
*) GetRootItem().m_pItem
);
1422 // Recursive function !
1423 // To stop we must have crt_item<last_item
1425 // Tag all next children, when no more children,
1426 // Move to parent (not to tag)
1427 // Keep going... if we found last_item, we stop.
1428 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1430 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1432 if (parent
== NULL
) // This is root item
1433 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1435 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1436 int index
= children
.Index(crt_item
);
1437 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1439 size_t count
= children
.Count();
1440 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1442 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
1445 return TagNextChildren(parent
, last_item
, select
);
1448 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1450 crt_item
->SetHilight(select
);
1451 RefreshLine(crt_item
);
1453 if (crt_item
==last_item
)
1456 if (crt_item
->HasChildren())
1458 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1459 size_t count
= children
.Count();
1460 for ( size_t n
= 0; n
< count
; ++n
)
1462 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1470 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1472 // item2 is not necessary after item1
1473 wxGenericTreeItem
*first
=NULL
, *last
=NULL
;
1475 // choice first' and 'last' between item1 and item2
1476 if (item1
->GetY()<item2
->GetY())
1487 bool select
= m_current
->IsSelected();
1489 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1492 TagNextChildren(first
,last
,select
);
1495 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
,
1496 bool unselect_others
,
1497 bool extended_select
)
1499 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1501 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1502 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1504 //wxCHECK_RET( ( (!unselect_others) && is_single),
1505 // wxT("this is a single selection tree") );
1507 // to keep going anyhow !!!
1510 if (item
->IsSelected())
1511 return; // nothing to do
1512 unselect_others
= TRUE
;
1513 extended_select
= FALSE
;
1515 else if ( unselect_others
&& item
->IsSelected() )
1517 // selection change if there is more than one item currently selected
1518 wxArrayTreeItemIds selected_items
;
1519 if ( GetSelections(selected_items
) == 1 )
1523 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, GetId() );
1524 event
.m_item
= (long) item
;
1525 event
.m_itemOld
= (long) m_current
;
1526 event
.SetEventObject( this );
1527 // TODO : Here we don't send any selection mode yet !
1529 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1532 wxTreeItemId parent
= GetParent( itemId
);
1533 while (parent
.IsOk())
1535 if (!IsExpanded(parent
))
1538 parent
= GetParent( parent
);
1541 EnsureVisible( itemId
);
1544 if (unselect_others
)
1546 if (is_single
) Unselect(); // to speed up thing
1551 if (extended_select
)
1555 m_current
= m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1558 // don't change the mark (m_current)
1559 SelectItemRange(m_current
, item
);
1563 bool select
=TRUE
; // the default
1565 // Check if we need to toggle hilight (ctrl mode)
1566 if (!unselect_others
)
1567 select
=!item
->IsSelected();
1569 m_current
= m_key_current
= item
;
1570 m_current
->SetHilight(select
);
1571 RefreshLine( m_current
);
1574 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1575 GetEventHandler()->ProcessEvent( event
);
1578 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1579 wxArrayTreeItemIds
&array
) const
1581 if ( item
->IsSelected() )
1582 array
.Add(wxTreeItemId(item
));
1584 if ( item
->HasChildren() )
1586 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1587 size_t count
= children
.GetCount();
1588 for ( size_t n
= 0; n
< count
; ++n
)
1589 FillArray(children
[n
], array
);
1593 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1596 wxTreeItemId idRoot
= GetRootItem();
1597 if ( idRoot
.IsOk() )
1599 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1601 //else: the tree is empty, so no selections
1603 return array
.Count();
1606 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1608 if (!item
.IsOk()) return;
1610 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1612 // first expand all parent branches
1613 wxGenericTreeItem
*parent
= gitem
->GetParent();
1617 parent
= parent
->GetParent();
1620 //if (parent) CalculatePositions();
1625 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1627 if (!item
.IsOk()) return;
1629 // We have to call this here because the label in
1630 // question might just have been added and no screen
1631 // update taken place.
1632 if (m_dirty
) wxYieldIfNeeded();
1634 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1636 // now scroll to the item
1637 int item_y
= gitem
->GetY();
1641 GetViewStart( &start_x
, &start_y
);
1642 start_y
*= PIXELS_PER_UNIT
;
1646 GetClientSize( &client_w
, &client_h
);
1648 if (item_y
< start_y
+3)
1653 m_anchor
->GetSize( x
, y
, this );
1654 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1655 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1656 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1657 // Item should appear at top
1658 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1660 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1665 m_anchor
->GetSize( x
, y
, this );
1666 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1667 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1668 item_y
+= PIXELS_PER_UNIT
+2;
1669 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1670 // Item should appear at bottom
1671 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
);
1675 // FIXME: tree sorting functions are not reentrant and not MT-safe!
1676 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
1678 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
1679 wxGenericTreeItem
**item2
)
1681 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
1683 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
1686 int wxGenericTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1687 const wxTreeItemId
& item2
)
1689 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1692 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
1694 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1696 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1698 wxCHECK_RET( !s_treeBeingSorted
,
1699 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
1701 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1702 if ( children
.Count() > 1 )
1706 s_treeBeingSorted
= this;
1707 children
.Sort(tree_ctrl_compare_func
);
1708 s_treeBeingSorted
= NULL
;
1710 //else: don't make the tree dirty as nothing changed
1713 wxImageList
*wxGenericTreeCtrl::GetImageList() const
1715 return m_imageListNormal
;
1718 wxImageList
*wxGenericTreeCtrl::GetButtonsImageList() const
1720 return m_imageListButtons
;
1723 wxImageList
*wxGenericTreeCtrl::GetStateImageList() const
1725 return m_imageListState
;
1728 void wxGenericTreeCtrl::CalculateLineHeight()
1730 wxClientDC
dc(this);
1731 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
1733 if ( m_imageListNormal
)
1735 // Calculate a m_lineHeight value from the normal Image sizes.
1736 // May be toggle off. Then wxGenericTreeCtrl will spread when
1737 // necessary (which might look ugly).
1738 int n
= m_imageListNormal
->GetImageCount();
1739 for (int i
= 0; i
< n
; i
++)
1741 int width
= 0, height
= 0;
1742 m_imageListNormal
->GetSize(i
, width
, height
);
1743 if (height
> m_lineHeight
) m_lineHeight
= height
;
1747 if (m_imageListButtons
)
1749 // Calculate a m_lineHeight value from the Button image sizes.
1750 // May be toggle off. Then wxGenericTreeCtrl will spread when
1751 // necessary (which might look ugly).
1752 int n
= m_imageListButtons
->GetImageCount();
1753 for (int i
= 0; i
< n
; i
++)
1755 int width
= 0, height
= 0;
1756 m_imageListButtons
->GetSize(i
, width
, height
);
1757 if (height
> m_lineHeight
) m_lineHeight
= height
;
1761 if (m_lineHeight
< 30)
1762 m_lineHeight
+= 2; // at least 2 pixels
1764 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
1767 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
1769 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1770 m_imageListNormal
= imageList
;
1771 m_ownsImageListNormal
= FALSE
;
1773 CalculateLineHeight();
1776 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
1778 if (m_ownsImageListState
) delete m_imageListState
;
1779 m_imageListState
= imageList
;
1780 m_ownsImageListState
= FALSE
;
1783 void wxGenericTreeCtrl::SetButtonsImageList(wxImageList
*imageList
)
1785 if (m_ownsImageListButtons
) delete m_imageListButtons
;
1786 m_imageListButtons
= imageList
;
1787 m_ownsImageListButtons
= FALSE
;
1789 CalculateLineHeight();
1792 void wxGenericTreeCtrl::AssignImageList(wxImageList
*imageList
)
1794 SetImageList(imageList
);
1795 m_ownsImageListNormal
= TRUE
;
1798 void wxGenericTreeCtrl::AssignStateImageList(wxImageList
*imageList
)
1800 SetStateImageList(imageList
);
1801 m_ownsImageListState
= TRUE
;
1804 void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList
*imageList
)
1806 SetButtonsImageList(imageList
);
1807 m_ownsImageListButtons
= TRUE
;
1810 // -----------------------------------------------------------------------------
1812 // -----------------------------------------------------------------------------
1814 void wxGenericTreeCtrl::AdjustMyScrollbars()
1819 m_anchor
->GetSize( x
, y
, this );
1820 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1821 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1822 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1823 int y_pos
= GetScrollPos( wxVERTICAL
);
1824 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
1828 SetScrollbars( 0, 0, 0, 0 );
1832 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
1834 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
1835 return item
->GetHeight();
1837 return m_lineHeight
;
1840 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
1842 // TODO implement "state" icon on items
1844 wxTreeItemAttr
*attr
= item
->GetAttributes();
1845 if ( attr
&& attr
->HasFont() )
1846 dc
.SetFont(attr
->GetFont());
1847 else if (item
->IsBold())
1848 dc
.SetFont(m_boldFont
);
1850 long text_w
= 0, text_h
= 0;
1851 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
1853 int image_h
= 0, image_w
= 0;
1854 int image
= item
->GetCurrentImage();
1855 if ( image
!= NO_IMAGE
)
1857 if ( m_imageListNormal
)
1859 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
1868 int total_h
= GetLineHeight(item
);
1870 if ( item
->IsSelected() )
1872 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
1877 if ( attr
&& attr
->HasBackgroundColour() )
1878 colBg
= attr
->GetBackgroundColour();
1880 colBg
= m_backgroundColour
;
1881 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
1884 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
1886 if ( item
->IsSelected() && image
!= NO_IMAGE
)
1888 // If it's selected, and there's an image, then we should
1889 // take care to leave the area under the image painted in the
1890 // background colour.
1891 dc
.DrawRectangle( item
->GetX() + image_w
- 2, item
->GetY()+offset
,
1892 item
->GetWidth() - image_w
+ 2, total_h
-offset
);
1896 dc
.DrawRectangle( item
->GetX()-2, item
->GetY()+offset
,
1897 item
->GetWidth()+2, total_h
-offset
);
1900 if ( image
!= NO_IMAGE
)
1902 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
1903 m_imageListNormal
->Draw( image
, dc
,
1905 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
1906 wxIMAGELIST_DRAW_TRANSPARENT
);
1907 dc
.DestroyClippingRegion();
1910 dc
.SetBackgroundMode(wxTRANSPARENT
);
1911 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
1912 dc
.DrawText( item
->GetText(),
1913 (wxCoord
)(image_w
+ item
->GetX()),
1914 (wxCoord
)(item
->GetY() + extraH
));
1916 // restore normal font
1917 dc
.SetFont( m_normalFont
);
1920 // Now y stands for the top of the item, whereas it used to stand for middle !
1921 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
1923 int x
= level
*m_indent
;
1924 if (!HasFlag(wxTR_HIDE_ROOT
))
1928 else if (level
== 0)
1930 // always expand hidden root
1932 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1933 int count
= children
.Count();
1939 PaintLevel(children
[n
], dc
, 1, y
);
1940 } while (++n
< count
);
1942 if (!HasFlag(wxTR_NO_LINES
) && HasFlag(wxTR_LINES_AT_ROOT
) && count
> 0)
1944 // draw line down to last child
1945 origY
+= GetLineHeight(children
[0])>>1;
1946 oldY
+= GetLineHeight(children
[n
-1])>>1;
1947 dc
.DrawLine(3, origY
, 3, oldY
);
1953 item
->SetX(x
+m_spacing
);
1956 int h
= GetLineHeight(item
);
1958 int y_mid
= y_top
+ (h
>>1);
1961 int exposed_x
= dc
.LogicalToDeviceX(0);
1962 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
1964 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
1966 if (item
->HasPlus() && HasButtons()) // should the item show a button?
1968 if (!HasFlag(wxTR_NO_LINES
))
1970 if (x
> (signed)m_indent
)
1971 dc
.DrawLine(x
- m_indent
, y_mid
, x
- 5, y_mid
);
1972 else if (HasFlag(wxTR_LINES_AT_ROOT
))
1973 dc
.DrawLine(3, y_mid
, x
- 5, y_mid
);
1974 dc
.DrawLine(x
+ 5, y_mid
, x
+ m_spacing
, y_mid
);
1977 if (m_imageListButtons
!= NULL
)
1979 // draw the image button here
1980 int image_h
= 0, image_w
= 0, image
= wxTreeItemIcon_Normal
;
1981 if (item
->IsExpanded()) image
= wxTreeItemIcon_Expanded
;
1982 if (item
->IsSelected())
1983 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
1984 m_imageListButtons
->GetSize(image
, image_w
, image_h
);
1985 int xx
= x
- (image_w
>>1);
1986 int yy
= y_mid
- (image_h
>>1);
1987 dc
.SetClippingRegion(xx
, yy
, image_w
, image_h
);
1988 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
1989 wxIMAGELIST_DRAW_TRANSPARENT
);
1990 dc
.DestroyClippingRegion();
1992 else if (HasFlag(wxTR_TWIST_BUTTONS
))
1994 // draw the twisty button here
1997 dc
.SetBrush(*m_hilightBrush
);
1999 if (HasFlag(wxTR_AQUA_BUTTONS
))
2001 dc
.SetPen(*wxTRANSPARENT_PEN
);
2003 if (item
->IsExpanded())
2006 button
[0].y
= y_mid
-2;
2008 button
[1].y
= y_mid
-2;
2010 button
[2].y
= y_mid
+7;
2014 button
[0].y
= y_mid
-6;
2016 button
[1].y
= y_mid
+6;
2018 button
[2].y
= y_mid
;
2024 dc
.SetPen(*wxBLACK_PEN
);
2026 if (item
->IsExpanded())
2029 button
[0].y
= y_mid
-2;
2031 button
[1].y
= y_mid
-2;
2033 button
[2].y
= y_mid
+3;
2037 button
[0].y
= y_mid
-5;
2039 button
[1].y
= y_mid
+5;
2041 button
[2].y
= y_mid
;
2045 dc
.DrawPolygon(3, button
);
2047 dc
.SetPen(m_dottedPen
);
2049 else // if (HasFlag(wxTR_HAS_BUTTONS))
2051 // draw the plus sign here
2052 dc
.SetPen(*wxGREY_PEN
);
2053 dc
.SetBrush(*wxWHITE_BRUSH
);
2054 dc
.DrawRectangle(x
-5, y_mid
-4, 11, 9);
2055 dc
.SetPen(*wxBLACK_PEN
);
2056 dc
.DrawLine(x
-2, y_mid
, x
+3, y_mid
);
2057 if (!item
->IsExpanded())
2058 dc
.DrawLine(x
, y_mid
-2, x
, y_mid
+3);
2059 dc
.SetPen(m_dottedPen
);
2062 else if (!HasFlag(wxTR_NO_LINES
)) // no button; maybe a line?
2064 // draw the horizontal line here
2066 if (x
> (signed)m_indent
)
2067 x_start
-= m_indent
;
2068 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2070 dc
.DrawLine(x_start
, y_mid
, x
+ m_spacing
, y_mid
);
2075 // don't draw rect outline if we already have the
2076 // background color under Mac
2077 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
2078 #endif // !__WXMAC__
2082 if ( item
->IsSelected() )
2084 colText
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2088 wxTreeItemAttr
*attr
= item
->GetAttributes();
2089 if (attr
&& attr
->HasTextColour())
2090 colText
= attr
->GetTextColour();
2092 colText
= wxSystemSettings::GetSystemColour(wxSYS_COLOUR_WINDOWTEXT
);
2096 dc
.SetTextForeground(colText
);
2100 PaintItem(item
, dc
);
2102 if (HasFlag(wxTR_ROW_LINES
))
2104 // if the background colour is white, choose a
2105 // contrasting color for the lines
2106 dc
.SetPen(*((GetBackgroundColour() == *wxWHITE
)
2107 ? wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
2108 dc
.DrawLine(0, y_top
, 10000, y_top
);
2109 dc
.DrawLine(0, y
, 10000, y
);
2112 // restore DC objects
2113 dc
.SetBrush(*wxWHITE_BRUSH
);
2114 dc
.SetPen(m_dottedPen
);
2115 dc
.SetTextForeground(*wxBLACK
);
2118 if (item
->IsExpanded())
2120 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2121 int count
= children
.Count();
2128 PaintLevel(children
[n
], dc
, level
, y
);
2129 } while (++n
< count
);
2131 if (!HasFlag(wxTR_NO_LINES
) && count
> 0)
2133 // draw line down to last child
2134 oldY
+= GetLineHeight(children
[n
-1])>>1;
2135 if (HasButtons()) y_mid
+= 5;
2136 dc
.DrawLine(x
, y_mid
, x
, oldY
);
2142 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
2146 if ( item
->HasPlus() )
2148 // it's a folder, indicate it by a border
2153 // draw a line under the drop target because the item will be
2155 DrawLine(item
, TRUE
/* below */);
2158 SetCursor(wxCURSOR_BULLSEYE
);
2163 SetCursor(wxCURSOR_NO_ENTRY
);
2167 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
2169 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2171 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2173 wxClientDC
dc(this);
2175 dc
.SetLogicalFunction(wxINVERT
);
2176 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2178 int w
= i
->GetWidth() + 2;
2179 int h
= GetLineHeight(i
) + 2;
2181 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
2184 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
2186 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2188 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2190 wxClientDC
dc(this);
2192 dc
.SetLogicalFunction(wxINVERT
);
2198 y
+= GetLineHeight(i
) - 1;
2201 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
2204 // -----------------------------------------------------------------------------
2205 // wxWindows callbacks
2206 // -----------------------------------------------------------------------------
2208 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2216 dc
.SetFont( m_normalFont
);
2217 dc
.SetPen( m_dottedPen
);
2219 // this is now done dynamically
2220 //if(GetImageList() == NULL)
2221 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2224 PaintLevel( m_anchor
, dc
, 0, y
);
2227 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&event
)
2236 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&event
)
2245 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2247 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, GetId() );
2248 te
.m_evtKey
= event
;
2249 te
.SetEventObject( this );
2250 if ( GetEventHandler()->ProcessEvent( te
) )
2252 // intercepted by the user code
2256 if ( (m_current
== 0) || (m_key_current
== 0) )
2262 // how should the selection work for this event?
2263 bool is_multiple
, extended_select
, unselect_others
;
2264 EventFlagsToSelType(GetWindowStyleFlag(),
2266 event
.ControlDown(),
2267 is_multiple
, extended_select
, unselect_others
);
2271 // * : Expand all/Collapse all
2272 // ' ' | return : activate
2273 // up : go up (not last children!)
2275 // left : go to parent
2276 // right : open if parent and go next
2277 // home : go to root
2278 // end : go to last item without opening parents
2279 switch (event
.KeyCode())
2283 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2291 if ( !IsExpanded(m_current
) )
2294 ExpandAll(m_current
);
2297 //else: fall through to Collapse() it
2301 if (IsExpanded(m_current
))
2303 Collapse(m_current
);
2310 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2311 event
.m_item
= (long) m_current
;
2312 event
.SetEventObject( this );
2313 GetEventHandler()->ProcessEvent( event
);
2317 // up goes to the previous sibling or to the last
2318 // of its children if it's expanded
2321 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2324 prev
= GetParent( m_key_current
);
2325 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2327 break; // don't go to root if it is hidden
2332 wxTreeItemId current
= m_key_current
;
2333 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
2334 if (current
== GetFirstChild( prev
, cookie
))
2336 // otherwise we return to where we came from
2337 SelectItem( prev
, unselect_others
, extended_select
);
2338 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2339 EnsureVisible( prev
);
2346 while ( IsExpanded(prev
) && HasChildren(prev
) )
2348 wxTreeItemId child
= GetLastChild(prev
);
2355 SelectItem( prev
, unselect_others
, extended_select
);
2356 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2357 EnsureVisible( prev
);
2362 // left arrow goes to the parent
2365 wxTreeItemId prev
= GetParent( m_current
);
2366 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2368 // don't go to root if it is hidden
2369 prev
= GetPrevSibling( m_current
);
2373 EnsureVisible( prev
);
2374 SelectItem( prev
, unselect_others
, extended_select
);
2380 // this works the same as the down arrow except that we
2381 // also expand the item if it wasn't expanded yet
2387 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2390 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2391 SelectItem( child
, unselect_others
, extended_select
);
2392 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2393 EnsureVisible( child
);
2397 wxTreeItemId next
= GetNextSibling( m_key_current
);
2400 wxTreeItemId current
= m_key_current
;
2401 while (current
&& !next
)
2403 current
= GetParent( current
);
2404 if (current
) next
= GetNextSibling( current
);
2409 SelectItem( next
, unselect_others
, extended_select
);
2410 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2411 EnsureVisible( next
);
2417 // <End> selects the last visible tree item
2420 wxTreeItemId last
= GetRootItem();
2422 while ( last
.IsOk() && IsExpanded(last
) )
2424 wxTreeItemId lastChild
= GetLastChild(last
);
2426 // it may happen if the item was expanded but then all of
2427 // its children have been deleted - so IsExpanded() returned
2428 // TRUE, but GetLastChild() returned invalid item
2437 EnsureVisible( last
);
2438 SelectItem( last
, unselect_others
, extended_select
);
2443 // <Home> selects the root item
2446 wxTreeItemId prev
= GetRootItem();
2448 if (HasFlag(wxTR_HIDE_ROOT
))
2451 prev
= GetFirstChild(prev
, dummy
);
2454 EnsureVisible( prev
);
2455 SelectItem( prev
, unselect_others
, extended_select
);
2464 wxTreeItemId
wxGenericTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
2466 // JACS: removed wxYieldIfNeeded() because it can cause the window
2467 // to be deleted from under us if a close window event is pending
2472 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
2473 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
2474 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
2475 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
2476 if (flags
) return wxTreeItemId();
2478 if (m_anchor
== NULL
)
2480 flags
= wxTREE_HITTEST_NOWHERE
;
2481 return wxTreeItemId();
2484 wxClientDC
dc(this);
2486 wxCoord x
= dc
.DeviceToLogicalX( point
.x
);
2487 wxCoord y
= dc
.DeviceToLogicalY( point
.y
);
2488 wxGenericTreeItem
*hit
= m_anchor
->HitTest(wxPoint(x
, y
),
2494 flags
= wxTREE_HITTEST_NOWHERE
;
2495 return wxTreeItemId();
2500 // get the bounding rectangle of the item (or of its label only)
2501 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2503 bool WXUNUSED(textOnly
)) const
2505 wxCHECK_MSG( item
.IsOk(), FALSE
, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2507 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2510 GetViewStart(& startX
, & startY
);
2512 rect
.x
= i
->GetX() - startX
*PIXELS_PER_UNIT
;
2513 rect
.y
= i
->GetY() - startY
*PIXELS_PER_UNIT
;
2514 rect
.width
= i
->GetWidth();
2515 //rect.height = i->GetHeight();
2516 rect
.height
= GetLineHeight(i
);
2523 void wxGenericTreeCtrl::Edit( const wxTreeItemId
& item
)
2525 if (!item
.IsOk()) return;
2527 m_currentEdit
= (wxGenericTreeItem
*) item
.m_pItem
;
2529 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, GetId() );
2530 te
.m_item
= (long) m_currentEdit
;
2531 te
.SetEventObject( this );
2532 GetEventHandler()->ProcessEvent( te
);
2534 if (!te
.IsAllowed()) return;
2536 // We have to call this here because the label in
2537 // question might just have been added and no screen
2538 // update taken place.
2539 if (m_dirty
) wxYieldIfNeeded();
2541 wxString s
= m_currentEdit
->GetText();
2542 int x
= m_currentEdit
->GetX();
2543 int y
= m_currentEdit
->GetY();
2544 int w
= m_currentEdit
->GetWidth();
2545 int h
= m_currentEdit
->GetHeight();
2550 int image
= m_currentEdit
->GetCurrentImage();
2551 if ( image
!= NO_IMAGE
)
2553 if ( m_imageListNormal
)
2555 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2560 wxFAIL_MSG(_T("you must create an image list to use images!"));
2564 w
-= image_w
+ 4; // I don't know why +4 is needed
2566 wxClientDC
dc(this);
2568 x
= dc
.LogicalToDeviceX( x
);
2569 y
= dc
.LogicalToDeviceY( y
);
2571 wxTreeTextCtrl
*text
= new wxTreeTextCtrl(this, -1,
2581 void wxGenericTreeCtrl::OnRenameTimer()
2586 void wxGenericTreeCtrl::OnRenameAccept()
2588 // TODO if the validator fails this causes a crash
2589 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, GetId() );
2590 le
.m_item
= (long) m_currentEdit
;
2591 le
.SetEventObject( this );
2592 le
.m_label
= m_renameRes
;
2593 GetEventHandler()->ProcessEvent( le
);
2595 if (!le
.IsAllowed()) return;
2597 SetItemText( m_currentEdit
, m_renameRes
);
2600 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
2602 if ( !m_anchor
) return;
2604 // we process left mouse up event (enables in-place edit), right down
2605 // (pass to the user code), left dbl click (activate item) and
2606 // dragging/moving events for items drag-and-drop
2607 if ( !(event
.LeftDown() ||
2609 event
.RightDown() ||
2610 event
.LeftDClick() ||
2612 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
2619 wxClientDC
dc(this);
2621 wxCoord x
= dc
.DeviceToLogicalX( event
.GetX() );
2622 wxCoord y
= dc
.DeviceToLogicalY( event
.GetY() );
2625 wxGenericTreeItem
*item
= m_anchor
->HitTest( wxPoint(x
,y
),
2630 if ( event
.Dragging() && !m_isDragging
)
2632 if (m_dragCount
== 0)
2633 m_dragStart
= wxPoint(x
,y
);
2637 if (m_dragCount
!= 3)
2639 // wait until user drags a bit further...
2643 wxEventType command
= event
.RightIsDown()
2644 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2645 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2647 wxTreeEvent
nevent( command
, GetId() );
2648 nevent
.m_item
= (long) m_current
;
2649 nevent
.SetEventObject(this);
2651 // by default the dragging is not supported, the user code must
2652 // explicitly allow the event for it to take place
2655 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
2657 // we're going to drag this item
2658 m_isDragging
= TRUE
;
2660 // remember the old cursor because we will change it while
2662 m_oldCursor
= m_cursor
;
2664 // in a single selection control, hide the selection temporarily
2665 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
2667 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
2669 if ( m_oldSelection
)
2671 m_oldSelection
->SetHilight(FALSE
);
2672 RefreshLine(m_oldSelection
);
2679 else if ( event
.Moving() )
2681 if ( item
!= m_dropTarget
)
2683 // unhighlight the previous drop target
2684 DrawDropEffect(m_dropTarget
);
2686 m_dropTarget
= item
;
2688 // highlight the current drop target if any
2689 DrawDropEffect(m_dropTarget
);
2694 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
2696 // erase the highlighting
2697 DrawDropEffect(m_dropTarget
);
2699 if ( m_oldSelection
)
2701 m_oldSelection
->SetHilight(TRUE
);
2702 RefreshLine(m_oldSelection
);
2703 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
2706 // generate the drag end event
2707 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, GetId());
2709 event
.m_item
= (long) item
;
2710 event
.m_pointDrag
= wxPoint(x
, y
);
2711 event
.SetEventObject(this);
2713 (void)GetEventHandler()->ProcessEvent(event
);
2715 m_isDragging
= FALSE
;
2716 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
2720 SetCursor(m_oldCursor
);
2726 // here we process only the messages which happen on tree items
2730 if (item
== NULL
) return; /* we hit the blank area */
2732 if ( event
.RightDown() )
2734 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, GetId());
2735 nevent
.m_item
= (long) item
;
2736 CalcScrolledPosition(x
, y
,
2737 &nevent
.m_pointDrag
.x
,
2738 &nevent
.m_pointDrag
.y
);
2739 nevent
.SetEventObject(this);
2740 GetEventHandler()->ProcessEvent(nevent
);
2742 else if ( event
.LeftUp() )
2746 if ( (item
== m_current
) &&
2747 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
2748 HasFlag(wxTR_EDIT_LABELS
) )
2750 if ( m_renameTimer
->IsRunning() )
2751 m_renameTimer
->Stop();
2753 m_renameTimer
->Start( 100, TRUE
);
2756 m_lastOnSame
= FALSE
;
2759 else // !RightDown() && !LeftUp() ==> LeftDown() || LeftDClick()
2761 if ( event
.LeftDown() )
2763 m_lastOnSame
= item
== m_current
;
2766 if ( flags
& wxTREE_HITTEST_ONITEMBUTTON
)
2768 // only toggle the item for a single click, double click on
2769 // the button doesn't do anything (it toggles the item twice)
2770 if ( event
.LeftDown() )
2775 // don't select the item if the button was clicked
2779 // how should the selection work for this event?
2780 bool is_multiple
, extended_select
, unselect_others
;
2781 EventFlagsToSelType(GetWindowStyleFlag(),
2783 event
.ControlDown(),
2784 is_multiple
, extended_select
, unselect_others
);
2786 SelectItem(item
, unselect_others
, extended_select
);
2788 // For some reason, Windows isn't recognizing a left double-click,
2789 // so we need to simulate it here. Allow 200 milliseconds for now.
2790 if ( event
.LeftDClick() )
2792 // double clicking should not start editing the item label
2793 m_renameTimer
->Stop();
2794 m_lastOnSame
= FALSE
;
2796 // send activate event first
2797 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2798 nevent
.m_item
= (long) item
;
2799 CalcScrolledPosition(x
, y
,
2800 &nevent
.m_pointDrag
.x
,
2801 &nevent
.m_pointDrag
.y
);
2802 nevent
.SetEventObject( this );
2803 if ( !GetEventHandler()->ProcessEvent( nevent
) )
2805 // if the user code didn't process the activate event,
2806 // handle it ourselves by toggling the item when it is
2808 if ( item
->HasPlus() )
2818 void wxGenericTreeCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2820 /* after all changes have been done to the tree control,
2821 * we actually redraw the tree when everything is over */
2823 if (!m_dirty
) return;
2827 CalculatePositions();
2829 AdjustMyScrollbars();
2832 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
2838 dc
.SetFont(m_boldFont
);
2840 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2843 // restore normal font
2844 dc
.SetFont( m_normalFont
);
2848 int image
= item
->GetCurrentImage();
2849 if ( image
!= NO_IMAGE
)
2851 if ( m_imageListNormal
)
2853 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2858 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
2861 total_h
+= 2; // at least 2 pixels
2863 total_h
+= total_h
/10; // otherwise 10% extra spacing
2865 item
->SetHeight(total_h
);
2866 if (total_h
>m_lineHeight
)
2867 m_lineHeight
=total_h
;
2869 item
->SetWidth(image_w
+text_w
+2);
2872 // -----------------------------------------------------------------------------
2873 // for developper : y is now the top of the level
2874 // not the middle of it !
2875 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2877 int x
= level
*m_indent
;
2878 if (!HasFlag(wxTR_HIDE_ROOT
))
2882 else if (level
== 0)
2884 // a hidden root is not evaluated, but its
2885 // children are always calculated
2889 CalculateSize( item
, dc
);
2892 item
->SetX( x
+m_spacing
);
2894 y
+= GetLineHeight(item
);
2896 if ( !item
->IsExpanded() )
2898 // we don't need to calculate collapsed branches
2903 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2904 size_t n
, count
= children
.Count();
2906 for (n
= 0; n
< count
; ++n
)
2907 CalculateLevel( children
[n
], dc
, level
, y
); // recurse
2910 void wxGenericTreeCtrl::CalculatePositions()
2912 if ( !m_anchor
) return;
2914 wxClientDC
dc(this);
2917 dc
.SetFont( m_normalFont
);
2919 dc
.SetPen( m_dottedPen
);
2920 //if(GetImageList() == NULL)
2921 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2924 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
2927 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
2929 if (m_dirty
) return;
2931 wxClientDC
dc(this);
2936 GetClientSize( &cw
, &ch
);
2939 rect
.x
= dc
.LogicalToDeviceX( 0 );
2941 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2944 Refresh( TRUE
, &rect
);
2946 AdjustMyScrollbars();
2949 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
2951 if (m_dirty
) return;
2953 wxClientDC
dc(this);
2958 GetClientSize( &cw
, &ch
);
2961 rect
.x
= dc
.LogicalToDeviceX( 0 );
2962 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2964 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
2966 Refresh( TRUE
, &rect
);
2969 void wxGenericTreeCtrl::RefreshSelected()
2971 // TODO: this is awfully inefficient, we should keep the list of all
2972 // selected items internally, should be much faster
2974 RefreshSelectedUnder(m_anchor
);
2977 void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem
*item
)
2979 if ( item
->IsSelected() )
2982 const wxArrayGenericTreeItems
& children
= item
->GetChildren();
2983 size_t count
= children
.GetCount();
2984 for ( size_t n
= 0; n
< count
; n
++ )
2986 RefreshSelectedUnder(children
[n
]);
2990 // ----------------------------------------------------------------------------
2991 // changing colours: we need to refresh the tree control
2992 // ----------------------------------------------------------------------------
2994 bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour
& colour
)
2996 if ( !wxWindow::SetBackgroundColour(colour
) )
3004 bool wxGenericTreeCtrl::SetForegroundColour(const wxColour
& colour
)
3006 if ( !wxWindow::SetForegroundColour(colour
) )
3014 #endif // wxUSE_TREECTRL