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 WXDLLEXPORT 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;
793 #ifdef __WXMAC_CARBON__
794 m_normalFont
.MacCreateThemeFont( 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 m_dottedPen
= wxPen( wxT("grey"), 0, 0 );
855 SetInitialSize(size
);
860 wxGenericTreeCtrl::~wxGenericTreeCtrl()
862 delete m_hilightBrush
;
863 delete m_hilightUnfocusedBrush
;
867 delete m_renameTimer
;
870 if (m_ownsImageListButtons
)
871 delete m_imageListButtons
;
874 // -----------------------------------------------------------------------------
876 // -----------------------------------------------------------------------------
878 unsigned int wxGenericTreeCtrl::GetCount() const
886 unsigned int count
= m_anchor
->GetChildrenCount();
887 if ( !HasFlag(wxTR_HIDE_ROOT
) )
889 // take the root itself into account
896 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
898 m_indent
= (unsigned short) indent
;
903 wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
904 bool recursively
) const
906 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
908 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
911 void wxGenericTreeCtrl::SetWindowStyle(const long styles
)
913 // Do not try to expand the root node if it hasn't been created yet
914 if (m_anchor
&& !HasFlag(wxTR_HIDE_ROOT
) && (styles
& wxTR_HIDE_ROOT
))
916 // if we will hide the root, make sure children are visible
917 m_anchor
->SetHasPlus();
919 CalculatePositions();
922 // right now, just sets the styles. Eventually, we may
923 // want to update the inherited styles, but right now
924 // none of the parents has updatable styles
925 m_windowStyle
= styles
;
929 // -----------------------------------------------------------------------------
930 // functions to work with tree items
931 // -----------------------------------------------------------------------------
933 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
935 wxCHECK_MSG( item
.IsOk(), wxEmptyString
, wxT("invalid tree item") );
937 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
940 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
941 wxTreeItemIcon which
) const
943 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
945 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
948 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
950 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
952 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
955 wxColour
wxGenericTreeCtrl::GetItemTextColour(const wxTreeItemId
& item
) const
957 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
959 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
960 return pItem
->Attr().GetTextColour();
963 wxColour
wxGenericTreeCtrl::GetItemBackgroundColour(const wxTreeItemId
& item
) const
965 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
967 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
968 return pItem
->Attr().GetBackgroundColour();
971 wxFont
wxGenericTreeCtrl::GetItemFont(const wxTreeItemId
& item
) const
973 wxCHECK_MSG( item
.IsOk(), wxNullFont
, wxT("invalid tree item") );
975 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
976 return pItem
->Attr().GetFont();
979 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
981 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
984 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
985 pItem
->SetText(text
);
986 CalculateSize(pItem
, dc
);
990 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
992 wxTreeItemIcon which
)
994 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
996 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
997 pItem
->SetImage(image
, which
);
1000 CalculateSize(pItem
, dc
);
1004 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
1006 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1009 data
->SetId( item
);
1011 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
1014 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
1016 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1018 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1019 pItem
->SetHasPlus(has
);
1023 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
1025 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1027 // avoid redrawing the tree if no real change
1028 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1029 if ( pItem
->IsBold() != bold
)
1031 pItem
->SetBold(bold
);
1033 // recalculate the item size as bold and non bold fonts have different
1035 wxClientDC
dc(this);
1036 CalculateSize(pItem
, dc
);
1042 void wxGenericTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
,
1045 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1051 bg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1052 fg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1055 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1056 pItem
->Attr().SetTextColour(fg
);
1057 pItem
->Attr().SetBackgroundColour(bg
);
1061 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
1062 const wxColour
& col
)
1064 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1066 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1067 pItem
->Attr().SetTextColour(col
);
1071 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1072 const wxColour
& col
)
1074 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1076 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1077 pItem
->Attr().SetBackgroundColour(col
);
1081 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1083 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1085 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1086 pItem
->Attr().SetFont(font
);
1090 bool wxGenericTreeCtrl::SetFont( const wxFont
&font
)
1092 wxTreeCtrlBase::SetFont(font
);
1094 m_normalFont
= font
;
1095 m_boldFont
= wxFont(m_normalFont
.GetPointSize(),
1096 m_normalFont
.GetFamily(),
1097 m_normalFont
.GetStyle(),
1099 m_normalFont
.GetUnderlined(),
1100 m_normalFont
.GetFaceName(),
1101 m_normalFont
.GetEncoding());
1107 // -----------------------------------------------------------------------------
1108 // item status inquiries
1109 // -----------------------------------------------------------------------------
1111 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1113 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1115 // An item is only visible if it's not a descendant of a collapsed item
1116 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1117 wxGenericTreeItem
* parent
= pItem
->GetParent();
1120 if (!parent
->IsExpanded())
1122 parent
= parent
->GetParent();
1126 GetViewStart(& startX
, & startY
);
1128 wxSize clientSize
= GetClientSize();
1131 if (!GetBoundingRect(item
, rect
))
1133 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
1135 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
1137 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
1143 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1145 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1147 // consider that the item does have children if it has the "+" button: it
1148 // might not have them (if it had never been expanded yet) but then it
1149 // could have them as well and it's better to err on this side rather than
1150 // disabling some operations which are restricted to the items with
1151 // children for an item which does have them
1152 return ((wxGenericTreeItem
*) item
.m_pItem
)->HasPlus();
1155 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1157 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1159 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
1162 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1164 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1166 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
1169 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1171 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1173 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
1176 // -----------------------------------------------------------------------------
1178 // -----------------------------------------------------------------------------
1180 wxTreeItemId
wxGenericTreeCtrl::GetItemParent(const wxTreeItemId
& item
) const
1182 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1184 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
1187 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1188 wxTreeItemIdValue
& cookie
) const
1190 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1193 return GetNextChild(item
, cookie
);
1196 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
,
1197 wxTreeItemIdValue
& cookie
) const
1199 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1201 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1203 // it's ok to cast cookie to size_t, we never have indices big enough to
1204 // overflow "void *"
1205 size_t *pIndex
= (size_t *)&cookie
;
1206 if ( *pIndex
< children
.GetCount() )
1208 return children
.Item((*pIndex
)++);
1212 // there are no more of them
1213 return wxTreeItemId();
1217 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1219 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1221 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1222 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
1225 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1227 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1229 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1230 wxGenericTreeItem
*parent
= i
->GetParent();
1231 if ( parent
== NULL
)
1233 // root item doesn't have any siblings
1234 return wxTreeItemId();
1237 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1238 int index
= siblings
.Index(i
);
1239 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1241 size_t n
= (size_t)(index
+ 1);
1242 return n
== siblings
.GetCount() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
1245 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1247 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1249 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1250 wxGenericTreeItem
*parent
= i
->GetParent();
1251 if ( parent
== NULL
)
1253 // root item doesn't have any siblings
1254 return wxTreeItemId();
1257 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1258 int index
= siblings
.Index(i
);
1259 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1261 return index
== 0 ? wxTreeItemId()
1262 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
1265 // Only for internal use right now, but should probably be public
1266 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
1268 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1270 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1272 // First see if there are any children.
1273 wxArrayGenericTreeItems
& children
= i
->GetChildren();
1274 if (children
.GetCount() > 0)
1276 return children
.Item(0);
1280 // Try a sibling of this or ancestor instead
1281 wxTreeItemId p
= item
;
1282 wxTreeItemId toFind
;
1285 toFind
= GetNextSibling(p
);
1286 p
= GetItemParent(p
);
1287 } while (p
.IsOk() && !toFind
.IsOk());
1292 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1294 wxTreeItemId id
= GetRootItem();
1303 } while (id
.IsOk());
1305 return wxTreeItemId();
1308 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1310 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1312 wxTreeItemId id
= item
;
1315 while (id
= GetNext(id
), id
.IsOk())
1321 return wxTreeItemId();
1324 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1326 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1328 wxFAIL_MSG(wxT("not implemented"));
1330 return wxTreeItemId();
1333 // called by wxTextTreeCtrl when it marks itself for deletion
1334 void wxGenericTreeCtrl::ResetTextControl()
1339 // find the first item starting with the given prefix after the given item
1340 wxTreeItemId
wxGenericTreeCtrl::FindItem(const wxTreeItemId
& idParent
,
1341 const wxString
& prefixOrig
) const
1343 // match is case insensitive as this is more convenient to the user: having
1344 // to press Shift-letter to go to the item starting with a capital letter
1345 // would be too bothersome
1346 wxString prefix
= prefixOrig
.Lower();
1348 // determine the starting point: we shouldn't take the current item (this
1349 // allows to switch between two items starting with the same letter just by
1350 // pressing it) but we shouldn't jump to the next one if the user is
1351 // continuing to type as otherwise he might easily skip the item he wanted
1352 wxTreeItemId id
= idParent
;
1353 if ( prefix
.length() == 1 )
1358 // look for the item starting with the given prefix after it
1359 while ( id
.IsOk() && !GetItemText(id
).Lower().StartsWith(prefix
) )
1364 // if we haven't found anything...
1367 // ... wrap to the beginning
1369 if ( HasFlag(wxTR_HIDE_ROOT
) )
1371 // can't select virtual root
1375 // and try all the items (stop when we get to the one we started from)
1376 while (id
.IsOk() && id
!= idParent
&& !GetItemText(id
).Lower().StartsWith(prefix
) )
1380 // If we haven't found the item, id.IsOk() will be false, as per
1387 // -----------------------------------------------------------------------------
1389 // -----------------------------------------------------------------------------
1391 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1393 const wxString
& text
,
1396 wxTreeItemData
*data
)
1398 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1401 // should we give a warning here?
1402 return AddRoot(text
, image
, selImage
, data
);
1405 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1407 wxGenericTreeItem
*item
=
1408 new wxGenericTreeItem( parent
, text
, image
, selImage
, data
);
1412 data
->m_pItem
= item
;
1415 parent
->Insert( item
, previous
== (size_t)-1 ? parent
->GetChildren().size()
1421 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1424 wxTreeItemData
*data
)
1426 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1428 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1430 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
,
1431 image
, selImage
, data
);
1434 data
->m_pItem
= m_anchor
;
1437 if (HasFlag(wxTR_HIDE_ROOT
))
1439 // if root is hidden, make sure we can navigate
1441 m_anchor
->SetHasPlus();
1443 CalculatePositions();
1446 if (!HasFlag(wxTR_MULTIPLE
))
1448 m_current
= m_key_current
= m_anchor
;
1449 m_current
->SetHilight( true );
1455 wxTreeItemId
wxGenericTreeCtrl::DoInsertAfter(const wxTreeItemId
& parentId
,
1456 const wxTreeItemId
& idPrevious
,
1457 const wxString
& text
,
1458 int image
, int selImage
,
1459 wxTreeItemData
*data
)
1461 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1464 // should we give a warning here?
1465 return AddRoot(text
, image
, selImage
, data
);
1469 if (idPrevious
.IsOk())
1471 index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1472 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1473 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1476 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1480 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1482 wxTreeEvent
event(wxEVT_COMMAND_TREE_DELETE_ITEM
, this, item
);
1483 GetEventHandler()->ProcessEvent( event
);
1486 // Don't leave edit or selection on a child which is about to disappear
1487 void wxGenericTreeCtrl::ChildrenClosing(wxGenericTreeItem
* item
)
1489 if (m_textCtrl
!= NULL
&& item
!= m_textCtrl
->item() && IsDescendantOf(item
, m_textCtrl
->item())) {
1490 m_textCtrl
->StopEditing();
1492 if (item
!= m_key_current
&& IsDescendantOf(item
, m_key_current
)) {
1493 m_key_current
= NULL
;
1495 if (IsDescendantOf(item
, m_select_me
)) {
1498 if (item
!= m_current
&& IsDescendantOf(item
, m_current
)) {
1499 m_current
->SetHilight( false );
1505 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1507 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1509 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1510 ChildrenClosing(item
);
1511 item
->DeleteChildren(this);
1514 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1516 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1518 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1520 if (m_textCtrl
!= NULL
&& IsDescendantOf(item
, m_textCtrl
->item()))
1522 // can't delete the item being edited, cancel editing it first
1523 m_textCtrl
->StopEditing();
1526 wxGenericTreeItem
*parent
= item
->GetParent();
1528 // don't keep stale pointers around!
1529 if ( IsDescendantOf(item
, m_key_current
) )
1531 // Don't silently change the selection:
1532 // do it properly in idle time, so event
1533 // handlers get called.
1535 // m_key_current = parent;
1536 m_key_current
= NULL
;
1539 // m_select_me records whether we need to select
1540 // a different item, in idle time.
1541 if ( m_select_me
&& IsDescendantOf(item
, m_select_me
) )
1543 m_select_me
= parent
;
1546 if ( IsDescendantOf(item
, m_current
) )
1548 // Don't silently change the selection:
1549 // do it properly in idle time, so event
1550 // handlers get called.
1552 // m_current = parent;
1554 m_select_me
= parent
;
1557 // remove the item from the tree
1560 parent
->GetChildren().Remove( item
); // remove by value
1562 else // deleting the root
1564 // nothing will be left in the tree
1568 // and delete all of its children and the item itself now
1569 item
->DeleteChildren(this);
1570 SendDeleteEvent(item
);
1572 if (item
== m_select_me
)
1578 void wxGenericTreeCtrl::DeleteAllItems()
1586 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1588 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1590 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1591 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1592 _T("can't expand hidden root") );
1594 if ( !item
->HasPlus() )
1597 if ( item
->IsExpanded() )
1600 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, this, item
);
1602 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1604 // cancelled by program
1609 CalculatePositions();
1611 RefreshSubtree(item
);
1613 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1614 GetEventHandler()->ProcessEvent( event
);
1617 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1619 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1620 _T("can't collapse hidden root") );
1622 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1624 if ( !item
->IsExpanded() )
1627 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, this, item
);
1628 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1630 // cancelled by program
1634 ChildrenClosing(item
);
1637 #if 0 // TODO why should items be collapsed recursively?
1638 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1639 size_t count
= children
.GetCount();
1640 for ( size_t n
= 0; n
< count
; n
++ )
1642 Collapse(children
[n
]);
1646 CalculatePositions();
1648 RefreshSubtree(item
);
1650 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1651 GetEventHandler()->ProcessEvent( event
);
1654 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1657 DeleteChildren(item
);
1660 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1662 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1664 if (item
->IsExpanded())
1670 void wxGenericTreeCtrl::Unselect()
1674 m_current
->SetHilight( false );
1675 RefreshLine( m_current
);
1682 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1684 if (item
->IsSelected())
1686 item
->SetHilight(false);
1690 if (item
->HasChildren())
1692 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1693 size_t count
= children
.GetCount();
1694 for ( size_t n
= 0; n
< count
; ++n
)
1696 UnselectAllChildren(children
[n
]);
1701 void wxGenericTreeCtrl::UnselectAll()
1703 wxTreeItemId rootItem
= GetRootItem();
1705 // the tree might not have the root item at all
1708 UnselectAllChildren((wxGenericTreeItem
*) rootItem
.m_pItem
);
1712 // Recursive function !
1713 // To stop we must have crt_item<last_item
1715 // Tag all next children, when no more children,
1716 // Move to parent (not to tag)
1717 // Keep going... if we found last_item, we stop.
1718 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1720 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1722 if (parent
== NULL
) // This is root item
1723 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1725 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1726 int index
= children
.Index(crt_item
);
1727 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1729 size_t count
= children
.GetCount();
1730 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1732 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return true;
1735 return TagNextChildren(parent
, last_item
, select
);
1738 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1740 crt_item
->SetHilight(select
);
1741 RefreshLine(crt_item
);
1743 if (crt_item
==last_item
)
1746 if (crt_item
->HasChildren())
1748 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1749 size_t count
= children
.GetCount();
1750 for ( size_t n
= 0; n
< count
; ++n
)
1752 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1760 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1764 // item2 is not necessary after item1
1765 // choice first' and 'last' between item1 and item2
1766 wxGenericTreeItem
*first
= (item1
->GetY()<item2
->GetY()) ? item1
: item2
;
1767 wxGenericTreeItem
*last
= (item1
->GetY()<item2
->GetY()) ? item2
: item1
;
1769 bool select
= m_current
->IsSelected();
1771 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1774 TagNextChildren(first
,last
,select
);
1777 void wxGenericTreeCtrl::DoSelectItem(const wxTreeItemId
& itemId
,
1778 bool unselect_others
,
1779 bool extended_select
)
1781 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1785 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1786 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1788 //wxCHECK_RET( ( (!unselect_others) && is_single),
1789 // wxT("this is a single selection tree") );
1791 // to keep going anyhow !!!
1794 if (item
->IsSelected())
1795 return; // nothing to do
1796 unselect_others
= true;
1797 extended_select
= false;
1799 else if ( unselect_others
&& item
->IsSelected() )
1801 // selection change if there is more than one item currently selected
1802 wxArrayTreeItemIds selected_items
;
1803 if ( GetSelections(selected_items
) == 1 )
1807 wxTreeEvent
event(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1808 event
.m_itemOld
= m_current
;
1809 // TODO : Here we don't send any selection mode yet !
1811 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1814 wxTreeItemId parent
= GetItemParent( itemId
);
1815 while (parent
.IsOk())
1817 if (!IsExpanded(parent
))
1820 parent
= GetItemParent( parent
);
1824 if (unselect_others
)
1826 if (is_single
) Unselect(); // to speed up thing
1831 if (extended_select
)
1835 m_current
= m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1838 // don't change the mark (m_current)
1839 SelectItemRange(m_current
, item
);
1843 bool select
= true; // the default
1845 // Check if we need to toggle hilight (ctrl mode)
1846 if (!unselect_others
)
1847 select
=!item
->IsSelected();
1849 m_current
= m_key_current
= item
;
1850 m_current
->SetHilight(select
);
1851 RefreshLine( m_current
);
1854 // This can cause idle processing to select the root
1855 // if no item is selected, so it must be after the
1857 EnsureVisible( itemId
);
1859 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1860 GetEventHandler()->ProcessEvent( event
);
1863 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
, bool select
)
1867 DoSelectItem(itemId
, !HasFlag(wxTR_MULTIPLE
));
1871 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1872 wxCHECK_RET( item
, wxT("SelectItem(): invalid tree item") );
1874 wxTreeEvent
event(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1875 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1878 item
->SetHilight(false);
1881 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1882 GetEventHandler()->ProcessEvent( event
);
1886 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1887 wxArrayTreeItemIds
&array
) const
1889 if ( item
->IsSelected() )
1890 array
.Add(wxTreeItemId(item
));
1892 if ( item
->HasChildren() )
1894 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1895 size_t count
= children
.GetCount();
1896 for ( size_t n
= 0; n
< count
; ++n
)
1897 FillArray(children
[n
], array
);
1901 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1904 wxTreeItemId idRoot
= GetRootItem();
1905 if ( idRoot
.IsOk() )
1907 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1909 //else: the tree is empty, so no selections
1911 return array
.GetCount();
1914 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1916 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1918 if (!item
.IsOk()) return;
1920 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1922 // first expand all parent branches
1923 wxGenericTreeItem
*parent
= gitem
->GetParent();
1925 if ( HasFlag(wxTR_HIDE_ROOT
) )
1927 while ( parent
&& parent
!= m_anchor
)
1930 parent
= parent
->GetParent();
1938 parent
= parent
->GetParent();
1942 //if (parent) CalculatePositions();
1947 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1949 if (!item
.IsOk()) return;
1951 // We have to call this here because the label in
1952 // question might just have been added and no screen
1953 // update taken place.
1955 #if defined( __WXMSW__ ) || defined(__WXMAC__)
1958 DoDirtyProcessing();
1960 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1962 // now scroll to the item
1963 int item_y
= gitem
->GetY();
1967 GetViewStart( &start_x
, &start_y
);
1968 start_y
*= PIXELS_PER_UNIT
;
1972 GetClientSize( &client_w
, &client_h
);
1974 if (item_y
< start_y
+3)
1979 m_anchor
->GetSize( x
, y
, this );
1980 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1981 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1982 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1983 // Item should appear at top
1984 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1986 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1991 m_anchor
->GetSize( x
, y
, this );
1992 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1993 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1994 item_y
+= PIXELS_PER_UNIT
+2;
1995 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1996 // Item should appear at bottom
1997 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
);
2001 // FIXME: tree sorting functions are not reentrant and not MT-safe!
2002 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
2004 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
2005 wxGenericTreeItem
**item2
)
2007 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
2009 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
2012 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
2014 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
2016 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
2018 wxCHECK_RET( !s_treeBeingSorted
,
2019 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
2021 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2022 if ( children
.GetCount() > 1 )
2026 s_treeBeingSorted
= this;
2027 children
.Sort(tree_ctrl_compare_func
);
2028 s_treeBeingSorted
= NULL
;
2030 //else: don't make the tree dirty as nothing changed
2033 void wxGenericTreeCtrl::CalculateLineHeight()
2035 wxClientDC
dc(this);
2036 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
2038 if ( m_imageListNormal
)
2040 // Calculate a m_lineHeight value from the normal Image sizes.
2041 // May be toggle off. Then wxGenericTreeCtrl will spread when
2042 // necessary (which might look ugly).
2043 int n
= m_imageListNormal
->GetImageCount();
2044 for (int i
= 0; i
< n
; i
++)
2046 int width
= 0, height
= 0;
2047 m_imageListNormal
->GetSize(i
, width
, height
);
2048 if (height
> m_lineHeight
) m_lineHeight
= height
;
2052 if (m_imageListButtons
)
2054 // Calculate a m_lineHeight value from the Button image sizes.
2055 // May be toggle off. Then wxGenericTreeCtrl will spread when
2056 // necessary (which might look ugly).
2057 int n
= m_imageListButtons
->GetImageCount();
2058 for (int i
= 0; i
< n
; i
++)
2060 int width
= 0, height
= 0;
2061 m_imageListButtons
->GetSize(i
, width
, height
);
2062 if (height
> m_lineHeight
) m_lineHeight
= height
;
2066 if (m_lineHeight
< 30)
2067 m_lineHeight
+= 2; // at least 2 pixels
2069 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
2072 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
2074 if (m_ownsImageListNormal
) delete m_imageListNormal
;
2075 m_imageListNormal
= imageList
;
2076 m_ownsImageListNormal
= false;
2078 // Don't do any drawing if we're setting the list to NULL,
2079 // since we may be in the process of deleting the tree control.
2081 CalculateLineHeight();
2084 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
2086 if (m_ownsImageListState
) delete m_imageListState
;
2087 m_imageListState
= imageList
;
2088 m_ownsImageListState
= false;
2091 void wxGenericTreeCtrl::SetButtonsImageList(wxImageList
*imageList
)
2093 if (m_ownsImageListButtons
) delete m_imageListButtons
;
2094 m_imageListButtons
= imageList
;
2095 m_ownsImageListButtons
= false;
2097 CalculateLineHeight();
2100 void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList
*imageList
)
2102 SetButtonsImageList(imageList
);
2103 m_ownsImageListButtons
= true;
2106 // -----------------------------------------------------------------------------
2108 // -----------------------------------------------------------------------------
2110 void wxGenericTreeCtrl::AdjustMyScrollbars()
2115 m_anchor
->GetSize( x
, y
, this );
2116 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2117 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2118 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2119 int y_pos
= GetScrollPos( wxVERTICAL
);
2120 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
2124 SetScrollbars( 0, 0, 0, 0 );
2128 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
2130 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
2131 return item
->GetHeight();
2133 return m_lineHeight
;
2136 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
2138 // TODO implement "state" icon on items
2140 wxTreeItemAttr
*attr
= item
->GetAttributes();
2141 if ( attr
&& attr
->HasFont() )
2142 dc
.SetFont(attr
->GetFont());
2143 else if (item
->IsBold())
2144 dc
.SetFont(m_boldFont
);
2146 long text_w
= 0, text_h
= 0;
2147 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2149 int image_h
= 0, image_w
= 0;
2150 int image
= item
->GetCurrentImage();
2151 if ( image
!= NO_IMAGE
)
2153 if ( m_imageListNormal
)
2155 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2156 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
2164 int total_h
= GetLineHeight(item
);
2165 bool drawItemBackground
= false;
2167 if ( item
->IsSelected() )
2169 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
2170 drawItemBackground
= true;
2175 if ( attr
&& attr
->HasBackgroundColour() )
2177 drawItemBackground
= true;
2178 colBg
= attr
->GetBackgroundColour();
2182 colBg
= GetBackgroundColour();
2184 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
2187 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
2189 if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT
) )
2193 GetVirtualSize(&w
, &h
);
2194 wxRect
rect( x
, item
->GetY()+offset
, w
, total_h
-offset
);
2195 #if !defined(__WXGTK20__) && !defined(__WXMAC__)
2196 dc
.DrawRectangle(rect
);
2198 if (!item
->IsSelected())
2200 dc
.DrawRectangle(rect
);
2204 int flags
= wxCONTROL_SELECTED
;
2207 && IsControlActive( (ControlRef
)GetHandle() )
2210 flags
|= wxCONTROL_FOCUSED
;
2211 if ((item
== m_current
) && (m_hasFocus
))
2212 flags
|= wxCONTROL_CURRENT
;
2213 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, flags
);
2219 if ( item
->IsSelected() && image
!= NO_IMAGE
)
2221 // If it's selected, and there's an image, then we should
2222 // take care to leave the area under the image painted in the
2223 // background colour.
2224 wxRect
rect( item
->GetX() + image_w
- 2, item
->GetY()+offset
,
2225 item
->GetWidth() - image_w
+ 2, total_h
-offset
);
2226 #if !defined(__WXGTK20__) && !defined(__WXMAC__)
2227 dc
.DrawRectangle( rect
);
2232 int flags
= wxCONTROL_SELECTED
;
2234 flags
|= wxCONTROL_FOCUSED
;
2235 if ((item
== m_current
) && (m_hasFocus
))
2236 flags
|= wxCONTROL_CURRENT
;
2237 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, flags
);
2240 // On GTK+ 2, drawing a 'normal' background is wrong for themes that
2241 // don't allow backgrounds to be customized. Not drawing the background,
2242 // except for custom item backgrounds, works for both kinds of theme.
2243 else if (drawItemBackground
)
2245 wxRect
rect( item
->GetX()-2, item
->GetY()+offset
,
2246 item
->GetWidth()+2, total_h
-offset
);
2247 #if !defined(__WXGTK20__) && !defined(__WXMAC__)
2248 dc
.DrawRectangle( rect
);
2250 if ( attr
&& attr
->HasBackgroundColour() )
2252 dc
.DrawRectangle( rect
);
2259 int flags
= wxCONTROL_SELECTED
;
2261 flags
|= wxCONTROL_FOCUSED
;
2262 if ((item
== m_current
) && (m_hasFocus
))
2263 flags
|= wxCONTROL_CURRENT
;
2264 wxRendererNative::Get().DrawItemSelectionRect( this, dc
, rect
, flags
);
2270 if ( image
!= NO_IMAGE
)
2272 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
2273 m_imageListNormal
->Draw( image
, dc
,
2275 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
2276 wxIMAGELIST_DRAW_TRANSPARENT
);
2277 dc
.DestroyClippingRegion();
2280 dc
.SetBackgroundMode(wxTRANSPARENT
);
2281 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
2282 dc
.DrawText( item
->GetText(),
2283 (wxCoord
)(image_w
+ item
->GetX()),
2284 (wxCoord
)(item
->GetY() + extraH
));
2286 // restore normal font
2287 dc
.SetFont( m_normalFont
);
2290 // Now y stands for the top of the item, whereas it used to stand for middle !
2291 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2293 int x
= level
*m_indent
;
2294 if (!HasFlag(wxTR_HIDE_ROOT
))
2298 else if (level
== 0)
2300 // always expand hidden root
2302 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2303 int count
= children
.GetCount();
2309 PaintLevel(children
[n
], dc
, 1, y
);
2310 } while (++n
< count
);
2312 if (!HasFlag(wxTR_NO_LINES
) && HasFlag(wxTR_LINES_AT_ROOT
) && count
> 0)
2314 // draw line down to last child
2315 origY
+= GetLineHeight(children
[0])>>1;
2316 oldY
+= GetLineHeight(children
[n
-1])>>1;
2317 dc
.DrawLine(3, origY
, 3, oldY
);
2323 item
->SetX(x
+m_spacing
);
2326 int h
= GetLineHeight(item
);
2328 int y_mid
= y_top
+ (h
>>1);
2331 int exposed_x
= dc
.LogicalToDeviceX(0);
2332 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
2334 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
2338 // don't draw rect outline if we already have the
2339 // background color under Mac
2340 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
2341 #endif // !__WXMAC__
2345 if ( item
->IsSelected()
2347 // On wxMac, if the tree doesn't have the focus we draw an empty
2348 // rectangle, so we want to make sure that the text is visible
2349 // against the normal background, not the highlightbackground, so
2350 // don't use the highlight text colour unless we have the focus.
2351 && m_hasFocus
&& IsControlActive( (ControlRef
)GetHandle() )
2358 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2363 wxTreeItemAttr
*attr
= item
->GetAttributes();
2364 if (attr
&& attr
->HasTextColour())
2365 colText
= attr
->GetTextColour();
2367 colText
= GetForegroundColour();
2371 dc
.SetTextForeground(colText
);
2375 PaintItem(item
, dc
);
2377 if (HasFlag(wxTR_ROW_LINES
))
2379 // if the background colour is white, choose a
2380 // contrasting color for the lines
2381 dc
.SetPen(*((GetBackgroundColour() == *wxWHITE
)
2382 ? wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
2383 dc
.DrawLine(0, y_top
, 10000, y_top
);
2384 dc
.DrawLine(0, y
, 10000, y
);
2387 // restore DC objects
2388 dc
.SetBrush(*wxWHITE_BRUSH
);
2389 dc
.SetPen(m_dottedPen
);
2390 dc
.SetTextForeground(*wxBLACK
);
2392 if ( !HasFlag(wxTR_NO_LINES
) )
2394 // draw the horizontal line here
2396 if (x
> (signed)m_indent
)
2397 x_start
-= m_indent
;
2398 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2400 dc
.DrawLine(x_start
, y_mid
, x
+ m_spacing
, y_mid
);
2403 // should the item show a button?
2404 if ( item
->HasPlus() && HasButtons() )
2406 if ( m_imageListButtons
)
2408 // draw the image button here
2411 int image
= item
->IsExpanded() ? wxTreeItemIcon_Expanded
2412 : wxTreeItemIcon_Normal
;
2413 if ( item
->IsSelected() )
2414 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
2416 m_imageListButtons
->GetSize(image
, image_w
, image_h
);
2417 int xx
= x
- image_w
/2;
2418 int yy
= y_mid
- image_h
/2;
2420 wxDCClipper
clip(dc
, xx
, yy
, image_w
, image_h
);
2421 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
2422 wxIMAGELIST_DRAW_TRANSPARENT
);
2424 else // no custom buttons
2426 static const int wImage
= 9;
2427 static const int hImage
= 9;
2430 if (item
->IsExpanded())
2431 flag
|= wxCONTROL_EXPANDED
;
2432 if (item
== m_underMouse
)
2433 flag
|= wxCONTROL_CURRENT
;
2435 wxRendererNative::Get().DrawTreeItemButton
2439 wxRect(x
- wImage
/2,
2448 if (item
->IsExpanded())
2450 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2451 int count
= children
.GetCount();
2458 PaintLevel(children
[n
], dc
, level
, y
);
2459 } while (++n
< count
);
2461 if (!HasFlag(wxTR_NO_LINES
) && count
> 0)
2463 // draw line down to last child
2464 oldY
+= GetLineHeight(children
[n
-1])>>1;
2465 if (HasButtons()) y_mid
+= 5;
2467 // Only draw the portion of the line that is visible, in case it is huge
2468 wxCoord xOrigin
=0, yOrigin
=0, width
, height
;
2469 dc
.GetDeviceOrigin(&xOrigin
, &yOrigin
);
2470 yOrigin
= abs(yOrigin
);
2471 GetClientSize(&width
, &height
);
2473 // Move end points to the begining/end of the view?
2474 if (y_mid
< yOrigin
)
2476 if (oldY
> yOrigin
+ height
)
2477 oldY
= yOrigin
+ height
;
2479 // after the adjustments if y_mid is larger than oldY then the line
2480 // isn't visible at all so don't draw anything
2482 dc
.DrawLine(x
, y_mid
, x
, oldY
);
2488 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
2492 if ( item
->HasPlus() )
2494 // it's a folder, indicate it by a border
2499 // draw a line under the drop target because the item will be
2501 DrawLine(item
, !m_dropEffectAboveItem
);
2504 SetCursor(wxCURSOR_BULLSEYE
);
2509 SetCursor(wxCURSOR_NO_ENTRY
);
2513 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
2515 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2517 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2519 wxClientDC
dc(this);
2521 dc
.SetLogicalFunction(wxINVERT
);
2522 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2524 int w
= i
->GetWidth() + 2;
2525 int h
= GetLineHeight(i
) + 2;
2527 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
2530 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
2532 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2534 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2536 wxClientDC
dc(this);
2538 dc
.SetLogicalFunction(wxINVERT
);
2544 y
+= GetLineHeight(i
) - 1;
2547 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
2550 // -----------------------------------------------------------------------------
2551 // wxWidgets callbacks
2552 // -----------------------------------------------------------------------------
2554 void wxGenericTreeCtrl::OnSize( wxSizeEvent
&event
)
2557 if (HasFlag( wxTR_FULL_ROW_HIGHLIGHT
) && m_current
)
2558 RefreshLine( m_current
);
2564 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2572 dc
.SetFont( m_normalFont
);
2573 dc
.SetPen( m_dottedPen
);
2575 // this is now done dynamically
2576 //if(GetImageList() == NULL)
2577 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2580 PaintLevel( m_anchor
, dc
, 0, y
);
2583 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&event
)
2592 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&event
)
2601 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2603 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, this);
2604 te
.m_evtKey
= event
;
2605 if ( GetEventHandler()->ProcessEvent( te
) )
2607 // intercepted by the user code
2611 if ( (m_current
== 0) || (m_key_current
== 0) )
2617 // how should the selection work for this event?
2618 bool is_multiple
, extended_select
, unselect_others
;
2619 EventFlagsToSelType(GetWindowStyleFlag(),
2622 is_multiple
, extended_select
, unselect_others
);
2624 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2626 if (event
.GetKeyCode() == WXK_RIGHT
)
2627 event
.m_keyCode
= WXK_LEFT
;
2628 else if (event
.GetKeyCode() == WXK_LEFT
)
2629 event
.m_keyCode
= WXK_RIGHT
;
2634 // * : Expand all/Collapse all
2635 // ' ' | return : activate
2636 // up : go up (not last children!)
2638 // left : go to parent
2639 // right : open if parent and go next
2640 // home : go to root
2641 // end : go to last item without opening parents
2642 // alnum : start or continue searching for the item with this prefix
2643 int keyCode
= event
.GetKeyCode();
2648 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2656 if ( !IsExpanded(m_current
) )
2659 ExpandAllChildren(m_current
);
2662 //else: fall through to Collapse() it
2666 if (IsExpanded(m_current
))
2668 Collapse(m_current
);
2674 // Use the item's bounding rectangle to determine position for the event
2676 GetBoundingRect(m_current
, ItemRect
, true);
2678 wxTreeEvent
eventMenu(wxEVT_COMMAND_TREE_ITEM_MENU
, this, m_current
);
2679 // Use the left edge, vertical middle
2680 eventMenu
.m_pointDrag
= wxPoint(ItemRect
.GetX(),
2681 ItemRect
.GetY() + ItemRect
.GetHeight() / 2);
2682 GetEventHandler()->ProcessEvent( eventMenu
);
2688 if ( !event
.HasModifiers() )
2690 wxTreeEvent
eventAct(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, this, m_current
);
2691 GetEventHandler()->ProcessEvent( eventAct
);
2694 // in any case, also generate the normal key event for this key,
2695 // even if we generated the ACTIVATED event above: this is what
2696 // wxMSW does and it makes sense because you might not want to
2697 // process ACTIVATED event at all and handle Space and Return
2698 // directly (and differently) which would be impossible otherwise
2702 // up goes to the previous sibling or to the last
2703 // of its children if it's expanded
2706 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2709 prev
= GetItemParent( m_key_current
);
2710 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2712 break; // don't go to root if it is hidden
2716 wxTreeItemIdValue cookie
;
2717 wxTreeItemId current
= m_key_current
;
2718 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
2719 if (current
== GetFirstChild( prev
, cookie
))
2721 // otherwise we return to where we came from
2722 DoSelectItem( prev
, unselect_others
, extended_select
);
2723 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2730 while ( IsExpanded(prev
) && HasChildren(prev
) )
2732 wxTreeItemId child
= GetLastChild(prev
);
2739 DoSelectItem( prev
, unselect_others
, extended_select
);
2740 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2745 // left arrow goes to the parent
2748 wxTreeItemId prev
= GetItemParent( m_current
);
2749 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2751 // don't go to root if it is hidden
2752 prev
= GetPrevSibling( m_current
);
2756 DoSelectItem( prev
, unselect_others
, extended_select
);
2762 // this works the same as the down arrow except that we
2763 // also expand the item if it wasn't expanded yet
2769 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2771 wxTreeItemIdValue cookie
;
2772 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2773 DoSelectItem( child
, unselect_others
, extended_select
);
2774 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2778 wxTreeItemId next
= GetNextSibling( m_key_current
);
2781 wxTreeItemId current
= m_key_current
;
2782 while (current
.IsOk() && !next
)
2784 current
= GetItemParent( current
);
2785 if (current
) next
= GetNextSibling( current
);
2790 DoSelectItem( next
, unselect_others
, extended_select
);
2791 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2797 // <End> selects the last visible tree item
2800 wxTreeItemId last
= GetRootItem();
2802 while ( last
.IsOk() && IsExpanded(last
) )
2804 wxTreeItemId lastChild
= GetLastChild(last
);
2806 // it may happen if the item was expanded but then all of
2807 // its children have been deleted - so IsExpanded() returned
2808 // true, but GetLastChild() returned invalid item
2817 DoSelectItem( last
, unselect_others
, extended_select
);
2822 // <Home> selects the root item
2825 wxTreeItemId prev
= GetRootItem();
2829 if ( HasFlag(wxTR_HIDE_ROOT
) )
2831 wxTreeItemIdValue cookie
;
2832 prev
= GetFirstChild(prev
, cookie
);
2837 DoSelectItem( prev
, unselect_others
, extended_select
);
2842 // do not use wxIsalnum() here
2843 if ( !event
.HasModifiers() &&
2844 ((keyCode
>= '0' && keyCode
<= '9') ||
2845 (keyCode
>= 'a' && keyCode
<= 'z') ||
2846 (keyCode
>= 'A' && keyCode
<= 'Z' )))
2848 // find the next item starting with the given prefix
2849 wxChar ch
= (wxChar
)keyCode
;
2851 wxTreeItemId id
= FindItem(m_current
, m_findPrefix
+ ch
);
2862 // also start the timer to reset the current prefix if the user
2863 // doesn't press any more alnum keys soon -- we wouldn't want
2864 // to use this prefix for a new item search
2867 m_findTimer
= new wxTreeFindTimer(this);
2870 m_findTimer
->Start(wxTreeFindTimer::DELAY
, wxTIMER_ONE_SHOT
);
2880 wxGenericTreeCtrl::DoTreeHitTest(const wxPoint
& point
, int& flags
) const
2885 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
2886 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
2887 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
2888 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
2889 if (flags
) return wxTreeItemId();
2891 if (m_anchor
== NULL
)
2893 flags
= wxTREE_HITTEST_NOWHERE
;
2894 return wxTreeItemId();
2897 wxGenericTreeItem
*hit
= m_anchor
->HitTest(CalcUnscrolledPosition(point
),
2901 flags
= wxTREE_HITTEST_NOWHERE
;
2902 return wxTreeItemId();
2907 // get the bounding rectangle of the item (or of its label only)
2908 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2910 bool textOnly
) const
2912 wxCHECK_MSG( item
.IsOk(), false, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2914 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2919 rect
.width
= i
->GetWidth();
2921 if ( m_imageListNormal
)
2923 int image_w
, image_h
;
2924 m_imageListNormal
->GetSize( 0, image_w
, image_h
);
2925 rect
.width
+= image_w
+ MARGIN_BETWEEN_IMAGE_AND_TEXT
;
2928 else // the entire line
2931 rect
.width
= GetClientSize().x
;
2935 rect
.height
= GetLineHeight(i
);
2937 // we have to return the logical coordinates, not physical ones
2938 rect
.SetTopLeft(CalcScrolledPosition(rect
.GetTopLeft()));
2943 wxTextCtrl
*wxGenericTreeCtrl::EditLabel(const wxTreeItemId
& item
,
2944 wxClassInfo
* WXUNUSED(textCtrlClass
))
2946 wxCHECK_MSG( item
.IsOk(), NULL
, _T("can't edit an invalid item") );
2948 wxGenericTreeItem
*itemEdit
= (wxGenericTreeItem
*)item
.m_pItem
;
2950 wxTreeEvent
te(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, this, itemEdit
);
2951 if ( GetEventHandler()->ProcessEvent( te
) && !te
.IsAllowed() )
2957 // We have to call this here because the label in
2958 // question might just have been added and no screen
2959 // update taken place.
2961 #if defined( __WXMSW__ ) || defined(__WXMAC__)
2964 DoDirtyProcessing();
2967 // TODO: use textCtrlClass here to create the control of correct class
2968 m_textCtrl
= new wxTreeTextCtrl(this, itemEdit
);
2970 m_textCtrl
->SetFocus();
2975 // returns a pointer to the text edit control if the item is being
2976 // edited, NULL otherwise (it's assumed that no more than one item may
2977 // be edited simultaneously)
2978 wxTextCtrl
* wxGenericTreeCtrl::GetEditControl() const
2983 void wxGenericTreeCtrl::EndEditLabel(const wxTreeItemId
& WXUNUSED(item
),
2984 bool discardChanges
)
2986 wxCHECK_RET( m_textCtrl
, _T("not editing label") );
2988 m_textCtrl
->EndEdit(discardChanges
);
2991 bool wxGenericTreeCtrl::OnRenameAccept(wxGenericTreeItem
*item
,
2992 const wxString
& value
)
2994 wxTreeEvent
le(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, this, item
);
2996 le
.m_editCancelled
= false;
2998 return !GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
3001 void wxGenericTreeCtrl::OnRenameCancelled(wxGenericTreeItem
*item
)
3003 // let owner know that the edit was cancelled
3004 wxTreeEvent
le(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, this, item
);
3005 le
.m_label
= wxEmptyString
;
3006 le
.m_editCancelled
= true;
3008 GetEventHandler()->ProcessEvent( le
);
3011 void wxGenericTreeCtrl::OnRenameTimer()
3013 EditLabel( m_current
);
3016 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
3018 if ( !m_anchor
)return;
3020 wxPoint pt
= CalcUnscrolledPosition(event
.GetPosition());
3022 // Is the mouse over a tree item button?
3024 wxGenericTreeItem
*thisItem
= m_anchor
->HitTest(pt
, this, flags
, 0);
3025 wxGenericTreeItem
*underMouse
= thisItem
;
3027 bool underMouseChanged
= (underMouse
!= m_underMouse
) ;
3028 #endif // wxUSE_TOOLTIPS
3031 (flags
& wxTREE_HITTEST_ONITEMBUTTON
) &&
3032 (!event
.LeftIsDown()) &&
3034 (!m_renameTimer
|| !m_renameTimer
->IsRunning()))
3042 if (underMouse
!= m_underMouse
)
3046 // unhighlight old item
3047 wxGenericTreeItem
*tmp
= m_underMouse
;
3048 m_underMouse
= NULL
;
3052 m_underMouse
= underMouse
;
3054 RefreshLine( m_underMouse
);
3058 // Determines what item we are hovering over and need a tooltip for
3059 wxTreeItemId hoverItem
= thisItem
;
3061 // We do not want a tooltip if we are dragging, or if the rename timer is running
3062 if (underMouseChanged
&& hoverItem
.IsOk() && !m_isDragging
&& (!m_renameTimer
|| !m_renameTimer
->IsRunning()))
3064 // Ask the tree control what tooltip (if any) should be shown
3065 wxTreeEvent
hevent(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, this, hoverItem
);
3067 if ( GetEventHandler()->ProcessEvent(hevent
) && hevent
.IsAllowed() )
3069 SetToolTip(hevent
.m_label
);
3074 // we process left mouse up event (enables in-place edit), middle/right down
3075 // (pass to the user code), left dbl click (activate item) and
3076 // dragging/moving events for items drag-and-drop
3077 if ( !(event
.LeftDown() ||
3079 event
.MiddleDown() ||
3080 event
.RightDown() ||
3081 event
.LeftDClick() ||
3083 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
3092 wxGenericTreeItem
*item
= m_anchor
->HitTest(pt
, this, flags
, 0);
3094 if ( event
.Dragging() && !m_isDragging
)
3096 if (m_dragCount
== 0)
3101 if (m_dragCount
!= 3)
3103 // wait until user drags a bit further...
3107 wxEventType command
= event
.RightIsDown()
3108 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
3109 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
3111 wxTreeEvent
nevent(command
, this, m_current
);
3112 nevent
.SetPoint(CalcScrolledPosition(pt
));
3114 // by default the dragging is not supported, the user code must
3115 // explicitly allow the event for it to take place
3118 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
3120 // we're going to drag this item
3121 m_isDragging
= true;
3123 // remember the old cursor because we will change it while
3125 m_oldCursor
= m_cursor
;
3127 // in a single selection control, hide the selection temporarily
3128 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
3130 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
3132 if ( m_oldSelection
)
3134 m_oldSelection
->SetHilight(false);
3135 RefreshLine(m_oldSelection
);
3142 else if ( event
.Dragging() )
3144 if ( item
!= m_dropTarget
)
3146 // unhighlight the previous drop target
3147 DrawDropEffect(m_dropTarget
);
3149 m_dropTarget
= item
;
3151 // highlight the current drop target if any
3152 DrawDropEffect(m_dropTarget
);
3154 #if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXGTK20__)
3161 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
3165 // erase the highlighting
3166 DrawDropEffect(m_dropTarget
);
3168 if ( m_oldSelection
)
3170 m_oldSelection
->SetHilight(true);
3171 RefreshLine(m_oldSelection
);
3172 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
3175 // generate the drag end event
3176 wxTreeEvent
eventEndDrag(wxEVT_COMMAND_TREE_END_DRAG
, this, item
);
3178 eventEndDrag
.m_pointDrag
= CalcScrolledPosition(pt
);
3180 (void)GetEventHandler()->ProcessEvent(eventEndDrag
);
3182 m_isDragging
= false;
3183 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
3185 SetCursor(m_oldCursor
);
3187 #if defined( __WXMSW__ ) || defined(__WXMAC__)
3195 // If we got to this point, we are not dragging or moving the mouse.
3196 // Because the code in carbon/toplevel.cpp will only set focus to the tree
3197 // if we skip for EVT_LEFT_DOWN, we MUST skip this event here for focus to work.
3198 // We skip even if we didn't hit an item because we still should
3199 // restore focus to the tree control even if we didn't exactly hit an item.
3200 if ( event
.LeftDown() )
3205 // here we process only the messages which happen on tree items
3209 if (item
== NULL
) return; /* we hit the blank area */
3211 if ( event
.RightDown() )
3213 // If the item is already selected, do not update the selection.
3214 // Multi-selections should not be cleared if a selected item is clicked.
3215 if (!IsSelected(item
))
3217 DoSelectItem(item
, true, false);
3220 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, this, item
);
3221 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3222 event
.Skip(!GetEventHandler()->ProcessEvent(nevent
));
3224 // Consistent with MSW (for now), send the ITEM_MENU *after*
3225 // the RIGHT_CLICK event. TODO: This behavior may change.
3226 wxTreeEvent
nevent2(wxEVT_COMMAND_TREE_ITEM_MENU
, this, item
);
3227 nevent2
.m_pointDrag
= CalcScrolledPosition(pt
);
3228 GetEventHandler()->ProcessEvent(nevent2
);
3230 else if ( event
.MiddleDown() )
3232 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, this, item
);
3233 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3234 event
.Skip(!GetEventHandler()->ProcessEvent(nevent
));
3236 else if ( event
.LeftUp() )
3238 // this facilitates multiple-item drag-and-drop
3240 if ( /* item && */ HasFlag(wxTR_MULTIPLE
))
3242 wxArrayTreeItemIds selections
;
3243 size_t count
= GetSelections(selections
);
3249 DoSelectItem(item
, true, false);
3255 if ( (item
== m_current
) &&
3256 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
3257 HasFlag(wxTR_EDIT_LABELS
) )
3259 if ( m_renameTimer
)
3261 if ( m_renameTimer
->IsRunning() )
3262 m_renameTimer
->Stop();
3266 m_renameTimer
= new wxTreeRenameTimer( this );
3269 m_renameTimer
->Start( wxTreeRenameTimer::DELAY
, true );
3272 m_lastOnSame
= false;
3275 else // !RightDown() && !MiddleDown() && !LeftUp() ==> LeftDown() || LeftDClick()
3277 if ( event
.LeftDown() )
3279 m_lastOnSame
= item
== m_current
;
3282 if ( flags
& wxTREE_HITTEST_ONITEMBUTTON
)
3284 // only toggle the item for a single click, double click on
3285 // the button doesn't do anything (it toggles the item twice)
3286 if ( event
.LeftDown() )
3291 // don't select the item if the button was clicked
3296 // clear the previously selected items, if the
3297 // user clicked outside of the present selection.
3298 // otherwise, perform the deselection on mouse-up.
3299 // this allows multiple drag and drop to work.
3300 // but if Cmd is down, toggle selection of the clicked item
3301 if (!IsSelected(item
) || event
.CmdDown())
3303 // how should the selection work for this event?
3304 bool is_multiple
, extended_select
, unselect_others
;
3305 EventFlagsToSelType(GetWindowStyleFlag(),
3308 is_multiple
, extended_select
, unselect_others
);
3310 DoSelectItem(item
, unselect_others
, extended_select
);
3314 // For some reason, Windows isn't recognizing a left double-click,
3315 // so we need to simulate it here. Allow 200 milliseconds for now.
3316 if ( event
.LeftDClick() )
3318 // double clicking should not start editing the item label
3319 if ( m_renameTimer
)
3320 m_renameTimer
->Stop();
3322 m_lastOnSame
= false;
3324 // send activate event first
3325 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, this, item
);
3326 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3327 if ( !GetEventHandler()->ProcessEvent( nevent
) )
3329 // if the user code didn't process the activate event,
3330 // handle it ourselves by toggling the item when it is
3332 if ( item
->HasPlus() )
3342 void wxGenericTreeCtrl::OnInternalIdle()
3344 wxWindow::OnInternalIdle();
3346 // Check if we need to select the root item
3347 // because nothing else has been selected.
3348 // Delaying it means that we can invoke event handlers
3349 // as required, when a first item is selected.
3350 if (!HasFlag(wxTR_MULTIPLE
) && !GetSelection().IsOk())
3353 SelectItem(m_select_me
);
3354 else if (GetRootItem().IsOk())
3355 SelectItem(GetRootItem());
3358 // after all changes have been done to the tree control,
3359 // actually redraw the tree when everything is over
3361 DoDirtyProcessing();
3364 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
3369 wxTreeItemAttr
*attr
= item
->GetAttributes();
3370 if ( attr
&& attr
->HasFont() )
3371 dc
.SetFont(attr
->GetFont());
3372 else if ( item
->IsBold() )
3373 dc
.SetFont(m_boldFont
);
3375 dc
.SetFont(m_normalFont
);
3377 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
3380 // restore normal font
3381 dc
.SetFont( m_normalFont
);
3385 int image
= item
->GetCurrentImage();
3386 if ( image
!= NO_IMAGE
)
3388 if ( m_imageListNormal
)
3390 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
3391 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
3395 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
3398 total_h
+= 2; // at least 2 pixels
3400 total_h
+= total_h
/10; // otherwise 10% extra spacing
3402 item
->SetHeight(total_h
);
3403 if (total_h
>m_lineHeight
)
3404 m_lineHeight
=total_h
;
3406 item
->SetWidth(image_w
+text_w
+2);
3409 // -----------------------------------------------------------------------------
3410 // for developper : y is now the top of the level
3411 // not the middle of it !
3412 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
3414 int x
= level
*m_indent
;
3415 if (!HasFlag(wxTR_HIDE_ROOT
))
3419 else if (level
== 0)
3421 // a hidden root is not evaluated, but its
3422 // children are always calculated
3426 CalculateSize( item
, dc
);
3429 item
->SetX( x
+m_spacing
);
3431 y
+= GetLineHeight(item
);
3433 if ( !item
->IsExpanded() )
3435 // we don't need to calculate collapsed branches
3440 wxArrayGenericTreeItems
& children
= item
->GetChildren();
3441 size_t n
, count
= children
.GetCount();
3443 for (n
= 0; n
< count
; ++n
)
3444 CalculateLevel( children
[n
], dc
, level
, y
); // recurse
3447 void wxGenericTreeCtrl::CalculatePositions()
3449 if ( !m_anchor
) return;
3451 wxClientDC
dc(this);
3454 dc
.SetFont( m_normalFont
);
3456 dc
.SetPen( m_dottedPen
);
3457 //if(GetImageList() == NULL)
3458 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
3461 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
3464 void wxGenericTreeCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
3466 if ( !m_freezeCount
)
3467 wxTreeCtrlBase::Refresh(eraseBackground
, rect
);
3470 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
3472 if (m_dirty
|| m_freezeCount
)
3475 wxSize client
= GetClientSize();
3478 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3479 rect
.width
= client
.x
;
3480 rect
.height
= client
.y
;
3482 Refresh(true, &rect
);
3484 AdjustMyScrollbars();
3487 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
3489 if (m_dirty
|| m_freezeCount
)
3493 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3494 rect
.width
= GetClientSize().x
;
3495 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
3497 Refresh(true, &rect
);
3500 void wxGenericTreeCtrl::RefreshSelected()
3505 // TODO: this is awfully inefficient, we should keep the list of all
3506 // selected items internally, should be much faster
3508 RefreshSelectedUnder(m_anchor
);
3511 void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem
*item
)
3516 if ( item
->IsSelected() )
3519 const wxArrayGenericTreeItems
& children
= item
->GetChildren();
3520 size_t count
= children
.GetCount();
3521 for ( size_t n
= 0; n
< count
; n
++ )
3523 RefreshSelectedUnder(children
[n
]);
3527 void wxGenericTreeCtrl::Freeze()
3532 void wxGenericTreeCtrl::Thaw()
3534 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen tree control?") );
3536 if ( --m_freezeCount
== 0 )
3542 // ----------------------------------------------------------------------------
3543 // changing colours: we need to refresh the tree control
3544 // ----------------------------------------------------------------------------
3546 bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour
& colour
)
3548 if ( !wxWindow::SetBackgroundColour(colour
) )
3556 bool wxGenericTreeCtrl::SetForegroundColour(const wxColour
& colour
)
3558 if ( !wxWindow::SetForegroundColour(colour
) )
3566 // Process the tooltip event, to speed up event processing.
3567 // Doesn't actually get a tooltip.
3568 void wxGenericTreeCtrl::OnGetToolTip( wxTreeEvent
&event
)
3574 // NOTE: If using the wxListBox visual attributes works everywhere then this can
3575 // be removed, as well as the #else case below.
3576 #define _USE_VISATTR 0
3581 wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
3583 wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
3587 // Use the same color scheme as wxListBox
3588 return wxListBox::GetClassDefaultAttributes(variant
);
3590 wxVisualAttributes attr
;
3591 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
3592 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
3593 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
3598 void wxGenericTreeCtrl::DoDirtyProcessing()
3605 CalculatePositions();
3607 AdjustMyScrollbars();
3610 wxSize
wxGenericTreeCtrl::DoGetBestSize() const
3612 // make sure all positions are calculated as normally this only done during
3613 // idle time but we need them for base class DoGetBestSize() to return the
3615 wxConstCast(this, wxGenericTreeCtrl
)->CalculatePositions();
3617 wxSize size
= wxTreeCtrlBase::DoGetBestSize();
3619 // there seems to be an implicit extra border around the items, although
3620 // I'm not really sure where does it come from -- but without this, the
3621 // scrollbars appear in a tree with default/best size
3624 // and the border has to be rounded up to a multiple of PIXELS_PER_UNIT or
3625 // scrollbars still appear
3626 const wxSize
& borderSize
= GetWindowBorderSize();
3628 int dx
= (size
.x
- borderSize
.x
) % PIXELS_PER_UNIT
;
3630 size
.x
+= PIXELS_PER_UNIT
- dx
;
3631 int dy
= (size
.y
- borderSize
.y
) % PIXELS_PER_UNIT
;
3633 size
.y
+= PIXELS_PER_UNIT
- dy
;
3635 // we need to update the cache too as the base class cached its own value
3636 CacheBestSize(size
);
3641 #endif // wxUSE_TREECTRL