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 "treectrl.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #include "wx/treectrl.h"
32 #include "wx/generic/imaglist.h"
33 #include "wx/settings.h"
36 #include "wx/dynarray.h"
37 #include "wx/arrimpl.cpp"
38 #include "wx/dcclient.h"
39 #include "wx/msgdlg.h"
41 // -----------------------------------------------------------------------------
43 // -----------------------------------------------------------------------------
45 class WXDLLEXPORT wxGenericTreeItem
;
47 WX_DEFINE_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( wxTreeCtrl
*owner
);
74 // control used for in-place edit
75 class WXDLLEXPORT wxTreeTextCtrl
: public wxTextCtrl
79 wxTreeTextCtrl( wxWindow
*parent
,
84 const wxString
&value
= wxEmptyString
,
85 const wxPoint
&pos
= wxDefaultPosition
,
86 const wxSize
&size
= wxDefaultSize
,
88 const wxValidator
& validator
= wxDefaultValidator
,
89 const wxString
&name
= wxTextCtrlNameStr
);
91 void OnChar( wxKeyEvent
&event
);
92 void OnKillFocus( wxFocusEvent
&event
);
98 wxString m_startValue
;
100 DECLARE_EVENT_TABLE()
101 DECLARE_DYNAMIC_CLASS(wxTreeTextCtrl
);
105 class WXDLLEXPORT wxGenericTreeItem
109 wxGenericTreeItem() { m_data
= NULL
; }
110 wxGenericTreeItem( wxGenericTreeItem
*parent
,
111 const wxString
& text
,
113 int image
, int selImage
,
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
; }
151 wxGenericTreeItem
*GetParent() const { return m_parent
; }
154 // deletes all children notifying the treectrl about it if !NULL
156 void DeleteChildren(wxTreeCtrl
*tree
= NULL
);
157 // FIXME don't know what is it for
160 // get count of all children (and grand children if 'recursively')
161 size_t GetChildrenCount(bool recursively
= TRUE
) const;
163 void Insert(wxGenericTreeItem
*child
, size_t index
)
164 { m_children
.Insert(child
, index
); }
166 void SetCross( int x
, int y
);
167 void GetSize( int &x
, int &y
, const wxTreeCtrl
* );
169 // return the item at given position (or NULL if no item), onButton is
170 // TRUE if the point belongs to the item's button, otherwise it lies
171 // on the button's label
172 wxGenericTreeItem
*HitTest( const wxPoint
& point
, const wxTreeCtrl
*, int &flags
);
174 void Expand() { m_isCollapsed
= FALSE
; }
175 void Collapse() { m_isCollapsed
= TRUE
; }
177 void SetHilight( bool set
= TRUE
) { m_hasHilight
= set
; }
180 bool HasChildren() const { return !m_children
.IsEmpty(); }
181 bool IsSelected() const { return m_hasHilight
; }
182 bool IsExpanded() const { return !m_isCollapsed
; }
183 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
184 bool IsBold() const { return m_isBold
; }
187 // get them - may be NULL
188 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
189 // get them ensuring that the pointer is not NULL
190 wxTreeItemAttr
& Attr()
193 m_attr
= new wxTreeItemAttr
;
201 // tree ctrl images for the normal, selected, expanded and
202 // expanded+selected states
203 int m_images
[wxTreeItemIcon_Max
];
205 wxTreeItemData
*m_data
;
207 // use bitfields to save size
208 int m_isCollapsed
:1;
209 int m_hasHilight
:1; // same as focused
210 int m_hasPlus
:1; // used for item which doesn't have
211 // children but has a [+] button
212 int m_isBold
:1; // render the label in bold font
215 wxCoord m_height
, m_width
;
216 int m_xCross
, m_yCross
;
219 wxArrayGenericTreeItems m_children
;
220 wxGenericTreeItem
*m_parent
;
222 wxTreeItemAttr
*m_attr
;
225 // =============================================================================
227 // =============================================================================
229 // ----------------------------------------------------------------------------
231 // ----------------------------------------------------------------------------
233 // translate the key or mouse event flags to the type of selection we're
235 static void EventFlagsToSelType(long style
,
239 bool &extended_select
,
240 bool &unselect_others
)
242 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
243 extended_select
= shiftDown
&& is_multiple
;
244 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
247 // -----------------------------------------------------------------------------
248 // wxTreeRenameTimer (internal)
249 // -----------------------------------------------------------------------------
251 wxTreeRenameTimer::wxTreeRenameTimer( wxTreeCtrl
*owner
)
256 void wxTreeRenameTimer::Notify()
258 m_owner
->OnRenameTimer();
261 //-----------------------------------------------------------------------------
262 // wxTreeTextCtrl (internal)
263 //-----------------------------------------------------------------------------
265 IMPLEMENT_DYNAMIC_CLASS(wxTreeTextCtrl
,wxTextCtrl
);
267 BEGIN_EVENT_TABLE(wxTreeTextCtrl
,wxTextCtrl
)
268 EVT_CHAR (wxTreeTextCtrl::OnChar
)
269 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus
)
272 wxTreeTextCtrl::wxTreeTextCtrl( wxWindow
*parent
,
277 const wxString
&value
,
281 const wxValidator
& validator
,
282 const wxString
&name
)
283 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
289 (*m_res
) = wxEmptyString
;
290 m_startValue
= value
;
293 void wxTreeTextCtrl::OnChar( wxKeyEvent
&event
)
295 if (event
.m_keyCode
== WXK_RETURN
)
298 (*m_res
) = GetValue();
300 if (!wxPendingDelete
.Member(this))
301 wxPendingDelete
.Append(this);
303 if ((*m_accept
) && ((*m_res
) != m_startValue
))
304 m_owner
->OnRenameAccept();
308 if (event
.m_keyCode
== WXK_ESCAPE
)
313 if (!wxPendingDelete
.Member(this))
314 wxPendingDelete
.Append(this);
321 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
323 if (!wxPendingDelete
.Member(this))
324 wxPendingDelete
.Append(this);
326 if ((*m_accept
) && ((*m_res
) != m_startValue
))
327 m_owner
->OnRenameAccept();
330 // -----------------------------------------------------------------------------
332 // -----------------------------------------------------------------------------
334 IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent
, wxNotifyEvent
)
336 wxTreeEvent::wxTreeEvent( wxEventType commandType
, int id
)
337 : wxNotifyEvent( commandType
, id
)
340 m_itemOld
= (wxGenericTreeItem
*)NULL
;
343 // -----------------------------------------------------------------------------
345 // -----------------------------------------------------------------------------
347 wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem
*parent
,
348 const wxString
& text
,
350 int image
, int selImage
,
351 wxTreeItemData
*data
)
354 m_images
[wxTreeItemIcon_Normal
] = image
;
355 m_images
[wxTreeItemIcon_Selected
] = selImage
;
356 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
357 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
361 m_xCross
= m_yCross
= 0;
365 m_isCollapsed
= TRUE
;
366 m_hasHilight
= FALSE
;
372 m_attr
= (wxTreeItemAttr
*)NULL
;
374 // We don't know the height here yet.
379 wxGenericTreeItem::~wxGenericTreeItem()
385 wxASSERT_MSG( m_children
.IsEmpty(),
386 wxT("please call DeleteChildren() before deleting the item") );
389 void wxGenericTreeItem::DeleteChildren(wxTreeCtrl
*tree
)
391 size_t count
= m_children
.Count();
392 for ( size_t n
= 0; n
< count
; n
++ )
394 wxGenericTreeItem
*child
= m_children
[n
];
396 tree
->SendDeleteEvent(child
);
398 child
->DeleteChildren(tree
);
405 void wxGenericTreeItem::SetText( const wxString
&text
)
410 void wxGenericTreeItem::Reset()
413 for ( int i
= 0; i
< wxTreeItemIcon_Max
; i
++ )
415 m_images
[i
] = NO_IMAGE
;
420 m_height
= m_width
= 0;
427 m_isCollapsed
= TRUE
;
429 m_parent
= (wxGenericTreeItem
*)NULL
;
432 size_t wxGenericTreeItem::GetChildrenCount(bool recursively
) const
434 size_t count
= m_children
.Count();
438 size_t total
= count
;
439 for (size_t n
= 0; n
< count
; ++n
)
441 total
+= m_children
[n
]->GetChildrenCount();
447 void wxGenericTreeItem::SetCross( int x
, int y
)
453 void wxGenericTreeItem::GetSize( int &x
, int &y
, const wxTreeCtrl
*theTree
)
455 int bottomY
=m_y
+theTree
->GetLineHeight(this);
456 if ( y
< bottomY
) y
= bottomY
;
457 int width
= m_x
+ m_width
;
458 if ( x
< width
) x
= width
;
462 size_t count
= m_children
.Count();
463 for ( size_t n
= 0; n
< count
; ++n
)
465 m_children
[n
]->GetSize( x
, y
, theTree
);
470 wxGenericTreeItem
*wxGenericTreeItem::HitTest( const wxPoint
& point
,
471 const wxTreeCtrl
*theTree
,
474 if ((point
.y
> m_y
) && (point
.y
< m_y
+ theTree
->GetLineHeight(this)))
476 if (point
.y
< m_y
+theTree
->GetLineHeight(this)/2 )
477 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
479 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
481 // 5 is the size of the plus sign
482 if ((point
.x
> m_xCross
-5) && (point
.x
< m_xCross
+5) &&
483 (point
.y
> m_yCross
-5) && (point
.y
< m_yCross
+5) &&
484 (IsExpanded() || HasPlus()))
486 flags
|=wxTREE_HITTEST_ONITEMBUTTON
;
490 if ((point
.x
>= m_x
) && (point
.x
<= m_x
+m_width
))
495 // assuming every image (normal and selected ) has the same size !
496 if ( (GetImage() != NO_IMAGE
) && theTree
->m_imageListNormal
)
497 theTree
->m_imageListNormal
->GetSize(GetImage(), image_w
, image_h
);
499 if ((image_w
!= -1) && (point
.x
<= m_x
+ image_w
+ 1))
500 flags
|= wxTREE_HITTEST_ONITEMICON
;
502 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
508 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
509 if (point
.x
> m_x
+m_width
)
510 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
518 size_t count
= m_children
.Count();
519 for ( size_t n
= 0; n
< count
; n
++ )
521 wxGenericTreeItem
*res
= m_children
[n
]->HitTest( point
, theTree
, flags
);
528 flags
|=wxTREE_HITTEST_NOWHERE
;
530 return (wxGenericTreeItem
*) NULL
;
533 int wxGenericTreeItem::GetCurrentImage() const
535 int image
= NO_IMAGE
;
540 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
543 if ( image
== NO_IMAGE
)
545 // we usually fall back to the normal item, but try just the
546 // expanded one (and not selected) first in this case
547 image
= GetImage(wxTreeItemIcon_Expanded
);
553 image
= GetImage(wxTreeItemIcon_Selected
);
556 // may be it doesn't have the specific image we want, try the default one
558 if ( image
== NO_IMAGE
)
566 // -----------------------------------------------------------------------------
567 // wxTreeCtrl implementation
568 // -----------------------------------------------------------------------------
570 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxScrolledWindow
)
572 BEGIN_EVENT_TABLE(wxTreeCtrl
,wxScrolledWindow
)
573 EVT_PAINT (wxTreeCtrl::OnPaint
)
574 EVT_MOUSE_EVENTS (wxTreeCtrl::OnMouse
)
575 EVT_CHAR (wxTreeCtrl::OnChar
)
576 EVT_SET_FOCUS (wxTreeCtrl::OnSetFocus
)
577 EVT_KILL_FOCUS (wxTreeCtrl::OnKillFocus
)
578 EVT_IDLE (wxTreeCtrl::OnIdle
)
581 // -----------------------------------------------------------------------------
582 // construction/destruction
583 // -----------------------------------------------------------------------------
585 void wxTreeCtrl::Init()
589 m_anchor
= (wxGenericTreeItem
*) NULL
;
599 m_hilightBrush
= new wxBrush
601 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
),
606 m_imageListState
= (wxImageList
*) NULL
;
609 m_isDragging
= FALSE
;
611 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
613 m_renameTimer
= new wxTreeRenameTimer( this );
615 m_normalFont
= wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT
);
616 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
617 m_normalFont
.GetFamily(),
618 m_normalFont
.GetStyle(),
620 m_normalFont
.GetUnderlined());
623 bool wxTreeCtrl::Create(wxWindow
*parent
, wxWindowID id
,
624 const wxPoint
& pos
, const wxSize
& size
,
626 const wxValidator
&validator
,
627 const wxString
& name
)
631 wxScrolledWindow::Create( parent
, id
, pos
, size
, style
|wxHSCROLL
|wxVSCROLL
, name
);
634 SetValidator( validator
);
637 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
638 // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
639 m_dottedPen
= wxPen( "grey", 0, 0 );
644 wxTreeCtrl::~wxTreeCtrl()
646 wxDELETE( m_hilightBrush
);
650 delete m_renameTimer
;
653 // -----------------------------------------------------------------------------
655 // -----------------------------------------------------------------------------
657 size_t wxTreeCtrl::GetCount() const
659 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
662 void wxTreeCtrl::SetIndent(unsigned int indent
)
668 void wxTreeCtrl::SetSpacing(unsigned int spacing
)
674 size_t wxTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool recursively
)
676 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
678 return item
.m_pItem
->GetChildrenCount(recursively
);
681 // -----------------------------------------------------------------------------
682 // functions to work with tree items
683 // -----------------------------------------------------------------------------
685 wxString
wxTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
687 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
689 return item
.m_pItem
->GetText();
692 int wxTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
693 wxTreeItemIcon which
) const
695 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
697 return item
.m_pItem
->GetImage(which
);
700 wxTreeItemData
*wxTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
702 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
704 return item
.m_pItem
->GetData();
707 void wxTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
709 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
712 wxGenericTreeItem
*pItem
= item
.m_pItem
;
713 pItem
->SetText(text
);
714 CalculateSize(pItem
, dc
);
718 void wxTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
720 wxTreeItemIcon which
)
722 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
724 wxGenericTreeItem
*pItem
= item
.m_pItem
;
725 pItem
->SetImage(image
, which
);
728 CalculateSize(pItem
, dc
);
732 void wxTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
734 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
736 item
.m_pItem
->SetData(data
);
739 void wxTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
741 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
743 wxGenericTreeItem
*pItem
= item
.m_pItem
;
744 pItem
->SetHasPlus(has
);
748 void wxTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
750 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
752 // avoid redrawing the tree if no real change
753 wxGenericTreeItem
*pItem
= item
.m_pItem
;
754 if ( pItem
->IsBold() != bold
)
756 pItem
->SetBold(bold
);
761 void wxTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
764 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
766 wxGenericTreeItem
*pItem
= item
.m_pItem
;
767 pItem
->Attr().SetTextColour(col
);
771 void wxTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
774 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
776 wxGenericTreeItem
*pItem
= item
.m_pItem
;
777 pItem
->Attr().SetBackgroundColour(col
);
781 void wxTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
783 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
785 wxGenericTreeItem
*pItem
= item
.m_pItem
;
786 pItem
->Attr().SetFont(font
);
790 // -----------------------------------------------------------------------------
791 // item status inquiries
792 // -----------------------------------------------------------------------------
794 bool wxTreeCtrl::IsVisible(const wxTreeItemId
& WXUNUSED(item
)) const
796 wxFAIL_MSG(wxT("not implemented"));
801 bool wxTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
803 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
805 return !item
.m_pItem
->GetChildren().IsEmpty();
808 bool wxTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
810 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
812 return item
.m_pItem
->IsExpanded();
815 bool wxTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
817 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
819 return item
.m_pItem
->IsSelected();
822 bool wxTreeCtrl::IsBold(const wxTreeItemId
& item
) const
824 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
826 return item
.m_pItem
->IsBold();
829 // -----------------------------------------------------------------------------
831 // -----------------------------------------------------------------------------
833 wxTreeItemId
wxTreeCtrl::GetParent(const wxTreeItemId
& item
) const
835 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
837 return item
.m_pItem
->GetParent();
840 wxTreeItemId
wxTreeCtrl::GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const
842 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
845 return GetNextChild(item
, cookie
);
848 wxTreeItemId
wxTreeCtrl::GetNextChild(const wxTreeItemId
& item
, long& cookie
) const
850 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
852 wxArrayGenericTreeItems
& children
= item
.m_pItem
->GetChildren();
853 if ( (size_t)cookie
< children
.Count() )
855 return children
.Item((size_t)cookie
++);
859 // there are no more of them
860 return wxTreeItemId();
864 wxTreeItemId
wxTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
866 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
868 wxArrayGenericTreeItems
& children
= item
.m_pItem
->GetChildren();
869 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
872 wxTreeItemId
wxTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
874 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
876 wxGenericTreeItem
*i
= item
.m_pItem
;
877 wxGenericTreeItem
*parent
= i
->GetParent();
878 if ( parent
== NULL
)
880 // root item doesn't have any siblings
881 return wxTreeItemId();
884 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
885 int index
= siblings
.Index(i
);
886 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
888 size_t n
= (size_t)(index
+ 1);
889 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
892 wxTreeItemId
wxTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
894 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
896 wxGenericTreeItem
*i
= item
.m_pItem
;
897 wxGenericTreeItem
*parent
= i
->GetParent();
898 if ( parent
== NULL
)
900 // root item doesn't have any siblings
901 return wxTreeItemId();
904 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
905 int index
= siblings
.Index(i
);
906 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
908 return index
== 0 ? wxTreeItemId()
909 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
912 wxTreeItemId
wxTreeCtrl::GetFirstVisibleItem() const
914 wxFAIL_MSG(wxT("not implemented"));
916 return wxTreeItemId();
919 wxTreeItemId
wxTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
921 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
923 wxFAIL_MSG(wxT("not implemented"));
925 return wxTreeItemId();
928 wxTreeItemId
wxTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
930 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
932 wxFAIL_MSG(wxT("not implemented"));
934 return wxTreeItemId();
937 // -----------------------------------------------------------------------------
939 // -----------------------------------------------------------------------------
941 wxTreeItemId
wxTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
943 const wxString
& text
,
944 int image
, int selImage
,
945 wxTreeItemData
*data
)
947 wxGenericTreeItem
*parent
= parentId
.m_pItem
;
950 // should we give a warning here?
951 return AddRoot(text
, image
, selImage
, data
);
955 wxGenericTreeItem
*item
=
956 new wxGenericTreeItem( parent
, text
, dc
, image
, selImage
, data
);
960 data
->m_pItem
= item
;
963 parent
->Insert( item
, previous
);
970 wxTreeItemId
wxTreeCtrl::AddRoot(const wxString
& text
,
971 int image
, int selImage
,
972 wxTreeItemData
*data
)
974 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
977 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
, dc
,
978 image
, selImage
, data
);
981 data
->m_pItem
= m_anchor
;
984 if (!HasFlag(wxTR_MULTIPLE
))
986 m_current
= m_key_current
= m_anchor
;
987 m_current
->SetHilight( TRUE
);
991 AdjustMyScrollbars();
996 wxTreeItemId
wxTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
997 const wxString
& text
,
998 int image
, int selImage
,
999 wxTreeItemData
*data
)
1001 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
1004 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1005 const wxTreeItemId
& idPrevious
,
1006 const wxString
& text
,
1007 int image
, int selImage
,
1008 wxTreeItemData
*data
)
1010 wxGenericTreeItem
*parent
= parentId
.m_pItem
;
1013 // should we give a warning here?
1014 return AddRoot(text
, image
, selImage
, data
);
1017 int index
= parent
->GetChildren().Index(idPrevious
.m_pItem
);
1018 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1019 wxT("previous item in wxTreeCtrl::InsertItem() is not a sibling") );
1021 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1024 wxTreeItemId
wxTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1026 const wxString
& text
,
1027 int image
, int selImage
,
1028 wxTreeItemData
*data
)
1030 wxGenericTreeItem
*parent
= parentId
.m_pItem
;
1033 // should we give a warning here?
1034 return AddRoot(text
, image
, selImage
, data
);
1037 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
1040 wxTreeItemId
wxTreeCtrl::AppendItem(const wxTreeItemId
& parentId
,
1041 const wxString
& text
,
1042 int image
, int selImage
,
1043 wxTreeItemData
*data
)
1045 wxGenericTreeItem
*parent
= parentId
.m_pItem
;
1048 // should we give a warning here?
1049 return AddRoot(text
, image
, selImage
, data
);
1052 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
1053 image
, selImage
, data
);
1056 void wxTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1058 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, GetId() );
1059 event
.m_item
= item
;
1060 event
.SetEventObject( this );
1061 ProcessEvent( event
);
1064 void wxTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1066 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1067 item
->DeleteChildren(this);
1072 void wxTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1074 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1076 // don't stay with invalid m_key_current or we will crash in the next call
1078 bool changeKeyCurrent
= FALSE
;
1079 wxGenericTreeItem
*itemKey
= m_key_current
;
1080 while ( itemKey
&& !changeKeyCurrent
)
1082 if ( itemKey
== item
)
1084 // m_key_current is a descendant of the item being deleted
1085 changeKeyCurrent
= TRUE
;
1089 itemKey
= itemKey
->GetParent();
1093 wxGenericTreeItem
*parent
= item
->GetParent();
1096 parent
->GetChildren().Remove( item
); // remove by value
1099 if ( changeKeyCurrent
)
1101 // may be NULL or not
1102 m_key_current
= parent
;
1105 item
->DeleteChildren(this);
1106 SendDeleteEvent(item
);
1112 void wxTreeCtrl::DeleteAllItems()
1116 m_anchor
->DeleteChildren(this);
1125 void wxTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1127 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1129 if ( !item
->HasPlus() )
1132 if ( item
->IsExpanded() )
1135 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, GetId() );
1136 event
.m_item
= item
;
1137 event
.SetEventObject( this );
1139 // if ( ProcessEvent( event ) && event.m_code ) TODO: Was this a typo ?
1140 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1142 // cancelled by program
1147 CalculatePositions();
1149 RefreshSubtree(item
);
1151 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1152 ProcessEvent( event
);
1155 void wxTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1157 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1159 if ( !item
->IsExpanded() )
1162 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, GetId() );
1163 event
.m_item
= item
;
1164 event
.SetEventObject( this );
1165 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1167 // cancelled by program
1173 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1174 size_t count
= children
.Count();
1175 for ( size_t n
= 0; n
< count
; n
++ )
1177 Collapse(children
[n
]);
1180 CalculatePositions();
1182 RefreshSubtree(item
);
1184 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1185 ProcessEvent( event
);
1188 void wxTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1191 DeleteChildren(item
);
1194 void wxTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1196 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1198 if (item
->IsExpanded())
1204 void wxTreeCtrl::Unselect()
1208 m_current
->SetHilight( FALSE
);
1209 RefreshLine( m_current
);
1213 void wxTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1215 if (item
->IsSelected())
1217 item
->SetHilight(FALSE
);
1221 if (item
->HasChildren())
1223 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1224 size_t count
= children
.Count();
1225 for ( size_t n
= 0; n
< count
; ++n
)
1227 UnselectAllChildren(children
[n
]);
1232 void wxTreeCtrl::UnselectAll()
1234 UnselectAllChildren(GetRootItem().m_pItem
);
1237 // Recursive function !
1238 // To stop we must have crt_item<last_item
1240 // Tag all next children, when no more children,
1241 // Move to parent (not to tag)
1242 // Keep going... if we found last_item, we stop.
1243 bool wxTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1245 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1247 if (parent
== NULL
) // This is root item
1248 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1250 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1251 int index
= children
.Index(crt_item
);
1252 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1254 size_t count
= children
.Count();
1255 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1257 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
1260 return TagNextChildren(parent
, last_item
, select
);
1263 bool wxTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1265 crt_item
->SetHilight(select
);
1266 RefreshLine(crt_item
);
1268 if (crt_item
==last_item
)
1271 if (crt_item
->HasChildren())
1273 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1274 size_t count
= children
.Count();
1275 for ( size_t n
= 0; n
< count
; ++n
)
1277 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1285 void wxTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1287 // item2 is not necessary after item1
1288 wxGenericTreeItem
*first
=NULL
, *last
=NULL
;
1290 // choice first' and 'last' between item1 and item2
1291 if (item1
->GetY()<item2
->GetY())
1302 bool select
= m_current
->IsSelected();
1304 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1307 TagNextChildren(first
,last
,select
);
1310 void wxTreeCtrl::SelectItem(const wxTreeItemId
& itemId
,
1311 bool unselect_others
,
1312 bool extended_select
)
1314 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1316 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1317 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1319 //wxCHECK_RET( ( (!unselect_others) && is_single),
1320 // wxT("this is a single selection tree") );
1322 // to keep going anyhow !!!
1325 if (item
->IsSelected())
1326 return; // nothing to do
1327 unselect_others
= TRUE
;
1328 extended_select
= FALSE
;
1330 else if ( unselect_others
&& item
->IsSelected() )
1332 // selection change if there is more than one item currently selected
1333 wxArrayTreeItemIds selected_items
;
1334 if ( GetSelections(selected_items
) == 1 )
1338 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, GetId() );
1339 event
.m_item
= item
;
1340 event
.m_itemOld
= m_current
;
1341 event
.SetEventObject( this );
1342 // TODO : Here we don't send any selection mode yet !
1344 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1348 if (unselect_others
)
1350 if (is_single
) Unselect(); // to speed up thing
1355 if (extended_select
)
1360 m_key_current
= GetRootItem().m_pItem
;
1363 // don't change the mark (m_current)
1364 SelectItemRange(m_current
, item
);
1368 bool select
=TRUE
; // the default
1370 // Check if we need to toggle hilight (ctrl mode)
1371 if (!unselect_others
)
1372 select
=!item
->IsSelected();
1374 m_current
= m_key_current
= item
;
1375 m_current
->SetHilight(select
);
1376 RefreshLine( m_current
);
1379 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1380 GetEventHandler()->ProcessEvent( event
);
1383 void wxTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1384 wxArrayTreeItemIds
&array
) const
1386 if ( item
->IsSelected() )
1387 array
.Add(wxTreeItemId(item
));
1389 if ( item
->HasChildren() )
1391 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1392 size_t count
= children
.GetCount();
1393 for ( size_t n
= 0; n
< count
; ++n
)
1394 FillArray(children
[n
],array
);
1398 size_t wxTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1401 FillArray(GetRootItem().m_pItem
, array
);
1403 return array
.Count();
1406 void wxTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1408 if (!item
.IsOk()) return;
1410 wxGenericTreeItem
*gitem
= item
.m_pItem
;
1412 // first expand all parent branches
1413 wxGenericTreeItem
*parent
= gitem
->GetParent();
1417 parent
= parent
->GetParent();
1420 //if (parent) CalculatePositions();
1425 void wxTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1427 if (!item
.IsOk()) return;
1429 // We have to call this here because the label in
1430 // question might just have been added and no screen
1431 // update taken place.
1432 if (m_dirty
) wxYield();
1434 wxGenericTreeItem
*gitem
= item
.m_pItem
;
1436 // now scroll to the item
1437 int item_y
= gitem
->GetY();
1441 ViewStart( &start_x
, &start_y
);
1442 start_y
*= PIXELS_PER_UNIT
;
1446 GetClientSize( &client_w
, &client_h
);
1448 if (item_y
< start_y
+3)
1453 m_anchor
->GetSize( x
, y
, this );
1454 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1455 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1456 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1457 // Item should appear at top
1458 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1460 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1465 m_anchor
->GetSize( x
, y
, this );
1466 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1467 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1468 item_y
+= PIXELS_PER_UNIT
+2;
1469 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1470 // Item should appear at bottom
1471 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
);
1475 // FIXME: tree sorting functions are not reentrant and not MT-safe!
1476 static wxTreeCtrl
*s_treeBeingSorted
= NULL
;
1478 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
1479 wxGenericTreeItem
**item2
)
1481 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxTreeCtrl::SortChildren()") );
1483 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
1486 int wxTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1487 const wxTreeItemId
& item2
)
1489 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1492 void wxTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
1494 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1496 wxGenericTreeItem
*item
= itemId
.m_pItem
;
1498 wxCHECK_RET( !s_treeBeingSorted
,
1499 wxT("wxTreeCtrl::SortChildren is not reentrant") );
1501 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1502 if ( children
.Count() > 1 )
1504 s_treeBeingSorted
= this;
1505 children
.Sort(tree_ctrl_compare_func
);
1506 s_treeBeingSorted
= NULL
;
1510 //else: don't make the tree dirty as nothing changed
1513 wxImageList
*wxTreeCtrl::GetImageList() const
1515 return m_imageListNormal
;
1518 wxImageList
*wxTreeCtrl::GetStateImageList() const
1520 return m_imageListState
;
1523 void wxTreeCtrl::SetImageList(wxImageList
*imageList
)
1525 m_imageListNormal
= imageList
;
1527 if ( !m_imageListNormal
)
1530 // Calculate a m_lineHeight value from the image sizes.
1531 // May be toggle off. Then wxTreeCtrl will spread when
1532 // necessary (which might look ugly).
1533 wxClientDC
dc(this);
1534 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
1535 int width
= 0, height
= 0,
1536 n
= m_imageListNormal
->GetImageCount();
1538 for (int i
= 0; i
< n
; i
++)
1540 m_imageListNormal
->GetSize(i
, width
, height
);
1541 if (height
> m_lineHeight
) m_lineHeight
= height
;
1544 if (m_lineHeight
< 40)
1545 m_lineHeight
+= 2; // at least 2 pixels
1547 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
1550 void wxTreeCtrl::SetStateImageList(wxImageList
*imageList
)
1552 m_imageListState
= imageList
;
1555 // -----------------------------------------------------------------------------
1557 // -----------------------------------------------------------------------------
1559 void wxTreeCtrl::AdjustMyScrollbars()
1565 m_anchor
->GetSize( x
, y
, this );
1566 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1567 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1568 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1569 int y_pos
= GetScrollPos( wxVERTICAL
);
1570 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
1574 SetScrollbars( 0, 0, 0, 0 );
1578 int wxTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
1580 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
1581 return item
->GetHeight();
1583 return m_lineHeight
;
1586 void wxTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
1588 wxTreeItemAttr
*attr
= item
->GetAttributes();
1589 if ( attr
&& attr
->HasFont() )
1590 dc
.SetFont(attr
->GetFont());
1591 else if (item
->IsBold())
1592 dc
.SetFont(m_boldFont
);
1596 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
1600 int image
= item
->GetCurrentImage();
1601 if ( image
!= NO_IMAGE
)
1603 if ( m_imageListNormal
)
1605 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
1614 int total_h
= GetLineHeight(item
);
1616 if (item
->IsSelected())
1617 dc
.SetBrush(*m_hilightBrush
);
1621 if ( attr
&& attr
->HasBackgroundColour() )
1622 colBg
= attr
->GetBackgroundColour();
1624 colBg
= m_backgroundColour
;
1625 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
1628 dc
.DrawRectangle( item
->GetX()-2, item
->GetY(), item
->GetWidth()+2, total_h
);
1630 if ( image
!= NO_IMAGE
)
1632 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
1633 m_imageListNormal
->Draw( image
, dc
,
1635 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
1636 wxIMAGELIST_DRAW_TRANSPARENT
);
1637 dc
.DestroyClippingRegion();
1640 dc
.SetBackgroundMode(wxTRANSPARENT
);
1641 dc
.DrawText( item
->GetText(), image_w
+ item
->GetX(), (wxCoord
)item
->GetY()
1642 + ((total_h
> text_h
) ? (total_h
- text_h
)/2 : 0));
1644 // restore normal font
1645 dc
.SetFont( m_normalFont
);
1648 // Now y stands for the top of the item, whereas it used to stand for middle !
1649 void wxTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
1651 int horizX
= level
*m_indent
;
1653 item
->SetX( horizX
+m_indent
+m_spacing
);
1657 y
+=GetLineHeight(item
)/2;
1659 item
->SetCross( horizX
+m_indent
, y
);
1661 int exposed_x
= dc
.LogicalToDeviceX( 0 );
1662 int exposed_y
= dc
.LogicalToDeviceY( item
->GetY() );
1664 if (IsExposed( exposed_x
, exposed_y
, 10000, GetLineHeight(item
) )) // 10000 = very much
1666 int startX
= horizX
;
1667 int endX
= horizX
+ (m_indent
-5);
1669 // if (!item->HasChildren()) endX += (m_indent+5);
1670 if (!item
->HasChildren()) endX
+= 20;
1672 dc
.DrawLine( startX
, y
, endX
, y
);
1674 if (item
->HasPlus())
1676 dc
.DrawLine( horizX
+(m_indent
+5), y
, horizX
+(m_indent
+15), y
);
1677 dc
.SetPen( *wxGREY_PEN
);
1678 dc
.SetBrush( *wxWHITE_BRUSH
);
1679 dc
.DrawRectangle( horizX
+(m_indent
-5), y
-4, 11, 9 );
1681 dc
.SetPen( *wxBLACK_PEN
);
1682 dc
.DrawLine( horizX
+(m_indent
-2), y
, horizX
+(m_indent
+3), y
);
1683 if (!item
->IsExpanded())
1684 dc
.DrawLine( horizX
+m_indent
, y
-2, horizX
+m_indent
, y
+3 );
1686 dc
.SetPen( m_dottedPen
);
1689 wxPen
*pen
= wxTRANSPARENT_PEN
;
1692 if ( item
->IsSelected() )
1694 colText
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1702 wxTreeItemAttr
*attr
= item
->GetAttributes();
1703 if ( attr
&& attr
->HasTextColour() )
1704 colText
= attr
->GetTextColour();
1710 dc
.SetTextForeground(colText
);
1714 PaintItem(item
, dc
);
1716 // restore DC objects
1717 dc
.SetBrush( *wxWHITE_BRUSH
);
1718 dc
.SetPen( m_dottedPen
);
1719 dc
.SetTextForeground( *wxBLACK
);
1722 y
= oldY
+GetLineHeight(item
);
1724 if (item
->IsExpanded())
1726 oldY
+=GetLineHeight(item
)/2;
1729 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1730 size_t n
, count
= children
.Count();
1731 for ( n
= 0; n
< count
; ++n
)
1734 PaintLevel( children
[n
], dc
, level
+1, y
);
1737 // it may happen that the item is expanded but has no items (when you
1738 // delete all its children for example) - don't draw the vertical line
1742 semiOldY
+=GetLineHeight(children
[--n
])/2;
1743 dc
.DrawLine( horizX
+m_indent
, oldY
+5, horizX
+m_indent
, semiOldY
);
1748 void wxTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
1752 if ( item
->HasPlus() )
1754 // it's a folder, indicate it by a border
1759 // draw a line under the drop target because the item will be
1761 DrawLine(item
, TRUE
/* below */);
1764 SetCursor(wxCURSOR_BULLSEYE
);
1769 SetCursor(wxCURSOR_NO_ENTRY
);
1773 void wxTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
1775 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxTreeCtrl::DrawLine") );
1777 wxGenericTreeItem
*i
= item
.m_pItem
;
1779 wxClientDC
dc(this);
1781 dc
.SetLogicalFunction(wxINVERT
);
1782 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1784 int w
= i
->GetWidth() + 2;
1785 int h
= GetLineHeight(i
) + 2;
1787 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
1790 void wxTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
1792 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxTreeCtrl::DrawLine") );
1794 wxGenericTreeItem
*i
= item
.m_pItem
;
1796 wxClientDC
dc(this);
1798 dc
.SetLogicalFunction(wxINVERT
);
1804 y
+= GetLineHeight(i
) - 1;
1807 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
1810 // -----------------------------------------------------------------------------
1811 // wxWindows callbacks
1812 // -----------------------------------------------------------------------------
1814 void wxTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1822 dc
.SetFont( m_normalFont
);
1823 dc
.SetPen( m_dottedPen
);
1825 // this is now done dynamically
1826 //if(GetImageList() == NULL)
1827 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
1830 PaintLevel( m_anchor
, dc
, 0, y
);
1833 void wxTreeCtrl::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1837 if (m_current
) RefreshLine( m_current
);
1840 void wxTreeCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1844 if (m_current
) RefreshLine( m_current
);
1847 void wxTreeCtrl::OnChar( wxKeyEvent
&event
)
1849 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, GetId() );
1850 te
.m_code
= (int)event
.KeyCode();
1851 te
.SetEventObject( this );
1852 GetEventHandler()->ProcessEvent( te
);
1854 if ( (m_current
== 0) || (m_key_current
== 0) )
1860 // how should the selection work for this event?
1861 bool is_multiple
, extended_select
, unselect_others
;
1862 EventFlagsToSelType(GetWindowStyleFlag(),
1864 event
.ControlDown(),
1865 is_multiple
, extended_select
, unselect_others
);
1869 // * : Toggle Expand/Collapse
1870 // ' ' | return : activate
1871 // up : go up (not last children!)
1873 // left : go to parent
1874 // right : open if parent and go next
1875 // home : go to root
1876 // end : go to last item without opening parents
1877 switch (event
.KeyCode())
1881 if (m_current
->HasPlus() && !IsExpanded(m_current
))
1889 if (IsExpanded(m_current
))
1891 Collapse(m_current
);
1903 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
1904 event
.m_item
= m_current
;
1906 event
.SetEventObject( this );
1907 GetEventHandler()->ProcessEvent( event
);
1911 // up goes to the previous sibling or to the last of its children if
1915 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
1918 prev
= GetParent( m_key_current
);
1922 wxTreeItemId current
= m_key_current
;
1923 if (current
== GetFirstChild( prev
, cockie
))
1925 // otherwise we return to where we came from
1926 SelectItem( prev
, unselect_others
, extended_select
);
1927 m_key_current
=prev
.m_pItem
;
1928 EnsureVisible( prev
);
1935 while ( IsExpanded(prev
) && HasChildren(prev
) )
1937 wxTreeItemId child
= GetLastChild(prev
);
1944 SelectItem( prev
, unselect_others
, extended_select
);
1945 m_key_current
=prev
.m_pItem
;
1946 EnsureVisible( prev
);
1951 // left arrow goes to the parent
1954 wxTreeItemId prev
= GetParent( m_current
);
1957 EnsureVisible( prev
);
1958 SelectItem( prev
, unselect_others
, extended_select
);
1964 // this works the same as the down arrow except that we also expand the
1965 // item if it wasn't expanded yet
1971 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
1974 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
1975 SelectItem( child
, unselect_others
, extended_select
);
1976 m_key_current
=child
.m_pItem
;
1977 EnsureVisible( child
);
1981 wxTreeItemId next
= GetNextSibling( m_key_current
);
1984 wxTreeItemId current
= m_key_current
;
1985 while (current
&& !next
)
1987 current
= GetParent( current
);
1988 if (current
) next
= GetNextSibling( current
);
1993 SelectItem( next
, unselect_others
, extended_select
);
1994 m_key_current
=next
.m_pItem
;
1995 EnsureVisible( next
);
2001 // <End> selects the last visible tree item
2004 wxTreeItemId last
= GetRootItem();
2006 while ( last
.IsOk() && IsExpanded(last
) )
2008 wxTreeItemId lastChild
= GetLastChild(last
);
2010 // it may happen if the item was expanded but then all of
2011 // its children have been deleted - so IsExpanded() returned
2012 // TRUE, but GetLastChild() returned invalid item
2021 EnsureVisible( last
);
2022 SelectItem( last
, unselect_others
, extended_select
);
2027 // <Home> selects the root item
2030 wxTreeItemId prev
= GetRootItem();
2033 EnsureVisible( prev
);
2034 SelectItem( prev
, unselect_others
, extended_select
);
2044 wxTreeItemId
wxTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
2046 // We have to call this here because the label in
2047 // question might just have been added and no screen
2048 // update taken place.
2049 if (m_dirty
) wxYield();
2051 wxClientDC
dc(this);
2053 wxCoord x
= dc
.DeviceToLogicalX( point
.x
);
2054 wxCoord y
= dc
.DeviceToLogicalY( point
.y
);
2059 if (point
.x
<0) flags
|=wxTREE_HITTEST_TOLEFT
;
2060 if (point
.x
>w
) flags
|=wxTREE_HITTEST_TORIGHT
;
2061 if (point
.y
<0) flags
|=wxTREE_HITTEST_ABOVE
;
2062 if (point
.y
>h
) flags
|=wxTREE_HITTEST_BELOW
;
2064 return m_anchor
->HitTest( wxPoint(x
, y
), this, flags
);
2069 void wxTreeCtrl::Edit( const wxTreeItemId
& item
)
2071 if (!item
.IsOk()) return;
2073 m_currentEdit
= item
.m_pItem
;
2075 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, GetId() );
2076 te
.m_item
= m_currentEdit
;
2077 te
.SetEventObject( this );
2078 GetEventHandler()->ProcessEvent( te
);
2080 if (!te
.IsAllowed()) return;
2082 // We have to call this here because the label in
2083 // question might just have been added and no screen
2084 // update taken place.
2085 if (m_dirty
) wxYield();
2087 wxString s
= m_currentEdit
->GetText();
2088 int x
= m_currentEdit
->GetX();
2089 int y
= m_currentEdit
->GetY();
2090 int w
= m_currentEdit
->GetWidth();
2091 int h
= m_currentEdit
->GetHeight();
2096 int image
= m_currentEdit
->GetCurrentImage();
2097 if ( image
!= NO_IMAGE
)
2099 if ( m_imageListNormal
)
2101 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2106 wxFAIL_MSG(_T("you must create an image list to use images!"));
2110 w
-= image_w
+ 4; // I don't know why +4 is needed
2112 wxClientDC
dc(this);
2114 x
= dc
.LogicalToDeviceX( x
);
2115 y
= dc
.LogicalToDeviceY( y
);
2117 wxTreeTextCtrl
*text
= new wxTreeTextCtrl(
2118 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
2122 void wxTreeCtrl::OnRenameTimer()
2127 void wxTreeCtrl::OnRenameAccept()
2129 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, GetId() );
2130 le
.m_item
= m_currentEdit
;
2131 le
.SetEventObject( this );
2132 le
.m_label
= m_renameRes
;
2133 GetEventHandler()->ProcessEvent( le
);
2135 if (!le
.IsAllowed()) return;
2137 SetItemText( m_currentEdit
, m_renameRes
);
2140 void wxTreeCtrl::OnMouse( wxMouseEvent
&event
)
2142 if ( !m_anchor
) return;
2144 // we process left mouse up event (enables in-place edit), right down
2145 // (pass to the user code), left dbl click (activate item) and
2146 // dragging/moving events for items drag-and-drop
2147 if ( !(event
.LeftUp() ||
2148 event
.RightDown() ||
2149 event
.LeftDClick() ||
2151 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
2158 wxClientDC
dc(this);
2160 wxCoord x
= dc
.DeviceToLogicalX( event
.GetX() );
2161 wxCoord y
= dc
.DeviceToLogicalY( event
.GetY() );
2164 wxGenericTreeItem
*item
= m_anchor
->HitTest( wxPoint(x
,y
), this, flags
);
2166 bool onButton
= flags
& wxTREE_HITTEST_ONITEMBUTTON
;
2168 if ( event
.Dragging() && !m_isDragging
)
2170 if (m_dragCount
== 0)
2171 m_dragStart
= wxPoint(x
,y
);
2175 if (m_dragCount
!= 3)
2177 // wait until user drags a bit further...
2181 wxEventType command
= event
.RightIsDown()
2182 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2183 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2185 wxTreeEvent
nevent( command
, GetId() );
2186 nevent
.m_item
= m_current
;
2187 nevent
.SetEventObject(this);
2189 // by default the dragging is not supported, the user code must
2190 // explicitly allow the event for it to take place
2193 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
2195 // we're going to drag this item
2196 m_isDragging
= TRUE
;
2198 // remember the old cursor because we will change it while
2200 m_oldCursor
= m_cursor
;
2202 // in a single selection control, hide the selection temporarily
2203 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
2205 m_oldSelection
= GetSelection().m_pItem
;
2207 if ( m_oldSelection
)
2209 m_oldSelection
->SetHilight(FALSE
);
2210 RefreshLine(m_oldSelection
);
2217 else if ( event
.Moving() )
2219 if ( item
!= m_dropTarget
)
2221 // unhighlight the previous drop target
2222 DrawDropEffect(m_dropTarget
);
2224 m_dropTarget
= item
;
2226 // highlight the current drop target if any
2227 DrawDropEffect(m_dropTarget
);
2232 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
2234 // erase the highlighting
2235 DrawDropEffect(m_dropTarget
);
2237 // generate the drag end event
2238 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, GetId());
2240 event
.m_item
= item
;
2241 event
.m_pointDrag
= wxPoint(x
, y
);
2242 event
.SetEventObject(this);
2244 (void)GetEventHandler()->ProcessEvent(event
);
2246 m_isDragging
= FALSE
;
2247 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
2249 if ( m_oldSelection
)
2251 m_oldSelection
->SetHilight(TRUE
);
2252 RefreshLine(m_oldSelection
);
2253 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
2258 SetCursor(m_oldCursor
);
2264 // here we process only the messages which happen on tree items
2268 if (item
== NULL
) return; /* we hit the blank area */
2270 if ( event
.RightDown() )
2272 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, GetId());
2273 nevent
.m_item
= item
;
2275 nevent
.SetEventObject(this);
2276 GetEventHandler()->ProcessEvent(nevent
);
2278 else if ( event
.LeftUp() && (item
== m_current
) &&
2279 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
2280 HasFlag(wxTR_EDIT_LABELS
) )
2282 m_renameTimer
->Start( 100, TRUE
);
2286 // how should the selection work for this event?
2287 bool is_multiple
, extended_select
, unselect_others
;
2288 EventFlagsToSelType(GetWindowStyleFlag(),
2290 event
.ControlDown(),
2291 is_multiple
, extended_select
, unselect_others
);
2300 SelectItem(item
, unselect_others
, extended_select
);
2302 if ( event
.LeftDClick() )
2304 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2305 nevent
.m_item
= item
;
2307 nevent
.SetEventObject( this );
2308 GetEventHandler()->ProcessEvent( nevent
);
2314 void wxTreeCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2316 /* after all changes have been done to the tree control,
2317 * we actually redraw the tree when everything is over */
2324 CalculatePositions();
2326 AdjustMyScrollbars();
2329 void wxTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
2335 dc
.SetFont(m_boldFont
);
2337 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2340 // restore normal font
2341 dc
.SetFont( m_normalFont
);
2345 int image
= item
->GetCurrentImage();
2346 if ( image
!= NO_IMAGE
)
2348 if ( m_imageListNormal
)
2350 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2355 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
2358 total_h
+= 2; // at least 2 pixels
2360 total_h
+= total_h
/10; // otherwise 10% extra spacing
2362 item
->SetHeight(total_h
);
2363 if (total_h
>m_lineHeight
)
2364 m_lineHeight
=total_h
;
2366 item
->SetWidth(image_w
+text_w
+2);
2369 // -----------------------------------------------------------------------------
2370 // for developper : y is now the top of the level
2371 // not the middle of it !
2372 void wxTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2374 int horizX
= level
*m_indent
;
2376 CalculateSize( item
, dc
);
2379 item
->SetX( horizX
+m_indent
+m_spacing
);
2381 y
+=GetLineHeight(item
);
2383 if ( !item
->IsExpanded() )
2385 // we dont need to calculate collapsed branches
2389 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2390 size_t n
, count
= children
.Count();
2391 for (n
= 0; n
< count
; ++n
)
2392 CalculateLevel( children
[n
], dc
, level
+1, y
); // recurse
2395 void wxTreeCtrl::CalculatePositions()
2397 if ( !m_anchor
) return;
2399 wxClientDC
dc(this);
2402 dc
.SetFont( m_normalFont
);
2404 dc
.SetPen( m_dottedPen
);
2405 //if(GetImageList() == NULL)
2406 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2409 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
2412 void wxTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
2414 if (m_dirty
) return;
2416 wxClientDC
dc(this);
2421 GetClientSize( &cw
, &ch
);
2424 rect
.x
= dc
.LogicalToDeviceX( 0 );
2426 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2429 Refresh( TRUE
, &rect
);
2431 AdjustMyScrollbars();
2434 void wxTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
2436 if (m_dirty
) return;
2438 wxClientDC
dc(this);
2443 GetClientSize( &cw
, &ch
);
2446 rect
.x
= dc
.LogicalToDeviceX( 0 );
2447 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2449 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
2451 Refresh( TRUE
, &rect
);