1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: generic tree control implementation
4 // Author: Robert Roebling
6 // Modified: 22/10/98 - almost total rewrite, simpler interface (VZ)
8 // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // =============================================================================
14 // =============================================================================
16 // -----------------------------------------------------------------------------
18 // -----------------------------------------------------------------------------
21 #pragma implementation "treectlg.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
31 #include "wx/generic/treectlg.h"
32 #include "wx/imaglist.h"
33 #include "wx/settings.h"
36 #include "wx/dynarray.h"
37 #include "wx/arrimpl.cpp"
38 #include "wx/dcclient.h"
39 #include "wx/msgdlg.h"
41 // -----------------------------------------------------------------------------
43 // -----------------------------------------------------------------------------
45 class WXDLLEXPORT wxGenericTreeItem
;
47 WX_DEFINE_ARRAY(wxGenericTreeItem
*, wxArrayGenericTreeItems
);
48 //WX_DEFINE_OBJARRAY(wxArrayTreeItemIds);
50 // ----------------------------------------------------------------------------
52 // ----------------------------------------------------------------------------
54 static const int NO_IMAGE
= -1;
56 #define PIXELS_PER_UNIT 10
58 // -----------------------------------------------------------------------------
60 // -----------------------------------------------------------------------------
62 // timer used for enabling in-place edit
63 class WXDLLEXPORT wxTreeRenameTimer
: public wxTimer
66 wxTreeRenameTimer( wxGenericTreeCtrl
*owner
);
71 wxGenericTreeCtrl
*m_owner
;
74 // control used for in-place edit
75 class WXDLLEXPORT wxTreeTextCtrl
: public wxTextCtrl
79 wxTreeTextCtrl( wxWindow
*parent
,
83 wxGenericTreeCtrl
*owner
,
84 const wxString
&value
= wxEmptyString
,
85 const wxPoint
&pos
= wxDefaultPosition
,
86 const wxSize
&size
= wxDefaultSize
,
87 int style
= wxSIMPLE_BORDER
,
88 const wxValidator
& validator
= wxDefaultValidator
,
89 const wxString
&name
= wxTextCtrlNameStr
);
91 void OnChar( wxKeyEvent
&event
);
92 void OnKillFocus( wxFocusEvent
&event
);
97 wxGenericTreeCtrl
*m_owner
;
98 wxString m_startValue
;
100 DECLARE_EVENT_TABLE()
101 DECLARE_DYNAMIC_CLASS(wxTreeTextCtrl
);
105 class WXDLLEXPORT wxGenericTreeItem
109 wxGenericTreeItem() { m_data
= NULL
; }
110 wxGenericTreeItem( wxGenericTreeItem
*parent
,
111 const wxString
& text
,
113 int image
, int selImage
,
114 wxTreeItemData
*data
);
116 ~wxGenericTreeItem();
119 wxArrayGenericTreeItems
& GetChildren() { return m_children
; }
121 const wxString
& GetText() const { return m_text
; }
122 int GetImage(wxTreeItemIcon which
= wxTreeItemIcon_Normal
) const
123 { return m_images
[which
]; }
124 wxTreeItemData
*GetData() const { return m_data
; }
126 // returns the current image for the item (depending on its
127 // selected/expanded/whatever state)
128 int GetCurrentImage() const;
130 void SetText( const wxString
&text
);
131 void SetImage(int image
, wxTreeItemIcon which
) { m_images
[which
] = image
; }
132 void SetData(wxTreeItemData
*data
) { m_data
= data
; }
134 void SetHasPlus(bool has
= TRUE
) { m_hasPlus
= has
; }
136 void SetBold(bool bold
) { m_isBold
= bold
; }
138 int GetX() const { return m_x
; }
139 int GetY() const { return m_y
; }
141 void SetX(int x
) { m_x
= x
; }
142 void SetY(int y
) { m_y
= y
; }
144 int GetHeight() const { return m_height
; }
145 int GetWidth() const { return m_width
; }
147 void SetHeight(int h
) { m_height
= h
; }
148 void SetWidth(int w
) { m_width
= w
; }
151 wxGenericTreeItem
*GetParent() const { return m_parent
; }
154 // deletes all children notifying the treectrl about it if !NULL
156 void DeleteChildren(wxGenericTreeCtrl
*tree
= NULL
);
157 // FIXME don't know what is it for
160 // get count of all children (and grand children if 'recursively')
161 size_t GetChildrenCount(bool recursively
= TRUE
) const;
163 void Insert(wxGenericTreeItem
*child
, size_t index
)
164 { m_children
.Insert(child
, index
); }
166 void SetCross( int x
, int y
);
167 void GetSize( int &x
, int &y
, const wxGenericTreeCtrl
* );
169 // return the item at given position (or NULL if no item), onButton is
170 // TRUE if the point belongs to the item's button, otherwise it lies
171 // on the button's label
172 wxGenericTreeItem
*HitTest( const wxPoint
& point
, const wxGenericTreeCtrl
*, int &flags
);
174 void Expand() { m_isCollapsed
= FALSE
; }
175 void Collapse() { m_isCollapsed
= TRUE
; }
177 void SetHilight( bool set
= TRUE
) { m_hasHilight
= set
; }
180 bool HasChildren() const { return !m_children
.IsEmpty(); }
181 bool IsSelected() const { return m_hasHilight
; }
182 bool IsExpanded() const { return !m_isCollapsed
; }
183 bool HasPlus() const { return m_hasPlus
|| HasChildren(); }
184 bool IsBold() const { return m_isBold
; }
187 // get them - may be NULL
188 wxTreeItemAttr
*GetAttributes() const { return m_attr
; }
189 // get them ensuring that the pointer is not NULL
190 wxTreeItemAttr
& Attr()
193 m_attr
= new wxTreeItemAttr
;
201 // tree ctrl images for the normal, selected, expanded and
202 // expanded+selected states
203 int m_images
[wxTreeItemIcon_Max
];
205 wxTreeItemData
*m_data
;
207 // use bitfields to save size
208 int m_isCollapsed
:1;
209 int m_hasHilight
:1; // same as focused
210 int m_hasPlus
:1; // used for item which doesn't have
211 // children but has a [+] button
212 int m_isBold
:1; // render the label in bold font
215 wxCoord m_height
, m_width
;
216 int m_xCross
, m_yCross
;
219 wxArrayGenericTreeItems m_children
;
220 wxGenericTreeItem
*m_parent
;
222 wxTreeItemAttr
*m_attr
;
225 // =============================================================================
227 // =============================================================================
229 // ----------------------------------------------------------------------------
231 // ----------------------------------------------------------------------------
233 // translate the key or mouse event flags to the type of selection we're
235 static void EventFlagsToSelType(long style
,
239 bool &extended_select
,
240 bool &unselect_others
)
242 is_multiple
= (style
& wxTR_MULTIPLE
) != 0;
243 extended_select
= shiftDown
&& is_multiple
;
244 unselect_others
= !(extended_select
|| (ctrlDown
&& is_multiple
));
247 // -----------------------------------------------------------------------------
248 // wxTreeRenameTimer (internal)
249 // -----------------------------------------------------------------------------
251 wxTreeRenameTimer::wxTreeRenameTimer( wxGenericTreeCtrl
*owner
)
256 void wxTreeRenameTimer::Notify()
258 m_owner
->OnRenameTimer();
261 //-----------------------------------------------------------------------------
262 // wxTreeTextCtrl (internal)
263 //-----------------------------------------------------------------------------
265 IMPLEMENT_DYNAMIC_CLASS(wxTreeTextCtrl
,wxTextCtrl
);
267 BEGIN_EVENT_TABLE(wxTreeTextCtrl
,wxTextCtrl
)
268 EVT_CHAR (wxTreeTextCtrl::OnChar
)
269 EVT_KILL_FOCUS (wxTreeTextCtrl::OnKillFocus
)
272 wxTreeTextCtrl::wxTreeTextCtrl( wxWindow
*parent
,
276 wxGenericTreeCtrl
*owner
,
277 const wxString
&value
,
281 const wxValidator
& validator
,
282 const wxString
&name
)
283 : wxTextCtrl( parent
, id
, value
, pos
, size
, style
, validator
, name
)
289 (*m_res
) = wxEmptyString
;
290 m_startValue
= value
;
293 void wxTreeTextCtrl::OnChar( wxKeyEvent
&event
)
295 if (event
.m_keyCode
== WXK_RETURN
)
298 (*m_res
) = GetValue();
300 if (!wxPendingDelete
.Member(this))
301 wxPendingDelete
.Append(this);
303 if ((*m_accept
) && ((*m_res
) != m_startValue
))
304 m_owner
->OnRenameAccept();
308 if (event
.m_keyCode
== WXK_ESCAPE
)
313 if (!wxPendingDelete
.Member(this))
314 wxPendingDelete
.Append(this);
321 void wxTreeTextCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
323 if (!wxPendingDelete
.Member(this))
324 wxPendingDelete
.Append(this);
326 if ((*m_accept
) && ((*m_res
) != m_startValue
))
327 m_owner
->OnRenameAccept();
331 // -----------------------------------------------------------------------------
333 // -----------------------------------------------------------------------------
335 IMPLEMENT_DYNAMIC_CLASS(wxTreeEvent
, wxNotifyEvent
)
337 wxTreeEvent::wxTreeEvent( wxEventType commandType
, int id
)
338 : wxNotifyEvent( commandType
, id
)
341 m_itemOld
= (wxGenericTreeItem
*)NULL
;
345 // -----------------------------------------------------------------------------
347 // -----------------------------------------------------------------------------
349 wxGenericTreeItem::wxGenericTreeItem(wxGenericTreeItem
*parent
,
350 const wxString
& text
,
352 int image
, int selImage
,
353 wxTreeItemData
*data
)
356 m_images
[wxTreeItemIcon_Normal
] = image
;
357 m_images
[wxTreeItemIcon_Selected
] = selImage
;
358 m_images
[wxTreeItemIcon_Expanded
] = NO_IMAGE
;
359 m_images
[wxTreeItemIcon_SelectedExpanded
] = NO_IMAGE
;
363 m_xCross
= m_yCross
= 0;
367 m_isCollapsed
= TRUE
;
368 m_hasHilight
= FALSE
;
374 m_attr
= (wxTreeItemAttr
*)NULL
;
376 // We don't know the height here yet.
381 wxGenericTreeItem::~wxGenericTreeItem()
387 wxASSERT_MSG( m_children
.IsEmpty(),
388 wxT("please call DeleteChildren() before deleting the item") );
391 void wxGenericTreeItem::DeleteChildren(wxGenericTreeCtrl
*tree
)
393 size_t count
= m_children
.Count();
394 for ( size_t n
= 0; n
< count
; n
++ )
396 wxGenericTreeItem
*child
= m_children
[n
];
398 tree
->SendDeleteEvent(child
);
400 child
->DeleteChildren(tree
);
407 void wxGenericTreeItem::SetText( const wxString
&text
)
412 void wxGenericTreeItem::Reset()
415 for ( int i
= 0; i
< wxTreeItemIcon_Max
; i
++ )
417 m_images
[i
] = NO_IMAGE
;
422 m_height
= m_width
= 0;
429 m_isCollapsed
= TRUE
;
431 m_parent
= (wxGenericTreeItem
*)NULL
;
434 size_t wxGenericTreeItem::GetChildrenCount(bool recursively
) const
436 size_t count
= m_children
.Count();
440 size_t total
= count
;
441 for (size_t n
= 0; n
< count
; ++n
)
443 total
+= m_children
[n
]->GetChildrenCount();
449 void wxGenericTreeItem::SetCross( int x
, int y
)
455 void wxGenericTreeItem::GetSize( int &x
, int &y
, const wxGenericTreeCtrl
*theTree
)
457 int bottomY
=m_y
+theTree
->GetLineHeight(this);
458 if ( y
< bottomY
) y
= bottomY
;
459 int width
= m_x
+ m_width
;
460 if ( x
< width
) x
= width
;
464 size_t count
= m_children
.Count();
465 for ( size_t n
= 0; n
< count
; ++n
)
467 m_children
[n
]->GetSize( x
, y
, theTree
);
472 wxGenericTreeItem
*wxGenericTreeItem::HitTest( const wxPoint
& point
,
473 const wxGenericTreeCtrl
*theTree
,
476 if ((point
.y
> m_y
) && (point
.y
< m_y
+ theTree
->GetLineHeight(this)))
478 if (point
.y
< m_y
+theTree
->GetLineHeight(this)/2 )
479 flags
|= wxTREE_HITTEST_ONITEMUPPERPART
;
481 flags
|= wxTREE_HITTEST_ONITEMLOWERPART
;
483 // 5 is the size of the plus sign
484 if ((point
.x
> m_xCross
-5) && (point
.x
< m_xCross
+5) &&
485 (point
.y
> m_yCross
-5) && (point
.y
< m_yCross
+5) &&
486 (IsExpanded() || HasPlus()))
488 flags
|=wxTREE_HITTEST_ONITEMBUTTON
;
492 if ((point
.x
>= m_x
) && (point
.x
<= m_x
+m_width
))
497 // assuming every image (normal and selected ) has the same size !
498 if ( (GetImage() != NO_IMAGE
) && theTree
->m_imageListNormal
)
499 theTree
->m_imageListNormal
->GetSize(GetImage(), image_w
, image_h
);
501 if ((image_w
!= -1) && (point
.x
<= m_x
+ image_w
+ 1))
502 flags
|= wxTREE_HITTEST_ONITEMICON
;
504 flags
|= wxTREE_HITTEST_ONITEMLABEL
;
510 flags
|= wxTREE_HITTEST_ONITEMINDENT
;
511 if (point
.x
> m_x
+m_width
)
512 flags
|= wxTREE_HITTEST_ONITEMRIGHT
;
520 size_t count
= m_children
.Count();
521 for ( size_t n
= 0; n
< count
; n
++ )
523 wxGenericTreeItem
*res
= m_children
[n
]->HitTest( point
, theTree
, flags
);
530 flags
|=wxTREE_HITTEST_NOWHERE
;
532 return (wxGenericTreeItem
*) NULL
;
535 int wxGenericTreeItem::GetCurrentImage() const
537 int image
= NO_IMAGE
;
542 image
= GetImage(wxTreeItemIcon_SelectedExpanded
);
545 if ( image
== NO_IMAGE
)
547 // we usually fall back to the normal item, but try just the
548 // expanded one (and not selected) first in this case
549 image
= GetImage(wxTreeItemIcon_Expanded
);
555 image
= GetImage(wxTreeItemIcon_Selected
);
558 // may be it doesn't have the specific image we want, try the default one
560 if ( image
== NO_IMAGE
)
568 // -----------------------------------------------------------------------------
569 // wxGenericTreeCtrl implementation
570 // -----------------------------------------------------------------------------
572 IMPLEMENT_DYNAMIC_CLASS(wxGenericTreeCtrl
, wxScrolledWindow
)
574 BEGIN_EVENT_TABLE(wxGenericTreeCtrl
,wxScrolledWindow
)
575 EVT_PAINT (wxGenericTreeCtrl::OnPaint
)
576 EVT_MOUSE_EVENTS (wxGenericTreeCtrl::OnMouse
)
577 EVT_CHAR (wxGenericTreeCtrl::OnChar
)
578 EVT_SET_FOCUS (wxGenericTreeCtrl::OnSetFocus
)
579 EVT_KILL_FOCUS (wxGenericTreeCtrl::OnKillFocus
)
580 EVT_IDLE (wxGenericTreeCtrl::OnIdle
)
583 #if !defined(__WXMSW__) || defined(__WIN16__)
585 * wxTreeCtrl has to be a real class or we have problems with
586 * the run-time information.
589 IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrl
, wxGenericTreeCtrl
)
592 // -----------------------------------------------------------------------------
593 // construction/destruction
594 // -----------------------------------------------------------------------------
596 void wxGenericTreeCtrl::Init()
600 m_anchor
= (wxGenericTreeItem
*) NULL
;
610 m_hilightBrush
= new wxBrush
612 wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
),
617 m_imageListState
= (wxImageList
*) NULL
;
620 m_isDragging
= FALSE
;
622 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
624 m_renameTimer
= new wxTreeRenameTimer( this );
625 m_lastOnSame
= FALSE
;
627 m_normalFont
= wxSystemSettings::GetSystemFont( wxSYS_DEFAULT_GUI_FONT
);
628 m_boldFont
= wxFont( m_normalFont
.GetPointSize(),
629 m_normalFont
.GetFamily(),
630 m_normalFont
.GetStyle(),
632 m_normalFont
.GetUnderlined());
635 bool wxGenericTreeCtrl::Create(wxWindow
*parent
, wxWindowID id
,
636 const wxPoint
& pos
, const wxSize
& size
,
638 const wxValidator
&validator
,
639 const wxString
& name
)
643 wxScrolledWindow::Create( parent
, id
, pos
, size
, style
|wxHSCROLL
|wxVSCROLL
, name
);
646 SetValidator( validator
);
649 SetBackgroundColour( wxSystemSettings::GetSystemColour( wxSYS_COLOUR_LISTBOX
) );
650 // m_dottedPen = wxPen( "grey", 0, wxDOT ); too slow under XFree86
651 m_dottedPen
= wxPen( "grey", 0, 0 );
656 wxGenericTreeCtrl::~wxGenericTreeCtrl()
658 wxDELETE( m_hilightBrush
);
662 delete m_renameTimer
;
665 // -----------------------------------------------------------------------------
667 // -----------------------------------------------------------------------------
669 size_t wxGenericTreeCtrl::GetCount() const
671 return m_anchor
== NULL
? 0u : m_anchor
->GetChildrenCount();
674 void wxGenericTreeCtrl::SetIndent(unsigned int indent
)
680 void wxGenericTreeCtrl::SetSpacing(unsigned int spacing
)
686 size_t wxGenericTreeCtrl::GetChildrenCount(const wxTreeItemId
& item
, bool recursively
)
688 wxCHECK_MSG( item
.IsOk(), 0u, wxT("invalid tree item") );
690 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildrenCount(recursively
);
693 // -----------------------------------------------------------------------------
694 // functions to work with tree items
695 // -----------------------------------------------------------------------------
697 wxString
wxGenericTreeCtrl::GetItemText(const wxTreeItemId
& item
) const
699 wxCHECK_MSG( item
.IsOk(), wxT(""), wxT("invalid tree item") );
701 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetText();
704 int wxGenericTreeCtrl::GetItemImage(const wxTreeItemId
& item
,
705 wxTreeItemIcon which
) const
707 wxCHECK_MSG( item
.IsOk(), -1, wxT("invalid tree item") );
709 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetImage(which
);
712 wxTreeItemData
*wxGenericTreeCtrl::GetItemData(const wxTreeItemId
& item
) const
714 wxCHECK_MSG( item
.IsOk(), NULL
, wxT("invalid tree item") );
716 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetData();
719 void wxGenericTreeCtrl::SetItemText(const wxTreeItemId
& item
, const wxString
& text
)
721 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
724 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
725 pItem
->SetText(text
);
726 CalculateSize(pItem
, dc
);
730 void wxGenericTreeCtrl::SetItemImage(const wxTreeItemId
& item
,
732 wxTreeItemIcon which
)
734 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
736 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
737 pItem
->SetImage(image
, which
);
740 CalculateSize(pItem
, dc
);
744 void wxGenericTreeCtrl::SetItemData(const wxTreeItemId
& item
, wxTreeItemData
*data
)
746 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
748 ((wxGenericTreeItem
*) item
.m_pItem
)->SetData(data
);
751 void wxGenericTreeCtrl::SetItemHasChildren(const wxTreeItemId
& item
, bool has
)
753 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
755 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
756 pItem
->SetHasPlus(has
);
760 void wxGenericTreeCtrl::SetItemBold(const wxTreeItemId
& item
, bool bold
)
762 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
764 // avoid redrawing the tree if no real change
765 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
766 if ( pItem
->IsBold() != bold
)
768 pItem
->SetBold(bold
);
773 void wxGenericTreeCtrl::SetItemTextColour(const wxTreeItemId
& item
,
776 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
778 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
779 pItem
->Attr().SetTextColour(col
);
783 void wxGenericTreeCtrl::SetItemBackgroundColour(const wxTreeItemId
& item
,
786 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
788 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
789 pItem
->Attr().SetBackgroundColour(col
);
793 void wxGenericTreeCtrl::SetItemFont(const wxTreeItemId
& item
, const wxFont
& font
)
795 wxCHECK_RET( item
.IsOk(), wxT("invalid tree item") );
797 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
798 pItem
->Attr().SetFont(font
);
802 // -----------------------------------------------------------------------------
803 // item status inquiries
804 // -----------------------------------------------------------------------------
806 bool wxGenericTreeCtrl::IsVisible(const wxTreeItemId
& item
) const
808 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
810 // An item is only visible if it's not a descendant of a collapsed item
811 wxGenericTreeItem
*pItem
= (wxGenericTreeItem
*) item
.m_pItem
;
812 wxGenericTreeItem
* parent
= pItem
->GetParent();
815 if (!parent
->IsExpanded())
817 parent
= parent
->GetParent();
821 GetViewStart(& startX
, & startY
);
823 wxSize clientSize
= GetClientSize();
826 if (!GetBoundingRect(item
, rect
))
828 if (rect
.GetWidth() == 0 || rect
.GetHeight() == 0)
830 if (rect
.GetBottom() < 0 || rect
.GetTop() > clientSize
.y
)
832 if (rect
.GetRight() < 0 || rect
.GetLeft() > clientSize
.x
)
838 bool wxGenericTreeCtrl::ItemHasChildren(const wxTreeItemId
& item
) const
840 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
842 return !((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren().IsEmpty();
845 bool wxGenericTreeCtrl::IsExpanded(const wxTreeItemId
& item
) const
847 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
849 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsExpanded();
852 bool wxGenericTreeCtrl::IsSelected(const wxTreeItemId
& item
) const
854 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
856 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsSelected();
859 bool wxGenericTreeCtrl::IsBold(const wxTreeItemId
& item
) const
861 wxCHECK_MSG( item
.IsOk(), FALSE
, wxT("invalid tree item") );
863 return ((wxGenericTreeItem
*) item
.m_pItem
)->IsBold();
866 // -----------------------------------------------------------------------------
868 // -----------------------------------------------------------------------------
870 wxTreeItemId
wxGenericTreeCtrl::GetParent(const wxTreeItemId
& item
) const
872 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
874 return ((wxGenericTreeItem
*) item
.m_pItem
)->GetParent();
877 wxTreeItemId
wxGenericTreeCtrl::GetFirstChild(const wxTreeItemId
& item
, long& cookie
) const
879 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
882 return GetNextChild(item
, cookie
);
885 wxTreeItemId
wxGenericTreeCtrl::GetNextChild(const wxTreeItemId
& item
, long& cookie
) const
887 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
889 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
890 if ( (size_t)cookie
< children
.Count() )
892 return children
.Item((size_t)cookie
++);
896 // there are no more of them
897 return wxTreeItemId();
901 wxTreeItemId
wxGenericTreeCtrl::GetLastChild(const wxTreeItemId
& item
) const
903 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
905 wxArrayGenericTreeItems
& children
= ((wxGenericTreeItem
*) item
.m_pItem
)->GetChildren();
906 return (children
.IsEmpty() ? wxTreeItemId() : wxTreeItemId(children
.Last()));
909 wxTreeItemId
wxGenericTreeCtrl::GetNextSibling(const wxTreeItemId
& item
) const
911 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
913 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
914 wxGenericTreeItem
*parent
= i
->GetParent();
915 if ( parent
== NULL
)
917 // root item doesn't have any siblings
918 return wxTreeItemId();
921 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
922 int index
= siblings
.Index(i
);
923 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
925 size_t n
= (size_t)(index
+ 1);
926 return n
== siblings
.Count() ? wxTreeItemId() : wxTreeItemId(siblings
[n
]);
929 wxTreeItemId
wxGenericTreeCtrl::GetPrevSibling(const wxTreeItemId
& item
) const
931 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
933 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
934 wxGenericTreeItem
*parent
= i
->GetParent();
935 if ( parent
== NULL
)
937 // root item doesn't have any siblings
938 return wxTreeItemId();
941 wxArrayGenericTreeItems
& siblings
= parent
->GetChildren();
942 int index
= siblings
.Index(i
);
943 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
945 return index
== 0 ? wxTreeItemId()
946 : wxTreeItemId(siblings
[(size_t)(index
- 1)]);
949 // Only for internal use right now, but should probably be public
950 wxTreeItemId
wxGenericTreeCtrl::GetNext(const wxTreeItemId
& item
) const
952 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
954 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
956 // First see if there are any children.
957 wxArrayGenericTreeItems
& children
= i
->GetChildren();
958 if (children
.GetCount() > 0)
960 return children
.Item(0);
964 // Try a sibling of this or ancestor instead
965 wxTreeItemId p
= item
;
969 toFind
= GetNextSibling(p
);
971 } while (p
.IsOk() && !toFind
.IsOk());
976 wxTreeItemId
wxGenericTreeCtrl::GetPrev(const wxTreeItemId
& item
) const
978 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
980 wxFAIL_MSG(wxT("not implemented"));
982 return wxTreeItemId();
985 wxTreeItemId
wxGenericTreeCtrl::GetFirstVisibleItem() const
987 wxTreeItemId id
= GetRootItem();
998 return wxTreeItemId();
1001 wxTreeItemId
wxGenericTreeCtrl::GetNextVisible(const wxTreeItemId
& item
) const
1003 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1005 wxTreeItemId id
= item
;
1010 if (id
.IsOk() && IsVisible(id
))
1013 return wxTreeItemId();
1016 wxTreeItemId
wxGenericTreeCtrl::GetPrevVisible(const wxTreeItemId
& item
) const
1018 wxCHECK_MSG( item
.IsOk(), wxTreeItemId(), wxT("invalid tree item") );
1020 wxFAIL_MSG(wxT("not implemented"));
1022 return wxTreeItemId();
1025 // -----------------------------------------------------------------------------
1027 // -----------------------------------------------------------------------------
1029 wxTreeItemId
wxGenericTreeCtrl::DoInsertItem(const wxTreeItemId
& parentId
,
1031 const wxString
& text
,
1032 int image
, int selImage
,
1033 wxTreeItemData
*data
)
1035 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1038 // should we give a warning here?
1039 return AddRoot(text
, image
, selImage
, data
);
1042 wxClientDC
dc(this);
1043 wxGenericTreeItem
*item
=
1044 new wxGenericTreeItem( parent
, text
, dc
, image
, selImage
, data
);
1048 data
->m_pItem
= item
;
1051 parent
->Insert( item
, previous
);
1058 wxTreeItemId
wxGenericTreeCtrl::AddRoot(const wxString
& text
,
1059 int image
, int selImage
,
1060 wxTreeItemData
*data
)
1062 wxCHECK_MSG( !m_anchor
, wxTreeItemId(), wxT("tree can have only one root") );
1064 wxClientDC
dc(this);
1065 m_anchor
= new wxGenericTreeItem((wxGenericTreeItem
*)NULL
, text
, dc
,
1066 image
, selImage
, data
);
1069 data
->m_pItem
= m_anchor
;
1072 if (!HasFlag(wxTR_MULTIPLE
))
1074 m_current
= m_key_current
= m_anchor
;
1075 m_current
->SetHilight( TRUE
);
1083 wxTreeItemId
wxGenericTreeCtrl::PrependItem(const wxTreeItemId
& parent
,
1084 const wxString
& text
,
1085 int image
, int selImage
,
1086 wxTreeItemData
*data
)
1088 return DoInsertItem(parent
, 0u, text
, image
, selImage
, data
);
1091 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1092 const wxTreeItemId
& idPrevious
,
1093 const wxString
& text
,
1094 int image
, int selImage
,
1095 wxTreeItemData
*data
)
1097 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1100 // should we give a warning here?
1101 return AddRoot(text
, image
, selImage
, data
);
1104 int index
= parent
->GetChildren().Index((wxGenericTreeItem
*) idPrevious
.m_pItem
);
1105 wxASSERT_MSG( index
!= wxNOT_FOUND
,
1106 wxT("previous item in wxGenericTreeCtrl::InsertItem() is not a sibling") );
1108 return DoInsertItem(parentId
, (size_t)++index
, text
, image
, selImage
, data
);
1111 wxTreeItemId
wxGenericTreeCtrl::InsertItem(const wxTreeItemId
& parentId
,
1113 const wxString
& text
,
1114 int image
, int selImage
,
1115 wxTreeItemData
*data
)
1117 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1120 // should we give a warning here?
1121 return AddRoot(text
, image
, selImage
, data
);
1124 return DoInsertItem(parentId
, before
, text
, image
, selImage
, data
);
1127 wxTreeItemId
wxGenericTreeCtrl::AppendItem(const wxTreeItemId
& parentId
,
1128 const wxString
& text
,
1129 int image
, int selImage
,
1130 wxTreeItemData
*data
)
1132 wxGenericTreeItem
*parent
= (wxGenericTreeItem
*) parentId
.m_pItem
;
1135 // should we give a warning here?
1136 return AddRoot(text
, image
, selImage
, data
);
1139 return DoInsertItem( parent
, parent
->GetChildren().Count(), text
,
1140 image
, selImage
, data
);
1143 void wxGenericTreeCtrl::SendDeleteEvent(wxGenericTreeItem
*item
)
1145 wxTreeEvent
event( wxEVT_COMMAND_TREE_DELETE_ITEM
, GetId() );
1146 event
.m_item
= item
;
1147 event
.SetEventObject( this );
1148 ProcessEvent( event
);
1151 void wxGenericTreeCtrl::DeleteChildren(const wxTreeItemId
& itemId
)
1153 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1154 item
->DeleteChildren(this);
1159 void wxGenericTreeCtrl::Delete(const wxTreeItemId
& itemId
)
1161 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1163 // don't stay with invalid m_key_current or we will crash in the next call
1165 bool changeKeyCurrent
= FALSE
;
1166 wxGenericTreeItem
*itemKey
= m_key_current
;
1167 while ( itemKey
&& !changeKeyCurrent
)
1169 if ( itemKey
== item
)
1171 // m_key_current is a descendant of the item being deleted
1172 changeKeyCurrent
= TRUE
;
1176 itemKey
= itemKey
->GetParent();
1180 wxGenericTreeItem
*parent
= item
->GetParent();
1183 parent
->GetChildren().Remove( item
); // remove by value
1186 if ( changeKeyCurrent
)
1188 // may be NULL or not
1189 m_key_current
= parent
;
1192 item
->DeleteChildren(this);
1193 SendDeleteEvent(item
);
1199 void wxGenericTreeCtrl::DeleteAllItems()
1203 m_anchor
->DeleteChildren(this);
1212 void wxGenericTreeCtrl::Expand(const wxTreeItemId
& itemId
)
1214 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1216 wxCHECK_RET( item
, _T("invalid item in wxGenericTreeCtrl::Expand") );
1218 if ( !item
->HasPlus() )
1221 if ( item
->IsExpanded() )
1224 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_EXPANDING
, GetId() );
1225 event
.m_item
= item
;
1226 event
.SetEventObject( this );
1228 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1230 // cancelled by program
1235 CalculatePositions();
1237 RefreshSubtree(item
);
1239 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_EXPANDED
);
1240 ProcessEvent( event
);
1243 void wxGenericTreeCtrl::ExpandAll(const wxTreeItemId
& item
)
1246 if ( IsExpanded(item
) )
1249 wxTreeItemId child
= GetFirstChild(item
, cookie
);
1250 while ( child
.IsOk() )
1254 child
= GetNextChild(item
, cookie
);
1259 void wxGenericTreeCtrl::Collapse(const wxTreeItemId
& itemId
)
1261 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1263 if ( !item
->IsExpanded() )
1266 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, GetId() );
1267 event
.m_item
= item
;
1268 event
.SetEventObject( this );
1269 if ( ProcessEvent( event
) && !event
.IsAllowed() )
1271 // cancelled by program
1277 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1278 size_t count
= children
.Count();
1279 for ( size_t n
= 0; n
< count
; n
++ )
1281 Collapse(children
[n
]);
1284 CalculatePositions();
1286 RefreshSubtree(item
);
1288 event
.SetEventType(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
);
1289 ProcessEvent( event
);
1292 void wxGenericTreeCtrl::CollapseAndReset(const wxTreeItemId
& item
)
1295 DeleteChildren(item
);
1298 void wxGenericTreeCtrl::Toggle(const wxTreeItemId
& itemId
)
1300 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1302 if (item
->IsExpanded())
1308 void wxGenericTreeCtrl::Unselect()
1312 m_current
->SetHilight( FALSE
);
1313 RefreshLine( m_current
);
1317 void wxGenericTreeCtrl::UnselectAllChildren(wxGenericTreeItem
*item
)
1319 if (item
->IsSelected())
1321 item
->SetHilight(FALSE
);
1325 if (item
->HasChildren())
1327 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1328 size_t count
= children
.Count();
1329 for ( size_t n
= 0; n
< count
; ++n
)
1331 UnselectAllChildren(children
[n
]);
1336 void wxGenericTreeCtrl::UnselectAll()
1338 UnselectAllChildren((wxGenericTreeItem
*) GetRootItem().m_pItem
);
1341 // Recursive function !
1342 // To stop we must have crt_item<last_item
1344 // Tag all next children, when no more children,
1345 // Move to parent (not to tag)
1346 // Keep going... if we found last_item, we stop.
1347 bool wxGenericTreeCtrl::TagNextChildren(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1349 wxGenericTreeItem
*parent
= crt_item
->GetParent();
1351 if (parent
== NULL
) // This is root item
1352 return TagAllChildrenUntilLast(crt_item
, last_item
, select
);
1354 wxArrayGenericTreeItems
& children
= parent
->GetChildren();
1355 int index
= children
.Index(crt_item
);
1356 wxASSERT( index
!= wxNOT_FOUND
); // I'm not a child of my parent?
1358 size_t count
= children
.Count();
1359 for (size_t n
=(size_t)(index
+1); n
<count
; ++n
)
1361 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
)) return TRUE
;
1364 return TagNextChildren(parent
, last_item
, select
);
1367 bool wxGenericTreeCtrl::TagAllChildrenUntilLast(wxGenericTreeItem
*crt_item
, wxGenericTreeItem
*last_item
, bool select
)
1369 crt_item
->SetHilight(select
);
1370 RefreshLine(crt_item
);
1372 if (crt_item
==last_item
)
1375 if (crt_item
->HasChildren())
1377 wxArrayGenericTreeItems
& children
= crt_item
->GetChildren();
1378 size_t count
= children
.Count();
1379 for ( size_t n
= 0; n
< count
; ++n
)
1381 if (TagAllChildrenUntilLast(children
[n
], last_item
, select
))
1389 void wxGenericTreeCtrl::SelectItemRange(wxGenericTreeItem
*item1
, wxGenericTreeItem
*item2
)
1391 // item2 is not necessary after item1
1392 wxGenericTreeItem
*first
=NULL
, *last
=NULL
;
1394 // choice first' and 'last' between item1 and item2
1395 if (item1
->GetY()<item2
->GetY())
1406 bool select
= m_current
->IsSelected();
1408 if ( TagAllChildrenUntilLast(first
,last
,select
) )
1411 TagNextChildren(first
,last
,select
);
1414 void wxGenericTreeCtrl::SelectItem(const wxTreeItemId
& itemId
,
1415 bool unselect_others
,
1416 bool extended_select
)
1418 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1420 bool is_single
=!(GetWindowStyleFlag() & wxTR_MULTIPLE
);
1421 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1423 //wxCHECK_RET( ( (!unselect_others) && is_single),
1424 // wxT("this is a single selection tree") );
1426 // to keep going anyhow !!!
1429 if (item
->IsSelected())
1430 return; // nothing to do
1431 unselect_others
= TRUE
;
1432 extended_select
= FALSE
;
1434 else if ( unselect_others
&& item
->IsSelected() )
1436 // selection change if there is more than one item currently selected
1437 wxArrayTreeItemIds selected_items
;
1438 if ( GetSelections(selected_items
) == 1 )
1442 wxTreeEvent
event( wxEVT_COMMAND_TREE_SEL_CHANGING
, GetId() );
1443 event
.m_item
= item
;
1444 event
.m_itemOld
= m_current
;
1445 event
.SetEventObject( this );
1446 // TODO : Here we don't send any selection mode yet !
1448 if ( GetEventHandler()->ProcessEvent( event
) && !event
.IsAllowed() )
1452 if (unselect_others
)
1454 if (is_single
) Unselect(); // to speed up thing
1459 if (extended_select
)
1464 m_key_current
= (wxGenericTreeItem
*) GetRootItem().m_pItem
;
1467 // don't change the mark (m_current)
1468 SelectItemRange(m_current
, item
);
1472 bool select
=TRUE
; // the default
1474 // Check if we need to toggle hilight (ctrl mode)
1475 if (!unselect_others
)
1476 select
=!item
->IsSelected();
1478 m_current
= m_key_current
= item
;
1479 m_current
->SetHilight(select
);
1480 RefreshLine( m_current
);
1483 event
.SetEventType(wxEVT_COMMAND_TREE_SEL_CHANGED
);
1484 GetEventHandler()->ProcessEvent( event
);
1487 void wxGenericTreeCtrl::FillArray(wxGenericTreeItem
*item
,
1488 wxArrayTreeItemIds
&array
) const
1490 if ( item
->IsSelected() )
1491 array
.Add(wxTreeItemId(item
));
1493 if ( item
->HasChildren() )
1495 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1496 size_t count
= children
.GetCount();
1497 for ( size_t n
= 0; n
< count
; ++n
)
1498 FillArray(children
[n
], array
);
1502 size_t wxGenericTreeCtrl::GetSelections(wxArrayTreeItemIds
&array
) const
1505 wxTreeItemId idRoot
= GetRootItem();
1506 if ( idRoot
.IsOk() )
1508 FillArray((wxGenericTreeItem
*) idRoot
.m_pItem
, array
);
1510 //else: the tree is empty, so no selections
1512 return array
.Count();
1515 void wxGenericTreeCtrl::EnsureVisible(const wxTreeItemId
& item
)
1517 if (!item
.IsOk()) return;
1519 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1521 // first expand all parent branches
1522 wxGenericTreeItem
*parent
= gitem
->GetParent();
1526 parent
= parent
->GetParent();
1529 //if (parent) CalculatePositions();
1534 void wxGenericTreeCtrl::ScrollTo(const wxTreeItemId
&item
)
1536 if (!item
.IsOk()) return;
1538 // We have to call this here because the label in
1539 // question might just have been added and no screen
1540 // update taken place.
1541 if (m_dirty
) wxYield();
1543 wxGenericTreeItem
*gitem
= (wxGenericTreeItem
*) item
.m_pItem
;
1545 // now scroll to the item
1546 int item_y
= gitem
->GetY();
1550 ViewStart( &start_x
, &start_y
);
1551 start_y
*= PIXELS_PER_UNIT
;
1555 GetClientSize( &client_w
, &client_h
);
1557 if (item_y
< start_y
+3)
1562 m_anchor
->GetSize( x
, y
, this );
1563 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1564 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1565 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1566 // Item should appear at top
1567 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, item_y
/PIXELS_PER_UNIT
);
1569 else if (item_y
+GetLineHeight(gitem
) > start_y
+client_h
)
1574 m_anchor
->GetSize( x
, y
, this );
1575 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1576 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1577 item_y
+= PIXELS_PER_UNIT
+2;
1578 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1579 // Item should appear at bottom
1580 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
);
1584 // FIXME: tree sorting functions are not reentrant and not MT-safe!
1585 static wxGenericTreeCtrl
*s_treeBeingSorted
= NULL
;
1587 static int LINKAGEMODE
tree_ctrl_compare_func(wxGenericTreeItem
**item1
,
1588 wxGenericTreeItem
**item2
)
1590 wxCHECK_MSG( s_treeBeingSorted
, 0, wxT("bug in wxGenericTreeCtrl::SortChildren()") );
1592 return s_treeBeingSorted
->OnCompareItems(*item1
, *item2
);
1595 int wxGenericTreeCtrl::OnCompareItems(const wxTreeItemId
& item1
,
1596 const wxTreeItemId
& item2
)
1598 return wxStrcmp(GetItemText(item1
), GetItemText(item2
));
1601 void wxGenericTreeCtrl::SortChildren(const wxTreeItemId
& itemId
)
1603 wxCHECK_RET( itemId
.IsOk(), wxT("invalid tree item") );
1605 wxGenericTreeItem
*item
= (wxGenericTreeItem
*) itemId
.m_pItem
;
1607 wxCHECK_RET( !s_treeBeingSorted
,
1608 wxT("wxGenericTreeCtrl::SortChildren is not reentrant") );
1610 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1611 if ( children
.Count() > 1 )
1613 s_treeBeingSorted
= this;
1614 children
.Sort(tree_ctrl_compare_func
);
1615 s_treeBeingSorted
= NULL
;
1619 //else: don't make the tree dirty as nothing changed
1622 wxImageList
*wxGenericTreeCtrl::GetImageList() const
1624 return m_imageListNormal
;
1627 wxImageList
*wxGenericTreeCtrl::GetStateImageList() const
1629 return m_imageListState
;
1632 void wxGenericTreeCtrl::SetImageList(wxImageList
*imageList
)
1634 m_imageListNormal
= imageList
;
1636 if ( !m_imageListNormal
)
1639 // Calculate a m_lineHeight value from the image sizes.
1640 // May be toggle off. Then wxGenericTreeCtrl will spread when
1641 // necessary (which might look ugly).
1642 wxClientDC
dc(this);
1643 m_lineHeight
= (int)(dc
.GetCharHeight() + 4);
1644 int width
= 0, height
= 0,
1645 n
= m_imageListNormal
->GetImageCount();
1647 for (int i
= 0; i
< n
; i
++)
1649 m_imageListNormal
->GetSize(i
, width
, height
);
1650 if (height
> m_lineHeight
) m_lineHeight
= height
;
1653 if (m_lineHeight
< 40)
1654 m_lineHeight
+= 2; // at least 2 pixels
1656 m_lineHeight
+= m_lineHeight
/10; // otherwise 10% extra spacing
1659 void wxGenericTreeCtrl::SetStateImageList(wxImageList
*imageList
)
1661 m_imageListState
= imageList
;
1664 // -----------------------------------------------------------------------------
1666 // -----------------------------------------------------------------------------
1668 void wxGenericTreeCtrl::AdjustMyScrollbars()
1674 m_anchor
->GetSize( x
, y
, this );
1675 y
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1676 x
+= PIXELS_PER_UNIT
+2; // one more scrollbar unit + 2 pixels
1677 int x_pos
= GetScrollPos( wxHORIZONTAL
);
1678 int y_pos
= GetScrollPos( wxVERTICAL
);
1679 SetScrollbars( PIXELS_PER_UNIT
, PIXELS_PER_UNIT
, x
/PIXELS_PER_UNIT
, y
/PIXELS_PER_UNIT
, x_pos
, y_pos
);
1683 SetScrollbars( 0, 0, 0, 0 );
1687 int wxGenericTreeCtrl::GetLineHeight(wxGenericTreeItem
*item
) const
1689 if (GetWindowStyleFlag() & wxTR_HAS_VARIABLE_ROW_HEIGHT
)
1690 return item
->GetHeight();
1692 return m_lineHeight
;
1695 void wxGenericTreeCtrl::PaintItem(wxGenericTreeItem
*item
, wxDC
& dc
)
1697 wxTreeItemAttr
*attr
= item
->GetAttributes();
1698 if ( attr
&& attr
->HasFont() )
1699 dc
.SetFont(attr
->GetFont());
1700 else if (item
->IsBold())
1701 dc
.SetFont(m_boldFont
);
1705 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
1709 int image
= item
->GetCurrentImage();
1710 if ( image
!= NO_IMAGE
)
1712 if ( m_imageListNormal
)
1714 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
1723 int total_h
= GetLineHeight(item
);
1725 if (item
->IsSelected())
1726 dc
.SetBrush(*m_hilightBrush
);
1730 if ( attr
&& attr
->HasBackgroundColour() )
1731 colBg
= attr
->GetBackgroundColour();
1733 colBg
= m_backgroundColour
;
1734 dc
.SetBrush(wxBrush(colBg
, wxSOLID
));
1737 dc
.DrawRectangle( item
->GetX()-2, item
->GetY(), item
->GetWidth()+2, total_h
);
1739 if ( image
!= NO_IMAGE
)
1741 dc
.SetClippingRegion( item
->GetX(), item
->GetY(), image_w
-2, total_h
);
1742 m_imageListNormal
->Draw( image
, dc
,
1744 item
->GetY() +((total_h
> image_h
)?((total_h
-image_h
)/2):0),
1745 wxIMAGELIST_DRAW_TRANSPARENT
);
1746 dc
.DestroyClippingRegion();
1749 dc
.SetBackgroundMode(wxTRANSPARENT
);
1750 int extraH
= (total_h
> text_h
) ? (total_h
- text_h
)/2 : 0;
1751 dc
.DrawText( item
->GetText(),
1752 (wxCoord
)(image_w
+ item
->GetX()),
1753 (wxCoord
)(item
->GetY() + extraH
));
1755 // restore normal font
1756 dc
.SetFont( m_normalFont
);
1759 // Now y stands for the top of the item, whereas it used to stand for middle !
1760 void wxGenericTreeCtrl::PaintLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
1762 int horizX
= level
*m_indent
;
1764 item
->SetX( horizX
+m_indent
+m_spacing
);
1768 y
+=GetLineHeight(item
)/2;
1770 item
->SetCross( horizX
+m_indent
, y
);
1772 int exposed_x
= dc
.LogicalToDeviceX( 0 );
1773 int exposed_y
= dc
.LogicalToDeviceY( item
->GetY() );
1775 bool drawLines
= ((GetWindowStyle() & wxTR_NO_LINES
) == 0);
1777 if (IsExposed( exposed_x
, exposed_y
, 10000, GetLineHeight(item
) )) // 10000 = very much
1779 int startX
= horizX
;
1780 int endX
= horizX
+ (m_indent
-5);
1782 // if (!item->HasChildren()) endX += (m_indent+5);
1783 if (!item
->HasChildren()) endX
+= 20;
1786 dc
.DrawLine( startX
, y
, endX
, y
);
1788 if (item
->HasPlus())
1791 dc
.DrawLine( horizX
+(m_indent
+5), y
, horizX
+(m_indent
+15), y
);
1792 dc
.SetPen( *wxGREY_PEN
);
1793 dc
.SetBrush( *wxWHITE_BRUSH
);
1794 dc
.DrawRectangle( horizX
+(m_indent
-5), y
-4, 11, 9 );
1796 dc
.SetPen( *wxBLACK_PEN
);
1797 dc
.DrawLine( horizX
+(m_indent
-2), y
, horizX
+(m_indent
+3), y
);
1798 if (!item
->IsExpanded())
1799 dc
.DrawLine( horizX
+m_indent
, y
-2, horizX
+m_indent
, y
+3 );
1801 dc
.SetPen( m_dottedPen
);
1804 wxPen
*pen
= wxTRANSPARENT_PEN
;
1807 if ( item
->IsSelected() )
1809 colText
= wxSystemSettings::GetSystemColour( wxSYS_COLOUR_HIGHLIGHTTEXT
);
1817 wxTreeItemAttr
*attr
= item
->GetAttributes();
1818 if ( attr
&& attr
->HasTextColour() )
1819 colText
= attr
->GetTextColour();
1825 dc
.SetTextForeground(colText
);
1829 PaintItem(item
, dc
);
1831 // restore DC objects
1832 dc
.SetBrush( *wxWHITE_BRUSH
);
1833 dc
.SetPen( m_dottedPen
);
1834 dc
.SetTextForeground( *wxBLACK
);
1837 y
= oldY
+GetLineHeight(item
);
1839 if (item
->IsExpanded())
1841 oldY
+=GetLineHeight(item
)/2;
1844 wxArrayGenericTreeItems
& children
= item
->GetChildren();
1845 size_t n
, count
= children
.Count();
1846 for ( n
= 0; n
< count
; ++n
)
1849 PaintLevel( children
[n
], dc
, level
+1, y
);
1852 // it may happen that the item is expanded but has no items (when you
1853 // delete all its children for example) - don't draw the vertical line
1857 semiOldY
+=GetLineHeight(children
[--n
])/2;
1859 dc
.DrawLine( horizX
+m_indent
, oldY
+5, horizX
+m_indent
, semiOldY
);
1864 void wxGenericTreeCtrl::DrawDropEffect(wxGenericTreeItem
*item
)
1868 if ( item
->HasPlus() )
1870 // it's a folder, indicate it by a border
1875 // draw a line under the drop target because the item will be
1877 DrawLine(item
, TRUE
/* below */);
1880 SetCursor(wxCURSOR_BULLSEYE
);
1885 SetCursor(wxCURSOR_NO_ENTRY
);
1889 void wxGenericTreeCtrl::DrawBorder(const wxTreeItemId
&item
)
1891 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
1893 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1895 wxClientDC
dc(this);
1897 dc
.SetLogicalFunction(wxINVERT
);
1898 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1900 int w
= i
->GetWidth() + 2;
1901 int h
= GetLineHeight(i
) + 2;
1903 dc
.DrawRectangle( i
->GetX() - 1, i
->GetY() - 1, w
, h
);
1906 void wxGenericTreeCtrl::DrawLine(const wxTreeItemId
&item
, bool below
)
1908 wxCHECK_RET( item
.IsOk(), _T("invalid item in wxGenericTreeCtrl::DrawLine") );
1910 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
1912 wxClientDC
dc(this);
1914 dc
.SetLogicalFunction(wxINVERT
);
1920 y
+= GetLineHeight(i
) - 1;
1923 dc
.DrawLine( x
, y
, x
+ i
->GetWidth(), y
);
1926 // -----------------------------------------------------------------------------
1927 // wxWindows callbacks
1928 // -----------------------------------------------------------------------------
1930 void wxGenericTreeCtrl::OnPaint( wxPaintEvent
&WXUNUSED(event
) )
1938 dc
.SetFont( m_normalFont
);
1939 dc
.SetPen( m_dottedPen
);
1941 // this is now done dynamically
1942 //if(GetImageList() == NULL)
1943 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
1946 PaintLevel( m_anchor
, dc
, 0, y
);
1949 void wxGenericTreeCtrl::OnSetFocus( wxFocusEvent
&WXUNUSED(event
) )
1953 if (m_current
) RefreshLine( m_current
);
1956 void wxGenericTreeCtrl::OnKillFocus( wxFocusEvent
&WXUNUSED(event
) )
1960 if (m_current
) RefreshLine( m_current
);
1963 void wxGenericTreeCtrl::OnChar( wxKeyEvent
&event
)
1965 wxTreeEvent
te( wxEVT_COMMAND_TREE_KEY_DOWN
, GetId() );
1966 te
.m_code
= (int)event
.KeyCode();
1967 te
.SetEventObject( this );
1968 GetEventHandler()->ProcessEvent( te
);
1970 if ( (m_current
== 0) || (m_key_current
== 0) )
1976 // how should the selection work for this event?
1977 bool is_multiple
, extended_select
, unselect_others
;
1978 EventFlagsToSelType(GetWindowStyleFlag(),
1980 event
.ControlDown(),
1981 is_multiple
, extended_select
, unselect_others
);
1985 // * : Expand all/Collapse all
1986 // ' ' | return : activate
1987 // up : go up (not last children!)
1989 // left : go to parent
1990 // right : open if parent and go next
1991 // home : go to root
1992 // end : go to last item without opening parents
1993 switch (event
.KeyCode())
1997 if (m_current
->HasPlus() && !IsExpanded(m_current
))
2005 if ( !IsExpanded(m_current
) )
2008 ExpandAll(m_current
);
2011 //else: fall through to Collapse() it
2015 if (IsExpanded(m_current
))
2017 Collapse(m_current
);
2024 wxTreeEvent
event( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2025 event
.m_item
= m_current
;
2027 event
.SetEventObject( this );
2028 GetEventHandler()->ProcessEvent( event
);
2032 // up goes to the previous sibling or to the last of its children if
2036 wxTreeItemId prev
= GetPrevSibling( m_key_current
);
2039 prev
= GetParent( m_key_current
);
2043 wxTreeItemId current
= m_key_current
;
2044 if (current
== GetFirstChild( prev
, cockie
))
2046 // otherwise we return to where we came from
2047 SelectItem( prev
, unselect_others
, extended_select
);
2048 m_key_current
= (wxGenericTreeItem
*) prev
.m_pItem
;
2049 EnsureVisible( prev
);
2056 while ( IsExpanded(prev
) && HasChildren(prev
) )
2058 wxTreeItemId child
= GetLastChild(prev
);
2065 SelectItem( prev
, unselect_others
, extended_select
);
2066 m_key_current
=(wxGenericTreeItem
*) prev
.m_pItem
;
2067 EnsureVisible( prev
);
2072 // left arrow goes to the parent
2075 wxTreeItemId prev
= GetParent( m_current
);
2078 EnsureVisible( prev
);
2079 SelectItem( prev
, unselect_others
, extended_select
);
2085 // this works the same as the down arrow except that we also expand the
2086 // item if it wasn't expanded yet
2092 if (IsExpanded(m_key_current
) && HasChildren(m_key_current
))
2095 wxTreeItemId child
= GetFirstChild( m_key_current
, cookie
);
2096 SelectItem( child
, unselect_others
, extended_select
);
2097 m_key_current
=(wxGenericTreeItem
*) child
.m_pItem
;
2098 EnsureVisible( child
);
2102 wxTreeItemId next
= GetNextSibling( m_key_current
);
2105 wxTreeItemId current
= m_key_current
;
2106 while (current
&& !next
)
2108 current
= GetParent( current
);
2109 if (current
) next
= GetNextSibling( current
);
2114 SelectItem( next
, unselect_others
, extended_select
);
2115 m_key_current
=(wxGenericTreeItem
*) next
.m_pItem
;
2116 EnsureVisible( next
);
2122 // <End> selects the last visible tree item
2125 wxTreeItemId last
= GetRootItem();
2127 while ( last
.IsOk() && IsExpanded(last
) )
2129 wxTreeItemId lastChild
= GetLastChild(last
);
2131 // it may happen if the item was expanded but then all of
2132 // its children have been deleted - so IsExpanded() returned
2133 // TRUE, but GetLastChild() returned invalid item
2142 EnsureVisible( last
);
2143 SelectItem( last
, unselect_others
, extended_select
);
2148 // <Home> selects the root item
2151 wxTreeItemId prev
= GetRootItem();
2154 EnsureVisible( prev
);
2155 SelectItem( prev
, unselect_others
, extended_select
);
2165 wxTreeItemId
wxGenericTreeCtrl::HitTest(const wxPoint
& point
, int& flags
)
2167 // We have to call this here because the label in
2168 // question might just have been added and no screen
2169 // update taken place.
2170 if (m_dirty
) wxYield();
2172 wxClientDC
dc(this);
2174 wxCoord x
= dc
.DeviceToLogicalX( point
.x
);
2175 wxCoord y
= dc
.DeviceToLogicalY( point
.y
);
2180 if (point
.x
<0) flags
|=wxTREE_HITTEST_TOLEFT
;
2181 if (point
.x
>w
) flags
|=wxTREE_HITTEST_TORIGHT
;
2182 if (point
.y
<0) flags
|=wxTREE_HITTEST_ABOVE
;
2183 if (point
.y
>h
) flags
|=wxTREE_HITTEST_BELOW
;
2185 return m_anchor
->HitTest( wxPoint(x
, y
), this, flags
);
2188 // get the bounding rectangle of the item (or of its label only)
2189 bool wxGenericTreeCtrl::GetBoundingRect(const wxTreeItemId
& item
,
2191 bool textOnly
) const
2193 wxCHECK_MSG( item
.IsOk(), FALSE
, _T("invalid item in wxGenericTreeCtrl::GetBoundingRect") );
2195 wxGenericTreeItem
*i
= (wxGenericTreeItem
*) item
.m_pItem
;
2198 GetViewStart(& startX
, & startY
);
2200 rect
.x
= i
->GetX() - startX
*PIXELS_PER_UNIT
;
2201 rect
.y
= i
->GetY() - startY
*PIXELS_PER_UNIT
;
2202 rect
.width
= i
->GetWidth();
2203 //rect.height = i->GetHeight();
2204 rect
.height
= GetLineHeight(i
);
2211 void wxGenericTreeCtrl::Edit( const wxTreeItemId
& item
)
2213 if (!item
.IsOk()) return;
2215 m_currentEdit
= (wxGenericTreeItem
*) item
.m_pItem
;
2217 wxTreeEvent
te( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, GetId() );
2218 te
.m_item
= m_currentEdit
;
2219 te
.SetEventObject( this );
2220 GetEventHandler()->ProcessEvent( te
);
2222 if (!te
.IsAllowed()) return;
2224 // We have to call this here because the label in
2225 // question might just have been added and no screen
2226 // update taken place.
2227 if (m_dirty
) wxYield();
2229 wxString s
= m_currentEdit
->GetText();
2230 int x
= m_currentEdit
->GetX();
2231 int y
= m_currentEdit
->GetY();
2232 int w
= m_currentEdit
->GetWidth();
2233 int h
= m_currentEdit
->GetHeight();
2238 int image
= m_currentEdit
->GetCurrentImage();
2239 if ( image
!= NO_IMAGE
)
2241 if ( m_imageListNormal
)
2243 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2248 wxFAIL_MSG(_T("you must create an image list to use images!"));
2252 w
-= image_w
+ 4; // I don't know why +4 is needed
2254 wxClientDC
dc(this);
2256 x
= dc
.LogicalToDeviceX( x
);
2257 y
= dc
.LogicalToDeviceY( y
);
2259 wxTreeTextCtrl
*text
= new wxTreeTextCtrl(
2260 this, -1, &m_renameAccept
, &m_renameRes
, this, s
, wxPoint(x
-4,y
-4), wxSize(w
+11,h
+8) );
2264 void wxGenericTreeCtrl::OnRenameTimer()
2269 void wxGenericTreeCtrl::OnRenameAccept()
2271 wxTreeEvent
le( wxEVT_COMMAND_TREE_END_LABEL_EDIT
, GetId() );
2272 le
.m_item
= m_currentEdit
;
2273 le
.SetEventObject( this );
2274 le
.m_label
= m_renameRes
;
2275 GetEventHandler()->ProcessEvent( le
);
2277 if (!le
.IsAllowed()) return;
2279 SetItemText( m_currentEdit
, m_renameRes
);
2282 void wxGenericTreeCtrl::OnMouse( wxMouseEvent
&event
)
2284 if ( !m_anchor
) return;
2286 // we process left mouse up event (enables in-place edit), right down
2287 // (pass to the user code), left dbl click (activate item) and
2288 // dragging/moving events for items drag-and-drop
2289 if ( !(event
.LeftDown() ||
2291 event
.RightDown() ||
2292 event
.LeftDClick() ||
2294 ((event
.Moving() || event
.RightUp()) && m_isDragging
)) )
2301 wxClientDC
dc(this);
2303 wxCoord x
= dc
.DeviceToLogicalX( event
.GetX() );
2304 wxCoord y
= dc
.DeviceToLogicalY( event
.GetY() );
2307 wxGenericTreeItem
*item
= m_anchor
->HitTest( wxPoint(x
,y
), this, flags
);
2309 if ( event
.Dragging() && !m_isDragging
)
2311 if (m_dragCount
== 0)
2312 m_dragStart
= wxPoint(x
,y
);
2316 if (m_dragCount
!= 3)
2318 // wait until user drags a bit further...
2322 wxEventType command
= event
.RightIsDown()
2323 ? wxEVT_COMMAND_TREE_BEGIN_RDRAG
2324 : wxEVT_COMMAND_TREE_BEGIN_DRAG
;
2326 wxTreeEvent
nevent( command
, GetId() );
2327 nevent
.m_item
= m_current
;
2328 nevent
.SetEventObject(this);
2330 // by default the dragging is not supported, the user code must
2331 // explicitly allow the event for it to take place
2334 if ( GetEventHandler()->ProcessEvent(nevent
) && nevent
.IsAllowed() )
2336 // we're going to drag this item
2337 m_isDragging
= TRUE
;
2339 // remember the old cursor because we will change it while
2341 m_oldCursor
= m_cursor
;
2343 // in a single selection control, hide the selection temporarily
2344 if ( !(GetWindowStyleFlag() & wxTR_MULTIPLE
) )
2346 m_oldSelection
= (wxGenericTreeItem
*) GetSelection().m_pItem
;
2348 if ( m_oldSelection
)
2350 m_oldSelection
->SetHilight(FALSE
);
2351 RefreshLine(m_oldSelection
);
2358 else if ( event
.Moving() )
2360 if ( item
!= m_dropTarget
)
2362 // unhighlight the previous drop target
2363 DrawDropEffect(m_dropTarget
);
2365 m_dropTarget
= item
;
2367 // highlight the current drop target if any
2368 DrawDropEffect(m_dropTarget
);
2373 else if ( (event
.LeftUp() || event
.RightUp()) && m_isDragging
)
2375 // erase the highlighting
2376 DrawDropEffect(m_dropTarget
);
2378 // generate the drag end event
2379 wxTreeEvent
event(wxEVT_COMMAND_TREE_END_DRAG
, GetId());
2381 event
.m_item
= item
;
2382 event
.m_pointDrag
= wxPoint(x
, y
);
2383 event
.SetEventObject(this);
2385 (void)GetEventHandler()->ProcessEvent(event
);
2387 m_isDragging
= FALSE
;
2388 m_dropTarget
= (wxGenericTreeItem
*)NULL
;
2390 if ( m_oldSelection
)
2392 m_oldSelection
->SetHilight(TRUE
);
2393 RefreshLine(m_oldSelection
);
2394 m_oldSelection
= (wxGenericTreeItem
*)NULL
;
2399 SetCursor(m_oldCursor
);
2405 // here we process only the messages which happen on tree items
2409 if (item
== NULL
) return; /* we hit the blank area */
2411 if ( event
.RightDown() )
2413 wxTreeEvent
nevent(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, GetId());
2414 nevent
.m_item
= item
;
2416 nevent
.SetEventObject(this);
2417 GetEventHandler()->ProcessEvent(nevent
);
2419 else if ( event
.LeftUp() && m_lastOnSame
)
2421 if ( (item
== m_current
) &&
2422 (flags
& wxTREE_HITTEST_ONITEMLABEL
) &&
2423 HasFlag(wxTR_EDIT_LABELS
) )
2425 m_renameTimer
->Start( 100, TRUE
);
2428 m_lastOnSame
= FALSE
;
2432 if ( event
.LeftDown() )
2434 m_lastOnSame
= item
== m_current
;
2437 // how should the selection work for this event?
2438 bool is_multiple
, extended_select
, unselect_others
;
2439 EventFlagsToSelType(GetWindowStyleFlag(),
2441 event
.ControlDown(),
2442 is_multiple
, extended_select
, unselect_others
);
2444 if ( (flags
& wxTREE_HITTEST_ONITEMBUTTON
) && event
.LeftDown() )
2451 SelectItem(item
, unselect_others
, extended_select
);
2453 if ( event
.LeftDClick() )
2455 // double clicking should not start editing the item label
2456 m_renameTimer
->Stop();
2457 m_lastOnSame
= FALSE
;
2459 wxTreeEvent
nevent( wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, GetId() );
2460 nevent
.m_item
= item
;
2462 nevent
.SetEventObject( this );
2463 GetEventHandler()->ProcessEvent( nevent
);
2469 void wxGenericTreeCtrl::OnIdle( wxIdleEvent
&WXUNUSED(event
) )
2471 /* after all changes have been done to the tree control,
2472 * we actually redraw the tree when everything is over */
2479 CalculatePositions();
2481 AdjustMyScrollbars();
2484 void wxGenericTreeCtrl::CalculateSize( wxGenericTreeItem
*item
, wxDC
&dc
)
2490 dc
.SetFont(m_boldFont
);
2492 dc
.GetTextExtent( item
->GetText(), &text_w
, &text_h
);
2495 // restore normal font
2496 dc
.SetFont( m_normalFont
);
2500 int image
= item
->GetCurrentImage();
2501 if ( image
!= NO_IMAGE
)
2503 if ( m_imageListNormal
)
2505 m_imageListNormal
->GetSize( image
, image_w
, image_h
);
2510 int total_h
= (image_h
> text_h
) ? image_h
: text_h
;
2513 total_h
+= 2; // at least 2 pixels
2515 total_h
+= total_h
/10; // otherwise 10% extra spacing
2517 item
->SetHeight(total_h
);
2518 if (total_h
>m_lineHeight
)
2519 m_lineHeight
=total_h
;
2521 item
->SetWidth(image_w
+text_w
+2);
2524 // -----------------------------------------------------------------------------
2525 // for developper : y is now the top of the level
2526 // not the middle of it !
2527 void wxGenericTreeCtrl::CalculateLevel( wxGenericTreeItem
*item
, wxDC
&dc
, int level
, int &y
)
2529 int horizX
= level
*m_indent
;
2531 CalculateSize( item
, dc
);
2534 item
->SetX( horizX
+m_indent
+m_spacing
);
2536 y
+=GetLineHeight(item
);
2538 if ( !item
->IsExpanded() )
2540 // we dont need to calculate collapsed branches
2544 wxArrayGenericTreeItems
& children
= item
->GetChildren();
2545 size_t n
, count
= children
.Count();
2546 for (n
= 0; n
< count
; ++n
)
2547 CalculateLevel( children
[n
], dc
, level
+1, y
); // recurse
2550 void wxGenericTreeCtrl::CalculatePositions()
2552 if ( !m_anchor
) return;
2554 wxClientDC
dc(this);
2557 dc
.SetFont( m_normalFont
);
2559 dc
.SetPen( m_dottedPen
);
2560 //if(GetImageList() == NULL)
2561 // m_lineHeight = (int)(dc.GetCharHeight() + 4);
2564 CalculateLevel( m_anchor
, dc
, 0, y
); // start recursion
2567 void wxGenericTreeCtrl::RefreshSubtree(wxGenericTreeItem
*item
)
2569 if (m_dirty
) return;
2571 wxClientDC
dc(this);
2576 GetClientSize( &cw
, &ch
);
2579 rect
.x
= dc
.LogicalToDeviceX( 0 );
2581 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2584 Refresh( TRUE
, &rect
);
2586 AdjustMyScrollbars();
2589 void wxGenericTreeCtrl::RefreshLine( wxGenericTreeItem
*item
)
2591 if (m_dirty
) return;
2593 wxClientDC
dc(this);
2598 GetClientSize( &cw
, &ch
);
2601 rect
.x
= dc
.LogicalToDeviceX( 0 );
2602 rect
.y
= dc
.LogicalToDeviceY( item
->GetY() );
2604 rect
.height
= GetLineHeight(item
); //dc.GetCharHeight() + 6;
2606 Refresh( TRUE
, &rect
);