1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/treectlg.cpp
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 and Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // =============================================================================
14 // =============================================================================
16 // -----------------------------------------------------------------------------
18 // -----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
29 #include "wx/treectrl.h"
32 #include "wx/dcclient.h"
34 #include "wx/settings.h"
35 #include "wx/listbox.h"
36 #include "wx/textctrl.h"
39 #include "wx/generic/treectlg.h"
40 #include "wx/imaglist.h"
42 #include "wx/renderer.h"
45 #include "wx/mac/private.h"
48 // -----------------------------------------------------------------------------
50 // -----------------------------------------------------------------------------
52 class WXDLLIMPEXP_FWD_CORE wxGenericTreeItem
;
54 WX_DEFINE_EXPORTED_ARRAY_PTR(wxGenericTreeItem
*, wxArrayGenericTreeItems
);
56 // ----------------------------------------------------------------------------
58 // ----------------------------------------------------------------------------
60 static const int NO_IMAGE
= -1;
62 static const int PIXELS_PER_UNIT
= 10;
64 // the margin between the item image and the item text
65 static const int MARGIN_BETWEEN_IMAGE_AND_TEXT
= 4;
67 // -----------------------------------------------------------------------------
69 // -----------------------------------------------------------------------------
71 // timer used for enabling in-place edit
72 class WXDLLEXPORT wxTreeRenameTimer
: public wxTimer
75 // start editing the current item after half a second (if the mouse hasn't
76 // been clicked/moved)
79 wxTreeRenameTimer( wxGenericTreeCtrl
*owner
);
81 virtual void Notify();
84 wxGenericTreeCtrl
*m_owner
;
86 DECLARE_NO_COPY_CLASS(wxTreeRenameTimer
)
89 // control used for in-place edit
90 class WXDLLEXPORT wxTreeTextCtrl
: public wxTextCtrl
93 wxTreeTextCtrl(wxGenericTreeCtrl
*owner
, wxGenericTreeItem
*item
);
95 void EndEdit(bool discardChanges
= false)
103 m_aboutToFinish
= true;
105 // Notify the owner about the changes
108 // Even if vetoed, close the control (consistent with MSW)
116 m_owner
->OnRenameCancelled(m_itemEdited
);
118 const wxGenericTreeItem
* item() const { return m_itemEdited
; }
121 void OnChar( wxKeyEvent
&event
);
122 void OnKeyUp( wxKeyEvent
&event
);
123 void OnKillFocus( wxFocusEvent
&event
);
125 bool AcceptChanges();
129 wxGenericTreeCtrl
*m_owner
;
130 wxGenericTreeItem
*m_itemEdited
;
131 wxString m_startValue
;
133 bool m_aboutToFinish
;
135 DECLARE_EVENT_TABLE()
136 DECLARE_NO_COPY_CLASS(wxTreeTextCtrl
)
139 // timer used to clear wxGenericTreeCtrl::m_findPrefix if no key was pressed
140 // for a sufficiently long time
141 class WXDLLEXPORT wxTreeFindTimer
: public wxTimer
144 // reset the current prefix after half a second of inactivity
145 enum { DELAY
= 500 };
147 wxTreeFindTimer( wxGenericTreeCtrl
*owner
) { m_owner
= owner
; }
149 virtual void Notify() { m_owner
->m_findPrefix
.clear(); }
152 wxGenericTreeCtrl
*m_owner
;
154 DECLARE_NO_COPY_CLASS(wxTreeFindTimer
)
158 class WXDLLEXPORT wxGenericTreeItem
162 wxGenericTreeItem() { m_data
= NULL
; }
163 wxGenericTreeItem( wxGenericTreeItem
*parent
,
164 const wxString
& text
,
167 wxTreeItemData
*data
);
169 ~wxGenericTreeItem();
172 wxArrayGenericTreeItems
& GetChildren() { return m_children
; }
174 const wxString
& GetText() const { return m_text
; }
175 int GetImage(wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
176 { return m_images
[which
]; }
177 wxTreeItemData
*GetData() const { return m_data
; }
179 // returns the current image for the item (depending on its
180 // selected/expanded/whatever state)
181 int GetCurrentImage() const;
183 void SetText( const wxString
&text
);
184 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
185 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
187 void SetHasPlus(bool has
= true) { m_hasPlus
= has
; }
189 void SetBold(bool bold
) { m_isBold
= bold
; }
191 int GetX() const { return m_x
; }
192 int GetY() const { return m_y
; }
194 void SetX(int x
) { m_x
= x
; }
195 void SetY(int y
) { m_y
= y
; }
197 int GetHeight() const { return m_height
; }
198 int GetWidth() const { return m_width
; }
200 void SetHeight(int h
) { m_height
= h
; }
201 void SetWidth(int w
) { m_width
= w
; }
203 wxGenericTreeItem
*GetParent() const { return m_parent
; }
207 // deletes all children notifying the treectrl about it
208 void DeleteChildren(wxGenericTreeCtrl
*tree
);
210 // get count of all children (and grand children if 'recursively')
211 size_t GetChildrenCount(bool recursively
= true) const;
213 void Insert(wxGenericTreeItem
*child
, size_t index
)
214 { m_children
.Insert(child
, index
); }
216 void GetSize( int &x
, int &y
, const wxGenericTreeCtrl
* );
218 // return the item at given position (or NULL if no item), onButton is
219 // true if the point belongs to the item's button, otherwise it lies
220 // on the item's label
221 wxGenericTreeItem
*HitTest( const wxPoint
& point
,
222 const wxGenericTreeCtrl
*,
226 void Expand() { m_isCollapsed
= false; }
227 void Collapse() { m_isCollapsed
= true; }
229 void SetHilight( bool set
= true ) { m_hasHilight
= set
; }
232 bool HasChildren() const { return !m_children
.IsEmpty(); }
233 bool IsSelected() const { return m_hasHilight
!= 0; }
234 bool IsExpanded() const { return !m_isCollapsed
; }
235 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
236 bool IsBold() const { return m_isBold
!= 0; }
239 // get them - may be NULL
240 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
241 // get them ensuring that the pointer is not NULL
242 wxTreeItemAttr
& Attr()
246 m_attr
= new wxTreeItemAttr
;
252 void SetAttributes(wxTreeItemAttr
*attr
)
254 if ( m_ownsAttr
) delete m_attr
;
258 // set them and delete when done
259 void AssignAttributes(wxTreeItemAttr
*attr
)
266 // since there can be very many of these, we save size by chosing
267 // the smallest representation for the elements and by ordering
268 // the members to avoid padding.
269 wxString m_text
; // label to be rendered for item
271 wxTreeItemData
*m_data
; // user-provided data
273 wxArrayGenericTreeItems m_children
; // list of children
274 wxGenericTreeItem
*m_parent
; // parent of this item
276 wxTreeItemAttr
*m_attr
; // attributes???
278 // tree ctrl images for the normal, selected, expanded and
279 // expanded+selected states
280 int m_images
[wxTreeItemIcon_Max
];
282 wxCoord m_x
; // (virtual) offset from top
283 wxCoord m_y
; // (virtual) offset from left
284 int m_width
; // width of this item
285 int m_height
; // height of this item
287 // use bitfields to save size
288 unsigned int m_isCollapsed
:1;
289 unsigned int m_hasHilight
:1; // same as focused
290 unsigned int m_hasPlus
:1; // used for item which doesn't have
291 // children but has a [+] button
292 unsigned int m_isBold
:1; // render the label in bold font
293 unsigned int m_ownsAttr
:1; // delete attribute when done
295 DECLARE_NO_COPY_CLASS(wxGenericTreeItem
)
298 // =============================================================================
300 // =============================================================================
302 // ----------------------------------------------------------------------------
304 // ----------------------------------------------------------------------------
306 // translate the key or mouse event flags to the type of selection we're
308 static void EventFlagsToSelType(long style
,
312 bool &extended_select
,
313 bool &unselect_others
)
315 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
316 extended_select
= shiftDown
&& is_multiple
;
317 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
320 // check if the given item is under another one
321 static bool IsDescendantOf(const wxGenericTreeItem
*parent
, const wxGenericTreeItem
*item
)
325 if ( item
== parent
)
327 // item is a descendant of parent
331 item
= item
->GetParent();
337 // -----------------------------------------------------------------------------
338 // wxTreeRenameTimer (internal)
339 // -----------------------------------------------------------------------------
341 wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl
*owner
)
346 void wxTreeRenameTimer::Notify()
348 m_owner
->OnRenameTimer();
351 //-----------------------------------------------------------------------------
352 // wxTreeTextCtrl (internal)
353 //-----------------------------------------------------------------------------
355 BEGIN_EVENT_TABLE(wxTreeTextCtrl
,wxTextCtrl
)
356 EVT_CHAR (wxTreeTextCtrl::OnChar
)
357 EVT_KEY_UP (wxTreeTextCtrl::OnKeyUp
)
358 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus
)
361 wxTreeTextCtrl::wxTreeTextCtrl(wxGenericTreeCtrl
*owner
,
362 wxGenericTreeItem
*item
)
363 : m_itemEdited(item
), m_startValue(item
->GetText())
367 m_aboutToFinish
= false;
369 int w
= m_itemEdited
->GetWidth(),
370 h
= m_itemEdited
->GetHeight();
373 m_owner
->CalcScrolledPosition(item
->GetX(), item
->GetY(), &x
, &y
);
378 int image
= item
->GetCurrentImage();
379 if ( image
!= NO_IMAGE
)
381 if ( m_owner
->m_imageListNormal
)
383 m_owner
->m_imageListNormal
->GetSize( image
, image_w
, image_h
);
384 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
388 wxFAIL_MSG(_T("you must create an image list to use images!"));
392 // FIXME: what are all these hardcoded 4, 8 and 11s really?
396 wxSize bs
= DoGetBestSize() ;
397 // edit control height
400 int diff
= h
- ( bs
.y
- 8 ) ;
406 (void)Create(m_owner
, wxID_ANY
, m_startValue
,
407 wxPoint(x
- 4, y
- 4), wxSize(w
+ 11, h
+ 8));
410 bool wxTreeTextCtrl::AcceptChanges()
412 const wxString value
= GetValue();
414 if ( value
== m_startValue
)
416 // nothing changed, always accept
417 // when an item remains unchanged, the owner
418 // needs to be notified that the user decided
419 // not to change the tree item label, and that
420 // the edit has been cancelled
422 m_owner
->OnRenameCancelled(m_itemEdited
);
426 if ( !m_owner
->OnRenameAccept(m_itemEdited
, value
) )
428 // vetoed by the user
432 // accepted, do rename the item
433 m_owner
->SetItemText(m_itemEdited
, value
);
438 void wxTreeTextCtrl::Finish()
442 m_owner
->ResetTextControl();
444 wxPendingDelete
.Append(this);
452 void wxTreeTextCtrl::OnChar( wxKeyEvent
&event
)
454 switch ( event
.m_keyCode
)
469 void wxTreeTextCtrl::OnKeyUp( wxKeyEvent
&event
)
473 // auto-grow the textctrl:
474 wxSize parentSize
= m_owner
->GetSize();
475 wxPoint myPos
= GetPosition();
476 wxSize mySize
= GetSize();
478 GetTextExtent(GetValue() + _T("M"), &sx
, &sy
);
479 if (myPos
.x
+ sx
> parentSize
.x
)
480 sx
= parentSize
.x
- myPos
.x
;
483 SetSize(sx
, wxDefaultCoord
);
489 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent
&event
)
491 if ( !m_finished
&& !m_aboutToFinish
)
493 // We must finish regardless of success, otherwise we'll get
497 if ( !AcceptChanges() )
498 m_owner
->OnRenameCancelled( m_itemEdited
);
501 // We must let the native text control handle focus, too, otherwise
502 // it could have problems with the cursor (e.g., in wxGTK).
506 // -----------------------------------------------------------------------------
508 // -----------------------------------------------------------------------------
510 wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem
*parent
,
511 const wxString
& text
,
512 int image
, int selImage
,
513 wxTreeItemData
*data
)
516 m_images
[wxTreeItemIcon_Normal
] = image
;
517 m_images
[wxTreeItemIcon_Selected
] = selImage
;
518 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
519 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
524 m_isCollapsed
= true;
525 m_hasHilight
= false;
531 m_attr
= (wxTreeItemAttr
*)NULL
;
534 // We don't know the height here yet.
539 wxGenericTreeItem::~wxGenericTreeItem()
543 if (m_ownsAttr
) delete m_attr
;
545 wxASSERT_MSG( m_children
.IsEmpty(),
546 wxT("please call DeleteChildren() before deleting the item") );
549 void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl
*tree
)
551 size_t count
= m_children
.GetCount();
552 for ( size_t n
= 0; n
< count
; n
++ )
554 wxGenericTreeItem
*child
= m_children
[n
];
555 tree
->SendDeleteEvent(child
);
557 child
->DeleteChildren(tree
);
558 if ( child
== tree
->m_select_me
)
559 tree
->m_select_me
= NULL
;
566 void wxGenericTreeItem::SetText( const wxString
&text
)
571 size_t wxGenericTreeItem::GetChildrenCount(bool recursively
) const
573 size_t count
= m_children
.GetCount();
577 size_t total
= count
;
578 for (size_t n
= 0; n
< count
; ++n
)
580 total
+= m_children
[n
]->GetChildrenCount();
586 void wxGenericTreeItem::GetSize( int &x
, int &y
,
587 const wxGenericTreeCtrl
*theButton
)
589 int bottomY
=m_y
+theButton
->GetLineHeight(this);
590 if ( y
< bottomY
) y
= bottomY
;
591 int width
= m_x
+ m_width
;
592 if ( x
< width
) x
= width
;
596 size_t count
= m_children
.GetCount();
597 for ( size_t n
= 0; n
< count
; ++n
)
599 m_children
[n
]->GetSize( x
, y
, theButton
);
604 wxGenericTreeItem
*wxGenericTreeItem::HitTest(const wxPoint
& point
,
605 const wxGenericTreeCtrl
*theCtrl
,
609 // for a hidden root node, don't evaluate it, but do evaluate children
610 if ( !(level
== 0 && theCtrl
->HasFlag(wxTR_HIDE_ROOT
)) )
613 int h
= theCtrl
->GetLineHeight(this);
614 if ((point
.y
> m_y
) && (point
.y
< m_y
+ h
))
616 int y_mid
= m_y
+ h
/2;
617 if (point
.y
< y_mid
)
618 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
620 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
622 int xCross
= m_x
- theCtrl
->GetSpacing();
624 // according to the drawing code the triangels are drawn
625 // at -4 , -4 from the position up to +10/+10 max
626 if ((point
.x
> xCross
-4) && (point
.x
< xCross
+10) &&
627 (point
.y
> y_mid
-4) && (point
.y
< y_mid
+10) &&
628 HasPlus() && theCtrl
->HasButtons() )
630 // 5 is the size of the plus sign
631 if ((point
.x
> xCross
-6) && (point
.x
< xCross
+6) &&
632 (point
.y
> y_mid
-6) && (point
.y
< y_mid
+6) &&
633 HasPlus() && theCtrl
->HasButtons() )
636 flags
|= wxTREE_HITTEST_ONITEMBUTTON
;
640 if ((point
.x
>= m_x
) && (point
.x
<= m_x
+m_width
))
645 // assuming every image (normal and selected) has the same size!
646 if ( (GetImage() != NO_IMAGE
) && theCtrl
->m_imageListNormal
)
647 theCtrl
->m_imageListNormal
->GetSize(GetImage(),
650 if ((image_w
!= -1) && (point
.x
<= m_x
+ image_w
+ 1))
651 flags
|= wxTREE_HITTEST_ONITEMICON
;
653 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
659 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
660 if (point
.x
> m_x
+m_width
)
661 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
666 // if children are expanded, fall through to evaluate them
667 if (m_isCollapsed
) return (wxGenericTreeItem
*) NULL
;
671 size_t count
= m_children
.GetCount();
672 for ( size_t n
= 0; n
< count
; n
++ )
674 wxGenericTreeItem
*res
= m_children
[n
]->HitTest( point
,
682 return (wxGenericTreeItem
*) NULL
;
685 int wxGenericTreeItem::GetCurrentImage() const
687 int image
= NO_IMAGE
;
692 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
695 if ( image
== NO_IMAGE
)
697 // we usually fall back to the normal item, but try just the
698 // expanded one (and not selected) first in this case
699 image
= GetImage(wxTreeItemIcon_Expanded
);
705 image
= GetImage(wxTreeItemIcon_Selected
);
708 // maybe it doesn't have the specific image we want,
709 // try the default one instead
710 if ( image
== NO_IMAGE
) image
= GetImage();
715 // -----------------------------------------------------------------------------
716 // wxGenericTreeCtrl implementation
717 // -----------------------------------------------------------------------------
719 IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl
, wxControl
)
721 BEGIN_EVENT_TABLE(wxGenericTreeCtrl
, wxTreeCtrlBase
)
722 EVT_PAINT (wxGenericTreeCtrl::OnPaint
)
723 EVT_SIZE (wxGenericTreeCtrl::OnSize
)
724 EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse
)
725 EVT_CHAR (wxGenericTreeCtrl::OnChar
)
726 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus
)
727 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus
)
728 EVT_TREE_ITEM_GETTOOLTIP(wxID_ANY
, wxGenericTreeCtrl::OnGetToolTip
)
731 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
733 * wxTreeCtrl has to be a real class or we have problems with
734 * the run-time information.
737 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxGenericTreeCtrl
)
740 // -----------------------------------------------------------------------------
741 // construction/destruction
742 // -----------------------------------------------------------------------------
744 void wxGenericTreeCtrl::Init()
749 m_select_me
= (wxGenericTreeItem
*) NULL
;
757 m_hilightBrush
= new wxBrush
759 wxSystemSettings::GetColour
761 wxSYS_COLOUR_HIGHLIGHT
766 m_hilightUnfocusedBrush
= new wxBrush
768 wxSystemSettings::GetColour
770 wxSYS_COLOUR_BTNSHADOW
775 m_imageListButtons
= NULL
;
776 m_ownsImageListButtons
= false;
779 m_isDragging
= false;
780 m_dropTarget
= m_oldSelection
= NULL
;
784 m_renameTimer
= NULL
;
789 m_dropEffectAboveItem
= false;
791 m_lastOnSame
= false;
794 m_normalFont
.MacCreateFromThemeFont( kThemeViewsFont
) ;
796 m_normalFont
= wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT
);
798 m_boldFont
= wxFont(m_normalFont
.GetPointSize(),
799 m_normalFont
.GetFamily(),
800 m_normalFont
.GetStyle(),
802 m_normalFont
.GetUnderlined(),
803 m_normalFont
.GetFaceName(),
804 m_normalFont
.GetEncoding());
807 bool wxGenericTreeCtrl::Create(wxWindow
*parent
,
812 const wxValidator
& validator
,
813 const wxString
& name
)
817 wxGetOsVersion( &major
, &minor
);
819 style
&= ~wxTR_LINES_AT_ROOT
;
820 style
|= wxTR_NO_LINES
;
822 style
|= wxTR_ROW_LINES
;
824 if (style
== 0 || style
& wxTR_DEFAULT_STYLE
)
825 style
|= wxTR_FULL_ROW_HIGHLIGHT
;
829 style
|= wxTR_NO_LINES
;
832 if ( !wxControl::Create( parent
, id
, pos
, size
,
833 style
|wxHSCROLL
|wxVSCROLL
,
838 // If the tree display has no buttons, but does have
839 // connecting lines, we can use a narrower layout.
840 // It may not be a good idea to force this...
841 if (!HasButtons() && !HasFlag(wxTR_NO_LINES
))
847 wxVisualAttributes attr
= GetDefaultAttributes();
848 SetOwnForegroundColour( attr
.colFg
);
849 SetOwnBackgroundColour( attr
.colBg
);
851 SetOwnFont(attr
.font
);
853 // this is a misnomer: it's called "dotted pen" but uses (default) wxSOLID
854 // style because we apparently get performance problems when using dotted
855 // pen for drawing in some ports -- but under MSW it seems to work fine
857 m_dottedPen
= wxPen(*wxLIGHT_GREY
, 0, wxDOT
);
859 m_dottedPen
= *wxGREY_PEN
;
862 SetInitialSize(size
);
867 wxGenericTreeCtrl::~wxGenericTreeCtrl()
869 delete m_hilightBrush
;
870 delete m_hilightUnfocusedBrush
;
874 delete m_renameTimer
;
877 if (m_ownsImageListButtons
)
878 delete m_imageListButtons
;
881 // -----------------------------------------------------------------------------
883 // -----------------------------------------------------------------------------
885 unsigned int wxGenericTreeCtrl::GetCount() const
893 unsigned int count
= m_anchor
->GetChildrenCount();
894 if ( !HasFlag(wxTR_HIDE_ROOT
) )
896 // take the root itself into account
903 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
905 m_indent
= (unsigned short) indent
;
910 wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
911 bool recursively
) const
913 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
915 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
918 void wxGenericTreeCtrl::SetWindowStyle(const long styles
)
920 // Do not try to expand the root node if it hasn't been created yet
921 if (m_anchor
&& !HasFlag(wxTR_HIDE_ROOT
) && (styles
& wxTR_HIDE_ROOT
))
923 // if we will hide the root, make sure children are visible
924 m_anchor
->SetHasPlus();
926 CalculatePositions();
929 // right now, just sets the styles. Eventually, we may
930 // want to update the inherited styles, but right now
931 // none of the parents has updatable styles
932 m_windowStyle
= styles
;
936 // -----------------------------------------------------------------------------
937 // functions to work with tree items
938 // -----------------------------------------------------------------------------
940 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
942 wxCHECK_MSG( item
.IsOk(), wxEmptyString
, wxT("invalid tree item") );
944 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
947 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
948 wxTreeItemIcon which
) const
950 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
952 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
955 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
957 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
959 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
962 wxColour
wxGenericTreeCtrl::GetItemTextColour(const wxTreeItemId
& item
) const
964 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
966 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
967 return pItem
->Attr().GetTextColour();
970 wxColour
wxGenericTreeCtrl::GetItemBackgroundColour(const wxTreeItemId
& item
) const
972 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
974 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
975 return pItem
->Attr().GetBackgroundColour();
978 wxFont
wxGenericTreeCtrl::GetItemFont(const wxTreeItemId
& item
) const
980 wxCHECK_MSG( item
.IsOk(), wxNullFont
, wxT("invalid tree item") );
982 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
983 return pItem
->Attr().GetFont();
986 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
988 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
991 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
992 pItem
->SetText(text
);
993 CalculateSize(pItem
, dc
);
997 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
999 wxTreeItemIcon which
)
1001 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1003 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1004 pItem
->SetImage(image
, which
);
1006 wxClientDC
dc(this);
1007 CalculateSize(pItem
, dc
);
1011 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
1013 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1016 data
->SetId( item
);
1018 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
1021 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
1023 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1025 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1026 pItem
->SetHasPlus(has
);
1030 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
1032 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1034 // avoid redrawing the tree if no real change
1035 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1036 if ( pItem
->IsBold() != bold
)
1038 pItem
->SetBold(bold
);
1040 // recalculate the item size as bold and non bold fonts have different
1042 wxClientDC
dc(this);
1043 CalculateSize(pItem
, dc
);
1049 void wxGenericTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
,
1052 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1058 bg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1059 fg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1062 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1063 pItem
->Attr().SetTextColour(fg
);
1064 pItem
->Attr().SetBackgroundColour(bg
);
1068 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
1069 const wxColour
& col
)
1071 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1073 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1074 pItem
->Attr().SetTextColour(col
);
1078 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1079 const wxColour
& col
)
1081 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1083 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1084 pItem
->Attr().SetBackgroundColour(col
);
1088 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1090 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1092 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1093 pItem
->Attr().SetFont(font
);
1097 bool wxGenericTreeCtrl::SetFont( const wxFont
&font
)
1099 wxTreeCtrlBase::SetFont(font
);
1101 m_normalFont
= font
;
1102 m_boldFont
= wxFont(m_normalFont
.GetPointSize(),
1103 m_normalFont
.GetFamily(),
1104 m_normalFont
.GetStyle(),
1106 m_normalFont
.GetUnderlined(),
1107 m_normalFont
.GetFaceName(),
1108 m_normalFont
.GetEncoding());
1114 // -----------------------------------------------------------------------------
1115 // item status inquiries
1116 // -----------------------------------------------------------------------------
1118 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1120 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1122 // An item is only visible if it's not a descendant of a collapsed item
1123 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1124 wxGenericTreeItem
* parent
= pItem
->GetParent();
1127 if (!parent
->IsExpanded())
1129 parent
= parent
->GetParent();
1133 GetViewStart(& startX
, & startY
);
1135 wxSize clientSize
= GetClientSize();
1138 if (!GetBoundingRect(item
, rect
))
1140 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
1142 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
1144 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
1150 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1152 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1154 // consider that the item does have children if it has the "+" button: it
1155 // might not have them (if it had never been expanded yet) but then it
1156 // could have them as well and it's better to err on this side rather than
1157 // disabling some operations which are restricted to the items with
1158 // children for an item which does have them
1159 return ((wxGenericTreeItem
*) item
.m_pItem
)->HasPlus();
1162 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1164 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1166 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
1169 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1171 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1173 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
1176 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1178 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1180 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
1183 // -----------------------------------------------------------------------------
1185 // -----------------------------------------------------------------------------
1187 wxTreeItemId
wxGenericTreeCtrl::GetItemParent(const wxTreeItemId
& item
) const
1189 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1191 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
1194 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1195 wxTreeItemIdValue
& cookie
) const
1197 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1200 return GetNextChild(item
, cookie
);
1203 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
,
1204 wxTreeItemIdValue
& cookie
) const
1206 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1208 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1210 // it's ok to cast cookie to size_t, we never have indices big enough to
1211 // overflow "void *"
1212 size_t *pIndex
= (size_t *)&cookie
;
1213 if ( *pIndex
< children
.GetCount() )
1215 return children
.Item((*pIndex
)++);
1219 // there are no more of them
1220 return wxTreeItemId();
1224 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1226 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1228 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1229 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
1232 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1234 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1236 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1237 wxGenericTreeItem
*parent
= i
->GetParent();
1238 if ( parent
== NULL
)
1240 // root item doesn't have any siblings
1241 return wxTreeItemId();
1244 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1245 int index
= siblings
.Index(i
);
1246 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1248 size_t n
= (size_t)(index
+ 1);
1249 return n
== siblings
.GetCount() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
1252 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1254 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1256 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1257 wxGenericTreeItem
*parent
= i
->GetParent();
1258 if ( parent
== NULL
)
1260 // root item doesn't have any siblings
1261 return wxTreeItemId();
1264 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1265 int index
= siblings
.Index(i
);
1266 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1268 return index
== 0 ? wxTreeItemId()
1269 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
1272 // Only for internal use right now, but should probably be public
1273 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
1275 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1277 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1279 // First see if there are any children.
1280 wxArrayGenericTreeItems
& children
= i
->GetChildren();
1281 if (children
.GetCount() > 0)
1283 return children
.Item(0);
1287 // Try a sibling of this or ancestor instead
1288 wxTreeItemId p
= item
;
1289 wxTreeItemId toFind
;
1292 toFind
= GetNextSibling(p
);
1293 p
= GetItemParent(p
);
1294 } while (p
.IsOk() && !toFind
.IsOk());
1299 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1301 wxTreeItemId id
= GetRootItem();
1310 } while (id
.IsOk());
1312 return wxTreeItemId();
1315 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1317 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1318 wxASSERT_MSG( IsVisible(item
), wxT("this item itself should be visible") );
1320 wxTreeItemId id
= item
;
1323 while (id
= GetNext(id
), id
.IsOk())
1329 return wxTreeItemId();
1332 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1334 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1335 wxASSERT_MSG( IsVisible(item
), wxT("this item itself should be visible") );
1337 // find out the starting point
1338 wxTreeItemId prevItem
= GetPrevSibling(item
);
1339 if ( !prevItem
.IsOk() )
1341 prevItem
= GetItemParent(item
);
1344 // find the first visible item after it
1345 while ( prevItem
.IsOk() && !IsVisible(prevItem
) )
1347 prevItem
= GetNext(prevItem
);
1348 if ( !prevItem
.IsOk() || prevItem
== item
)
1350 // there are no visible items before item
1351 return wxTreeItemId();
1355 // from there we must be able to navigate until this item
1356 while ( prevItem
.IsOk() )
1358 const wxTreeItemId nextItem
= GetNextVisible(prevItem
);
1359 if ( !nextItem
.IsOk() || nextItem
== item
)
1362 prevItem
= nextItem
;
1368 // called by wxTextTreeCtrl when it marks itself for deletion
1369 void wxGenericTreeCtrl::ResetTextControl()
1374 // find the first item starting with the given prefix after the given item
1375 wxTreeItemId
wxGenericTreeCtrl::FindItem(const wxTreeItemId
& idParent
,
1376 const wxString
& prefixOrig
) const
1378 // match is case insensitive as this is more convenient to the user: having
1379 // to press Shift-letter to go to the item starting with a capital letter
1380 // would be too bothersome
1381 wxString prefix
= prefixOrig
.Lower();
1383 // determine the starting point: we shouldn't take the current item (this
1384 // allows to switch between two items starting with the same letter just by
1385 // pressing it) but we shouldn't jump to the next one if the user is
1386 // continuing to type as otherwise he might easily skip the item he wanted
1387 wxTreeItemId id
= idParent
;
1388 if ( prefix
.length() == 1 )
1393 // look for the item starting with the given prefix after it
1394 while ( id
.IsOk() && !GetItemText(id
).Lower().StartsWith(prefix
) )
1399 // if we haven't found anything...
1402 // ... wrap to the beginning
1404 if ( HasFlag(wxTR_HIDE_ROOT
) )
1406 // can't select virtual root
1410 // and try all the items (stop when we get to the one we started from)
1411 while (id
.IsOk() && id
!= idParent
&& !GetItemText(id
).Lower().StartsWith(prefix
) )
1415 // If we haven't found the item, id.IsOk() will be false, as per
1422 // -----------------------------------------------------------------------------
1424 // -----------------------------------------------------------------------------
1426 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1428 const wxString
& text
,
1431 wxTreeItemData
*data
)
1433 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1436 // should we give a warning here?
1437 return AddRoot(text
, image
, selImage
, data
);
1440 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1442 wxGenericTreeItem
*item
=
1443 new wxGenericTreeItem( parent
, text
, image
, selImage
, data
);
1447 data
->m_pItem
= item
;
1450 parent
->Insert( item
, previous
== (size_t)-1 ? parent
->GetChildren().size()
1453 InvalidateBestSize();
1457 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1460 wxTreeItemData
*data
)
1462 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1464 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1466 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
,
1467 image
, selImage
, data
);
1470 data
->m_pItem
= m_anchor
;
1473 if (HasFlag(wxTR_HIDE_ROOT
))
1475 // if root is hidden, make sure we can navigate
1477 m_anchor
->SetHasPlus();
1479 CalculatePositions();
1482 if (!HasFlag(wxTR_MULTIPLE
))
1484 m_current
= m_key_current
= m_anchor
;
1485 m_current
->SetHilight( true );
1488 InvalidateBestSize();
1492 wxTreeItemId
wxGenericTreeCtrl::DoInsertAfter(const wxTreeItemId
& parentId
,
1493 const wxTreeItemId
& idPrevious
,
1494 const wxString
& text
,
1495 int image
, int selImage
,
1496 wxTreeItemData
*data
)
1498 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1501 // should we give a warning here?
1502 return AddRoot(text
, image
, selImage
, data
);
1506 if (idPrevious
.IsOk())
1508 index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1509 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1510 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1513 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1517 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1519 wxTreeEvent
event(wxEVT_COMMAND_TREE_DELETE_ITEM
, this, item
);
1520 GetEventHandler()->ProcessEvent( event
);
1523 // Don't leave edit or selection on a child which is about to disappear
1524 void wxGenericTreeCtrl::ChildrenClosing(wxGenericTreeItem
* item
)
1526 if (m_textCtrl
!= NULL
&& item
!= m_textCtrl
->item() && IsDescendantOf(item
, m_textCtrl
->item())) {
1527 m_textCtrl
->StopEditing();
1529 if (item
!= m_key_current
&& IsDescendantOf(item
, m_key_current
)) {
1530 m_key_current
= NULL
;
1532 if (IsDescendantOf(item
, m_select_me
)) {
1535 if (item
!= m_current
&& IsDescendantOf(item
, m_current
)) {
1536 m_current
->SetHilight( false );
1542 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1544 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1546 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1547 ChildrenClosing(item
);
1548 item
->DeleteChildren(this);
1549 InvalidateBestSize();
1552 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1554 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1556 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1558 if (m_textCtrl
!= NULL
&& IsDescendantOf(item
, m_textCtrl
->item()))
1560 // can't delete the item being edited, cancel editing it first
1561 m_textCtrl
->StopEditing();
1564 wxGenericTreeItem
*parent
= item
->GetParent();
1566 // don't keep stale pointers around!
1567 if ( IsDescendantOf(item
, m_key_current
) )
1569 // Don't silently change the selection:
1570 // do it properly in idle time, so event
1571 // handlers get called.
1573 // m_key_current = parent;
1574 m_key_current
= NULL
;
1577 // m_select_me records whether we need to select
1578 // a different item, in idle time.
1579 if ( m_select_me
&& IsDescendantOf(item
, m_select_me
) )
1581 m_select_me
= parent
;
1584 if ( IsDescendantOf(item
, m_current
) )
1586 // Don't silently change the selection:
1587 // do it properly in idle time, so event
1588 // handlers get called.
1590 // m_current = parent;
1592 m_select_me
= parent
;
1595 // remove the item from the tree
1598 parent
->GetChildren().Remove( item
); // remove by value
1600 else // deleting the root
1602 // nothing will be left in the tree
1606 // and delete all of its children and the item itself now
1607 item
->DeleteChildren(this);
1608 SendDeleteEvent(item
);
1610 if (item
== m_select_me
)
1615 InvalidateBestSize();
1618 void wxGenericTreeCtrl::DeleteAllItems()
1626 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1628 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1630 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1631 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1632 _T("can't expand hidden root") );
1634 if ( !item
->HasPlus() )
1637 if ( item
->IsExpanded() )
1640 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, this, item
);
1642 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1644 // cancelled by program
1649 if ( !m_freezeCount
)
1651 CalculatePositions();
1653 RefreshSubtree(item
);
1660 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1661 GetEventHandler()->ProcessEvent( event
);
1664 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1666 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1667 _T("can't collapse hidden root") );
1669 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1671 if ( !item
->IsExpanded() )
1674 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, this, item
);
1675 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1677 // cancelled by program
1681 ChildrenClosing(item
);
1684 #if 0 // TODO why should items be collapsed recursively?
1685 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1686 size_t count
= children
.GetCount();
1687 for ( size_t n
= 0; n
< count
; n
++ )
1689 Collapse(children
[n
]);
1693 CalculatePositions();
1695 RefreshSubtree(item
);
1697 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1698 GetEventHandler()->ProcessEvent( event
);
1701 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1704 DeleteChildren(item
);
1707 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1709 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1711 if (item
->IsExpanded())
1717 void wxGenericTreeCtrl::Unselect()
1721 m_current
->SetHilight( false );
1722 RefreshLine( m_current
);
1729 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1731 if (item
->IsSelected())
1733 item
->SetHilight(false);
1737 if (item
->HasChildren())
1739 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1740 size_t count
= children
.GetCount();
1741 for ( size_t n
= 0; n
< count
; ++n
)
1743 UnselectAllChildren(children
[n
]);
1748 void wxGenericTreeCtrl::UnselectAll()
1750 wxTreeItemId rootItem
= GetRootItem();
1752 // the tree might not have the root item at all
1755 UnselectAllChildren((wxGenericTreeItem
*) rootItem
.m_pItem
);
1759 // Recursive function !
1760 // To stop we must have crt_item<last_item
1762 // Tag all next children, when no more children,
1763 // Move to parent (not to tag)
1764 // Keep going... if we found last_item, we stop.
1765 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1767 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1769 if (parent
== NULL
) // This is root item
1770 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1772 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1773 int index
= children
.Index(crt_item
);
1774 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1776 size_t count
= children
.GetCount();
1777 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1779 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return true;
1782 return TagNextChildren(parent
, last_item
, select
);
1785 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1787 crt_item
->SetHilight(select
);
1788 RefreshLine(crt_item
);
1790 if (crt_item
==last_item
)
1793 if (crt_item
->HasChildren())
1795 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1796 size_t count
= children
.GetCount();
1797 for ( size_t n
= 0; n
< count
; ++n
)
1799 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1807 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1811 // item2 is not necessary after item1
1812 // choice first' and 'last' between item1 and item2
1813 wxGenericTreeItem
*first
= (item1
->GetY()<item2
->GetY()) ? item1
: item2
;
1814 wxGenericTreeItem
*last
= (item1
->GetY()<item2
->GetY()) ? item2
: item1
;
1816 bool select
= m_current
->IsSelected();
1818 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1821 TagNextChildren(first
,last
,select
);
1824 void wxGenericTreeCtrl::DoSelectItem(const wxTreeItemId
& itemId
,
1825 bool unselect_others
,
1826 bool extended_select
)
1828 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1832 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1833 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1835 //wxCHECK_RET( ( (!unselect_others) && is_single),
1836 // wxT("this is a single selection tree") );
1838 // to keep going anyhow !!!
1841 if (item
->IsSelected())
1842 return; // nothing to do
1843 unselect_others
= true;
1844 extended_select
= false;
1846 else if ( unselect_others
&& item
->IsSelected() )
1848 // selection change if there is more than one item currently selected
1849 wxArrayTreeItemIds selected_items
;
1850 if ( GetSelections(selected_items
) == 1 )
1854 wxTreeEvent
event(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1855 event
.m_itemOld
= m_current
;
1856 // TODO : Here we don't send any selection mode yet !
1858 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1861 wxTreeItemId parent
= GetItemParent( itemId
);
1862 while (parent
.IsOk())
1864 if (!IsExpanded(parent
))
1867 parent
= GetItemParent( parent
);
1871 if (unselect_others
)
1873 if (is_single
) Unselect(); // to speed up thing
1878 if (extended_select
)
1882 m_current
= m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1885 // don't change the mark (m_current)
1886 SelectItemRange(m_current
, item
);
1890 bool select
= true; // the default
1892 // Check if we need to toggle hilight (ctrl mode)
1893 if (!unselect_others
)
1894 select
=!item
->IsSelected();
1896 m_current
= m_key_current
= item
;
1897 m_current
->SetHilight(select
);
1898 RefreshLine( m_current
);
1901 // This can cause idle processing to select the root
1902 // if no item is selected, so it must be after the
1904 EnsureVisible( itemId
);
1906 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1907 GetEventHandler()->ProcessEvent( event
);
1910 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
, bool select
)
1914 DoSelectItem(itemId
, !HasFlag(wxTR_MULTIPLE
));
1918 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1919 wxCHECK_RET( item
, wxT("SelectItem(): invalid tree item") );
1921 wxTreeEvent
event(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1922 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1925 item
->SetHilight(false);
1928 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1929 GetEventHandler()->ProcessEvent( event
);
1933 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1934 wxArrayTreeItemIds
&array
) const
1936 if ( item
->IsSelected() )
1937 array
.Add(wxTreeItemId(item
));
1939 if ( item
->HasChildren() )
1941 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1942 size_t count
= children
.GetCount();
1943 for ( size_t n
= 0; n
< count
; ++n
)
1944 FillArray(children
[n
], array
);
1948 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1951 wxTreeItemId idRoot
= GetRootItem();
1952 if ( idRoot
.IsOk() )
1954 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1956 //else: the tree is empty, so no selections
1958 return array
.GetCount();
1961 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1963 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1965 if (!item
.IsOk()) return;
1967 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1969 // first expand all parent branches
1970 wxGenericTreeItem
*parent
= gitem
->GetParent();
1972 if ( HasFlag(wxTR_HIDE_ROOT
) )
1974 while ( parent
&& parent
!= m_anchor
)
1977 parent
= parent
->GetParent();
1985 parent
= parent
->GetParent();
1989 //if (parent) CalculatePositions();
1994 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1996 if (!item
.IsOk()) return;
1998 // We have to call this here because the label in
1999 // question might just have been added and no screen
2000 // update taken place.
2002 #if defined( __WXMSW__ ) || defined(__WXMAC__)
2005 DoDirtyProcessing();
2007 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
2009 // now scroll to the item
2010 int item_y
= gitem
->GetY();
2014 GetViewStart( &start_x
, &start_y
);
2015 start_y
*= PIXELS_PER_UNIT
;
2019 GetClientSize( &client_w
, &client_h
);
2021 if (item_y
< start_y
+3)
2026 m_anchor
->GetSize( x
, y
, this );
2027 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2028 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2029 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2030 // Item should appear at top
2031 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
2033 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
2038 m_anchor
->GetSize( x
, y
, this );
2039 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2040 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2041 item_y
+= PIXELS_PER_UNIT
+2;
2042 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2043 // Item should appear at bottom
2044 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
);
2048 // FIXME: tree sorting functions are not reentrant and not MT-safe!
2049 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
2051 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
2052 wxGenericTreeItem
**item2
)
2054 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
2056 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
2059 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
2061 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
2063 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
2065 wxCHECK_RET( !s_treeBeingSorted
,
2066 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
2068 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2069 if ( children
.GetCount() > 1 )
2073 s_treeBeingSorted
= this;
2074 children
.Sort(tree_ctrl_compare_func
);
2075 s_treeBeingSorted
= NULL
;
2077 //else: don't make the tree dirty as nothing changed
2080 void wxGenericTreeCtrl::CalculateLineHeight()
2082 wxClientDC
dc(this);
2083 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
2085 if ( m_imageListNormal
)
2087 // Calculate a m_lineHeight value from the normal Image sizes.
2088 // May be toggle off. Then wxGenericTreeCtrl will spread when
2089 // necessary (which might look ugly).
2090 int n
= m_imageListNormal
->GetImageCount();
2091 for (int i
= 0; i
< n
; i
++)
2093 int width
= 0, height
= 0;
2094 m_imageListNormal
->GetSize(i
, width
, height
);
2095 if (height
> m_lineHeight
) m_lineHeight
= height
;
2099 if (m_imageListButtons
)
2101 // Calculate a m_lineHeight value from the Button image sizes.
2102 // May be toggle off. Then wxGenericTreeCtrl will spread when
2103 // necessary (which might look ugly).
2104 int n
= m_imageListButtons
->GetImageCount();
2105 for (int i
= 0; i
< n
; i
++)
2107 int width
= 0, height
= 0;
2108 m_imageListButtons
->GetSize(i
, width
, height
);
2109 if (height
> m_lineHeight
) m_lineHeight
= height
;
2113 if (m_lineHeight
< 30)
2114 m_lineHeight
+= 2; // at least 2 pixels
2116 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
2119 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
2121 if (m_ownsImageListNormal
) delete m_imageListNormal
;
2122 m_imageListNormal
= imageList
;
2123 m_ownsImageListNormal
= false;
2125 // Don't do any drawing if we're setting the list to NULL,
2126 // since we may be in the process of deleting the tree control.
2128 CalculateLineHeight();
2131 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
2133 if (m_ownsImageListState
) delete m_imageListState
;
2134 m_imageListState
= imageList
;
2135 m_ownsImageListState
= false;
2138 void wxGenericTreeCtrl::SetButtonsImageList(wxImageList
*imageList
)
2140 if (m_ownsImageListButtons
) delete m_imageListButtons
;
2141 m_imageListButtons
= imageList
;
2142 m_ownsImageListButtons
= false;
2144 CalculateLineHeight();
2147 void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList
*imageList
)
2149 SetButtonsImageList(imageList
);
2150 m_ownsImageListButtons
= true;
2153 // -----------------------------------------------------------------------------
2155 // -----------------------------------------------------------------------------
2157 void wxGenericTreeCtrl::AdjustMyScrollbars()
2162 m_anchor
->GetSize( x
, y
, this );
2163 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2164 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2165 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2166 int y_pos
= GetScrollPos( wxVERTICAL
);
2167 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
2171 SetScrollbars( 0, 0, 0, 0 );
2175 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
2177 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
2178 return item
->GetHeight();
2180 return m_lineHeight
;
2183 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
2185 // TODO implement "state" icon on items
2187 wxTreeItemAttr
*attr
= item
->GetAttributes();
2188 if ( attr
&& attr
->HasFont() )
2189 dc
.SetFont(attr
->GetFont());
2190 else if (item
->IsBold())
2191 dc
.SetFont(m_boldFont
);
2193 wxCoord text_w
= 0, text_h
= 0;
2194 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2196 int image_h
= 0, image_w
= 0;
2197 int image
= item
->GetCurrentImage();
2198 if ( image
!= NO_IMAGE
)
2200 if ( m_imageListNormal
)
2202 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2203 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
2211 int total_h
= GetLineHeight(item
);
2212 bool drawItemBackground
= false;
2214 if ( item
->IsSelected() )
2216 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
2217 drawItemBackground
= true;
2222 if ( attr
&& attr
->HasBackgroundColour() )
2224 drawItemBackground
= true;
2225 colBg
= attr
->GetBackgroundColour();
2229 colBg
= GetBackgroundColour();
2231 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
2234 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
2236 if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT
) )
2240 GetVirtualSize(&w
, &h
);
2241 wxRect
rect( x
, item
->GetY()+offset
, w
, total_h
-offset
);
2242 #if !defined(__WXGTK20__) && !defined(__WXMAC__)
2243 dc
.DrawRectangle(rect
);
2245 if (!item
->IsSelected())
2247 dc
.DrawRectangle(rect
);
2251 int flags
= wxCONTROL_SELECTED
;
2253 #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__)
2254 && IsControlActive( (ControlRef
)GetHandle() )
2257 flags
|= wxCONTROL_FOCUSED
;
2258 if ((item
== m_current
) && (m_hasFocus
))
2259 flags
|= wxCONTROL_CURRENT
;
2260 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, flags
);
2266 if ( item
->IsSelected() && image
!= NO_IMAGE
)
2268 // If it's selected, and there's an image, then we should
2269 // take care to leave the area under the image painted in the
2270 // background colour.
2271 wxRect
rect( item
->GetX() + image_w
- 2, item
->GetY()+offset
,
2272 item
->GetWidth() - image_w
+ 2, total_h
-offset
);
2273 #if !defined(__WXGTK20__) && !defined(__WXMAC__)
2274 dc
.DrawRectangle( rect
);
2279 int flags
= wxCONTROL_SELECTED
;
2281 flags
|= wxCONTROL_FOCUSED
;
2282 if ((item
== m_current
) && (m_hasFocus
))
2283 flags
|= wxCONTROL_CURRENT
;
2284 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, flags
);
2287 // On GTK+ 2, drawing a 'normal' background is wrong for themes that
2288 // don't allow backgrounds to be customized. Not drawing the background,
2289 // except for custom item backgrounds, works for both kinds of theme.
2290 else if (drawItemBackground
)
2292 wxRect
rect( item
->GetX()-2, item
->GetY()+offset
,
2293 item
->GetWidth()+2, total_h
-offset
);
2294 #if !defined(__WXGTK20__) && !defined(__WXMAC__)
2295 dc
.DrawRectangle( rect
);
2297 if ( attr
&& attr
->HasBackgroundColour() )
2299 dc
.DrawRectangle( rect
);
2306 int flags
= wxCONTROL_SELECTED
;
2308 flags
|= wxCONTROL_FOCUSED
;
2309 if ((item
== m_current
) && (m_hasFocus
))
2310 flags
|= wxCONTROL_CURRENT
;
2311 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, flags
);
2317 if ( image
!= NO_IMAGE
)
2319 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
2320 m_imageListNormal
->Draw( image
, dc
,
2322 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
2323 wxIMAGELIST_DRAW_TRANSPARENT
);
2324 dc
.DestroyClippingRegion();
2327 dc
.SetBackgroundMode(wxTRANSPARENT
);
2328 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
2329 dc
.DrawText( item
->GetText(),
2330 (wxCoord
)(image_w
+ item
->GetX()),
2331 (wxCoord
)(item
->GetY() + extraH
));
2333 // restore normal font
2334 dc
.SetFont( m_normalFont
);
2337 // Now y stands for the top of the item, whereas it used to stand for middle !
2338 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2340 int x
= level
*m_indent
;
2341 if (!HasFlag(wxTR_HIDE_ROOT
))
2345 else if (level
== 0)
2347 // always expand hidden root
2349 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2350 int count
= children
.GetCount();
2356 PaintLevel(children
[n
], dc
, 1, y
);
2357 } while (++n
< count
);
2359 if (!HasFlag(wxTR_NO_LINES
) && HasFlag(wxTR_LINES_AT_ROOT
) && count
> 0)
2361 // draw line down to last child
2362 origY
+= GetLineHeight(children
[0])>>1;
2363 oldY
+= GetLineHeight(children
[n
-1])>>1;
2364 dc
.DrawLine(3, origY
, 3, oldY
);
2370 item
->SetX(x
+m_spacing
);
2373 int h
= GetLineHeight(item
);
2375 int y_mid
= y_top
+ (h
>>1);
2378 int exposed_x
= dc
.LogicalToDeviceX(0);
2379 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
2381 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
2385 // don't draw rect outline if we already have the
2386 // background color under Mac
2387 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
2388 #endif // !__WXMAC__
2392 if ( item
->IsSelected()
2393 #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__)
2394 // On wxMac, if the tree doesn't have the focus we draw an empty
2395 // rectangle, so we want to make sure that the text is visible
2396 // against the normal background, not the highlightbackground, so
2397 // don't use the highlight text colour unless we have the focus.
2398 && m_hasFocus
&& IsControlActive( (ControlRef
)GetHandle() )
2405 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2410 wxTreeItemAttr
*attr
= item
->GetAttributes();
2411 if (attr
&& attr
->HasTextColour())
2412 colText
= attr
->GetTextColour();
2414 colText
= GetForegroundColour();
2418 dc
.SetTextForeground(colText
);
2422 PaintItem(item
, dc
);
2424 if (HasFlag(wxTR_ROW_LINES
))
2426 // if the background colour is white, choose a
2427 // contrasting color for the lines
2428 dc
.SetPen(*((GetBackgroundColour() == *wxWHITE
)
2429 ? wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
2430 dc
.DrawLine(0, y_top
, 10000, y_top
);
2431 dc
.DrawLine(0, y
, 10000, y
);
2434 // restore DC objects
2435 dc
.SetBrush(*wxWHITE_BRUSH
);
2436 dc
.SetPen(m_dottedPen
);
2437 dc
.SetTextForeground(*wxBLACK
);
2439 if ( !HasFlag(wxTR_NO_LINES
) )
2441 // draw the horizontal line here
2443 if (x
> (signed)m_indent
)
2444 x_start
-= m_indent
;
2445 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2447 dc
.DrawLine(x_start
, y_mid
, x
+ m_spacing
, y_mid
);
2450 // should the item show a button?
2451 if ( item
->HasPlus() && HasButtons() )
2453 if ( m_imageListButtons
)
2455 // draw the image button here
2458 int image
= item
->IsExpanded() ? wxTreeItemIcon_Expanded
2459 : wxTreeItemIcon_Normal
;
2460 if ( item
->IsSelected() )
2461 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
2463 m_imageListButtons
->GetSize(image
, image_w
, image_h
);
2464 int xx
= x
- image_w
/2;
2465 int yy
= y_mid
- image_h
/2;
2467 wxDCClipper
clip(dc
, xx
, yy
, image_w
, image_h
);
2468 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
2469 wxIMAGELIST_DRAW_TRANSPARENT
);
2471 else // no custom buttons
2473 static const int wImage
= 9;
2474 static const int hImage
= 9;
2477 if (item
->IsExpanded())
2478 flag
|= wxCONTROL_EXPANDED
;
2479 if (item
== m_underMouse
)
2480 flag
|= wxCONTROL_CURRENT
;
2482 wxRendererNative::Get().DrawTreeItemButton
2486 wxRect(x
- wImage
/2,
2495 if (item
->IsExpanded())
2497 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2498 int count
= children
.GetCount();
2505 PaintLevel(children
[n
], dc
, level
, y
);
2506 } while (++n
< count
);
2508 if (!HasFlag(wxTR_NO_LINES
) && count
> 0)
2510 // draw line down to last child
2511 oldY
+= GetLineHeight(children
[n
-1])>>1;
2512 if (HasButtons()) y_mid
+= 5;
2514 // Only draw the portion of the line that is visible, in case it is huge
2515 wxCoord xOrigin
=0, yOrigin
=0, width
, height
;
2516 dc
.GetDeviceOrigin(&xOrigin
, &yOrigin
);
2517 yOrigin
= abs(yOrigin
);
2518 GetClientSize(&width
, &height
);
2520 // Move end points to the begining/end of the view?
2521 if (y_mid
< yOrigin
)
2523 if (oldY
> yOrigin
+ height
)
2524 oldY
= yOrigin
+ height
;
2526 // after the adjustments if y_mid is larger than oldY then the line
2527 // isn't visible at all so don't draw anything
2529 dc
.DrawLine(x
, y_mid
, x
, oldY
);
2535 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
2539 if ( item
->HasPlus() )
2541 // it's a folder, indicate it by a border
2546 // draw a line under the drop target because the item will be
2548 DrawLine(item
, !m_dropEffectAboveItem
);
2551 SetCursor(wxCURSOR_BULLSEYE
);
2556 SetCursor(wxCURSOR_NO_ENTRY
);
2560 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
2562 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2564 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2566 wxClientDC
dc(this);
2568 dc
.SetLogicalFunction(wxINVERT
);
2569 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2571 int w
= i
->GetWidth() + 2;
2572 int h
= GetLineHeight(i
) + 2;
2574 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
2577 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
2579 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2581 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2583 wxClientDC
dc(this);
2585 dc
.SetLogicalFunction(wxINVERT
);
2591 y
+= GetLineHeight(i
) - 1;
2594 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
2597 // -----------------------------------------------------------------------------
2598 // wxWidgets callbacks
2599 // -----------------------------------------------------------------------------
2601 void wxGenericTreeCtrl::OnSize( wxSizeEvent
&event
)
2604 if (HasFlag( wxTR_FULL_ROW_HIGHLIGHT
) && m_current
)
2605 RefreshLine( m_current
);
2611 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2619 dc
.SetFont( m_normalFont
);
2620 dc
.SetPen( m_dottedPen
);
2622 // this is now done dynamically
2623 //if(GetImageList() == NULL)
2624 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2627 PaintLevel( m_anchor
, dc
, 0, y
);
2630 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&event
)
2639 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&event
)
2648 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2650 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, this);
2651 te
.m_evtKey
= event
;
2652 if ( GetEventHandler()->ProcessEvent( te
) )
2654 // intercepted by the user code
2658 if ( (m_current
== 0) || (m_key_current
== 0) )
2664 // how should the selection work for this event?
2665 bool is_multiple
, extended_select
, unselect_others
;
2666 EventFlagsToSelType(GetWindowStyleFlag(),
2669 is_multiple
, extended_select
, unselect_others
);
2671 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2673 if (event
.GetKeyCode() == WXK_RIGHT
)
2674 event
.m_keyCode
= WXK_LEFT
;
2675 else if (event
.GetKeyCode() == WXK_LEFT
)
2676 event
.m_keyCode
= WXK_RIGHT
;
2681 // * : Expand all/Collapse all
2682 // ' ' | return : activate
2683 // up : go up (not last children!)
2685 // left : go to parent
2686 // right : open if parent and go next
2687 // home : go to root
2688 // end : go to last item without opening parents
2689 // alnum : start or continue searching for the item with this prefix
2690 int keyCode
= event
.GetKeyCode();
2695 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2703 if ( !IsExpanded(m_current
) )
2706 ExpandAllChildren(m_current
);
2709 //else: fall through to Collapse() it
2713 if (IsExpanded(m_current
))
2715 Collapse(m_current
);
2721 // Use the item's bounding rectangle to determine position for the event
2723 GetBoundingRect(m_current
, ItemRect
, true);
2725 wxTreeEvent
eventMenu(wxEVT_COMMAND_TREE_ITEM_MENU
, this, m_current
);
2726 // Use the left edge, vertical middle
2727 eventMenu
.m_pointDrag
= wxPoint(ItemRect
.GetX(),
2728 ItemRect
.GetY() + ItemRect
.GetHeight() / 2);
2729 GetEventHandler()->ProcessEvent( eventMenu
);
2735 if ( !event
.HasModifiers() )
2737 wxTreeEvent
eventAct(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, this, m_current
);
2738 GetEventHandler()->ProcessEvent( eventAct
);
2741 // in any case, also generate the normal key event for this key,
2742 // even if we generated the ACTIVATED event above: this is what
2743 // wxMSW does and it makes sense because you might not want to
2744 // process ACTIVATED event at all and handle Space and Return
2745 // directly (and differently) which would be impossible otherwise
2749 // up goes to the previous sibling or to the last
2750 // of its children if it's expanded
2753 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2756 prev
= GetItemParent( m_key_current
);
2757 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2759 break; // don't go to root if it is hidden
2763 wxTreeItemIdValue cookie
;
2764 wxTreeItemId current
= m_key_current
;
2765 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
2766 if (current
== GetFirstChild( prev
, cookie
))
2768 // otherwise we return to where we came from
2769 DoSelectItem( prev
, unselect_others
, extended_select
);
2770 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2777 while ( IsExpanded(prev
) && HasChildren(prev
) )
2779 wxTreeItemId child
= GetLastChild(prev
);
2786 DoSelectItem( prev
, unselect_others
, extended_select
);
2787 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2792 // left arrow goes to the parent
2795 wxTreeItemId prev
= GetItemParent( m_current
);
2796 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2798 // don't go to root if it is hidden
2799 prev
= GetPrevSibling( m_current
);
2803 DoSelectItem( prev
, unselect_others
, extended_select
);
2809 // this works the same as the down arrow except that we
2810 // also expand the item if it wasn't expanded yet
2811 if (m_current
!= GetRootItem().m_pItem
|| !HasFlag(wxTR_HIDE_ROOT
))
2813 //else: don't try to expand hidden root item (which can be the
2814 // current one when the tree is empty)
2820 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2822 wxTreeItemIdValue cookie
;
2823 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2827 DoSelectItem( child
, unselect_others
, extended_select
);
2828 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2832 wxTreeItemId next
= GetNextSibling( m_key_current
);
2835 wxTreeItemId current
= m_key_current
;
2836 while (current
.IsOk() && !next
)
2838 current
= GetItemParent( current
);
2839 if (current
) next
= GetNextSibling( current
);
2844 DoSelectItem( next
, unselect_others
, extended_select
);
2845 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2851 // <End> selects the last visible tree item
2854 wxTreeItemId last
= GetRootItem();
2856 while ( last
.IsOk() && IsExpanded(last
) )
2858 wxTreeItemId lastChild
= GetLastChild(last
);
2860 // it may happen if the item was expanded but then all of
2861 // its children have been deleted - so IsExpanded() returned
2862 // true, but GetLastChild() returned invalid item
2871 DoSelectItem( last
, unselect_others
, extended_select
);
2876 // <Home> selects the root item
2879 wxTreeItemId prev
= GetRootItem();
2883 if ( HasFlag(wxTR_HIDE_ROOT
) )
2885 wxTreeItemIdValue cookie
;
2886 prev
= GetFirstChild(prev
, cookie
);
2891 DoSelectItem( prev
, unselect_others
, extended_select
);
2896 // do not use wxIsalnum() here
2897 if ( !event
.HasModifiers() &&
2898 ((keyCode
>= '0' && keyCode
<= '9') ||
2899 (keyCode
>= 'a' && keyCode
<= 'z') ||
2900 (keyCode
>= 'A' && keyCode
<= 'Z' )))
2902 // find the next item starting with the given prefix
2903 wxChar ch
= (wxChar
)keyCode
;
2905 wxTreeItemId id
= FindItem(m_current
, m_findPrefix
+ ch
);
2916 // also start the timer to reset the current prefix if the user
2917 // doesn't press any more alnum keys soon -- we wouldn't want
2918 // to use this prefix for a new item search
2921 m_findTimer
= new wxTreeFindTimer(this);
2924 m_findTimer
->Start(wxTreeFindTimer::DELAY
, wxTIMER_ONE_SHOT
);
2934 wxGenericTreeCtrl::DoTreeHitTest(const wxPoint
& point
, int& flags
) const
2939 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
2940 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
2941 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
2942 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
2943 if (flags
) return wxTreeItemId();
2945 if (m_anchor
== NULL
)
2947 flags
= wxTREE_HITTEST_NOWHERE
;
2948 return wxTreeItemId();
2951 wxGenericTreeItem
*hit
= m_anchor
->HitTest(CalcUnscrolledPosition(point
),
2955 flags
= wxTREE_HITTEST_NOWHERE
;
2956 return wxTreeItemId();
2961 // get the bounding rectangle of the item (or of its label only)
2962 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2964 bool textOnly
) const
2966 wxCHECK_MSG( item
.IsOk(), false, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2968 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2973 rect
.width
= i
->GetWidth();
2975 if ( m_imageListNormal
)
2977 int image_w
, image_h
;
2978 m_imageListNormal
->GetSize( 0, image_w
, image_h
);
2979 rect
.width
+= image_w
+ MARGIN_BETWEEN_IMAGE_AND_TEXT
;
2982 else // the entire line
2985 rect
.width
= GetClientSize().x
;
2989 rect
.height
= GetLineHeight(i
);
2991 // we have to return the logical coordinates, not physical ones
2992 rect
.SetTopLeft(CalcScrolledPosition(rect
.GetTopLeft()));
2997 wxTextCtrl
*wxGenericTreeCtrl::EditLabel(const wxTreeItemId
& item
,
2998 wxClassInfo
* WXUNUSED(textCtrlClass
))
3000 wxCHECK_MSG( item
.IsOk(), NULL
, _T("can't edit an invalid item") );
3002 wxGenericTreeItem
*itemEdit
= (wxGenericTreeItem
*)item
.m_pItem
;
3004 wxTreeEvent
te(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, this, itemEdit
);
3005 if ( GetEventHandler()->ProcessEvent( te
) && !te
.IsAllowed() )
3011 // We have to call this here because the label in
3012 // question might just have been added and no screen
3013 // update taken place.
3015 #if defined( __WXMSW__ ) || defined(__WXMAC__)
3018 DoDirtyProcessing();
3021 // TODO: use textCtrlClass here to create the control of correct class
3022 m_textCtrl
= new wxTreeTextCtrl(this, itemEdit
);
3024 m_textCtrl
->SetFocus();
3029 // returns a pointer to the text edit control if the item is being
3030 // edited, NULL otherwise (it's assumed that no more than one item may
3031 // be edited simultaneously)
3032 wxTextCtrl
* wxGenericTreeCtrl::GetEditControl() const
3037 void wxGenericTreeCtrl::EndEditLabel(const wxTreeItemId
& WXUNUSED(item
),
3038 bool discardChanges
)
3040 wxCHECK_RET( m_textCtrl
, _T("not editing label") );
3042 m_textCtrl
->EndEdit(discardChanges
);
3045 bool wxGenericTreeCtrl::OnRenameAccept(wxGenericTreeItem
*item
,
3046 const wxString
& value
)
3048 wxTreeEvent
le(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, this, item
);
3050 le
.m_editCancelled
= false;
3052 return !GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
3055 void wxGenericTreeCtrl::OnRenameCancelled(wxGenericTreeItem
*item
)
3057 // let owner know that the edit was cancelled
3058 wxTreeEvent
le(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, this, item
);
3059 le
.m_label
= wxEmptyString
;
3060 le
.m_editCancelled
= true;
3062 GetEventHandler()->ProcessEvent( le
);
3065 void wxGenericTreeCtrl::OnRenameTimer()
3067 EditLabel( m_current
);
3070 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
3072 if ( !m_anchor
)return;
3074 wxPoint pt
= CalcUnscrolledPosition(event
.GetPosition());
3076 // Is the mouse over a tree item button?
3078 wxGenericTreeItem
*thisItem
= m_anchor
->HitTest(pt
, this, flags
, 0);
3079 wxGenericTreeItem
*underMouse
= thisItem
;
3081 bool underMouseChanged
= (underMouse
!= m_underMouse
) ;
3082 #endif // wxUSE_TOOLTIPS
3085 (flags
& wxTREE_HITTEST_ONITEMBUTTON
) &&
3086 (!event
.LeftIsDown()) &&
3088 (!m_renameTimer
|| !m_renameTimer
->IsRunning()))
3096 if (underMouse
!= m_underMouse
)
3100 // unhighlight old item
3101 wxGenericTreeItem
*tmp
= m_underMouse
;
3102 m_underMouse
= NULL
;
3106 m_underMouse
= underMouse
;
3108 RefreshLine( m_underMouse
);
3112 // Determines what item we are hovering over and need a tooltip for
3113 wxTreeItemId hoverItem
= thisItem
;
3115 // We do not want a tooltip if we are dragging, or if the rename timer is running
3116 if (underMouseChanged
&& hoverItem
.IsOk() && !m_isDragging
&& (!m_renameTimer
|| !m_renameTimer
->IsRunning()))
3118 // Ask the tree control what tooltip (if any) should be shown
3119 wxTreeEvent
hevent(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, this, hoverItem
);
3121 if ( GetEventHandler()->ProcessEvent(hevent
) && hevent
.IsAllowed() )
3123 SetToolTip(hevent
.m_label
);
3128 // we process left mouse up event (enables in-place edit), middle/right down
3129 // (pass to the user code), left dbl click (activate item) and
3130 // dragging/moving events for items drag-and-drop
3131 if ( !(event
.LeftDown() ||
3133 event
.MiddleDown() ||
3134 event
.RightDown() ||
3135 event
.LeftDClick() ||
3137 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
3146 wxGenericTreeItem
*item
= m_anchor
->HitTest(pt
, this, flags
, 0);
3148 if ( event
.Dragging() && !m_isDragging
)
3150 if (m_dragCount
== 0)
3155 if (m_dragCount
!= 3)
3157 // wait until user drags a bit further...
3161 wxEventType command
= event
.RightIsDown()
3162 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
3163 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
3165 wxTreeEvent
nevent(command
, this, m_current
);
3166 nevent
.SetPoint(CalcScrolledPosition(pt
));
3168 // by default the dragging is not supported, the user code must
3169 // explicitly allow the event for it to take place
3172 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
3174 // we're going to drag this item
3175 m_isDragging
= true;
3177 // remember the old cursor because we will change it while
3179 m_oldCursor
= m_cursor
;
3181 // in a single selection control, hide the selection temporarily
3182 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
3184 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
3186 if ( m_oldSelection
)
3188 m_oldSelection
->SetHilight(false);
3189 RefreshLine(m_oldSelection
);
3196 else if ( event
.Dragging() )
3198 if ( item
!= m_dropTarget
)
3200 // unhighlight the previous drop target
3201 DrawDropEffect(m_dropTarget
);
3203 m_dropTarget
= item
;
3205 // highlight the current drop target if any
3206 DrawDropEffect(m_dropTarget
);
3208 #if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXGTK20__)
3215 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
3219 // erase the highlighting
3220 DrawDropEffect(m_dropTarget
);
3222 if ( m_oldSelection
)
3224 m_oldSelection
->SetHilight(true);
3225 RefreshLine(m_oldSelection
);
3226 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
3229 // generate the drag end event
3230 wxTreeEvent
eventEndDrag(wxEVT_COMMAND_TREE_END_DRAG
, this, item
);
3232 eventEndDrag
.m_pointDrag
= CalcScrolledPosition(pt
);
3234 (void)GetEventHandler()->ProcessEvent(eventEndDrag
);
3236 m_isDragging
= false;
3237 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
3239 SetCursor(m_oldCursor
);
3241 #if defined( __WXMSW__ ) || defined(__WXMAC__)
3249 // If we got to this point, we are not dragging or moving the mouse.
3250 // Because the code in carbon/toplevel.cpp will only set focus to the tree
3251 // if we skip for EVT_LEFT_DOWN, we MUST skip this event here for focus to work.
3252 // We skip even if we didn't hit an item because we still should
3253 // restore focus to the tree control even if we didn't exactly hit an item.
3254 if ( event
.LeftDown() )
3259 // here we process only the messages which happen on tree items
3263 if (item
== NULL
) return; /* we hit the blank area */
3265 if ( event
.RightDown() )
3267 // If the item is already selected, do not update the selection.
3268 // Multi-selections should not be cleared if a selected item is clicked.
3269 if (!IsSelected(item
))
3271 DoSelectItem(item
, true, false);
3274 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, this, item
);
3275 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3276 event
.Skip(!GetEventHandler()->ProcessEvent(nevent
));
3278 // Consistent with MSW (for now), send the ITEM_MENU *after*
3279 // the RIGHT_CLICK event. TODO: This behavior may change.
3280 wxTreeEvent
nevent2(wxEVT_COMMAND_TREE_ITEM_MENU
, this, item
);
3281 nevent2
.m_pointDrag
= CalcScrolledPosition(pt
);
3282 GetEventHandler()->ProcessEvent(nevent2
);
3284 else if ( event
.MiddleDown() )
3286 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, this, item
);
3287 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3288 event
.Skip(!GetEventHandler()->ProcessEvent(nevent
));
3290 else if ( event
.LeftUp() )
3292 // this facilitates multiple-item drag-and-drop
3294 if ( /* item && */ HasFlag(wxTR_MULTIPLE
))
3296 wxArrayTreeItemIds selections
;
3297 size_t count
= GetSelections(selections
);
3303 DoSelectItem(item
, true, false);
3309 if ( (item
== m_current
) &&
3310 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
3311 HasFlag(wxTR_EDIT_LABELS
) )
3313 if ( m_renameTimer
)
3315 if ( m_renameTimer
->IsRunning() )
3316 m_renameTimer
->Stop();
3320 m_renameTimer
= new wxTreeRenameTimer( this );
3323 m_renameTimer
->Start( wxTreeRenameTimer::DELAY
, true );
3326 m_lastOnSame
= false;
3329 else // !RightDown() && !MiddleDown() && !LeftUp() ==> LeftDown() || LeftDClick()
3331 if ( event
.LeftDown() )
3333 m_lastOnSame
= item
== m_current
;
3336 if ( flags
& wxTREE_HITTEST_ONITEMBUTTON
)
3338 // only toggle the item for a single click, double click on
3339 // the button doesn't do anything (it toggles the item twice)
3340 if ( event
.LeftDown() )
3345 // don't select the item if the button was clicked
3350 // clear the previously selected items, if the
3351 // user clicked outside of the present selection.
3352 // otherwise, perform the deselection on mouse-up.
3353 // this allows multiple drag and drop to work.
3354 // but if Cmd is down, toggle selection of the clicked item
3355 if (!IsSelected(item
) || event
.CmdDown())
3357 // how should the selection work for this event?
3358 bool is_multiple
, extended_select
, unselect_others
;
3359 EventFlagsToSelType(GetWindowStyleFlag(),
3362 is_multiple
, extended_select
, unselect_others
);
3364 DoSelectItem(item
, unselect_others
, extended_select
);
3368 // For some reason, Windows isn't recognizing a left double-click,
3369 // so we need to simulate it here. Allow 200 milliseconds for now.
3370 if ( event
.LeftDClick() )
3372 // double clicking should not start editing the item label
3373 if ( m_renameTimer
)
3374 m_renameTimer
->Stop();
3376 m_lastOnSame
= false;
3378 // send activate event first
3379 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, this, item
);
3380 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3381 if ( !GetEventHandler()->ProcessEvent( nevent
) )
3383 // if the user code didn't process the activate event,
3384 // handle it ourselves by toggling the item when it is
3386 if ( item
->HasPlus() )
3396 void wxGenericTreeCtrl::OnInternalIdle()
3398 wxWindow::OnInternalIdle();
3400 // Check if we need to select the root item
3401 // because nothing else has been selected.
3402 // Delaying it means that we can invoke event handlers
3403 // as required, when a first item is selected.
3404 if (!HasFlag(wxTR_MULTIPLE
) && !GetSelection().IsOk())
3407 SelectItem(m_select_me
);
3408 else if (GetRootItem().IsOk())
3409 SelectItem(GetRootItem());
3412 // after all changes have been done to the tree control,
3413 // actually redraw the tree when everything is over
3415 DoDirtyProcessing();
3418 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
3423 wxTreeItemAttr
*attr
= item
->GetAttributes();
3424 if ( attr
&& attr
->HasFont() )
3425 dc
.SetFont(attr
->GetFont());
3426 else if ( item
->IsBold() )
3427 dc
.SetFont(m_boldFont
);
3429 dc
.SetFont(m_normalFont
);
3431 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
3434 // restore normal font
3435 dc
.SetFont( m_normalFont
);
3439 int image
= item
->GetCurrentImage();
3440 if ( image
!= NO_IMAGE
)
3442 if ( m_imageListNormal
)
3444 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
3445 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
3449 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
3452 total_h
+= 2; // at least 2 pixels
3454 total_h
+= total_h
/10; // otherwise 10% extra spacing
3456 item
->SetHeight(total_h
);
3457 if (total_h
>m_lineHeight
)
3458 m_lineHeight
=total_h
;
3460 item
->SetWidth(image_w
+text_w
+2);
3463 // -----------------------------------------------------------------------------
3464 // for developper : y is now the top of the level
3465 // not the middle of it !
3466 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
3468 int x
= level
*m_indent
;
3469 if (!HasFlag(wxTR_HIDE_ROOT
))
3473 else if (level
== 0)
3475 // a hidden root is not evaluated, but its
3476 // children are always calculated
3480 CalculateSize( item
, dc
);
3483 item
->SetX( x
+m_spacing
);
3485 y
+= GetLineHeight(item
);
3487 if ( !item
->IsExpanded() )
3489 // we don't need to calculate collapsed branches
3494 wxArrayGenericTreeItems
& children
= item
->GetChildren();
3495 size_t n
, count
= children
.GetCount();
3497 for (n
= 0; n
< count
; ++n
)
3498 CalculateLevel( children
[n
], dc
, level
, y
); // recurse
3501 void wxGenericTreeCtrl::CalculatePositions()
3503 if ( !m_anchor
) return;
3505 wxClientDC
dc(this);
3508 dc
.SetFont( m_normalFont
);
3510 dc
.SetPen( m_dottedPen
);
3511 //if(GetImageList() == NULL)
3512 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
3515 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
3518 void wxGenericTreeCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
3520 if ( !m_freezeCount
)
3521 wxTreeCtrlBase::Refresh(eraseBackground
, rect
);
3524 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
3526 if (m_dirty
|| m_freezeCount
)
3529 wxSize client
= GetClientSize();
3532 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3533 rect
.width
= client
.x
;
3534 rect
.height
= client
.y
;
3536 Refresh(true, &rect
);
3538 AdjustMyScrollbars();
3541 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
3543 if (m_dirty
|| m_freezeCount
)
3547 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3548 rect
.width
= GetClientSize().x
;
3549 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
3551 Refresh(true, &rect
);
3554 void wxGenericTreeCtrl::RefreshSelected()
3559 // TODO: this is awfully inefficient, we should keep the list of all
3560 // selected items internally, should be much faster
3562 RefreshSelectedUnder(m_anchor
);
3565 void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem
*item
)
3570 if ( item
->IsSelected() )
3573 const wxArrayGenericTreeItems
& children
= item
->GetChildren();
3574 size_t count
= children
.GetCount();
3575 for ( size_t n
= 0; n
< count
; n
++ )
3577 RefreshSelectedUnder(children
[n
]);
3581 void wxGenericTreeCtrl::Freeze()
3586 void wxGenericTreeCtrl::Thaw()
3588 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen tree control?") );
3590 if ( --m_freezeCount
== 0 )
3593 DoDirtyProcessing();
3599 // ----------------------------------------------------------------------------
3600 // changing colours: we need to refresh the tree control
3601 // ----------------------------------------------------------------------------
3603 bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour
& colour
)
3605 if ( !wxWindow::SetBackgroundColour(colour
) )
3613 bool wxGenericTreeCtrl::SetForegroundColour(const wxColour
& colour
)
3615 if ( !wxWindow::SetForegroundColour(colour
) )
3623 // Process the tooltip event, to speed up event processing.
3624 // Doesn't actually get a tooltip.
3625 void wxGenericTreeCtrl::OnGetToolTip( wxTreeEvent
&event
)
3631 // NOTE: If using the wxListBox visual attributes works everywhere then this can
3632 // be removed, as well as the #else case below.
3633 #define _USE_VISATTR 0
3638 wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
3640 wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
3644 // Use the same color scheme as wxListBox
3645 return wxListBox::GetClassDefaultAttributes(variant
);
3647 wxVisualAttributes attr
;
3648 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
3649 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
3650 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
3655 void wxGenericTreeCtrl::DoDirtyProcessing()
3662 CalculatePositions();
3664 AdjustMyScrollbars();
3667 wxSize
wxGenericTreeCtrl::DoGetBestSize() const
3669 // make sure all positions are calculated as normally this only done during
3670 // idle time but we need them for base class DoGetBestSize() to return the
3672 wxConstCast(this, wxGenericTreeCtrl
)->CalculatePositions();
3674 wxSize size
= wxTreeCtrlBase::DoGetBestSize();
3676 // there seems to be an implicit extra border around the items, although
3677 // I'm not really sure where does it come from -- but without this, the
3678 // scrollbars appear in a tree with default/best size
3681 // and the border has to be rounded up to a multiple of PIXELS_PER_UNIT or
3682 // scrollbars still appear
3683 const wxSize
& borderSize
= GetWindowBorderSize();
3685 int dx
= (size
.x
- borderSize
.x
) % PIXELS_PER_UNIT
;
3687 size
.x
+= PIXELS_PER_UNIT
- dx
;
3688 int dy
= (size
.y
- borderSize
.y
) % PIXELS_PER_UNIT
;
3690 size
.y
+= PIXELS_PER_UNIT
- dy
;
3692 // we need to update the cache too as the base class cached its own value
3693 CacheBestSize(size
);
3698 #endif // wxUSE_TREECTRL