]> git.saurik.com Git - wxWidgets.git/blame - include/wx/treebase.h
Use wxRendererNative::DrawTitleBarBitmap() for info bar close button.
[wxWidgets.git] / include / wx / treebase.h
CommitLineData
484523cf 1/////////////////////////////////////////////////////////////////////////////
40ff126a 2// Name: wx/treebase.h
484523cf
JS
3// Purpose: wxTreeCtrl base classes and types
4// Author: Julian Smart et al
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) 1997,1998 Robert Roebling
65571936 9// Licence: wxWindows licence
484523cf
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_TREEBASE_H_
13#define _WX_TREEBASE_H_
14
484523cf
JS
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
2ecf902b
WS
19#include "wx/defs.h"
20
1e6feb95 21#if wxUSE_TREECTRL
33737618 22
618a5e38 23#include "wx/window.h" // for wxClientData
484523cf 24#include "wx/event.h"
ed39ff57 25#include "wx/dynarray.h"
484523cf 26
40ff126a
WS
27#if WXWIN_COMPATIBILITY_2_6
28
e2effeb9
WS
29// flags for deprecated `Expand(int action)', will be removed in next versions
30enum
31{
32 wxTREE_EXPAND_EXPAND,
33 wxTREE_EXPAND_COLLAPSE,
34 wxTREE_EXPAND_COLLAPSE_RESET,
35 wxTREE_EXPAND_TOGGLE
36};
37
40ff126a
WS
38#endif // WXWIN_COMPATIBILITY_2_6
39
484523cf
JS
40// ----------------------------------------------------------------------------
41// wxTreeItemId identifies an element of the tree. In this implementation, it's
2f3dcbbf
VZ
42// just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
43// data structure in the generic version. It's opaque for the application and
44// the only method which can be used by user code is IsOk().
484523cf
JS
45// ----------------------------------------------------------------------------
46
47// Using this typedef removes an ambiguity when calling Remove()
ee4b2721 48typedef void *wxTreeItemIdValue;
484523cf 49
53a2db12 50class WXDLLIMPEXP_CORE wxTreeItemId
484523cf 51{
a9711a4d 52 friend bool operator==(const wxTreeItemId&, const wxTreeItemId&);
484523cf
JS
53public:
54 // ctors
55 // 0 is invalid value for HTREEITEM
56 wxTreeItemId() { m_pItem = 0; }
57
ee4b2721
VZ
58 // construct wxTreeItemId from the native item id
59 wxTreeItemId(void *pItem) { m_pItem = pItem; }
2f3dcbbf 60
484523cf
JS
61 // default copy ctor/assignment operator are ok for us
62
63 // accessors
64 // is this a valid tree item?
65 bool IsOk() const { return m_pItem != 0; }
c89d4160
VZ
66 // return true if this item is not valid
67 bool operator!() const { return !IsOk(); }
484523cf 68
f888d614
VZ
69 // operations
70 // invalidate the item
71 void Unset() { m_pItem = 0; }
72
a9711a4d
MB
73 operator bool() const { return IsOk(); }
74
c89d4160 75 wxTreeItemIdValue m_pItem;
484523cf
JS
76};
77
a9711a4d
MB
78inline bool operator==(const wxTreeItemId& i1, const wxTreeItemId& i2)
79{
80 return i1.m_pItem == i2.m_pItem;
81}
82
e066bd13
VS
83inline bool operator!=(const wxTreeItemId& i1, const wxTreeItemId& i2)
84{
85 return i1.m_pItem != i2.m_pItem;
86}
87
484523cf
JS
88// ----------------------------------------------------------------------------
89// wxTreeItemData is some (arbitrary) user class associated with some item. The
90// main advantage of having this class (compared to old untyped interface) is
91// that wxTreeItemData's are destroyed automatically by the tree and, as this
92// class has virtual dtor, it means that the memory will be automatically
93// freed. OTOH, we don't just use wxObject instead of wxTreeItemData because
94// the size of this class is critical: in any real application, each tree leaf
95// will have wxTreeItemData associated with it and number of leaves may be
96// quite big.
97//
98// Because the objects of this class are deleted by the tree, they should
99// always be allocated on the heap!
100// ----------------------------------------------------------------------------
101
53a2db12 102class WXDLLIMPEXP_CORE wxTreeItemData: public wxClientData
484523cf 103{
b5dbe15d
VS
104friend class WXDLLIMPEXP_FWD_CORE wxTreeCtrl;
105friend class WXDLLIMPEXP_FWD_CORE wxGenericTreeCtrl;
484523cf
JS
106public:
107 // creation/destruction
108 // --------------------
109 // default ctor
110 wxTreeItemData() { }
111
112 // default copy ctor/assignment operator are ok
113
114 // accessor: get the item associated with us
115 const wxTreeItemId& GetId() const { return m_pItem; }
116 void SetId(const wxTreeItemId& id) { m_pItem = id; }
117
118protected:
119 wxTreeItemId m_pItem;
120};
121
d5d29b8a 122WX_DEFINE_EXPORTED_ARRAY_PTR(wxTreeItemIdValue, wxArrayTreeItemIdsBase);
f888d614 123
14ba002a
VZ
124// this is a wrapper around the array class defined above which allow to wok
125// with vaue of natural wxTreeItemId type instead of using wxTreeItemIdValue
126// and does it without any loss of efficiency
53a2db12 127class WXDLLIMPEXP_CORE wxArrayTreeItemIds : public wxArrayTreeItemIdsBase
f888d614
VZ
128{
129public:
130 void Add(const wxTreeItemId& id)
131 { wxArrayTreeItemIdsBase::Add(id.m_pItem); }
14ba002a
VZ
132 void Insert(const wxTreeItemId& id, size_t pos)
133 { wxArrayTreeItemIdsBase::Insert(id.m_pItem, pos); }
134 wxTreeItemId Item(size_t i) const
135 { return wxTreeItemId(wxArrayTreeItemIdsBase::Item(i)); }
136 wxTreeItemId operator[](size_t i) const { return Item(i); }
f888d614 137};
484523cf
JS
138
139// ----------------------------------------------------------------------------
140// constants
141// ----------------------------------------------------------------------------
142
143// enum for different images associated with a treectrl item
144enum wxTreeItemIcon
145{
146 wxTreeItemIcon_Normal, // not selected, not expanded
147 wxTreeItemIcon_Selected, // selected, not expanded
148 wxTreeItemIcon_Expanded, // not selected, expanded
149 wxTreeItemIcon_SelectedExpanded, // selected, expanded
150 wxTreeItemIcon_Max
151};
152
03966fcb
RR
153// special values for the 'state' parameter of wxTreeCtrl::SetItemState()
154static const int wxTREE_ITEMSTATE_NONE = -1; // not state (no display state image)
155static const int wxTREE_ITEMSTATE_NEXT = -2; // cycle to the next state
156static const int wxTREE_ITEMSTATE_PREV = -3; // cycle to the previous state
157
9c7f49f5
VZ
158// ----------------------------------------------------------------------------
159// wxTreeCtrl flags
160// ----------------------------------------------------------------------------
161
c6f4913a 162#define wxTR_NO_BUTTONS 0x0000 // for convenience
9c7f49f5
VZ
163#define wxTR_HAS_BUTTONS 0x0001 // draw collapsed/expanded btns
164#define wxTR_NO_LINES 0x0004 // don't draw lines at all
c6f4913a 165#define wxTR_LINES_AT_ROOT 0x0008 // connect top-level nodes
99cea4b3 166#define wxTR_TWIST_BUTTONS 0x0010 // still used by wxTreeListCtrl
c6f4913a
VS
167
168#define wxTR_SINGLE 0x0000 // for convenience
169#define wxTR_MULTIPLE 0x0020 // can select multiple items
d642a722
VZ
170
171#if WXWIN_COMPATIBILITY_2_8
172 #define wxTR_EXTENDED 0x0040 // deprecated, don't use
173#endif // WXWIN_COMPATIBILITY_2_8
174
9c7f49f5 175#define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080 // what it says
c6f4913a
VS
176
177#define wxTR_EDIT_LABELS 0x0200 // can edit item labels
178#define wxTR_ROW_LINES 0x0400 // put border around items
179#define wxTR_HIDE_ROOT 0x0800 // don't display root node
618a5e38 180
9c7f49f5
VZ
181#define wxTR_FULL_ROW_HIGHLIGHT 0x2000 // highlight full horz space
182
6621957f
VZ
183// make the default control appearance look more native-like depending on the
184// platform
185#if defined(__WXGTK20__)
186 #define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS | wxTR_NO_LINES)
187#elif defined(__WXMAC__)
188 #define wxTR_DEFAULT_STYLE \
189 (wxTR_HAS_BUTTONS | wxTR_NO_LINES | wxTR_FULL_ROW_HIGHLIGHT)
c7f73af4 190#else
6621957f 191 #define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT)
c7f73af4 192#endif
9c7f49f5 193
40ff126a 194#if WXWIN_COMPATIBILITY_2_6
9c7f49f5 195// deprecated, don't use
9c7f49f5
VZ
196#define wxTR_MAC_BUTTONS 0
197#define wxTR_AQUA_BUTTONS 0
40ff126a 198#endif // WXWIN_COMPATIBILITY_2_6
9c7f49f5 199
484523cf
JS
200
201// values for the `flags' parameter of wxTreeCtrl::HitTest() which determine
202// where exactly the specified point is situated:
203
204static const int wxTREE_HITTEST_ABOVE = 0x0001;
205static const int wxTREE_HITTEST_BELOW = 0x0002;
206static const int wxTREE_HITTEST_NOWHERE = 0x0004;
207 // on the button associated with an item.
208static const int wxTREE_HITTEST_ONITEMBUTTON = 0x0008;
209 // on the bitmap associated with an item.
210static const int wxTREE_HITTEST_ONITEMICON = 0x0010;
211 // on the indent associated with an item.
212static const int wxTREE_HITTEST_ONITEMINDENT = 0x0020;
213 // on the label (string) associated with an item.
214static const int wxTREE_HITTEST_ONITEMLABEL = 0x0040;
215 // on the right of the label associated with an item.
216static const int wxTREE_HITTEST_ONITEMRIGHT = 0x0080;
217 // on the label (string) associated with an item.
218static const int wxTREE_HITTEST_ONITEMSTATEICON = 0x0100;
219 // on the left of the wxTreeCtrl.
220static const int wxTREE_HITTEST_TOLEFT = 0x0200;
221 // on the right of the wxTreeCtrl.
222static const int wxTREE_HITTEST_TORIGHT = 0x0400;
223 // on the upper part (first half) of the item.
224static const int wxTREE_HITTEST_ONITEMUPPERPART = 0x0800;
225 // on the lower part (second half) of the item.
226static const int wxTREE_HITTEST_ONITEMLOWERPART = 0x1000;
227
228 // anywhere on the item
229static const int wxTREE_HITTEST_ONITEM = wxTREE_HITTEST_ONITEMICON |
230 wxTREE_HITTEST_ONITEMLABEL;
231
232// tree ctrl default name
53a2db12 233extern WXDLLIMPEXP_DATA_CORE(const char) wxTreeCtrlNameStr[];
484523cf
JS
234
235// ----------------------------------------------------------------------------
236// wxTreeItemAttr: a structure containing the visual attributes of an item
237// ----------------------------------------------------------------------------
238
53a2db12 239class WXDLLIMPEXP_CORE wxTreeItemAttr
484523cf
JS
240{
241public:
242 // ctors
243 wxTreeItemAttr() { }
244 wxTreeItemAttr(const wxColour& colText,
245 const wxColour& colBack,
246 const wxFont& font)
247 : m_colText(colText), m_colBack(colBack), m_font(font) { }
248
249 // setters
250 void SetTextColour(const wxColour& colText) { m_colText = colText; }
251 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
252 void SetFont(const wxFont& font) { m_font = font; }
253
254 // accessors
255 bool HasTextColour() const { return m_colText.Ok(); }
256 bool HasBackgroundColour() const { return m_colBack.Ok(); }
257 bool HasFont() const { return m_font.Ok(); }
258
259 const wxColour& GetTextColour() const { return m_colText; }
260 const wxColour& GetBackgroundColour() const { return m_colBack; }
261 const wxFont& GetFont() const { return m_font; }
262
263private:
264 wxColour m_colText,
265 m_colBack;
266 wxFont m_font;
267};
268
269// ----------------------------------------------------------------------------
270// wxTreeEvent is a special class for all events associated with tree controls
271//
272// NB: note that not all accessors make sense for all events, see the event
273// descriptions below
274// ----------------------------------------------------------------------------
275
b5dbe15d 276class WXDLLIMPEXP_FWD_CORE wxTreeCtrlBase;
2388d9b3 277
53a2db12 278class WXDLLIMPEXP_CORE wxTreeEvent : public wxNotifyEvent
484523cf 279{
484523cf 280public:
e47859da 281 wxTreeEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
2388d9b3
VZ
282 wxTreeEvent(wxEventType commandType,
283 wxTreeCtrlBase *tree,
284 const wxTreeItemId &item = wxTreeItemId());
285 wxTreeEvent(const wxTreeEvent& event);
0cd936a4
WS
286
287 virtual wxEvent *Clone() const { return new wxTreeEvent(*this); }
484523cf
JS
288
289 // accessors
290 // get the item on which the operation was performed or the newly
291 // selected item for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events
292 wxTreeItemId GetItem() const { return m_item; }
8adb5d45 293 void SetItem(const wxTreeItemId& item) { m_item = item; }
484523cf
JS
294
295 // for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events, get the previously
296 // selected item
297 wxTreeItemId GetOldItem() const { return m_itemOld; }
8adb5d45 298 void SetOldItem(const wxTreeItemId& item) { m_itemOld = item; }
484523cf
JS
299
300 // the point where the mouse was when the drag operation started (for
33737618 301 // wxEVT_COMMAND_TREE_BEGIN_(R)DRAG events only) or click position
484523cf 302 wxPoint GetPoint() const { return m_pointDrag; }
8adb5d45 303 void SetPoint(const wxPoint& pt) { m_pointDrag = pt; }
484523cf 304
b09bda68
VZ
305 // keyboard data (for wxEVT_COMMAND_TREE_KEY_DOWN only)
306 const wxKeyEvent& GetKeyEvent() const { return m_evtKey; }
1944ad76 307 int GetKeyCode() const { return m_evtKey.GetKeyCode(); }
8adb5d45 308 void SetKeyEvent(const wxKeyEvent& evt) { m_evtKey = evt; }
484523cf
JS
309
310 // label (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
311 const wxString& GetLabel() const { return m_label; }
8adb5d45 312 void SetLabel(const wxString& label) { m_label = label; }
484523cf 313
dd23c25c
JS
314 // edit cancel flag (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
315 bool IsEditCancelled() const { return m_editCancelled; }
8adb5d45 316 void SetEditCanceled(bool editCancelled) { m_editCancelled = editCancelled; }
dd23c25c 317
156194e1
JS
318 // Set the tooltip for the item (for EVT\_TREE\_ITEM\_GETTOOLTIP events)
319 void SetToolTip(const wxString& toolTip) { m_label = toolTip; }
3dd67a18 320 wxString GetToolTip() { return m_label; }
8bc3ec1f 321
484523cf 322private:
b09bda68
VZ
323 // not all of the members are used (or initialized) for all events
324 wxKeyEvent m_evtKey;
484523cf
JS
325 wxTreeItemId m_item,
326 m_itemOld;
327 wxPoint m_pointDrag;
328 wxString m_label;
dd23c25c 329 bool m_editCancelled;
b09bda68 330
b5dbe15d
VS
331 friend class WXDLLIMPEXP_FWD_CORE wxTreeCtrl;
332 friend class WXDLLIMPEXP_FWD_CORE wxGenericTreeCtrl;
b09bda68 333
0cd936a4 334 DECLARE_DYNAMIC_CLASS(wxTreeEvent)
484523cf
JS
335};
336
337typedef void (wxEvtHandler::*wxTreeEventFunction)(wxTreeEvent&);
338
339// ----------------------------------------------------------------------------
2e4df4bf 340// tree control events and macros for handling them
484523cf
JS
341// ----------------------------------------------------------------------------
342
9b11752c
VZ
343wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_BEGIN_DRAG, wxTreeEvent );
344wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_BEGIN_RDRAG, wxTreeEvent );
345wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, wxTreeEvent );
346wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_END_LABEL_EDIT, wxTreeEvent );
347wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_DELETE_ITEM, wxTreeEvent );
348wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_GET_INFO, wxTreeEvent );
349wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_SET_INFO, wxTreeEvent );
350wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_EXPANDED, wxTreeEvent );
351wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_EXPANDING, wxTreeEvent );
352wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_COLLAPSED, wxTreeEvent );
353wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_COLLAPSING, wxTreeEvent );
354wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_SEL_CHANGED, wxTreeEvent );
355wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_SEL_CHANGING, wxTreeEvent );
356wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_KEY_DOWN, wxTreeEvent );
357wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_ACTIVATED, wxTreeEvent );
358wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, wxTreeEvent );
359wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, wxTreeEvent );
360wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_END_DRAG, wxTreeEvent );
361wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK, wxTreeEvent );
362wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP, wxTreeEvent );
363wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_TREE_ITEM_MENU, wxTreeEvent );
2e4df4bf 364
7fa03f04 365#define wxTreeEventHandler(func) \
3c778901 366 wxEVENT_HANDLER_CAST(wxTreeEventFunction, func)
7fa03f04
VZ
367
368#define wx__DECLARE_TREEEVT(evt, id, fn) \
369 wx__DECLARE_EVT1(wxEVT_COMMAND_TREE_ ## evt, id, wxTreeEventHandler(fn))
370
484523cf
JS
371// GetItem() returns the item being dragged, GetPoint() the mouse coords
372//
373// if you call event.Allow(), the drag operation will start and a
374// EVT_TREE_END_DRAG event will be sent when the drag is over.
7fa03f04
VZ
375#define EVT_TREE_BEGIN_DRAG(id, fn) wx__DECLARE_TREEEVT(BEGIN_DRAG, id, fn)
376#define EVT_TREE_BEGIN_RDRAG(id, fn) wx__DECLARE_TREEEVT(BEGIN_RDRAG, id, fn)
484523cf 377
3103e8a9 378// GetItem() is the item on which the drop occurred (if any) and GetPoint() the
484523cf 379// current mouse coords
7fa03f04 380#define EVT_TREE_END_DRAG(id, fn) wx__DECLARE_TREEEVT(END_DRAG, id, fn)
484523cf
JS
381
382// GetItem() returns the itme whose label is being edited, GetLabel() returns
383// the current item label for BEGIN and the would be new one for END.
384//
385// Vetoing BEGIN event means that label editing won't happen at all,
386// vetoing END means that the new value is discarded and the old one kept
7fa03f04
VZ
387#define EVT_TREE_BEGIN_LABEL_EDIT(id, fn) wx__DECLARE_TREEEVT(BEGIN_LABEL_EDIT, id, fn)
388#define EVT_TREE_END_LABEL_EDIT(id, fn) wx__DECLARE_TREEEVT(END_LABEL_EDIT, id, fn)
484523cf
JS
389
390// provide/update information about GetItem() item
7fa03f04
VZ
391#define EVT_TREE_GET_INFO(id, fn) wx__DECLARE_TREEEVT(GET_INFO, id, fn)
392#define EVT_TREE_SET_INFO(id, fn) wx__DECLARE_TREEEVT(SET_INFO, id, fn)
484523cf
JS
393
394// GetItem() is the item being expanded/collapsed, the "ING" versions can use
7fa03f04
VZ
395#define EVT_TREE_ITEM_EXPANDED(id, fn) wx__DECLARE_TREEEVT(ITEM_EXPANDED, id, fn)
396#define EVT_TREE_ITEM_EXPANDING(id, fn) wx__DECLARE_TREEEVT(ITEM_EXPANDING, id, fn)
397#define EVT_TREE_ITEM_COLLAPSED(id, fn) wx__DECLARE_TREEEVT(ITEM_COLLAPSED, id, fn)
398#define EVT_TREE_ITEM_COLLAPSING(id, fn) wx__DECLARE_TREEEVT(ITEM_COLLAPSING, id, fn)
484523cf
JS
399
400// GetOldItem() is the item which had the selection previously, GetItem() is
401// the item which acquires selection
7fa03f04
VZ
402#define EVT_TREE_SEL_CHANGED(id, fn) wx__DECLARE_TREEEVT(SEL_CHANGED, id, fn)
403#define EVT_TREE_SEL_CHANGING(id, fn) wx__DECLARE_TREEEVT(SEL_CHANGING, id, fn)
484523cf 404
1944ad76 405// GetKeyCode() returns the key code
484523cf
JS
406// NB: this is the only message for which GetItem() is invalid (you may get the
407// item from GetSelection())
7fa03f04 408#define EVT_TREE_KEY_DOWN(id, fn) wx__DECLARE_TREEEVT(KEY_DOWN, id, fn)
484523cf
JS
409
410// GetItem() returns the item being deleted, the associated data (if any) will
411// be deleted just after the return of this event handler (if any)
7fa03f04 412#define EVT_TREE_DELETE_ITEM(id, fn) wx__DECLARE_TREEEVT(DELETE_ITEM, id, fn)
484523cf
JS
413
414// GetItem() returns the item that was activated (double click, enter, space)
7fa03f04 415#define EVT_TREE_ITEM_ACTIVATED(id, fn) wx__DECLARE_TREEEVT(ITEM_ACTIVATED, id, fn)
484523cf 416
f7c6f947 417// GetItem() returns the item for which the context menu shall be shown
7fa03f04 418#define EVT_TREE_ITEM_MENU(id, fn) wx__DECLARE_TREEEVT(ITEM_MENU, id, fn)
f7c6f947 419
484523cf 420// GetItem() returns the item that was clicked on
7fa03f04
VZ
421#define EVT_TREE_ITEM_RIGHT_CLICK(id, fn) wx__DECLARE_TREEEVT(ITEM_RIGHT_CLICK, id, fn)
422#define EVT_TREE_ITEM_MIDDLE_CLICK(id, fn) wx__DECLARE_TREEEVT(ITEM_MIDDLE_CLICK, id, fn)
484523cf 423
ae8c4b33 424// GetItem() returns the item whose state image was clicked on
7fa03f04 425#define EVT_TREE_STATE_IMAGE_CLICK(id, fn) wx__DECLARE_TREEEVT(STATE_IMAGE_CLICK, id, fn)
ae8c4b33 426
156194e1 427// GetItem() is the item for which the tooltip is being requested
7fa03f04 428#define EVT_TREE_ITEM_GETTOOLTIP(id, fn) wx__DECLARE_TREEEVT(ITEM_GETTOOLTIP, id, fn)
156194e1 429
1e6feb95 430#endif // wxUSE_TREECTRL
33737618 431
618a5e38 432#endif // _WX_TREEBASE_H_