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
.Count();
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
.Count();
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
.Count();
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
.Count();
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_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse
)
724 EVT_CHAR (wxGenericTreeCtrl::OnChar
)
725 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus
)
726 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus
)
727 EVT_TREE_ITEM_GETTOOLTIP(wxID_ANY
, wxGenericTreeCtrl::OnGetToolTip
)
730 #if !defined(__WXMSW__) || defined(__WXUNIVERSAL__)
732 * wxTreeCtrl has to be a real class or we have problems with
733 * the run-time information.
736 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxGenericTreeCtrl
)
739 // -----------------------------------------------------------------------------
740 // construction/destruction
741 // -----------------------------------------------------------------------------
743 void wxGenericTreeCtrl::Init()
748 m_select_me
= (wxGenericTreeItem
*) NULL
;
757 // OS X sel item highlight color differs from text highlight color, which is
758 // what wxSYS_COLOUR_HIGHLIGHT returns.
760 GetThemeBrushAsColor(kThemeBrushAlternatePrimaryHighlightColor
, 32, true, &hilight
);
761 m_hilightBrush
= new wxBrush( wxColour(hilight
.red
, hilight
.green
, hilight
.blue
), wxSOLID
);
763 m_hilightBrush
= new wxBrush
765 wxSystemSettings::GetColour
767 wxSYS_COLOUR_HIGHLIGHT
774 // on Mac, this color also differs from the wxSYS_COLOUR_BTNSHADOW, enough to be noticable.
775 // I don't know if BTNSHADOW is appropriate in other contexts, so I'm just changing it here.
776 GetThemeBrushAsColor(kThemeBrushSecondaryHighlightColor
, 32, true, &hilight
);
777 m_hilightUnfocusedBrush
= new wxBrush( wxColour(hilight
.red
, hilight
.green
, hilight
.blue
), wxSOLID
);
779 m_hilightUnfocusedBrush
= new wxBrush
781 wxSystemSettings::GetColour
783 wxSYS_COLOUR_BTNSHADOW
788 m_imageListButtons
= NULL
;
789 m_ownsImageListButtons
= false;
792 m_isDragging
= false;
793 m_dropTarget
= m_oldSelection
= NULL
;
797 m_renameTimer
= NULL
;
802 m_dropEffectAboveItem
= false;
804 m_lastOnSame
= false;
806 #ifdef __WXMAC_CARBON__
807 m_normalFont
.MacCreateThemeFont( kThemeViewsFont
) ;
809 m_normalFont
= wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT
);
811 m_boldFont
= wxFont(m_normalFont
.GetPointSize(),
812 m_normalFont
.GetFamily(),
813 m_normalFont
.GetStyle(),
815 m_normalFont
.GetUnderlined(),
816 m_normalFont
.GetFaceName(),
817 m_normalFont
.GetEncoding());
820 bool wxGenericTreeCtrl::Create(wxWindow
*parent
,
825 const wxValidator
& validator
,
826 const wxString
& name
)
830 wxGetOsVersion( &major
, &minor
);
832 style
&= ~wxTR_LINES_AT_ROOT
;
833 style
|= wxTR_NO_LINES
;
835 style
|= wxTR_ROW_LINES
;
837 if (style
== 0 || style
& wxTR_DEFAULT_STYLE
)
838 style
|= wxTR_FULL_ROW_HIGHLIGHT
;
842 style
|= wxTR_NO_LINES
;
845 if ( !wxControl::Create( parent
, id
, pos
, size
,
846 style
|wxHSCROLL
|wxVSCROLL
,
851 // If the tree display has no buttons, but does have
852 // connecting lines, we can use a narrower layout.
853 // It may not be a good idea to force this...
854 if (!HasButtons() && !HasFlag(wxTR_NO_LINES
))
860 wxVisualAttributes attr
= GetDefaultAttributes();
861 SetOwnForegroundColour( attr
.colFg
);
862 SetOwnBackgroundColour( attr
.colBg
);
864 SetOwnFont(attr
.font
);
866 m_dottedPen
= wxPen( wxT("grey"), 0, 0 );
873 wxGenericTreeCtrl::~wxGenericTreeCtrl()
875 delete m_hilightBrush
;
876 delete m_hilightUnfocusedBrush
;
880 delete m_renameTimer
;
883 if (m_ownsImageListButtons
)
884 delete m_imageListButtons
;
887 // -----------------------------------------------------------------------------
889 // -----------------------------------------------------------------------------
891 unsigned int wxGenericTreeCtrl::GetCount() const
899 unsigned int count
= m_anchor
->GetChildrenCount();
900 if ( !HasFlag(wxTR_HIDE_ROOT
) )
902 // take the root itself into account
909 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
911 m_indent
= (unsigned short) indent
;
916 wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
,
917 bool recursively
) const
919 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
921 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
924 void wxGenericTreeCtrl::SetWindowStyle(const long styles
)
926 // Do not try to expand the root node if it hasn't been created yet
927 if (m_anchor
&& !HasFlag(wxTR_HIDE_ROOT
) && (styles
& wxTR_HIDE_ROOT
))
929 // if we will hide the root, make sure children are visible
930 m_anchor
->SetHasPlus();
932 CalculatePositions();
935 // right now, just sets the styles. Eventually, we may
936 // want to update the inherited styles, but right now
937 // none of the parents has updatable styles
938 m_windowStyle
= styles
;
942 // -----------------------------------------------------------------------------
943 // functions to work with tree items
944 // -----------------------------------------------------------------------------
946 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
948 wxCHECK_MSG( item
.IsOk(), wxEmptyString
, wxT("invalid tree item") );
950 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
953 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
954 wxTreeItemIcon which
) const
956 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
958 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
961 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
963 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
965 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
968 wxColour
wxGenericTreeCtrl::GetItemTextColour(const wxTreeItemId
& item
) const
970 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
972 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
973 return pItem
->Attr().GetTextColour();
976 wxColour
wxGenericTreeCtrl::GetItemBackgroundColour(const wxTreeItemId
& item
) const
978 wxCHECK_MSG( item
.IsOk(), wxNullColour
, wxT("invalid tree item") );
980 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
981 return pItem
->Attr().GetBackgroundColour();
984 wxFont
wxGenericTreeCtrl::GetItemFont(const wxTreeItemId
& item
) const
986 wxCHECK_MSG( item
.IsOk(), wxNullFont
, wxT("invalid tree item") );
988 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
989 return pItem
->Attr().GetFont();
992 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
994 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
997 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
998 pItem
->SetText(text
);
999 CalculateSize(pItem
, dc
);
1003 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
1005 wxTreeItemIcon which
)
1007 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1009 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1010 pItem
->SetImage(image
, which
);
1012 wxClientDC
dc(this);
1013 CalculateSize(pItem
, dc
);
1017 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
1019 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1022 data
->SetId( item
);
1024 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
1027 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
1029 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1031 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1032 pItem
->SetHasPlus(has
);
1036 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
1038 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1040 // avoid redrawing the tree if no real change
1041 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1042 if ( pItem
->IsBold() != bold
)
1044 pItem
->SetBold(bold
);
1046 // recalculate the item size as bold and non bold fonts have different
1048 wxClientDC
dc(this);
1049 CalculateSize(pItem
, dc
);
1055 void wxGenericTreeCtrl::SetItemDropHighlight(const wxTreeItemId
& item
,
1058 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1064 bg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
1065 fg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
1068 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1069 pItem
->Attr().SetTextColour(fg
);
1070 pItem
->Attr().SetBackgroundColour(bg
);
1074 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
1075 const wxColour
& col
)
1077 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1079 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1080 pItem
->Attr().SetTextColour(col
);
1084 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
1085 const wxColour
& col
)
1087 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1089 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1090 pItem
->Attr().SetBackgroundColour(col
);
1094 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
1096 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1098 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1099 pItem
->Attr().SetFont(font
);
1103 bool wxGenericTreeCtrl::SetFont( const wxFont
&font
)
1105 wxTreeCtrlBase::SetFont(font
);
1107 m_normalFont
= font
;
1108 m_boldFont
= wxFont(m_normalFont
.GetPointSize(),
1109 m_normalFont
.GetFamily(),
1110 m_normalFont
.GetStyle(),
1112 m_normalFont
.GetUnderlined(),
1113 m_normalFont
.GetFaceName(),
1114 m_normalFont
.GetEncoding());
1120 // -----------------------------------------------------------------------------
1121 // item status inquiries
1122 // -----------------------------------------------------------------------------
1124 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
1126 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1128 // An item is only visible if it's not a descendant of a collapsed item
1129 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
1130 wxGenericTreeItem
* parent
= pItem
->GetParent();
1133 if (!parent
->IsExpanded())
1135 parent
= parent
->GetParent();
1139 GetViewStart(& startX
, & startY
);
1141 wxSize clientSize
= GetClientSize();
1144 if (!GetBoundingRect(item
, rect
))
1146 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
1148 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
1150 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
1156 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
1158 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1160 // consider that the item does have children if it has the "+" button: it
1161 // might not have them (if it had never been expanded yet) but then it
1162 // could have them as well and it's better to err on this side rather than
1163 // disabling some operations which are restricted to the items with
1164 // children for an item which does have them
1165 return ((wxGenericTreeItem
*) item
.m_pItem
)->HasPlus();
1168 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
1170 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1172 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
1175 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
1177 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1179 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
1182 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
1184 wxCHECK_MSG( item
.IsOk(), false, wxT("invalid tree item") );
1186 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
1189 // -----------------------------------------------------------------------------
1191 // -----------------------------------------------------------------------------
1193 wxTreeItemId
wxGenericTreeCtrl::GetItemParent(const wxTreeItemId
& item
) const
1195 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1197 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
1200 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1201 wxTreeItemIdValue
& cookie
) const
1203 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1206 return GetNextChild(item
, cookie
);
1209 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
,
1210 wxTreeItemIdValue
& cookie
) const
1212 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1214 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1216 // it's ok to cast cookie to size_t, we never have indices big enough to
1217 // overflow "void *"
1218 size_t *pIndex
= (size_t *)&cookie
;
1219 if ( *pIndex
< children
.Count() )
1221 return children
.Item((*pIndex
)++);
1225 // there are no more of them
1226 return wxTreeItemId();
1230 #if WXWIN_COMPATIBILITY_2_4
1232 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
,
1235 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1238 return GetNextChild(item
, cookie
);
1241 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
,
1244 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1246 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1247 if ( (size_t)cookie
< children
.Count() )
1249 return children
.Item((size_t)cookie
++);
1253 // there are no more of them
1254 return wxTreeItemId();
1258 #endif // WXWIN_COMPATIBILITY_2_4
1260 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
1262 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1264 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
1265 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
1268 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
1270 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1272 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1273 wxGenericTreeItem
*parent
= i
->GetParent();
1274 if ( parent
== NULL
)
1276 // root item doesn't have any siblings
1277 return wxTreeItemId();
1280 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1281 int index
= siblings
.Index(i
);
1282 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1284 size_t n
= (size_t)(index
+ 1);
1285 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
1288 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
1290 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1292 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1293 wxGenericTreeItem
*parent
= i
->GetParent();
1294 if ( parent
== NULL
)
1296 // root item doesn't have any siblings
1297 return wxTreeItemId();
1300 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
1301 int index
= siblings
.Index(i
);
1302 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1304 return index
== 0 ? wxTreeItemId()
1305 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
1308 // Only for internal use right now, but should probably be public
1309 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
1311 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1313 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1315 // First see if there are any children.
1316 wxArrayGenericTreeItems
& children
= i
->GetChildren();
1317 if (children
.GetCount() > 0)
1319 return children
.Item(0);
1323 // Try a sibling of this or ancestor instead
1324 wxTreeItemId p
= item
;
1325 wxTreeItemId toFind
;
1328 toFind
= GetNextSibling(p
);
1329 p
= GetItemParent(p
);
1330 } while (p
.IsOk() && !toFind
.IsOk());
1335 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
1337 wxTreeItemId id
= GetRootItem();
1346 } while (id
.IsOk());
1348 return wxTreeItemId();
1351 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1353 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1355 wxTreeItemId id
= item
;
1358 while (id
= GetNext(id
), id
.IsOk())
1364 return wxTreeItemId();
1367 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1369 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1371 wxFAIL_MSG(wxT("not implemented"));
1373 return wxTreeItemId();
1376 // called by wxTextTreeCtrl when it marks itself for deletion
1377 void wxGenericTreeCtrl::ResetTextControl()
1382 // find the first item starting with the given prefix after the given item
1383 wxTreeItemId
wxGenericTreeCtrl::FindItem(const wxTreeItemId
& idParent
,
1384 const wxString
& prefixOrig
) const
1386 // match is case insensitive as this is more convenient to the user: having
1387 // to press Shift-letter to go to the item starting with a capital letter
1388 // would be too bothersome
1389 wxString prefix
= prefixOrig
.Lower();
1391 // determine the starting point: we shouldn't take the current item (this
1392 // allows to switch between two items starting with the same letter just by
1393 // pressing it) but we shouldn't jump to the next one if the user is
1394 // continuing to type as otherwise he might easily skip the item he wanted
1395 wxTreeItemId id
= idParent
;
1396 if ( prefix
.length() == 1 )
1401 // look for the item starting with the given prefix after it
1402 while ( id
.IsOk() && !GetItemText(id
).Lower().StartsWith(prefix
) )
1407 // if we haven't found anything...
1410 // ... wrap to the beginning
1412 if ( HasFlag(wxTR_HIDE_ROOT
) )
1414 // can't select virtual root
1418 // and try all the items (stop when we get to the one we started from)
1419 while (id
.IsOk() && id
!= idParent
&& !GetItemText(id
).Lower().StartsWith(prefix
) )
1423 // If we haven't found the item, id.IsOk() will be false, as per
1430 // -----------------------------------------------------------------------------
1432 // -----------------------------------------------------------------------------
1434 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1436 const wxString
& text
,
1439 wxTreeItemData
*data
)
1441 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1444 // should we give a warning here?
1445 return AddRoot(text
, image
, selImage
, data
);
1448 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1450 wxGenericTreeItem
*item
=
1451 new wxGenericTreeItem( parent
, text
, image
, selImage
, data
);
1455 data
->m_pItem
= item
;
1458 parent
->Insert( item
, previous
== (size_t)-1 ? parent
->GetChildren().size()
1464 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1467 wxTreeItemData
*data
)
1469 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1471 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1473 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
,
1474 image
, selImage
, data
);
1477 data
->m_pItem
= m_anchor
;
1480 if (HasFlag(wxTR_HIDE_ROOT
))
1482 // if root is hidden, make sure we can navigate
1484 m_anchor
->SetHasPlus();
1486 CalculatePositions();
1489 if (!HasFlag(wxTR_MULTIPLE
))
1491 m_current
= m_key_current
= m_anchor
;
1492 m_current
->SetHilight( true );
1498 wxTreeItemId
wxGenericTreeCtrl::DoInsertAfter(const wxTreeItemId
& parentId
,
1499 const wxTreeItemId
& idPrevious
,
1500 const wxString
& text
,
1501 int image
, int selImage
,
1502 wxTreeItemData
*data
)
1504 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1507 // should we give a warning here?
1508 return AddRoot(text
, image
, selImage
, data
);
1512 if (idPrevious
.IsOk())
1514 index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1515 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1516 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1519 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1523 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1525 wxTreeEvent
event(wxEVT_COMMAND_TREE_DELETE_ITEM
, this, item
);
1526 ProcessEvent( event
);
1529 // Don't leave edit or selection on a child which is about to disappear
1530 void wxGenericTreeCtrl::ChildrenClosing(wxGenericTreeItem
* item
)
1532 if (m_textCtrl
!= NULL
&& item
!= m_textCtrl
->item() && IsDescendantOf(item
, m_textCtrl
->item())) {
1533 m_textCtrl
->StopEditing();
1535 if (item
!= m_key_current
&& IsDescendantOf(item
, m_key_current
)) {
1536 m_key_current
= NULL
;
1538 if (IsDescendantOf(item
, m_select_me
)) {
1541 if (item
!= m_current
&& IsDescendantOf(item
, m_current
)) {
1542 m_current
->SetHilight( false );
1548 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1550 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1552 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1553 ChildrenClosing(item
);
1554 item
->DeleteChildren(this);
1557 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1559 m_dirty
= true; // do this first so stuff below doesn't cause flicker
1561 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1563 if (m_textCtrl
!= NULL
&& IsDescendantOf(item
, m_textCtrl
->item()))
1565 // can't delete the item being edited, cancel editing it first
1566 m_textCtrl
->StopEditing();
1569 wxGenericTreeItem
*parent
= item
->GetParent();
1571 // don't keep stale pointers around!
1572 if ( IsDescendantOf(item
, m_key_current
) )
1574 // Don't silently change the selection:
1575 // do it properly in idle time, so event
1576 // handlers get called.
1578 // m_key_current = parent;
1579 m_key_current
= NULL
;
1582 // m_select_me records whether we need to select
1583 // a different item, in idle time.
1584 if ( m_select_me
&& IsDescendantOf(item
, m_select_me
) )
1586 m_select_me
= parent
;
1589 if ( IsDescendantOf(item
, m_current
) )
1591 // Don't silently change the selection:
1592 // do it properly in idle time, so event
1593 // handlers get called.
1595 // m_current = parent;
1597 m_select_me
= parent
;
1600 // remove the item from the tree
1603 parent
->GetChildren().Remove( item
); // remove by value
1605 else // deleting the root
1607 // nothing will be left in the tree
1611 // and delete all of its children and the item itself now
1612 item
->DeleteChildren(this);
1613 SendDeleteEvent(item
);
1615 if (item
== m_select_me
)
1621 void wxGenericTreeCtrl::DeleteAllItems()
1629 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1631 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1633 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1634 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1635 _T("can't expand hidden root") );
1637 if ( !item
->HasPlus() )
1640 if ( item
->IsExpanded() )
1643 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, this, item
);
1645 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1647 // cancelled by program
1652 CalculatePositions();
1654 RefreshSubtree(item
);
1656 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1657 ProcessEvent( event
);
1660 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1662 wxCHECK_RET( !HasFlag(wxTR_HIDE_ROOT
) || itemId
!= GetRootItem(),
1663 _T("can't collapse hidden root") );
1665 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1667 if ( !item
->IsExpanded() )
1670 wxTreeEvent
event(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, this, item
);
1671 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1673 // cancelled by program
1677 ChildrenClosing(item
);
1680 #if 0 // TODO why should items be collapsed recursively?
1681 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1682 size_t count
= children
.Count();
1683 for ( size_t n
= 0; n
< count
; n
++ )
1685 Collapse(children
[n
]);
1689 CalculatePositions();
1691 RefreshSubtree(item
);
1693 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1694 ProcessEvent( event
);
1697 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1700 DeleteChildren(item
);
1703 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1705 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1707 if (item
->IsExpanded())
1713 void wxGenericTreeCtrl::Unselect()
1717 m_current
->SetHilight( false );
1718 RefreshLine( m_current
);
1725 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1727 if (item
->IsSelected())
1729 item
->SetHilight(false);
1733 if (item
->HasChildren())
1735 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1736 size_t count
= children
.Count();
1737 for ( size_t n
= 0; n
< count
; ++n
)
1739 UnselectAllChildren(children
[n
]);
1744 void wxGenericTreeCtrl::UnselectAll()
1746 wxTreeItemId rootItem
= GetRootItem();
1748 // the tree might not have the root item at all
1751 UnselectAllChildren((wxGenericTreeItem
*) rootItem
.m_pItem
);
1755 // Recursive function !
1756 // To stop we must have crt_item<last_item
1758 // Tag all next children, when no more children,
1759 // Move to parent (not to tag)
1760 // Keep going... if we found last_item, we stop.
1761 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1763 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1765 if (parent
== NULL
) // This is root item
1766 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1768 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1769 int index
= children
.Index(crt_item
);
1770 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1772 size_t count
= children
.Count();
1773 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1775 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return true;
1778 return TagNextChildren(parent
, last_item
, select
);
1781 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1783 crt_item
->SetHilight(select
);
1784 RefreshLine(crt_item
);
1786 if (crt_item
==last_item
)
1789 if (crt_item
->HasChildren())
1791 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1792 size_t count
= children
.Count();
1793 for ( size_t n
= 0; n
< count
; ++n
)
1795 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1803 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1807 // item2 is not necessary after item1
1808 // choice first' and 'last' between item1 and item2
1809 wxGenericTreeItem
*first
= (item1
->GetY()<item2
->GetY()) ? item1
: item2
;
1810 wxGenericTreeItem
*last
= (item1
->GetY()<item2
->GetY()) ? item2
: item1
;
1812 bool select
= m_current
->IsSelected();
1814 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1817 TagNextChildren(first
,last
,select
);
1820 void wxGenericTreeCtrl::DoSelectItem(const wxTreeItemId
& itemId
,
1821 bool unselect_others
,
1822 bool extended_select
)
1824 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1828 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1829 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1831 //wxCHECK_RET( ( (!unselect_others) && is_single),
1832 // wxT("this is a single selection tree") );
1834 // to keep going anyhow !!!
1837 if (item
->IsSelected())
1838 return; // nothing to do
1839 unselect_others
= true;
1840 extended_select
= false;
1842 else if ( unselect_others
&& item
->IsSelected() )
1844 // selection change if there is more than one item currently selected
1845 wxArrayTreeItemIds selected_items
;
1846 if ( GetSelections(selected_items
) == 1 )
1850 wxTreeEvent
event(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1851 event
.m_itemOld
= m_current
;
1852 // TODO : Here we don't send any selection mode yet !
1854 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1857 wxTreeItemId parent
= GetItemParent( itemId
);
1858 while (parent
.IsOk())
1860 if (!IsExpanded(parent
))
1863 parent
= GetItemParent( parent
);
1867 if (unselect_others
)
1869 if (is_single
) Unselect(); // to speed up thing
1874 if (extended_select
)
1878 m_current
= m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1881 // don't change the mark (m_current)
1882 SelectItemRange(m_current
, item
);
1886 bool select
= true; // the default
1888 // Check if we need to toggle hilight (ctrl mode)
1889 if (!unselect_others
)
1890 select
=!item
->IsSelected();
1892 m_current
= m_key_current
= item
;
1893 m_current
->SetHilight(select
);
1894 RefreshLine( m_current
);
1897 // This can cause idle processing to select the root
1898 // if no item is selected, so it must be after the
1900 EnsureVisible( itemId
);
1902 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1903 GetEventHandler()->ProcessEvent( event
);
1906 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
, bool select
)
1910 DoSelectItem(itemId
, !HasFlag(wxTR_MULTIPLE
));
1914 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1915 wxCHECK_RET( item
, wxT("SelectItem(): invalid tree item") );
1917 wxTreeEvent
event(wxEVT_COMMAND_TREE_SEL_CHANGING
, this, item
);
1918 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1921 item
->SetHilight(false);
1924 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1925 GetEventHandler()->ProcessEvent( event
);
1929 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1930 wxArrayTreeItemIds
&array
) const
1932 if ( item
->IsSelected() )
1933 array
.Add(wxTreeItemId(item
));
1935 if ( item
->HasChildren() )
1937 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1938 size_t count
= children
.GetCount();
1939 for ( size_t n
= 0; n
< count
; ++n
)
1940 FillArray(children
[n
], array
);
1944 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1947 wxTreeItemId idRoot
= GetRootItem();
1948 if ( idRoot
.IsOk() )
1950 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1952 //else: the tree is empty, so no selections
1954 return array
.Count();
1957 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1959 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
1961 if (!item
.IsOk()) return;
1963 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1965 // first expand all parent branches
1966 wxGenericTreeItem
*parent
= gitem
->GetParent();
1968 if ( HasFlag(wxTR_HIDE_ROOT
) )
1970 while ( parent
&& parent
!= m_anchor
)
1973 parent
= parent
->GetParent();
1981 parent
= parent
->GetParent();
1985 //if (parent) CalculatePositions();
1990 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1992 if (!item
.IsOk()) return;
1994 // We have to call this here because the label in
1995 // question might just have been added and no screen
1996 // update taken place.
1998 #if defined( __WXMSW__ ) || defined(__WXMAC__)
2001 DoDirtyProcessing();
2003 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
2005 // now scroll to the item
2006 int item_y
= gitem
->GetY();
2010 GetViewStart( &start_x
, &start_y
);
2011 start_y
*= PIXELS_PER_UNIT
;
2015 GetClientSize( &client_w
, &client_h
);
2017 if (item_y
< start_y
+3)
2022 m_anchor
->GetSize( x
, y
, this );
2023 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2024 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2025 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2026 // Item should appear at top
2027 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
2029 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
2034 m_anchor
->GetSize( x
, y
, this );
2035 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2036 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2037 item_y
+= PIXELS_PER_UNIT
+2;
2038 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2039 // Item should appear at bottom
2040 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
);
2044 // FIXME: tree sorting functions are not reentrant and not MT-safe!
2045 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
2047 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
2048 wxGenericTreeItem
**item2
)
2050 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
2052 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
2055 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
2057 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
2059 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
2061 wxCHECK_RET( !s_treeBeingSorted
,
2062 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
2064 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2065 if ( children
.Count() > 1 )
2069 s_treeBeingSorted
= this;
2070 children
.Sort(tree_ctrl_compare_func
);
2071 s_treeBeingSorted
= NULL
;
2073 //else: don't make the tree dirty as nothing changed
2076 void wxGenericTreeCtrl::CalculateLineHeight()
2078 wxClientDC
dc(this);
2079 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
2081 if ( m_imageListNormal
)
2083 // Calculate a m_lineHeight value from the normal Image sizes.
2084 // May be toggle off. Then wxGenericTreeCtrl will spread when
2085 // necessary (which might look ugly).
2086 int n
= m_imageListNormal
->GetImageCount();
2087 for (int i
= 0; i
< n
; i
++)
2089 int width
= 0, height
= 0;
2090 m_imageListNormal
->GetSize(i
, width
, height
);
2091 if (height
> m_lineHeight
) m_lineHeight
= height
;
2095 if (m_imageListButtons
)
2097 // Calculate a m_lineHeight value from the Button image sizes.
2098 // May be toggle off. Then wxGenericTreeCtrl will spread when
2099 // necessary (which might look ugly).
2100 int n
= m_imageListButtons
->GetImageCount();
2101 for (int i
= 0; i
< n
; i
++)
2103 int width
= 0, height
= 0;
2104 m_imageListButtons
->GetSize(i
, width
, height
);
2105 if (height
> m_lineHeight
) m_lineHeight
= height
;
2109 if (m_lineHeight
< 30)
2110 m_lineHeight
+= 2; // at least 2 pixels
2112 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
2115 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
2117 if (m_ownsImageListNormal
) delete m_imageListNormal
;
2118 m_imageListNormal
= imageList
;
2119 m_ownsImageListNormal
= false;
2121 // Don't do any drawing if we're setting the list to NULL,
2122 // since we may be in the process of deleting the tree control.
2124 CalculateLineHeight();
2127 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
2129 if (m_ownsImageListState
) delete m_imageListState
;
2130 m_imageListState
= imageList
;
2131 m_ownsImageListState
= false;
2134 void wxGenericTreeCtrl::SetButtonsImageList(wxImageList
*imageList
)
2136 if (m_ownsImageListButtons
) delete m_imageListButtons
;
2137 m_imageListButtons
= imageList
;
2138 m_ownsImageListButtons
= false;
2140 CalculateLineHeight();
2143 void wxGenericTreeCtrl::AssignButtonsImageList(wxImageList
*imageList
)
2145 SetButtonsImageList(imageList
);
2146 m_ownsImageListButtons
= true;
2149 // -----------------------------------------------------------------------------
2151 // -----------------------------------------------------------------------------
2153 void wxGenericTreeCtrl::AdjustMyScrollbars()
2158 m_anchor
->GetSize( x
, y
, this );
2159 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2160 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
2161 int x_pos
= GetScrollPos( wxHORIZONTAL
);
2162 int y_pos
= GetScrollPos( wxVERTICAL
);
2163 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
2167 SetScrollbars( 0, 0, 0, 0 );
2171 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
2173 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
2174 return item
->GetHeight();
2176 return m_lineHeight
;
2179 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
2181 // TODO implement "state" icon on items
2183 wxTreeItemAttr
*attr
= item
->GetAttributes();
2184 if ( attr
&& attr
->HasFont() )
2185 dc
.SetFont(attr
->GetFont());
2186 else if (item
->IsBold())
2187 dc
.SetFont(m_boldFont
);
2189 long text_w
= 0, text_h
= 0;
2190 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2192 int image_h
= 0, image_w
= 0;
2193 int image
= item
->GetCurrentImage();
2194 if ( image
!= NO_IMAGE
)
2196 if ( m_imageListNormal
)
2198 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2199 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
2207 int total_h
= GetLineHeight(item
);
2208 bool drawItemBackground
= false;
2210 if ( item
->IsSelected() )
2212 dc
.SetBrush(*(m_hasFocus
? m_hilightBrush
: m_hilightUnfocusedBrush
));
2213 drawItemBackground
= true;
2218 if ( attr
&& attr
->HasBackgroundColour() )
2220 drawItemBackground
= true;
2221 colBg
= attr
->GetBackgroundColour();
2225 colBg
= GetBackgroundColour();
2227 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
2230 int offset
= HasFlag(wxTR_ROW_LINES
) ? 1 : 0;
2232 if ( HasFlag(wxTR_FULL_ROW_HIGHLIGHT
) )
2236 DoGetPosition(&x
, &y
);
2238 dc
.DrawRectangle(x
, item
->GetY()+offset
, w
, total_h
-offset
);
2242 if ( item
->IsSelected() && image
!= NO_IMAGE
)
2244 // If it's selected, and there's an image, then we should
2245 // take care to leave the area under the image painted in the
2246 // background colour.
2247 dc
.DrawRectangle( item
->GetX() + image_w
- 2, item
->GetY()+offset
,
2248 item
->GetWidth() - image_w
+ 2, total_h
-offset
);
2250 // On GTK+ 2, drawing a 'normal' background is wrong for themes that
2251 // don't allow backgrounds to be customized. Not drawing the background,
2252 // except for custom item backgrounds, works for both kinds of theme.
2253 else if (drawItemBackground
)
2255 dc
.DrawRectangle( item
->GetX()-2, item
->GetY()+offset
,
2256 item
->GetWidth()+2, total_h
-offset
);
2260 if ( image
!= NO_IMAGE
)
2262 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
2263 m_imageListNormal
->Draw( image
, dc
,
2265 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
2266 wxIMAGELIST_DRAW_TRANSPARENT
);
2267 dc
.DestroyClippingRegion();
2270 dc
.SetBackgroundMode(wxTRANSPARENT
);
2271 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
2272 dc
.DrawText( item
->GetText(),
2273 (wxCoord
)(image_w
+ item
->GetX()),
2274 (wxCoord
)(item
->GetY() + extraH
));
2276 // restore normal font
2277 dc
.SetFont( m_normalFont
);
2280 // Now y stands for the top of the item, whereas it used to stand for middle !
2281 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2283 int x
= level
*m_indent
;
2284 if (!HasFlag(wxTR_HIDE_ROOT
))
2288 else if (level
== 0)
2290 // always expand hidden root
2292 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2293 int count
= children
.Count();
2299 PaintLevel(children
[n
], dc
, 1, y
);
2300 } while (++n
< count
);
2302 if (!HasFlag(wxTR_NO_LINES
) && HasFlag(wxTR_LINES_AT_ROOT
) && count
> 0)
2304 // draw line down to last child
2305 origY
+= GetLineHeight(children
[0])>>1;
2306 oldY
+= GetLineHeight(children
[n
-1])>>1;
2307 dc
.DrawLine(3, origY
, 3, oldY
);
2313 item
->SetX(x
+m_spacing
);
2316 int h
= GetLineHeight(item
);
2318 int y_mid
= y_top
+ (h
>>1);
2321 int exposed_x
= dc
.LogicalToDeviceX(0);
2322 int exposed_y
= dc
.LogicalToDeviceY(y_top
);
2324 if (IsExposed(exposed_x
, exposed_y
, 10000, h
)) // 10000 = very much
2328 // don't draw rect outline if we already have the
2329 // background color under Mac
2330 (item
->IsSelected() && m_hasFocus
) ? wxBLACK_PEN
:
2331 #endif // !__WXMAC__
2335 if ( item
->IsSelected()
2337 // On wxMac, if the tree doesn't have the focus we draw an empty
2338 // rectangle, so we want to make sure that the text is visible
2339 // against the normal background, not the highlightbackground, so
2340 // don't use the highlight text colour unless we have the focus.
2348 colText
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
2353 wxTreeItemAttr
*attr
= item
->GetAttributes();
2354 if (attr
&& attr
->HasTextColour())
2355 colText
= attr
->GetTextColour();
2357 colText
= GetForegroundColour();
2361 dc
.SetTextForeground(colText
);
2365 PaintItem(item
, dc
);
2367 if (HasFlag(wxTR_ROW_LINES
))
2369 // if the background colour is white, choose a
2370 // contrasting color for the lines
2371 dc
.SetPen(*((GetBackgroundColour() == *wxWHITE
)
2372 ? wxMEDIUM_GREY_PEN
: wxWHITE_PEN
));
2373 dc
.DrawLine(0, y_top
, 10000, y_top
);
2374 dc
.DrawLine(0, y
, 10000, y
);
2377 // restore DC objects
2378 dc
.SetBrush(*wxWHITE_BRUSH
);
2379 dc
.SetPen(m_dottedPen
);
2380 dc
.SetTextForeground(*wxBLACK
);
2382 if ( !HasFlag(wxTR_NO_LINES
) )
2384 // draw the horizontal line here
2386 if (x
> (signed)m_indent
)
2387 x_start
-= m_indent
;
2388 else if (HasFlag(wxTR_LINES_AT_ROOT
))
2390 dc
.DrawLine(x_start
, y_mid
, x
+ m_spacing
, y_mid
);
2393 // should the item show a button?
2394 if ( item
->HasPlus() && HasButtons() )
2396 if ( m_imageListButtons
)
2398 // draw the image button here
2401 int image
= item
->IsExpanded() ? wxTreeItemIcon_Expanded
2402 : wxTreeItemIcon_Normal
;
2403 if ( item
->IsSelected() )
2404 image
+= wxTreeItemIcon_Selected
- wxTreeItemIcon_Normal
;
2406 m_imageListButtons
->GetSize(image
, image_w
, image_h
);
2407 int xx
= x
- image_w
/2;
2408 int yy
= y_mid
- image_h
/2;
2410 wxDCClipper
clip(dc
, xx
, yy
, image_w
, image_h
);
2411 m_imageListButtons
->Draw(image
, dc
, xx
, yy
,
2412 wxIMAGELIST_DRAW_TRANSPARENT
);
2414 else // no custom buttons
2416 static const int wImage
= 9;
2417 static const int hImage
= 9;
2420 if (item
->IsExpanded())
2421 flag
|= wxCONTROL_EXPANDED
;
2422 if (item
== m_underMouse
)
2423 flag
|= wxCONTROL_CURRENT
;
2425 wxRendererNative::Get().DrawTreeItemButton
2429 wxRect(x
- wImage
/2,
2438 if (item
->IsExpanded())
2440 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2441 int count
= children
.Count();
2448 PaintLevel(children
[n
], dc
, level
, y
);
2449 } while (++n
< count
);
2451 if (!HasFlag(wxTR_NO_LINES
) && count
> 0)
2453 // draw line down to last child
2454 oldY
+= GetLineHeight(children
[n
-1])>>1;
2455 if (HasButtons()) y_mid
+= 5;
2457 // Only draw the portion of the line that is visible, in case it is huge
2458 wxCoord xOrigin
=0, yOrigin
=0, width
, height
;
2459 dc
.GetDeviceOrigin(&xOrigin
, &yOrigin
);
2460 yOrigin
= abs(yOrigin
);
2461 GetClientSize(&width
, &height
);
2463 // Move end points to the begining/end of the view?
2464 if (y_mid
< yOrigin
)
2466 if (oldY
> yOrigin
+ height
)
2467 oldY
= yOrigin
+ height
;
2469 // after the adjustments if y_mid is larger than oldY then the line
2470 // isn't visible at all so don't draw anything
2472 dc
.DrawLine(x
, y_mid
, x
, oldY
);
2478 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
2482 if ( item
->HasPlus() )
2484 // it's a folder, indicate it by a border
2489 // draw a line under the drop target because the item will be
2491 DrawLine(item
, !m_dropEffectAboveItem
);
2494 SetCursor(wxCURSOR_BULLSEYE
);
2499 SetCursor(wxCURSOR_NO_ENTRY
);
2503 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
2505 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2507 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2509 wxClientDC
dc(this);
2511 dc
.SetLogicalFunction(wxINVERT
);
2512 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
2514 int w
= i
->GetWidth() + 2;
2515 int h
= GetLineHeight(i
) + 2;
2517 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
2520 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
2522 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
2524 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2526 wxClientDC
dc(this);
2528 dc
.SetLogicalFunction(wxINVERT
);
2534 y
+= GetLineHeight(i
) - 1;
2537 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
2540 // -----------------------------------------------------------------------------
2541 // wxWidgets callbacks
2542 // -----------------------------------------------------------------------------
2544 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
2552 dc
.SetFont( m_normalFont
);
2553 dc
.SetPen( m_dottedPen
);
2555 // this is now done dynamically
2556 //if(GetImageList() == NULL)
2557 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2560 PaintLevel( m_anchor
, dc
, 0, y
);
2563 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&event
)
2572 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&event
)
2581 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
2583 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, this);
2584 te
.m_evtKey
= event
;
2585 if ( GetEventHandler()->ProcessEvent( te
) )
2587 // intercepted by the user code
2591 if ( (m_current
== 0) || (m_key_current
== 0) )
2597 // how should the selection work for this event?
2598 bool is_multiple
, extended_select
, unselect_others
;
2599 EventFlagsToSelType(GetWindowStyleFlag(),
2602 is_multiple
, extended_select
, unselect_others
);
2604 if (GetLayoutDirection() == wxLayout_RightToLeft
)
2606 if (event
.GetKeyCode() == WXK_RIGHT
)
2607 event
.m_keyCode
= WXK_LEFT
;
2608 else if (event
.GetKeyCode() == WXK_LEFT
)
2609 event
.m_keyCode
= WXK_RIGHT
;
2614 // * : Expand all/Collapse all
2615 // ' ' | return : activate
2616 // up : go up (not last children!)
2618 // left : go to parent
2619 // right : open if parent and go next
2620 // home : go to root
2621 // end : go to last item without opening parents
2622 // alnum : start or continue searching for the item with this prefix
2623 int keyCode
= event
.GetKeyCode();
2628 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2636 if ( !IsExpanded(m_current
) )
2639 ExpandAllChildren(m_current
);
2642 //else: fall through to Collapse() it
2646 if (IsExpanded(m_current
))
2648 Collapse(m_current
);
2654 // Use the item's bounding rectangle to determine position for the event
2656 GetBoundingRect(m_current
, ItemRect
, true);
2658 wxTreeEvent
eventMenu(wxEVT_COMMAND_TREE_ITEM_MENU
, this, m_current
);
2659 // Use the left edge, vertical middle
2660 eventMenu
.m_pointDrag
= wxPoint(ItemRect
.GetX(),
2661 ItemRect
.GetY() + ItemRect
.GetHeight() / 2);
2662 GetEventHandler()->ProcessEvent( eventMenu
);
2668 if ( !event
.HasModifiers() )
2670 wxTreeEvent
eventAct(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, this, m_current
);
2671 GetEventHandler()->ProcessEvent( eventAct
);
2674 // in any case, also generate the normal key event for this key,
2675 // even if we generated the ACTIVATED event above: this is what
2676 // wxMSW does and it makes sense because you might not want to
2677 // process ACTIVATED event at all and handle Space and Return
2678 // directly (and differently) which would be impossible otherwise
2682 // up goes to the previous sibling or to the last
2683 // of its children if it's expanded
2686 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2689 prev
= GetItemParent( m_key_current
);
2690 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2692 break; // don't go to root if it is hidden
2696 wxTreeItemIdValue cookie
;
2697 wxTreeItemId current
= m_key_current
;
2698 // TODO: Huh? If we get here, we'd better be the first child of our parent. How else could it be?
2699 if (current
== GetFirstChild( prev
, cookie
))
2701 // otherwise we return to where we came from
2702 DoSelectItem( prev
, unselect_others
, extended_select
);
2703 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2710 while ( IsExpanded(prev
) && HasChildren(prev
) )
2712 wxTreeItemId child
= GetLastChild(prev
);
2719 DoSelectItem( prev
, unselect_others
, extended_select
);
2720 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2725 // left arrow goes to the parent
2728 wxTreeItemId prev
= GetItemParent( m_current
);
2729 if ((prev
== GetRootItem()) && HasFlag(wxTR_HIDE_ROOT
))
2731 // don't go to root if it is hidden
2732 prev
= GetPrevSibling( m_current
);
2736 DoSelectItem( prev
, unselect_others
, extended_select
);
2742 // this works the same as the down arrow except that we
2743 // also expand the item if it wasn't expanded yet
2749 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2751 wxTreeItemIdValue cookie
;
2752 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2753 DoSelectItem( child
, unselect_others
, extended_select
);
2754 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2758 wxTreeItemId next
= GetNextSibling( m_key_current
);
2761 wxTreeItemId current
= m_key_current
;
2762 while (current
.IsOk() && !next
)
2764 current
= GetItemParent( current
);
2765 if (current
) next
= GetNextSibling( current
);
2770 DoSelectItem( next
, unselect_others
, extended_select
);
2771 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2777 // <End> selects the last visible tree item
2780 wxTreeItemId last
= GetRootItem();
2782 while ( last
.IsOk() && IsExpanded(last
) )
2784 wxTreeItemId lastChild
= GetLastChild(last
);
2786 // it may happen if the item was expanded but then all of
2787 // its children have been deleted - so IsExpanded() returned
2788 // true, but GetLastChild() returned invalid item
2797 DoSelectItem( last
, unselect_others
, extended_select
);
2802 // <Home> selects the root item
2805 wxTreeItemId prev
= GetRootItem();
2809 if ( HasFlag(wxTR_HIDE_ROOT
) )
2811 wxTreeItemIdValue cookie
;
2812 prev
= GetFirstChild(prev
, cookie
);
2817 DoSelectItem( prev
, unselect_others
, extended_select
);
2822 // do not use wxIsalnum() here
2823 if ( !event
.HasModifiers() &&
2824 ((keyCode
>= '0' && keyCode
<= '9') ||
2825 (keyCode
>= 'a' && keyCode
<= 'z') ||
2826 (keyCode
>= 'A' && keyCode
<= 'Z' )))
2828 // find the next item starting with the given prefix
2829 wxChar ch
= (wxChar
)keyCode
;
2831 wxTreeItemId id
= FindItem(m_current
, m_findPrefix
+ ch
);
2842 // also start the timer to reset the current prefix if the user
2843 // doesn't press any more alnum keys soon -- we wouldn't want
2844 // to use this prefix for a new item search
2847 m_findTimer
= new wxTreeFindTimer(this);
2850 m_findTimer
->Start(wxTreeFindTimer::DELAY
, wxTIMER_ONE_SHOT
);
2860 wxGenericTreeCtrl::DoTreeHitTest(const wxPoint
& point
, int& flags
) const
2865 if (point
.x
<0) flags
|= wxTREE_HITTEST_TOLEFT
;
2866 if (point
.x
>w
) flags
|= wxTREE_HITTEST_TORIGHT
;
2867 if (point
.y
<0) flags
|= wxTREE_HITTEST_ABOVE
;
2868 if (point
.y
>h
) flags
|= wxTREE_HITTEST_BELOW
;
2869 if (flags
) return wxTreeItemId();
2871 if (m_anchor
== NULL
)
2873 flags
= wxTREE_HITTEST_NOWHERE
;
2874 return wxTreeItemId();
2877 wxGenericTreeItem
*hit
= m_anchor
->HitTest(CalcUnscrolledPosition(point
),
2881 flags
= wxTREE_HITTEST_NOWHERE
;
2882 return wxTreeItemId();
2887 // get the bounding rectangle of the item (or of its label only)
2888 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2890 bool textOnly
) const
2892 wxCHECK_MSG( item
.IsOk(), false, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2894 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2899 rect
.width
= i
->GetWidth();
2901 if ( m_imageListNormal
)
2903 int image_w
, image_h
;
2904 m_imageListNormal
->GetSize( 0, image_w
, image_h
);
2905 rect
.width
+= image_w
+ MARGIN_BETWEEN_IMAGE_AND_TEXT
;
2908 else // the entire line
2911 rect
.width
= GetClientSize().x
;
2915 rect
.height
= GetLineHeight(i
);
2917 // we have to return the logical coordinates, not physical ones
2918 rect
.SetTopLeft(CalcScrolledPosition(rect
.GetTopLeft()));
2923 wxTextCtrl
*wxGenericTreeCtrl::EditLabel(const wxTreeItemId
& item
,
2924 wxClassInfo
* WXUNUSED(textCtrlClass
))
2926 wxCHECK_MSG( item
.IsOk(), NULL
, _T("can't edit an invalid item") );
2928 wxGenericTreeItem
*itemEdit
= (wxGenericTreeItem
*)item
.m_pItem
;
2930 wxTreeEvent
te(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, this, itemEdit
);
2931 if ( GetEventHandler()->ProcessEvent( te
) && !te
.IsAllowed() )
2937 // We have to call this here because the label in
2938 // question might just have been added and no screen
2939 // update taken place.
2941 #if defined( __WXMSW__ ) || defined(__WXMAC__)
2944 DoDirtyProcessing();
2947 // TODO: use textCtrlClass here to create the control of correct class
2948 m_textCtrl
= new wxTreeTextCtrl(this, itemEdit
);
2950 m_textCtrl
->SetFocus();
2955 // returns a pointer to the text edit control if the item is being
2956 // edited, NULL otherwise (it's assumed that no more than one item may
2957 // be edited simultaneously)
2958 wxTextCtrl
* wxGenericTreeCtrl::GetEditControl() const
2963 void wxGenericTreeCtrl::EndEditLabel(const wxTreeItemId
& WXUNUSED(item
),
2964 bool discardChanges
)
2966 wxCHECK_RET( m_textCtrl
, _T("not editing label") );
2968 m_textCtrl
->EndEdit(discardChanges
);
2971 bool wxGenericTreeCtrl::OnRenameAccept(wxGenericTreeItem
*item
,
2972 const wxString
& value
)
2974 wxTreeEvent
le(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, this, item
);
2976 le
.m_editCancelled
= false;
2978 return !GetEventHandler()->ProcessEvent( le
) || le
.IsAllowed();
2981 void wxGenericTreeCtrl::OnRenameCancelled(wxGenericTreeItem
*item
)
2983 // let owner know that the edit was cancelled
2984 wxTreeEvent
le(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, this, item
);
2985 le
.m_label
= wxEmptyString
;
2986 le
.m_editCancelled
= true;
2988 GetEventHandler()->ProcessEvent( le
);
2991 void wxGenericTreeCtrl::OnRenameTimer()
2993 EditLabel( m_current
);
2996 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
2998 if ( !m_anchor
)return;
3000 wxPoint pt
= CalcUnscrolledPosition(event
.GetPosition());
3002 // Is the mouse over a tree item button?
3004 wxGenericTreeItem
*thisItem
= m_anchor
->HitTest(pt
, this, flags
, 0);
3005 wxGenericTreeItem
*underMouse
= thisItem
;
3007 bool underMouseChanged
= (underMouse
!= m_underMouse
) ;
3008 #endif // wxUSE_TOOLTIPS
3011 (flags
& wxTREE_HITTEST_ONITEMBUTTON
) &&
3012 (!event
.LeftIsDown()) &&
3014 (!m_renameTimer
|| !m_renameTimer
->IsRunning()))
3022 if (underMouse
!= m_underMouse
)
3026 // unhighlight old item
3027 wxGenericTreeItem
*tmp
= m_underMouse
;
3028 m_underMouse
= NULL
;
3032 m_underMouse
= underMouse
;
3034 RefreshLine( m_underMouse
);
3038 // Determines what item we are hovering over and need a tooltip for
3039 wxTreeItemId hoverItem
= thisItem
;
3041 // We do not want a tooltip if we are dragging, or if the rename timer is running
3042 if (underMouseChanged
&& hoverItem
.IsOk() && !m_isDragging
&& (!m_renameTimer
|| !m_renameTimer
->IsRunning()))
3044 // Ask the tree control what tooltip (if any) should be shown
3045 wxTreeEvent
hevent(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
, this, hoverItem
);
3047 if ( GetEventHandler()->ProcessEvent(hevent
) && hevent
.IsAllowed() )
3049 SetToolTip(hevent
.m_label
);
3054 // we process left mouse up event (enables in-place edit), middle/right down
3055 // (pass to the user code), left dbl click (activate item) and
3056 // dragging/moving events for items drag-and-drop
3057 if ( !(event
.LeftDown() ||
3059 event
.MiddleDown() ||
3060 event
.RightDown() ||
3061 event
.LeftDClick() ||
3063 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
3072 wxGenericTreeItem
*item
= m_anchor
->HitTest(pt
, this, flags
, 0);
3074 if ( event
.Dragging() && !m_isDragging
)
3076 if (m_dragCount
== 0)
3081 if (m_dragCount
!= 3)
3083 // wait until user drags a bit further...
3087 wxEventType command
= event
.RightIsDown()
3088 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
3089 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
3091 wxTreeEvent
nevent(command
, this, m_current
);
3092 nevent
.SetPoint(CalcScrolledPosition(pt
));
3094 // by default the dragging is not supported, the user code must
3095 // explicitly allow the event for it to take place
3098 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
3100 // we're going to drag this item
3101 m_isDragging
= true;
3103 // remember the old cursor because we will change it while
3105 m_oldCursor
= m_cursor
;
3107 // in a single selection control, hide the selection temporarily
3108 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
3110 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
3112 if ( m_oldSelection
)
3114 m_oldSelection
->SetHilight(false);
3115 RefreshLine(m_oldSelection
);
3122 else if ( event
.Dragging() )
3124 if ( item
!= m_dropTarget
)
3126 // unhighlight the previous drop target
3127 DrawDropEffect(m_dropTarget
);
3129 m_dropTarget
= item
;
3131 // highlight the current drop target if any
3132 DrawDropEffect(m_dropTarget
);
3134 #if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXGTK20__)
3141 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
3145 // erase the highlighting
3146 DrawDropEffect(m_dropTarget
);
3148 if ( m_oldSelection
)
3150 m_oldSelection
->SetHilight(true);
3151 RefreshLine(m_oldSelection
);
3152 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
3155 // generate the drag end event
3156 wxTreeEvent
eventEndDrag(wxEVT_COMMAND_TREE_END_DRAG
, this, item
);
3158 eventEndDrag
.m_pointDrag
= CalcScrolledPosition(pt
);
3160 (void)GetEventHandler()->ProcessEvent(eventEndDrag
);
3162 m_isDragging
= false;
3163 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
3165 SetCursor(m_oldCursor
);
3167 #if defined( __WXMSW__ ) || defined(__WXMAC__)
3175 // If we got to this point, we are not dragging or moving the mouse.
3176 // Because the code in carbon/toplevel.cpp will only set focus to the tree
3177 // if we skip for EVT_LEFT_DOWN, we MUST skip this event here for focus to work.
3178 // We skip even if we didn't hit an item because we still should
3179 // restore focus to the tree control even if we didn't exactly hit an item.
3180 if ( event
.LeftDown() )
3185 // here we process only the messages which happen on tree items
3189 if (item
== NULL
) return; /* we hit the blank area */
3191 if ( event
.RightDown() )
3193 // If the item is already selected, do not update the selection.
3194 // Multi-selections should not be cleared if a selected item is clicked.
3195 if (!IsSelected(item
))
3197 DoSelectItem(item
, true, false);
3200 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, this, item
);
3201 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3202 event
.Skip(!GetEventHandler()->ProcessEvent(nevent
));
3204 // Consistent with MSW (for now), send the ITEM_MENU *after*
3205 // the RIGHT_CLICK event. TODO: This behavior may change.
3206 wxTreeEvent
nevent2(wxEVT_COMMAND_TREE_ITEM_MENU
, this, item
);
3207 nevent2
.m_pointDrag
= CalcScrolledPosition(pt
);
3208 GetEventHandler()->ProcessEvent(nevent2
);
3210 else if ( event
.MiddleDown() )
3212 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, this, item
);
3213 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3214 event
.Skip(!GetEventHandler()->ProcessEvent(nevent
));
3216 else if ( event
.LeftUp() )
3218 // this facilitates multiple-item drag-and-drop
3220 if ( /* item && */ HasFlag(wxTR_MULTIPLE
))
3222 wxArrayTreeItemIds selections
;
3223 size_t count
= GetSelections(selections
);
3229 DoSelectItem(item
, true, false);
3235 if ( (item
== m_current
) &&
3236 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
3237 HasFlag(wxTR_EDIT_LABELS
) )
3239 if ( m_renameTimer
)
3241 if ( m_renameTimer
->IsRunning() )
3242 m_renameTimer
->Stop();
3246 m_renameTimer
= new wxTreeRenameTimer( this );
3249 m_renameTimer
->Start( wxTreeRenameTimer::DELAY
, true );
3252 m_lastOnSame
= false;
3255 else // !RightDown() && !MiddleDown() && !LeftUp() ==> LeftDown() || LeftDClick()
3257 if ( event
.LeftDown() )
3259 m_lastOnSame
= item
== m_current
;
3262 if ( flags
& wxTREE_HITTEST_ONITEMBUTTON
)
3264 // only toggle the item for a single click, double click on
3265 // the button doesn't do anything (it toggles the item twice)
3266 if ( event
.LeftDown() )
3271 // don't select the item if the button was clicked
3276 // clear the previously selected items, if the
3277 // user clicked outside of the present selection.
3278 // otherwise, perform the deselection on mouse-up.
3279 // this allows multiple drag and drop to work.
3280 // but if Cmd is down, toggle selection of the clicked item
3281 if (!IsSelected(item
) || event
.CmdDown())
3283 // how should the selection work for this event?
3284 bool is_multiple
, extended_select
, unselect_others
;
3285 EventFlagsToSelType(GetWindowStyleFlag(),
3288 is_multiple
, extended_select
, unselect_others
);
3290 DoSelectItem(item
, unselect_others
, extended_select
);
3294 // For some reason, Windows isn't recognizing a left double-click,
3295 // so we need to simulate it here. Allow 200 milliseconds for now.
3296 if ( event
.LeftDClick() )
3298 // double clicking should not start editing the item label
3299 if ( m_renameTimer
)
3300 m_renameTimer
->Stop();
3302 m_lastOnSame
= false;
3304 // send activate event first
3305 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, this, item
);
3306 nevent
.m_pointDrag
= CalcScrolledPosition(pt
);
3307 if ( !GetEventHandler()->ProcessEvent( nevent
) )
3309 // if the user code didn't process the activate event,
3310 // handle it ourselves by toggling the item when it is
3312 if ( item
->HasPlus() )
3322 void wxGenericTreeCtrl::OnInternalIdle()
3324 wxWindow::OnInternalIdle();
3326 // Check if we need to select the root item
3327 // because nothing else has been selected.
3328 // Delaying it means that we can invoke event handlers
3329 // as required, when a first item is selected.
3330 if (!HasFlag(wxTR_MULTIPLE
) && !GetSelection().IsOk())
3333 SelectItem(m_select_me
);
3334 else if (GetRootItem().IsOk())
3335 SelectItem(GetRootItem());
3338 // after all changes have been done to the tree control,
3339 // actually redraw the tree when everything is over
3341 DoDirtyProcessing();
3344 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
3349 wxTreeItemAttr
*attr
= item
->GetAttributes();
3350 if ( attr
&& attr
->HasFont() )
3351 dc
.SetFont(attr
->GetFont());
3352 else if ( item
->IsBold() )
3353 dc
.SetFont(m_boldFont
);
3355 dc
.SetFont(m_normalFont
);
3357 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
3360 // restore normal font
3361 dc
.SetFont( m_normalFont
);
3365 int image
= item
->GetCurrentImage();
3366 if ( image
!= NO_IMAGE
)
3368 if ( m_imageListNormal
)
3370 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
3371 image_w
+= MARGIN_BETWEEN_IMAGE_AND_TEXT
;
3375 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
3378 total_h
+= 2; // at least 2 pixels
3380 total_h
+= total_h
/10; // otherwise 10% extra spacing
3382 item
->SetHeight(total_h
);
3383 if (total_h
>m_lineHeight
)
3384 m_lineHeight
=total_h
;
3386 item
->SetWidth(image_w
+text_w
+2);
3389 // -----------------------------------------------------------------------------
3390 // for developper : y is now the top of the level
3391 // not the middle of it !
3392 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
3394 int x
= level
*m_indent
;
3395 if (!HasFlag(wxTR_HIDE_ROOT
))
3399 else if (level
== 0)
3401 // a hidden root is not evaluated, but its
3402 // children are always calculated
3406 CalculateSize( item
, dc
);
3409 item
->SetX( x
+m_spacing
);
3411 y
+= GetLineHeight(item
);
3413 if ( !item
->IsExpanded() )
3415 // we don't need to calculate collapsed branches
3420 wxArrayGenericTreeItems
& children
= item
->GetChildren();
3421 size_t n
, count
= children
.Count();
3423 for (n
= 0; n
< count
; ++n
)
3424 CalculateLevel( children
[n
], dc
, level
, y
); // recurse
3427 void wxGenericTreeCtrl::CalculatePositions()
3429 if ( !m_anchor
) return;
3431 wxClientDC
dc(this);
3434 dc
.SetFont( m_normalFont
);
3436 dc
.SetPen( m_dottedPen
);
3437 //if(GetImageList() == NULL)
3438 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
3441 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
3444 void wxGenericTreeCtrl::Refresh(bool eraseBackground
, const wxRect
*rect
)
3446 if ( !m_freezeCount
)
3447 wxTreeCtrlBase::Refresh(eraseBackground
, rect
);
3450 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
3452 if (m_dirty
|| m_freezeCount
)
3455 wxSize client
= GetClientSize();
3458 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3459 rect
.width
= client
.x
;
3460 rect
.height
= client
.y
;
3462 Refresh(true, &rect
);
3464 AdjustMyScrollbars();
3467 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
3469 if (m_dirty
|| m_freezeCount
)
3473 CalcScrolledPosition(0, item
->GetY(), NULL
, &rect
.y
);
3474 rect
.width
= GetClientSize().x
;
3475 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
3477 Refresh(true, &rect
);
3480 void wxGenericTreeCtrl::RefreshSelected()
3485 // TODO: this is awfully inefficient, we should keep the list of all
3486 // selected items internally, should be much faster
3488 RefreshSelectedUnder(m_anchor
);
3491 void wxGenericTreeCtrl::RefreshSelectedUnder(wxGenericTreeItem
*item
)
3496 if ( item
->IsSelected() )
3499 const wxArrayGenericTreeItems
& children
= item
->GetChildren();
3500 size_t count
= children
.GetCount();
3501 for ( size_t n
= 0; n
< count
; n
++ )
3503 RefreshSelectedUnder(children
[n
]);
3507 void wxGenericTreeCtrl::Freeze()
3512 void wxGenericTreeCtrl::Thaw()
3514 wxCHECK_RET( m_freezeCount
> 0, _T("thawing unfrozen tree control?") );
3516 if ( --m_freezeCount
== 0 )
3522 // ----------------------------------------------------------------------------
3523 // changing colours: we need to refresh the tree control
3524 // ----------------------------------------------------------------------------
3526 bool wxGenericTreeCtrl::SetBackgroundColour(const wxColour
& colour
)
3528 if ( !wxWindow::SetBackgroundColour(colour
) )
3536 bool wxGenericTreeCtrl::SetForegroundColour(const wxColour
& colour
)
3538 if ( !wxWindow::SetForegroundColour(colour
) )
3546 // Process the tooltip event, to speed up event processing.
3547 // Doesn't actually get a tooltip.
3548 void wxGenericTreeCtrl::OnGetToolTip( wxTreeEvent
&event
)
3554 // NOTE: If using the wxListBox visual attributes works everywhere then this can
3555 // be removed, as well as the #else case below.
3556 #define _USE_VISATTR 0
3561 wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
3563 wxGenericTreeCtrl::GetClassDefaultAttributes(wxWindowVariant
WXUNUSED(variant
))
3567 // Use the same color scheme as wxListBox
3568 return wxListBox::GetClassDefaultAttributes(variant
);
3570 wxVisualAttributes attr
;
3571 attr
.colFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT
);
3572 attr
.colBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_LISTBOX
);
3573 attr
.font
= wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
);
3578 #if WXWIN_COMPATIBILITY_2_4
3580 int wxGenericTreeCtrl::GetItemSelectedImage(const wxTreeItemId
& item
) const
3582 return GetItemImage(item
, wxTreeItemIcon_Selected
);
3585 void wxGenericTreeCtrl::SetItemSelectedImage(const wxTreeItemId
& item
, int image
)
3587 SetItemImage(item
, image
, wxTreeItemIcon_Selected
);
3590 #endif // WXWIN_COMPATIBILITY_2_4
3592 void wxGenericTreeCtrl::DoDirtyProcessing()
3599 CalculatePositions();
3601 AdjustMyScrollbars();
3604 #endif // wxUSE_TREECTRL