1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Base wxTreeCtrl classes
4 // Author: Julian Smart
8 // Copyright: (c) 1998 Robert Roebling, Julian Smart et al
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"
30 #include "wx/imaglist.h"
32 // ----------------------------------------------------------------------------
34 // ----------------------------------------------------------------------------
36 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_DRAG
)
37 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_RDRAG
)
38 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
)
39 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_LABEL_EDIT
)
40 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_DELETE_ITEM
)
41 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_GET_INFO
)
42 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_SET_INFO
)
43 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDED
)
44 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDING
)
45 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
)
46 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
)
47 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGED
)
48 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGING
)
49 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_KEY_DOWN
)
50 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
)
51 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
)
52 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
)
53 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_DRAG
)
54 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK
)
55 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP
)
56 DEFINE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_MENU
)
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 IMPLEMENT_ABSTRACT_CLASS(wxTreeEvent
, wxNotifyEvent
)
65 wxTreeEvent::wxTreeEvent(wxEventType commandType
,
67 const wxTreeItemId
& item
)
68 : wxNotifyEvent(commandType
, tree
->GetId()),
71 m_editCancelled
= false;
76 SetClientObject(tree
->GetItemData(item
));
79 wxTreeEvent::wxTreeEvent(wxEventType commandType
, int id
)
80 : wxNotifyEvent(commandType
, id
)
83 m_editCancelled
= false;
86 wxTreeEvent::wxTreeEvent(const wxTreeEvent
& event
)
87 : wxNotifyEvent(event
)
89 m_evtKey
= event
.m_evtKey
;
90 m_item
= event
.m_item
;
91 m_itemOld
= event
.m_itemOld
;
92 m_pointDrag
= event
.m_pointDrag
;
93 m_label
= event
.m_label
;
94 m_editCancelled
= event
.m_editCancelled
;
97 // ----------------------------------------------------------------------------
99 // ----------------------------------------------------------------------------
101 wxTreeCtrlBase::~wxTreeCtrlBase()
103 if (m_ownsImageListNormal
)
104 delete m_imageListNormal
;
105 if (m_ownsImageListState
)
106 delete m_imageListState
;
109 void wxTreeCtrlBase::SetItemState(const wxTreeItemId
& item
, int state
)
111 if ( state
== wxTREE_ITEMSTATE_NEXT
)
113 int current
= GetItemState(item
);
114 if ( current
== wxTREE_ITEMSTATE_NONE
)
117 if ( m_imageListState
&& state
>= m_imageListState
->GetImageCount() )
120 else if ( state
== wxTREE_ITEMSTATE_PREV
)
122 int current
= GetItemState(item
);
123 if ( current
== wxTREE_ITEMSTATE_NONE
)
127 state
= m_imageListState
? m_imageListState
->GetImageCount() - 1 : 0;
129 // else: wxTREE_ITEMSTATE_NONE depending on platform
131 DoSetItemState(item
, state
);
135 wxGetBestTreeSize(const wxTreeCtrlBase
* treeCtrl
, wxTreeItemId id
, wxSize
& size
)
139 if ( treeCtrl
->GetBoundingRect(id
, rect
, true /* just the item */) )
141 // Translate to logical position so we get the full extent
142 #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
143 rect
.x
+= treeCtrl
->GetScrollPos(wxHORIZONTAL
);
144 rect
.y
+= treeCtrl
->GetScrollPos(wxVERTICAL
);
147 size
.IncTo(wxSize(rect
.GetRight(), rect
.GetBottom()));
150 wxTreeItemIdValue cookie
;
151 for ( wxTreeItemId item
= treeCtrl
->GetFirstChild(id
, cookie
);
153 item
= treeCtrl
->GetNextChild(id
, cookie
) )
155 wxGetBestTreeSize(treeCtrl
, item
, size
);
159 wxSize
wxTreeCtrlBase::DoGetBestSize() const
163 // this doesn't really compute the total bounding rectangle of all items
164 // but a not too bad guess of it which has the advantage of not having to
165 // examine all (potentially hundreds or thousands) items in the control
167 if (GetQuickBestSize())
169 for ( wxTreeItemId item
= GetRootItem();
171 item
= GetLastChild(item
) )
175 // last parameter is "true" to get only the dimensions of the text
176 // label, we don't want to get the entire item width as it's determined
177 // by the current size
178 if ( GetBoundingRect(item
, rect
, true) )
180 if ( size
.x
< rect
.x
+ rect
.width
)
181 size
.x
= rect
.x
+ rect
.width
;
182 if ( size
.y
< rect
.y
+ rect
.height
)
183 size
.y
= rect
.y
+ rect
.height
;
187 else // use precise, if potentially slow, size computation method
189 // iterate over all items recursively
190 wxTreeItemId idRoot
= GetRootItem();
192 wxGetBestTreeSize(this, idRoot
, size
);
195 // need some minimal size even for empty tree
196 if ( !size
.x
|| !size
.y
)
197 size
= wxControl::DoGetBestSize();
201 size
+= GetWindowBorderSize();
209 void wxTreeCtrlBase::ExpandAll()
214 ExpandAllChildren(GetRootItem());
217 void wxTreeCtrlBase::ExpandAllChildren(const wxTreeItemId
& item
)
220 // expand this item first, this might result in its children being added on
222 if ( item
!= GetRootItem() || !HasFlag(wxTR_HIDE_ROOT
) )
224 //else: expanding hidden root item is unsupported and unnecessary
226 // then (recursively) expand all the children
227 wxTreeItemIdValue cookie
;
228 for ( wxTreeItemId idCurr
= GetFirstChild(item
, cookie
);
230 idCurr
= GetNextChild(item
, cookie
) )
232 ExpandAllChildren(idCurr
);
237 void wxTreeCtrlBase::CollapseAll()
242 CollapseAllChildren(GetRootItem());
245 void wxTreeCtrlBase::CollapseAllChildren(const wxTreeItemId
& item
)
248 // first (recursively) collapse all the children
249 wxTreeItemIdValue cookie
;
250 for ( wxTreeItemId idCurr
= GetFirstChild(item
, cookie
);
252 idCurr
= GetNextChild(item
, cookie
) )
254 CollapseAllChildren(idCurr
);
257 // then collapse this element too
262 bool wxTreeCtrlBase::IsEmpty() const
264 return !GetRootItem().IsOk();
267 #endif // wxUSE_TREECTRL