1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTreeCtrl base classes and types
4 // Author: Julian Smart et al
8 // Copyright: (c) 1997,1998 Robert Roebling
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_TREEBASE_H_
13 #define _WX_TREEBASE_H_
16 #pragma interface "treebase.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
25 #include "wx/window.h" // for wxClientData
28 // ----------------------------------------------------------------------------
29 // wxTreeItemId identifies an element of the tree. In this implementation, it's
30 // just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
31 // data structure in the generic version. It's opaque for the application and
32 // the only method which can be used by user code is IsOk().
33 // ----------------------------------------------------------------------------
35 // Using this typedef removes an ambiguity when calling Remove()
36 typedef unsigned long wxTreeItemIdValue
;
38 class WXDLLEXPORT wxTreeItemId
42 // 0 is invalid value for HTREEITEM
43 wxTreeItemId() { m_pItem
= 0; }
45 // this one is used in the generic version
46 wxTreeItemId(void *pItem
) { m_pItem
= (long) pItem
; }
48 // and this one under MSW
49 wxTreeItemId(long lItem
) { m_pItem
= lItem
; }
51 // default copy ctor/assignment operator are ok for us
54 // is this a valid tree item?
55 bool IsOk() const { return m_pItem
!= 0; }
57 // deprecated: only for compatibility
58 operator wxTreeItemIdValue() const { return m_pItem
; }
60 wxTreeItemIdValue m_pItem
;
63 // ----------------------------------------------------------------------------
64 // wxTreeItemData is some (arbitrary) user class associated with some item. The
65 // main advantage of having this class (compared to old untyped interface) is
66 // that wxTreeItemData's are destroyed automatically by the tree and, as this
67 // class has virtual dtor, it means that the memory will be automatically
68 // freed. OTOH, we don't just use wxObject instead of wxTreeItemData because
69 // the size of this class is critical: in any real application, each tree leaf
70 // will have wxTreeItemData associated with it and number of leaves may be
73 // Because the objects of this class are deleted by the tree, they should
74 // always be allocated on the heap!
75 // ----------------------------------------------------------------------------
77 class WXDLLEXPORT wxTreeItemData
: public wxClientData
79 friend class WXDLLEXPORT wxTreeCtrl
;
80 friend class WXDLLEXPORT wxGenericTreeCtrl
;
82 // creation/destruction
83 // --------------------
87 // default copy ctor/assignment operator are ok
89 // accessor: get the item associated with us
90 const wxTreeItemId
& GetId() const { return m_pItem
; }
91 void SetId(const wxTreeItemId
& id
) { m_pItem
= id
; }
97 WX_DEFINE_EXPORTED_ARRAY(wxTreeItemId
, wxArrayTreeItemIds
);
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 // enum for different images associated with a treectrl item
106 wxTreeItemIcon_Normal
, // not selected, not expanded
107 wxTreeItemIcon_Selected
, // selected, not expanded
108 wxTreeItemIcon_Expanded
, // not selected, expanded
109 wxTreeItemIcon_SelectedExpanded
, // selected, expanded
113 enum wxButtonImage
// effectively the same as wxTreeItemIcon
115 wxCLOSED_BUTTON
= 0, // closed, not selected
116 wxCLOSED_BUTTON_SELECTED
, // closed, selected
117 wxOPEN_BUTTON
, // open, not selected
118 wxOPEN_BUTTON_SELECTED
// open, selected
124 // TODO: maybe renumber these?
125 #define wxTR_NO_BUTTONS 0x0000 // for convenience
126 #define wxTR_HAS_BUTTONS 0x0004 // generates a +/- button
127 #define wxTR_TWIST_BUTTONS 0x0008 // twister buttons
128 #define wxTR_NO_LINES 0x0100 // don't generate level connectors
129 #define wxTR_MAC_BUTTONS wxTR_TWIST_BUTTONS // backward compatibility
131 #define wxTR_SINGLE 0x0000 // for convenience
132 #define wxTR_MULTIPLE 0x0020 // can select multiple items
133 #define wxTR_EXTENDED 0x0040 // TODO: allow extended selection
135 #define wxTR_EDIT_LABELS 0x0200 // can edit item labels
136 #define wxTR_LINES_AT_ROOT 0x0010 // specific to wxMSW
137 #define wxTR_HIDE_ROOT 0x0800 // don't display root node
138 #define wxTR_ROW_LINES 0x0400 // put border around items
139 #define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080 // what it says
141 // TODO: different default styles for wxGTK, wxMotif, whatever?
143 #define wxTR_DEFAULT_STYLE (wxTR_TWIST_BUTTONS|wxTR_NO_LINES|wxTR_ROW_LINES)
145 #define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS|wxTR_LINES_AT_ROOT)
148 // values for the `flags' parameter of wxTreeCtrl::HitTest() which determine
149 // where exactly the specified point is situated:
151 static const int wxTREE_HITTEST_ABOVE
= 0x0001;
152 static const int wxTREE_HITTEST_BELOW
= 0x0002;
153 static const int wxTREE_HITTEST_NOWHERE
= 0x0004;
154 // on the button associated with an item.
155 static const int wxTREE_HITTEST_ONITEMBUTTON
= 0x0008;
156 // on the bitmap associated with an item.
157 static const int wxTREE_HITTEST_ONITEMICON
= 0x0010;
158 // on the indent associated with an item.
159 static const int wxTREE_HITTEST_ONITEMINDENT
= 0x0020;
160 // on the label (string) associated with an item.
161 static const int wxTREE_HITTEST_ONITEMLABEL
= 0x0040;
162 // on the right of the label associated with an item.
163 static const int wxTREE_HITTEST_ONITEMRIGHT
= 0x0080;
164 // on the label (string) associated with an item.
165 static const int wxTREE_HITTEST_ONITEMSTATEICON
= 0x0100;
166 // on the left of the wxTreeCtrl.
167 static const int wxTREE_HITTEST_TOLEFT
= 0x0200;
168 // on the right of the wxTreeCtrl.
169 static const int wxTREE_HITTEST_TORIGHT
= 0x0400;
170 // on the upper part (first half) of the item.
171 static const int wxTREE_HITTEST_ONITEMUPPERPART
= 0x0800;
172 // on the lower part (second half) of the item.
173 static const int wxTREE_HITTEST_ONITEMLOWERPART
= 0x1000;
175 // anywhere on the item
176 static const int wxTREE_HITTEST_ONITEM
= wxTREE_HITTEST_ONITEMICON
|
177 wxTREE_HITTEST_ONITEMLABEL
;
179 // tree ctrl default name
180 WXDLLEXPORT_DATA(extern const wxChar
*) wxTreeCtrlNameStr
;
182 // ----------------------------------------------------------------------------
183 // wxTreeItemAttr: a structure containing the visual attributes of an item
184 // ----------------------------------------------------------------------------
186 class WXDLLEXPORT wxTreeItemAttr
191 wxTreeItemAttr(const wxColour
& colText
,
192 const wxColour
& colBack
,
194 : m_colText(colText
), m_colBack(colBack
), m_font(font
) { }
197 void SetTextColour(const wxColour
& colText
) { m_colText
= colText
; }
198 void SetBackgroundColour(const wxColour
& colBack
) { m_colBack
= colBack
; }
199 void SetFont(const wxFont
& font
) { m_font
= font
; }
202 bool HasTextColour() const { return m_colText
.Ok(); }
203 bool HasBackgroundColour() const { return m_colBack
.Ok(); }
204 bool HasFont() const { return m_font
.Ok(); }
206 const wxColour
& GetTextColour() const { return m_colText
; }
207 const wxColour
& GetBackgroundColour() const { return m_colBack
; }
208 const wxFont
& GetFont() const { return m_font
; }
216 // ----------------------------------------------------------------------------
217 // wxTreeEvent is a special class for all events associated with tree controls
219 // NB: note that not all accessors make sense for all events, see the event
220 // descriptions below
221 // ----------------------------------------------------------------------------
223 class WXDLLEXPORT wxTreeEvent
: public wxNotifyEvent
226 wxTreeEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0);
229 // get the item on which the operation was performed or the newly
230 // selected item for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events
231 wxTreeItemId
GetItem() const { return m_item
; }
233 // for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events, get the previously
235 wxTreeItemId
GetOldItem() const { return m_itemOld
; }
237 // the point where the mouse was when the drag operation started (for
238 // wxEVT_COMMAND_TREE_BEGIN_(R)DRAG events only) or click position
239 wxPoint
GetPoint() const { return m_pointDrag
; }
241 // keyboard data (for wxEVT_COMMAND_TREE_KEY_DOWN only)
242 const wxKeyEvent
& GetKeyEvent() const { return m_evtKey
; }
243 int GetCode() const { return m_evtKey
.GetKeyCode(); }
245 // label (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
246 const wxString
& GetLabel() const { return m_label
; }
249 // not all of the members are used (or initialized) for all events
256 friend class WXDLLEXPORT wxTreeCtrl
;
257 friend class WXDLLEXPORT wxGenericTreeCtrl
;
259 DECLARE_DYNAMIC_CLASS(wxTreeEvent
);
262 typedef void (wxEvtHandler::*wxTreeEventFunction
)(wxTreeEvent
&);
264 // ----------------------------------------------------------------------------
265 // tree control events and macros for handling them
266 // ----------------------------------------------------------------------------
268 BEGIN_DECLARE_EVENT_TYPES()
269 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_DRAG
, 600)
270 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_RDRAG
, 601)
271 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT
, 602)
272 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_LABEL_EDIT
, 603)
273 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_DELETE_ITEM
, 604)
274 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_GET_INFO
, 605)
275 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SET_INFO
, 606)
276 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDED
, 607)
277 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDING
, 608)
278 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSED
, 609)
279 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSING
, 610)
280 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGED
, 611)
281 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGING
, 612)
282 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_KEY_DOWN
, 613)
283 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_ACTIVATED
, 614)
284 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK
, 615)
285 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK
, 616)
286 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_DRAG
, 617)
287 END_DECLARE_EVENT_TYPES()
289 // GetItem() returns the item being dragged, GetPoint() the mouse coords
291 // if you call event.Allow(), the drag operation will start and a
292 // EVT_TREE_END_DRAG event will be sent when the drag is over.
293 #define EVT_TREE_BEGIN_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
294 #define EVT_TREE_BEGIN_RDRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_BEGIN_RDRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
296 // GetItem() is the item on which the drop occured (if any) and GetPoint() the
297 // current mouse coords
298 #define EVT_TREE_END_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_END_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
300 // GetItem() returns the itme whose label is being edited, GetLabel() returns
301 // the current item label for BEGIN and the would be new one for END.
303 // Vetoing BEGIN event means that label editing won't happen at all,
304 // vetoing END means that the new value is discarded and the old one kept
305 #define EVT_TREE_BEGIN_LABEL_EDIT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
306 #define EVT_TREE_END_LABEL_EDIT(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_END_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
308 // provide/update information about GetItem() item
309 #define EVT_TREE_GET_INFO(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_GET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
310 #define EVT_TREE_SET_INFO(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_SET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
312 // GetItem() is the item being expanded/collapsed, the "ING" versions can use
313 #define EVT_TREE_ITEM_EXPANDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_EXPANDED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
314 #define EVT_TREE_ITEM_EXPANDING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_EXPANDING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
315 #define EVT_TREE_ITEM_COLLAPSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_COLLAPSED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
316 #define EVT_TREE_ITEM_COLLAPSING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_COLLAPSING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
318 // GetOldItem() is the item which had the selection previously, GetItem() is
319 // the item which acquires selection
320 #define EVT_TREE_SEL_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_SEL_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
321 #define EVT_TREE_SEL_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_SEL_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
323 // GetCode() returns the key code
324 // NB: this is the only message for which GetItem() is invalid (you may get the
325 // item from GetSelection())
326 #define EVT_TREE_KEY_DOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_KEY_DOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
328 // GetItem() returns the item being deleted, the associated data (if any) will
329 // be deleted just after the return of this event handler (if any)
330 #define EVT_TREE_DELETE_ITEM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_DELETE_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
332 // GetItem() returns the item that was activated (double click, enter, space)
333 #define EVT_TREE_ITEM_ACTIVATED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
335 // GetItem() returns the item that was clicked on
336 #define EVT_TREE_ITEM_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
337 #define EVT_TREE_ITEM_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
339 #endif // wxUSE_TREECTRL
341 #endif // _WX_TREEBASE_H_