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 const char *aqua_arrow_right
[] = {
64 /* columns rows colors chars-per-pixel */
85 static const 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::GetColour
674 wxSYS_COLOUR_HIGHLIGHT
679 m_hilightUnfocusedBrush
= new wxBrush
681 wxSystemSettings::GetColour
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::GetFont( 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 SetForegroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
) );
758 SetBackgroundColour( wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
) );
760 // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
761 m_dottedPen
= wxPen( wxT("grey"), 0, 0 );
766 wxGenericTreeCtrl::~wxGenericTreeCtrl()
768 delete m_hilightBrush
;
769 delete m_hilightUnfocusedBrush
;
771 if (m_arrowRight
) delete m_arrowRight
;
772 if (m_arrowDown
) delete m_arrowDown
;
776 delete m_renameTimer
;
777 if (m_ownsImageListNormal
) delete m_imageListNormal
;
778 if (m_ownsImageListState
) delete m_imageListState
;
779 if (m_ownsImageListButtons
) delete m_imageListButtons
;
782 // -----------------------------------------------------------------------------
784 // -----------------------------------------------------------------------------
786 size_t wxGenericTreeCtrl::GetCount() const
788 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
791 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
793 m_indent
= (unsigned short) indent
;
797 void wxGenericTreeCtrl::SetSpacing(unsigned int spacing
)
799 m_spacing
= (unsigned short) spacing
;
803 size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool recursively
)
805 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
807 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
810 void wxGenericTreeCtrl::SetWindowStyle(const long styles
)
812 // right now, just sets the styles. Eventually, we may
813 // want to update the inherited styles, but right now
814 // none of the parents has updatable styles
815 m_windowStyle
= styles
;
819 // -----------------------------------------------------------------------------
820 // functions to work with tree items
821 // -----------------------------------------------------------------------------
823 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
825 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
827 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
830 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
831 wxTreeItemIcon which
) const
833 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
835 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
838 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
840 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
842 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
845 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
847 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
850 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
851 pItem
->SetText(text
);
852 CalculateSize(pItem
, dc
);
856 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
858 wxTreeItemIcon which
)
860 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
862 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
863 pItem
->SetImage(image
, which
);
866 CalculateSize(pItem
, dc
);
870 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
872 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
874 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
877 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
879 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
881 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
882 pItem
->SetHasPlus(has
);
886 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
888 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
890 // avoid redrawing the tree if no real change
891 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
892 if ( pItem
->IsBold() != bold
)
894 pItem
->SetBold(bold
);
899 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
902 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
904 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
905 pItem
->Attr().SetTextColour(col
);
909 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
912 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
914 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
915 pItem
->Attr().SetBackgroundColour(col
);
919 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
921 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
923 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
924 pItem
->Attr().SetFont(font
);
928 bool wxGenericTreeCtrl::SetFont( const wxFont
&font
)
930 wxScrolledWindow::SetFont(font
);
932 m_normalFont
= font
;
933 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
934 m_normalFont
.GetFamily(),
935 m_normalFont
.GetStyle(),
937 m_normalFont
.GetUnderlined());
943 // -----------------------------------------------------------------------------
944 // item status inquiries
945 // -----------------------------------------------------------------------------
947 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
949 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
951 // An item is only visible if it's not a descendant of a collapsed item
952 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
953 wxGenericTreeItem
* parent
= pItem
->GetParent();
956 if (!parent
->IsExpanded())
958 parent
= parent
->GetParent();
962 GetViewStart(& startX
, & startY
);
964 wxSize clientSize
= GetClientSize();
967 if (!GetBoundingRect(item
, rect
))
969 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
971 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
973 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
979 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
981 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
983 // consider that the item does have children if it has the "+" button: it
984 // might not have them (if it had never been expanded yet) but then it
985 // could have them as well and it's better to err on this side rather than
986 // disabling some operations which are restricted to the items with
987 // children for an item which does have them
988 return ((wxGenericTreeItem
*) item
.m_pItem
)->HasPlus();
991 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
993 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
995 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
998 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1000 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
1002 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
1005 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1007 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
1009 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
1012 // -----------------------------------------------------------------------------
1014 // -----------------------------------------------------------------------------
1016 wxTreeItemId
wxGenericTreeCtrl::GetParent(const wxTreeItemId
& item
) const
1018 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1020 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
1023 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const
1025 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1028 return GetNextChild(item
, cookie
);
1031 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
, long& cookie
) const
1033 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1035 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1036 if ( (size_t)cookie
< children
.Count() )
1038 return children
.Item((size_t)cookie
++);
1042 // there are no more of them
1043 return wxTreeItemId();
1047 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1049 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1051 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1052 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
1055 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1057 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1059 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1060 wxGenericTreeItem
*parent
= i
->GetParent();
1061 if ( parent
== NULL
)
1063 // root item doesn't have any siblings
1064 return wxTreeItemId();
1067 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1068 int index
= siblings
.Index(i
);
1069 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1071 size_t n
= (size_t)(index
+ 1);
1072 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
1075 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1077 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1079 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1080 wxGenericTreeItem
*parent
= i
->GetParent();
1081 if ( parent
== NULL
)
1083 // root item doesn't have any siblings
1084 return wxTreeItemId();
1087 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1088 int index
= siblings
.Index(i
);
1089 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1091 return index
== 0 ? wxTreeItemId()
1092 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
1095 // Only for internal use right now, but should probably be public
1096 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
1098 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1100 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1102 // First see if there are any children.
1103 wxArrayGenericTreeItems
& children
= i
->GetChildren();
1104 if (children
.GetCount() > 0)
1106 return children
.Item(0);
1110 // Try a sibling of this or ancestor instead
1111 wxTreeItemId p
= item
;
1112 wxTreeItemId toFind
;
1115 toFind
= GetNextSibling(p
);
1117 } while (p
.IsOk() && !toFind
.IsOk());
1122 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1124 wxTreeItemId id
= GetRootItem();
1133 } while (id
.IsOk());
1135 return wxTreeItemId();
1138 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1140 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1142 wxTreeItemId id
= item
;
1145 while (id
= GetNext(id
), id
.IsOk())
1151 return wxTreeItemId();
1154 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1156 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1158 wxFAIL_MSG(wxT("not implemented"));
1160 return wxTreeItemId();
1163 // -----------------------------------------------------------------------------
1165 // -----------------------------------------------------------------------------
1167 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1169 const wxString
& text
,
1170 int image
, int selImage
,
1171 wxTreeItemData
*data
)
1173 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1176 // should we give a warning here?
1177 return AddRoot(text
, image
, selImage
, data
);
1180 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1182 wxGenericTreeItem
*item
=
1183 new wxGenericTreeItem( parent
, text
, image
, selImage
, data
);
1187 data
->m_pItem
= (long) item
;
1190 parent
->Insert( item
, previous
);
1195 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1196 int image
, int selImage
,
1197 wxTreeItemData
*data
)
1199 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1201 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1203 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
,
1204 image
, selImage
, data
);
1207 data
->m_pItem
= (long) m_anchor
;
1210 if (HasFlag(wxTR_HIDE_ROOT
))
1212 // if root is hidden, make sure we can navigate
1214 m_anchor
->SetHasPlus();
1216 CalculatePositions();
1219 if (!HasFlag(wxTR_MULTIPLE
))
1221 m_current
= m_key_current
= m_anchor
;
1222 m_current
->SetHilight( TRUE
);
1228 wxTreeItemId
wxGenericTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1229 const wxString
& text
,
1230 int image
, int selImage
,
1231 wxTreeItemData
*data
)
1233 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
1236 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1237 const wxTreeItemId
& idPrevious
,
1238 const wxString
& text
,
1239 int image
, int selImage
,
1240 wxTreeItemData
*data
)
1242 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1245 // should we give a warning here?
1246 return AddRoot(text
, image
, selImage
, data
);
1250 if (idPrevious
.IsOk())
1252 index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1253 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1254 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1257 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1260 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1262 const wxString
& text
,
1263 int image
, int selImage
,
1264 wxTreeItemData
*data
)
1266 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1269 // should we give a warning here?
1270 return AddRoot(text
, image
, selImage
, data
);
1273 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
1276 wxTreeItemId
wxGenericTreeCtrl::AppendItem(const wxTreeItemId
& parentId
,
1277 const wxString
& text
,
1278 int image
, int selImage
,
1279 wxTreeItemData
*data
)
1281 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1284 // should we give a warning here?
1285 return AddRoot(text
, image
, selImage
, data
);
1288 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
1289 image
, selImage
, data
);
1292 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1294 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, GetId() );
1295 event
.m_item
= (long) item
;
1296 event
.SetEventObject( this );
1297 ProcessEvent( event
);
1300 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1302 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1304 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1305 item
->DeleteChildren(this);
1308 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1310 m_dirty
= TRUE
; // do this first so stuff below doesn't cause flicker
1312 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1314 // don't stay with invalid m_key_current or we will crash in
1315 // the next call to OnChar()
1316 bool changeKeyCurrent
= FALSE
;
1317 wxGenericTreeItem
*itemKey
= m_key_current
;
1320 if ( itemKey
== item
)
1322 // m_key_current is a descendant of the item being deleted
1323 changeKeyCurrent
= TRUE
;
1326 itemKey
= itemKey
->GetParent();
1329 wxGenericTreeItem
*parent
= item
->GetParent();
1332 parent
->GetChildren().Remove( item
); // remove by value
1335 if ( changeKeyCurrent
)
1337 // may be NULL or not
1338 m_key_current
= parent
;
1341 item
->DeleteChildren(this);
1342 SendDeleteEvent(item
);
1346 void wxGenericTreeCtrl::DeleteAllItems()
1352 m_anchor
->DeleteChildren(this);
1359 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1361 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1363 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1364 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1365 _T("can't expand hidden root") );
1367 if ( !item
->HasPlus() )
1370 if ( item
->IsExpanded() )
1373 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, GetId() );
1374 event
.m_item
= (long) item
;
1375 event
.SetEventObject( this );
1377 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1379 // cancelled by program
1384 CalculatePositions();
1386 RefreshSubtree(item
);
1388 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1389 ProcessEvent( event
);
1392 void wxGenericTreeCtrl::ExpandAll(const wxTreeItemId
& item
)
1395 if ( IsExpanded(item
) )
1398 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1399 while ( child
.IsOk() )
1403 child
= GetNextChild(item
, cookie
);
1408 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1410 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1411 _T("can't collapse hidden root") );
1413 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1415 if ( !item
->IsExpanded() )
1418 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, GetId() );
1419 event
.m_item
= (long) item
;
1420 event
.SetEventObject( this );
1421 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1423 // cancelled by program
1429 #if 0 // TODO why should items be collapsed recursively?
1430 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1431 size_t count
= children
.Count();
1432 for ( size_t n
= 0; n
< count
; n
++ )
1434 Collapse(children
[n
]);
1438 CalculatePositions();
1440 RefreshSubtree(item
);
1442 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1443 ProcessEvent( event
);
1446 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1449 DeleteChildren(item
);
1452 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1454 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1456 if (item
->IsExpanded())
1462 void wxGenericTreeCtrl::Unselect()
1466 m_current
->SetHilight( FALSE
);
1467 RefreshLine( m_current
);
1471 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1473 if (item
->IsSelected())
1475 item
->SetHilight(FALSE
);
1479 if (item
->HasChildren())
1481 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1482 size_t count
= children
.Count();
1483 for ( size_t n
= 0; n
< count
; ++n
)
1485 UnselectAllChildren(children
[n
]);
1490 void wxGenericTreeCtrl::UnselectAll()
1492 wxTreeItemId rootItem
= GetRootItem();
1494 // the tree might not have the root item at all
1497 UnselectAllChildren((wxGenericTreeItem
*) rootItem
.m_pItem
);
1501 // Recursive function !
1502 // To stop we must have crt_item<last_item
1504 // Tag all next children, when no more children,
1505 // Move to parent (not to tag)
1506 // Keep going... if we found last_item, we stop.
1507 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1509 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1511 if (parent
== NULL
) // This is root item
1512 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1514 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1515 int index
= children
.Index(crt_item
);
1516 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1518 size_t count
= children
.Count();
1519 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1521 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
1524 return TagNextChildren(parent
, last_item
, select
);
1527 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1529 crt_item
->SetHilight(select
);
1530 RefreshLine(crt_item
);
1532 if (crt_item
==last_item
)
1535 if (crt_item
->HasChildren())
1537 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1538 size_t count
= children
.Count();
1539 for ( size_t n
= 0; n
< count
; ++n
)
1541 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1549 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1551 // item2 is not necessary after item1
1552 wxGenericTreeItem
*first
=NULL
, *last
=NULL
;
1554 // choice first' and 'last' between item1 and item2
1555 if (item1
->GetY()<item2
->GetY())
1566 bool select
= m_current
->IsSelected();
1568 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1571 TagNextChildren(first
,last
,select
);
1574 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
,
1575 bool unselect_others
,
1576 bool extended_select
)
1578 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1580 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1581 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1583 //wxCHECK_RET( ( (!unselect_others) && is_single),
1584 // wxT("this is a single selection tree") );
1586 // to keep going anyhow !!!
1589 if (item
->IsSelected())
1590 return; // nothing to do
1591 unselect_others
= TRUE
;
1592 extended_select
= FALSE
;
1594 else if ( unselect_others
&& item
->IsSelected() )
1596 // selection change if there is more than one item currently selected
1597 wxArrayTreeItemIds selected_items
;
1598 if ( GetSelections(selected_items
) == 1 )
1602 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, GetId() );
1603 event
.m_item
= (long) item
;
1604 event
.m_itemOld
= (long) m_current
;
1605 event
.SetEventObject( this );
1606 // TODO : Here we don't send any selection mode yet !
1608 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1611 wxTreeItemId parent
= GetParent( itemId
);
1612 while (parent
.IsOk())
1614 if (!IsExpanded(parent
))
1617 parent
= GetParent( parent
);
1620 EnsureVisible( itemId
);
1623 if (unselect_others
)
1625 if (is_single
) Unselect(); // to speed up thing
1630 if (extended_select
)
1634 m_current
= m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1637 // don't change the mark (m_current)
1638 SelectItemRange(m_current
, item
);
1642 bool select
=TRUE
; // the default
1644 // Check if we need to toggle hilight (ctrl mode)
1645 if (!unselect_others
)
1646 select
=!item
->IsSelected();
1648 m_current
= m_key_current
= item
;
1649 m_current
->SetHilight(select
);
1650 RefreshLine( m_current
);
1653 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1654 GetEventHandler()->ProcessEvent( event
);
1657 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1658 wxArrayTreeItemIds
&array
) const
1660 if ( item
->IsSelected() )
1661 array
.Add(wxTreeItemId(item
));
1663 if ( item
->HasChildren() )
1665 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1666 size_t count
= children
.GetCount();
1667 for ( size_t n
= 0; n
< count
; ++n
)
1668 FillArray(children
[n
], array
);
1672 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1675 wxTreeItemId idRoot
= GetRootItem();
1676 if ( idRoot
.IsOk() )
1678 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1680 //else: the tree is empty, so no selections
1682 return array
.Count();
1685 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1687 if (!item
.IsOk()) return;
1689 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1691 // first expand all parent branches
1692 wxGenericTreeItem
*parent
= gitem
->GetParent();
1694 if ( HasFlag(wxTR_HIDE_ROOT
) )
1696 while ( parent
!= m_anchor
)
1699 parent
= parent
->GetParent();
1707 parent
= parent
->GetParent();
1711 //if (parent) CalculatePositions();
1716 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1718 if (!item
.IsOk()) return;
1720 // We have to call this here because the label in
1721 // question might just have been added and no screen
1722 // update taken place.
1723 if (m_dirty
) wxYieldIfNeeded();
1725 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1727 // now scroll to the item
1728 int item_y
= gitem
->GetY();
1732 GetViewStart( &start_x
, &start_y
);
1733 start_y
*= PIXELS_PER_UNIT
;
1737 GetClientSize( &client_w
, &client_h
);
1739 if (item_y
< start_y
+3)
1744 m_anchor
->GetSize( x
, y
, this );
1745 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1746 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1747 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1748 // Item should appear at top
1749 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1751 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1756 m_anchor
->GetSize( x
, y
, this );
1757 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1758 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1759 item_y
+= PIXELS_PER_UNIT
+2;
1760 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1761 // Item should appear at bottom
1762 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
);
1766 // FIXME: tree sorting functions are not reentrant and not MT-safe!
1767 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
1769 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
1770 wxGenericTreeItem
**item2
)
1772 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
1774 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
1777 int wxGenericTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1778 const wxTreeItemId
& item2
)
1780 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1783 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
1785 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1787 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1789 wxCHECK_RET( !s_treeBeingSorted
,
1790 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
1792 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1793 if ( children
.Count() > 1 )
1797 s_treeBeingSorted
= this;
1798 children
.Sort(tree_ctrl_compare_func
);
1799 s_treeBeingSorted
= NULL
;
1801 //else: don't make the tree dirty as nothing changed
1804 wxImageList
*wxGenericTreeCtrl::GetImageList() const
1806 return m_imageListNormal
;
1809 wxImageList
*wxGenericTreeCtrl::GetButtonsImageList() const
1811 return m_imageListButtons
;
1814 wxImageList
*wxGenericTreeCtrl::GetStateImageList() const
1816 return m_imageListState
;
1819 void wxGenericTreeCtrl::CalculateLineHeight()
1821 wxClientDC
dc(this);
1822 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
1824 if ( m_imageListNormal
)
1826 // Calculate a m_lineHeight value from the normal Image sizes.
1827 // May be toggle off. Then wxGenericTreeCtrl will spread when
1828 // necessary (which might look ugly).
1829 int n
= m_imageListNormal
->GetImageCount();
1830 for (int i
= 0; i
< n
; i
++)
1832 int width
= 0, height
= 0;
1833 m_imageListNormal
->GetSize(i
, width
, height
);
1834 if (height
> m_lineHeight
) m_lineHeight
= height
;
1838 if (m_imageListButtons
)
1840 // Calculate a m_lineHeight value from the Button image sizes.
1841 // May be toggle off. Then wxGenericTreeCtrl will spread when
1842 // necessary (which might look ugly).
1843 int n
= m_imageListButtons
->GetImageCount();
1844 for (int i
= 0; i
< n
; i
++)
1846 int width
= 0, height
= 0;
1847 m_imageListButtons
->GetSize(i
, width
, height
);
1848 if (height
> m_lineHeight
) m_lineHeight
= height
;
1852 if (m_lineHeight
< 30)
1853 m_lineHeight
+= 2; // at least 2 pixels
1855 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
1858 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
1860 if (m_ownsImageListNormal
) delete m_imageListNormal
;
1861 m_imageListNormal
= imageList
;
1862 m_ownsImageListNormal
= FALSE
;
1864 CalculateLineHeight();
1867 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
1869 if (m_ownsImageListState
) delete m_imageListState
;
1870 m_imageListState
= imageList
;
1871 m_ownsImageListState
= FALSE
;
1874 void wxGenericTreeCtrl::SetButtonsImageList(wxImageList
*imageList
)
1876 if (m_ownsImageListButtons
) delete m_imageListButtons
;
1877 m_imageListButtons
= imageList
;
1878 m_ownsImageListButtons
= FALSE
;
1880 CalculateLineHeight();
1883 void wxGenericTreeCtrl::AssignImageList(wxImageList
*imageList
)
1885 SetImageList(imageList
);
1886 m_ownsImageListNormal
= TRUE
;
1889 void wxGenericTreeCtrl::AssignStateImageList(wxImageList
*imageList
)
1891 SetStateImageList(imageList
);
1892 m_ownsImageListState
= TRUE
;
1895 void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList
*imageList
)
1897 SetButtonsImageList(imageList
);
1898 m_ownsImageListButtons
= TRUE
;
1901 // -----------------------------------------------------------------------------
1903 // -----------------------------------------------------------------------------
1905 void wxGenericTreeCtrl::AdjustMyScrollbars()
1910 m_anchor
->GetSize( x
, y
, this );
1911 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1912 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1913 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1914 int y_pos
= GetScrollPos( wxVERTICAL
);
1915 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
1919 SetScrollbars( 0, 0, 0, 0 );
1923 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
1925 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
1926 return item
->GetHeight();
1928 return m_lineHeight
;
1931 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
1933 // TODO implement "state" icon on items
1935 wxTreeItemAttr
*attr
= item
->GetAttributes();
1936 if ( attr
&& attr
->HasFont() )
1937 dc
.SetFont(attr
->GetFont());
1938 else if (item
->IsBold())
1939 dc
.SetFont(m_boldFont
);
1941 long text_w
= 0, text_h
= 0;
1942 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
1944 int image_h
= 0, image_w
= 0;
1945 int image
= item
->GetCurrentImage();
1946 if ( image
!= NO_IMAGE
)
1948 if ( m_imageListNormal
)
1950 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
1959 int total_h
= GetLineHeight(item
);
1961 if ( item
->IsSelected() )
1963 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
1968 if ( attr
&& attr
->HasBackgroundColour() )
1969 colBg
= attr
->GetBackgroundColour();
1971 colBg
= m_backgroundColour
;
1972 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
1975 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
1977 if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT
) )
1981 DoGetPosition(&x
, &y
);
1983 dc
.DrawRectangle(x
, item
->GetY()+offset
, w
, total_h
-offset
);
1987 if ( item
->IsSelected() && image
!= NO_IMAGE
)
1989 // If it's selected, and there's an image, then we should
1990 // take care to leave the area under the image painted in the
1991 // background colour.
1992 dc
.DrawRectangle( item
->GetX() + image_w
- 2, item
->GetY()+offset
,
1993 item
->GetWidth() - image_w
+ 2, total_h
-offset
);
1997 dc
.DrawRectangle( item
->GetX()-2, item
->GetY()+offset
,
1998 item
->GetWidth()+2, total_h
-offset
);
2002 if ( image
!= NO_IMAGE
)
2004 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
2005 m_imageListNormal
->Draw( image
, dc
,
2007 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
2008 wxIMAGELIST_DRAW_TRANSPARENT
);
2009 dc
.DestroyClippingRegion();
2012 dc
.SetBackgroundMode(wxTRANSPARENT
);
2013 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
2014 dc
.DrawText( item
->GetText(),
2015 (wxCoord
)(image_w
+ item
->GetX()),
2016 (wxCoord
)(item
->GetY() + extraH
));
2018 // restore normal font
2019 dc
.SetFont( m_normalFont
);
2022 // Now y stands for the top of the item, whereas it used to stand for middle !
2023 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2025 int x
= level
*m_indent
;
2026 if (!HasFlag(wxTR_HIDE_ROOT
))
2030 else if (level
== 0)
2032 // always expand hidden root
2034 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2035 int count
= children
.Count();
2041 PaintLevel(children
[n
], dc
, 1, y
);
2042 } while (++n
< count
);
2044 if (!HasFlag(wxTR_NO_LINES
) && HasFlag(wxTR_LINES_AT_ROOT
) && count
> 0)
2046 // draw line down to last child
2047 origY
+= GetLineHeight(children
[0])>>1;
2048 oldY
+= GetLineHeight(children
[n
-1])>>1;
2049 dc
.DrawLine(3, origY
, 3, oldY
);
2055 item
->SetX(x
+m_spacing
);
2058 int h
= GetLineHeight(item
);
2060 int y_mid
= y_top
+ (h
>>1);
2063 int exposed_x
= dc
.LogicalToDeviceX(0);
2064 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
2066 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
2070 // don't draw rect outline if we already have the
2071 // background color under Mac
2072 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
2073 #endif // !__WXMAC__
2077 if ( item
->IsSelected() )
2079 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2083 wxTreeItemAttr
*attr
= item
->GetAttributes();
2084 if (attr
&& attr
->HasTextColour())
2085 colText
= attr
->GetTextColour();
2087 colText
= GetForegroundColour();
2091 dc
.SetTextForeground(colText
);
2095 PaintItem(item
, dc
);
2097 if (HasFlag(wxTR_ROW_LINES
))
2099 // if the background colour is white, choose a
2100 // contrasting color for the lines
2101 dc
.SetPen(*((GetBackgroundColour() == *wxWHITE
)
2102 ? wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
2103 dc
.DrawLine(0, y_top
, 10000, y_top
);
2104 dc
.DrawLine(0, y
, 10000, y
);
2107 // restore DC objects
2108 dc
.SetBrush(*wxWHITE_BRUSH
);
2109 dc
.SetPen(m_dottedPen
);
2110 dc
.SetTextForeground(*wxBLACK
);
2112 if (item
->HasPlus() && HasButtons()) // should the item show a button?
2114 if (!HasFlag(wxTR_NO_LINES
))
2116 if (x
> (signed)m_indent
)
2117 dc
.DrawLine(x
- m_indent
, y_mid
, x
- 5, y_mid
);
2118 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2119 dc
.DrawLine(3, y_mid
, x
- 5, y_mid
);
2120 dc
.DrawLine(x
+ 5, y_mid
, x
+ m_spacing
, y_mid
);
2123 if (m_imageListButtons
!= NULL
)
2125 // draw the image button here
2126 int image_h
= 0, image_w
= 0, image
= wxTreeItemIcon_Normal
;
2127 if (item
->IsExpanded()) image
= wxTreeItemIcon_Expanded
;
2128 if (item
->IsSelected())
2129 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
2130 m_imageListButtons
->GetSize(image
, image_w
, image_h
);
2131 int xx
= x
- (image_w
>>1);
2132 int yy
= y_mid
- (image_h
>>1);
2133 dc
.SetClippingRegion(xx
, yy
, image_w
, image_h
);
2134 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
2135 wxIMAGELIST_DRAW_TRANSPARENT
);
2136 dc
.DestroyClippingRegion();
2138 else if (HasFlag(wxTR_TWIST_BUTTONS
))
2140 // draw the twisty button here
2142 if (HasFlag(wxTR_AQUA_BUTTONS
))
2144 if (item
->IsExpanded())
2145 dc
.DrawBitmap( *m_arrowDown
, x
-5, y_mid
-6, TRUE
);
2147 dc
.DrawBitmap( *m_arrowRight
, x
-5, y_mid
-6, TRUE
);
2151 dc
.SetBrush(*m_hilightBrush
);
2152 dc
.SetPen(*wxBLACK_PEN
);
2155 if (item
->IsExpanded())
2158 button
[0].y
= y_mid
-2;
2160 button
[1].y
= y_mid
-2;
2162 button
[2].y
= y_mid
+3;
2166 button
[0].y
= y_mid
-5;
2168 button
[1].y
= y_mid
+5;
2170 button
[2].y
= y_mid
;
2173 dc
.DrawPolygon(3, button
);
2174 dc
.SetPen(m_dottedPen
);
2177 else // if (HasFlag(wxTR_HAS_BUTTONS))
2179 // draw the plus sign here
2180 dc
.SetPen(*wxGREY_PEN
);
2181 dc
.SetBrush(*wxWHITE_BRUSH
);
2182 dc
.DrawRectangle(x
-5, y_mid
-4, 11, 9);
2183 dc
.SetPen(*wxBLACK_PEN
);
2184 dc
.DrawLine(x
-2, y_mid
, x
+3, y_mid
);
2185 if (!item
->IsExpanded())
2186 dc
.DrawLine(x
, y_mid
-2, x
, y_mid
+3);
2187 dc
.SetPen(m_dottedPen
);
2190 else if (!HasFlag(wxTR_NO_LINES
)) // no button; maybe a line?
2192 // draw the horizontal line here
2194 if (x
> (signed)m_indent
)
2195 x_start
-= m_indent
;
2196 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2198 dc
.DrawLine(x_start
, y_mid
, x
+ m_spacing
, y_mid
);
2202 if (item
->IsExpanded())
2204 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2205 int count
= children
.Count();
2212 PaintLevel(children
[n
], dc
, level
, y
);
2213 } while (++n
< count
);
2215 if (!HasFlag(wxTR_NO_LINES
) && count
> 0)
2217 // draw line down to last child
2218 oldY
+= GetLineHeight(children
[n
-1])>>1;
2219 if (HasButtons()) y_mid
+= 5;
2220 dc
.DrawLine(x
, y_mid
, x
, oldY
);
2226 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
2230 if ( item
->HasPlus() )
2232 // it's a folder, indicate it by a border
2237 // draw a line under the drop target because the item will be
2239 DrawLine(item
, TRUE
/* below */);
2242 SetCursor(wxCURSOR_BULLSEYE
);
2247 SetCursor(wxCURSOR_NO_ENTRY
);
2251 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
2253 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2255 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2257 wxClientDC
dc(this);
2259 dc
.SetLogicalFunction(wxINVERT
);
2260 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2262 int w
= i
->GetWidth() + 2;
2263 int h
= GetLineHeight(i
) + 2;
2265 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
2268 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
2270 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2272 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2274 wxClientDC
dc(this);
2276 dc
.SetLogicalFunction(wxINVERT
);
2282 y
+= GetLineHeight(i
) - 1;
2285 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
2288 // -----------------------------------------------------------------------------
2289 // wxWindows callbacks
2290 // -----------------------------------------------------------------------------
2292 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2300 dc
.SetFont( m_normalFont
);
2301 dc
.SetPen( m_dottedPen
);
2303 // this is now done dynamically
2304 //if(GetImageList() == NULL)
2305 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2308 PaintLevel( m_anchor
, dc
, 0, y
);
2311 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&event
)
2320 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&event
)
2329 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2331 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, GetId() );
2332 te
.m_evtKey
= event
;
2333 te
.SetEventObject( this );
2334 if ( GetEventHandler()->ProcessEvent( te
) )
2336 // intercepted by the user code
2340 if ( (m_current
== 0) || (m_key_current
== 0) )
2346 // how should the selection work for this event?
2347 bool is_multiple
, extended_select
, unselect_others
;
2348 EventFlagsToSelType(GetWindowStyleFlag(),
2350 event
.ControlDown(),
2351 is_multiple
, extended_select
, unselect_others
);
2355 // * : Expand all/Collapse all
2356 // ' ' | return : activate
2357 // up : go up (not last children!)
2359 // left : go to parent
2360 // right : open if parent and go next
2361 // home : go to root
2362 // end : go to last item without opening parents
2363 switch (event
.KeyCode())
2367 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2375 if ( !IsExpanded(m_current
) )
2378 ExpandAll(m_current
);
2381 //else: fall through to Collapse() it
2385 if (IsExpanded(m_current
))
2387 Collapse(m_current
);
2394 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2395 event
.m_item
= (long) m_current
;
2396 event
.SetEventObject( this );
2397 GetEventHandler()->ProcessEvent( event
);
2401 // up goes to the previous sibling or to the last
2402 // of its children if it's expanded
2405 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2408 prev
= GetParent( m_key_current
);
2409 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2411 break; // don't go to root if it is hidden
2416 wxTreeItemId current
= m_key_current
;
2417 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
2418 if (current
== GetFirstChild( prev
, cookie
))
2420 // otherwise we return to where we came from
2421 SelectItem( prev
, unselect_others
, extended_select
);
2422 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2423 EnsureVisible( prev
);
2430 while ( IsExpanded(prev
) && HasChildren(prev
) )
2432 wxTreeItemId child
= GetLastChild(prev
);
2439 SelectItem( prev
, unselect_others
, extended_select
);
2440 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2441 EnsureVisible( prev
);
2446 // left arrow goes to the parent
2449 wxTreeItemId prev
= GetParent( m_current
);
2450 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2452 // don't go to root if it is hidden
2453 prev
= GetPrevSibling( m_current
);
2457 EnsureVisible( prev
);
2458 SelectItem( prev
, unselect_others
, extended_select
);
2464 // this works the same as the down arrow except that we
2465 // also expand the item if it wasn't expanded yet
2471 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2474 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2475 SelectItem( child
, unselect_others
, extended_select
);
2476 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2477 EnsureVisible( child
);
2481 wxTreeItemId next
= GetNextSibling( m_key_current
);
2484 wxTreeItemId current
= m_key_current
;
2485 while (current
&& !next
)
2487 current
= GetParent( current
);
2488 if (current
) next
= GetNextSibling( current
);
2493 SelectItem( next
, unselect_others
, extended_select
);
2494 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2495 EnsureVisible( next
);
2501 // <End> selects the last visible tree item
2504 wxTreeItemId last
= GetRootItem();
2506 while ( last
.IsOk() && IsExpanded(last
) )
2508 wxTreeItemId lastChild
= GetLastChild(last
);
2510 // it may happen if the item was expanded but then all of
2511 // its children have been deleted - so IsExpanded() returned
2512 // TRUE, but GetLastChild() returned invalid item
2521 EnsureVisible( last
);
2522 SelectItem( last
, unselect_others
, extended_select
);
2527 // <Home> selects the root item
2530 wxTreeItemId prev
= GetRootItem();
2532 if (HasFlag(wxTR_HIDE_ROOT
))
2535 prev
= GetFirstChild(prev
, dummy
);
2538 EnsureVisible( prev
);
2539 SelectItem( prev
, unselect_others
, extended_select
);
2548 wxTreeItemId
wxGenericTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
2550 // JACS: removed wxYieldIfNeeded() because it can cause the window
2551 // to be deleted from under us if a close window event is pending
2556 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
2557 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
2558 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
2559 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
2560 if (flags
) return wxTreeItemId();
2562 if (m_anchor
== NULL
)
2564 flags
= wxTREE_HITTEST_NOWHERE
;
2565 return wxTreeItemId();
2568 wxGenericTreeItem
*hit
= m_anchor
->HitTest(CalcUnscrolledPosition(point
),
2572 flags
= wxTREE_HITTEST_NOWHERE
;
2573 return wxTreeItemId();
2578 // get the bounding rectangle of the item (or of its label only)
2579 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2581 bool WXUNUSED(textOnly
)) const
2583 wxCHECK_MSG( item
.IsOk(), FALSE
, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2585 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2588 GetViewStart(& startX
, & startY
);
2590 rect
.x
= i
->GetX() - startX
*PIXELS_PER_UNIT
;
2591 rect
.y
= i
->GetY() - startY
*PIXELS_PER_UNIT
;
2592 rect
.width
= i
->GetWidth();
2593 //rect.height = i->GetHeight();
2594 rect
.height
= GetLineHeight(i
);
2601 void wxGenericTreeCtrl::Edit( const wxTreeItemId
& item
)
2603 if (!item
.IsOk()) return;
2605 m_currentEdit
= (wxGenericTreeItem
*) item
.m_pItem
;
2607 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, GetId() );
2608 te
.m_item
= (long) m_currentEdit
;
2609 te
.SetEventObject( this );
2610 GetEventHandler()->ProcessEvent( te
);
2612 if (!te
.IsAllowed()) return;
2614 // We have to call this here because the label in
2615 // question might just have been added and no screen
2616 // update taken place.
2617 if (m_dirty
) wxYieldIfNeeded();
2619 wxString s
= m_currentEdit
->GetText();
2620 int w
= m_currentEdit
->GetWidth();
2621 int h
= m_currentEdit
->GetHeight();
2623 CalcScrolledPosition(m_currentEdit
->GetX(), m_currentEdit
->GetY(), &x
, &y
);
2628 int image
= m_currentEdit
->GetCurrentImage();
2629 if ( image
!= NO_IMAGE
)
2631 if ( m_imageListNormal
)
2633 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2638 wxFAIL_MSG(_T("you must create an image list to use images!"));
2642 w
-= image_w
+ 4; // I don't know why +4 is needed
2644 wxTreeTextCtrl
*text
= new wxTreeTextCtrl(this, -1,
2654 void wxGenericTreeCtrl::OnRenameTimer()
2659 void wxGenericTreeCtrl::OnRenameAccept()
2661 // TODO if the validator fails this causes a crash
2662 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, GetId() );
2663 le
.m_item
= (long) m_currentEdit
;
2664 le
.SetEventObject( this );
2665 le
.m_label
= m_renameRes
;
2666 GetEventHandler()->ProcessEvent( le
);
2668 if (!le
.IsAllowed()) return;
2670 SetItemText( m_currentEdit
, m_renameRes
);
2673 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
2675 if ( !m_anchor
) return;
2677 // we process left mouse up event (enables in-place edit), right down
2678 // (pass to the user code), left dbl click (activate item) and
2679 // dragging/moving events for items drag-and-drop
2680 if ( !(event
.LeftDown() ||
2682 event
.RightDown() ||
2683 event
.LeftDClick() ||
2685 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
2692 wxPoint pt
= CalcUnscrolledPosition(event
.GetPosition());
2695 wxGenericTreeItem
*item
= m_anchor
->HitTest(pt
, this, flags
, 0);
2697 if ( event
.Dragging() && !m_isDragging
)
2699 if (m_dragCount
== 0)
2704 if (m_dragCount
!= 3)
2706 // wait until user drags a bit further...
2710 wxEventType command
= event
.RightIsDown()
2711 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2712 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2714 wxTreeEvent
nevent( command
, GetId() );
2715 nevent
.m_item
= (long) m_current
;
2716 nevent
.SetEventObject(this);
2718 // by default the dragging is not supported, the user code must
2719 // explicitly allow the event for it to take place
2722 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
2724 // we're going to drag this item
2725 m_isDragging
= TRUE
;
2727 // remember the old cursor because we will change it while
2729 m_oldCursor
= m_cursor
;
2731 // in a single selection control, hide the selection temporarily
2732 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
2734 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
2736 if ( m_oldSelection
)
2738 m_oldSelection
->SetHilight(FALSE
);
2739 RefreshLine(m_oldSelection
);
2746 else if ( event
.Moving() )
2748 if ( item
!= m_dropTarget
)
2750 // unhighlight the previous drop target
2751 DrawDropEffect(m_dropTarget
);
2753 m_dropTarget
= item
;
2755 // highlight the current drop target if any
2756 DrawDropEffect(m_dropTarget
);
2761 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
2763 // erase the highlighting
2764 DrawDropEffect(m_dropTarget
);
2766 if ( m_oldSelection
)
2768 m_oldSelection
->SetHilight(TRUE
);
2769 RefreshLine(m_oldSelection
);
2770 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
2773 // generate the drag end event
2774 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, GetId());
2776 event
.m_item
= (long) item
;
2777 event
.m_pointDrag
= pt
;
2778 event
.SetEventObject(this);
2780 (void)GetEventHandler()->ProcessEvent(event
);
2782 m_isDragging
= FALSE
;
2783 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
2787 SetCursor(m_oldCursor
);
2793 // here we process only the messages which happen on tree items
2797 if (item
== NULL
) return; /* we hit the blank area */
2799 if ( event
.RightDown() )
2801 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, GetId());
2802 nevent
.m_item
= (long) item
;
2803 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
2804 nevent
.SetEventObject(this);
2805 GetEventHandler()->ProcessEvent(nevent
);
2807 else if ( event
.LeftUp() )
2811 if ( (item
== m_current
) &&
2812 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
2813 HasFlag(wxTR_EDIT_LABELS
) )
2815 if ( m_renameTimer
->IsRunning() )
2816 m_renameTimer
->Stop();
2818 m_renameTimer
->Start( 100, TRUE
);
2821 m_lastOnSame
= FALSE
;
2824 else // !RightDown() && !LeftUp() ==> LeftDown() || LeftDClick()
2826 if ( event
.LeftDown() )
2828 m_lastOnSame
= item
== m_current
;
2831 if ( flags
& wxTREE_HITTEST_ONITEMBUTTON
)
2833 // only toggle the item for a single click, double click on
2834 // the button doesn't do anything (it toggles the item twice)
2835 if ( event
.LeftDown() )
2840 // don't select the item if the button was clicked
2844 // how should the selection work for this event?
2845 bool is_multiple
, extended_select
, unselect_others
;
2846 EventFlagsToSelType(GetWindowStyleFlag(),
2848 event
.ControlDown(),
2849 is_multiple
, extended_select
, unselect_others
);
2851 SelectItem(item
, unselect_others
, extended_select
);
2853 // For some reason, Windows isn't recognizing a left double-click,
2854 // so we need to simulate it here. Allow 200 milliseconds for now.
2855 if ( event
.LeftDClick() )
2857 // double clicking should not start editing the item label
2858 m_renameTimer
->Stop();
2859 m_lastOnSame
= FALSE
;
2861 // send activate event first
2862 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2863 nevent
.m_item
= (long) item
;
2864 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
2865 nevent
.SetEventObject( this );
2866 if ( !GetEventHandler()->ProcessEvent( nevent
) )
2868 // if the user code didn't process the activate event,
2869 // handle it ourselves by toggling the item when it is
2871 if ( item
->HasPlus() )
2881 void wxGenericTreeCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2883 /* after all changes have been done to the tree control,
2884 * we actually redraw the tree when everything is over */
2886 if (!m_dirty
) return;
2890 CalculatePositions();
2892 AdjustMyScrollbars();
2895 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
2900 wxTreeItemAttr
*attr
= item
->GetAttributes();
2901 if ( attr
&& attr
->HasFont() )
2902 dc
.SetFont(attr
->GetFont());
2903 else if ( item
->IsBold() )
2904 dc
.SetFont(m_boldFont
);
2906 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2909 // restore normal font
2910 dc
.SetFont( m_normalFont
);
2914 int image
= item
->GetCurrentImage();
2915 if ( image
!= NO_IMAGE
)
2917 if ( m_imageListNormal
)
2919 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2924 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
2927 total_h
+= 2; // at least 2 pixels
2929 total_h
+= total_h
/10; // otherwise 10% extra spacing
2931 item
->SetHeight(total_h
);
2932 if (total_h
>m_lineHeight
)
2933 m_lineHeight
=total_h
;
2935 item
->SetWidth(image_w
+text_w
+2);
2938 // -----------------------------------------------------------------------------
2939 // for developper : y is now the top of the level
2940 // not the middle of it !
2941 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2943 int x
= level
*m_indent
;
2944 if (!HasFlag(wxTR_HIDE_ROOT
))
2948 else if (level
== 0)
2950 // a hidden root is not evaluated, but its
2951 // children are always calculated
2955 CalculateSize( item
, dc
);
2958 item
->SetX( x
+m_spacing
);
2960 y
+= GetLineHeight(item
);
2962 if ( !item
->IsExpanded() )
2964 // we don't need to calculate collapsed branches
2969 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2970 size_t n
, count
= children
.Count();
2972 for (n
= 0; n
< count
; ++n
)
2973 CalculateLevel( children
[n
], dc
, level
, y
); // recurse
2976 void wxGenericTreeCtrl::CalculatePositions()
2978 if ( !m_anchor
) return;
2980 wxClientDC
dc(this);
2983 dc
.SetFont( m_normalFont
);
2985 dc
.SetPen( m_dottedPen
);
2986 //if(GetImageList() == NULL)
2987 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2990 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
2993 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
2995 if (m_dirty
) return;
2997 wxSize client
= GetClientSize();
3000 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3001 rect
.width
= client
.x
;
3002 rect
.height
= client
.y
;
3004 Refresh(TRUE
, &rect
);
3006 AdjustMyScrollbars();
3009 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
3011 if (m_dirty
) return;
3014 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3015 rect
.width
= GetClientSize().x
;
3016 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
3018 Refresh(TRUE
, &rect
);
3021 void wxGenericTreeCtrl::RefreshSelected()
3023 // TODO: this is awfully inefficient, we should keep the list of all
3024 // selected items internally, should be much faster
3026 RefreshSelectedUnder(m_anchor
);
3029 void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem
*item
)
3031 if ( item
->IsSelected() )
3034 const wxArrayGenericTreeItems
& children
= item
->GetChildren();
3035 size_t count
= children
.GetCount();
3036 for ( size_t n
= 0; n
< count
; n
++ )
3038 RefreshSelectedUnder(children
[n
]);
3042 // ----------------------------------------------------------------------------
3043 // changing colours: we need to refresh the tree control
3044 // ----------------------------------------------------------------------------
3046 bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour
& colour
)
3048 if ( !wxWindow::SetBackgroundColour(colour
) )
3056 bool wxGenericTreeCtrl::SetForegroundColour(const wxColour
& colour
)
3058 if ( !wxWindow::SetForegroundColour(colour
) )
3066 #endif // wxUSE_TREECTRL