1 #ifndef _WX_TREECTRL_H_BASE_
2 #define _WX_TREECTRL_H_BASE_
4 // ----------------------------------------------------------------------------
6 // ----------------------------------------------------------------------------
8 #include "wx/control.h"
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
15 // enum for different images associated with a treectrl item
18 wxTreeItemIcon_Normal
, // not selected, not expanded
19 wxTreeItemIcon_Selected
, // selected, not expanded
20 wxTreeItemIcon_Expanded
, // not selected, expanded
21 wxTreeItemIcon_SelectedExpanded
, // selected, expanded
25 // tree ctrl default name
27 WXDLLEXPORT_DATA(extern const char*) wxTreeCtrlNameStr
;
29 #define wxTreeCtrlNameStr "wxTreeCtrl"
32 // ----------------------------------------------------------------------------
33 // include the platform-dependent wxTreeCtrl class
34 // ----------------------------------------------------------------------------
36 #if defined(__WXMSW__)
38 #include "wx/generic/treectrl.h"
40 #include "wx/msw/treectrl.h"
42 #elif defined(__WXMOTIF__)
43 #include "wx/generic/treectrl.h"
44 #elif defined(__WXGTK__)
45 #include "wx/generic/treectrl.h"
46 #elif defined(__WXQT__)
47 #include "wx/qt/treectrl.h"
48 #elif defined(__WXMAC__)
49 #include "wx/generic/treectrl.h"
50 #elif defined(__WXPM__)
51 #include "wx/generic/treectrl.h"
52 #elif defined(__WXSTUBS__)
53 #include "wx/generic/treectrl.h"
56 // ----------------------------------------------------------------------------
57 // wxTreeEvent is a special class for all events associated with tree controls
59 // NB: note that not all accessors make sense for all events, see the event
61 // ----------------------------------------------------------------------------
63 class WXDLLEXPORT wxTreeEvent
: public wxNotifyEvent
66 friend class wxTreeCtrl
;
72 wxTreeEvent(wxEventType commandType
= wxEVT_NULL
, int id
= 0);
75 // get the item on which the operation was performed or the newly
76 // selected item for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events
77 wxTreeItemId
GetItem() const { return m_item
; }
79 // for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events, get the previously
81 wxTreeItemId
GetOldItem() const { return m_itemOld
; }
83 // the point where the mouse was when the drag operation started (for
84 // wxEVT_COMMAND_TREE_BEGIN_(R)DRAG events only)
85 wxPoint
GetPoint() const { return m_pointDrag
; }
87 // keyboard code (for wxEVT_COMMAND_TREE_KEY_DOWN only)
88 int GetCode() const { return m_code
; }
90 // label (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
91 const wxString
& GetLabel() const { return m_label
; }
94 // TODO we could save some space by using union here
101 DECLARE_DYNAMIC_CLASS(wxTreeEvent
)
104 typedef void (wxEvtHandler::*wxTreeEventFunction
)(wxTreeEvent
&);
106 // ----------------------------------------------------------------------------
107 // macros for handling tree control events
108 // ----------------------------------------------------------------------------
110 // GetItem() returns the item being dragged, GetPoint() the mouse coords
111 #define EVT_TREE_BEGIN_DRAG(id, fn) { wxEVT_COMMAND_TREE_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
112 #define EVT_TREE_BEGIN_RDRAG(id, fn) { wxEVT_COMMAND_TREE_BEGIN_RDRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
114 // GetItem() returns the itme whose label is being edited, GetLabel() returns
115 // the current item label for BEGIN and the would be new one for END.
117 // Vetoing BEGIN event means that label editing won't happen at all,
118 // vetoing END means that the new value is discarded and the old one kept
119 #define EVT_TREE_BEGIN_LABEL_EDIT(id, fn) { wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
120 #define EVT_TREE_END_LABEL_EDIT(id, fn) { wxEVT_COMMAND_TREE_END_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
122 // provide/update information about GetItem() item
123 #define EVT_TREE_GET_INFO(id, fn) { wxEVT_COMMAND_TREE_GET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
124 #define EVT_TREE_SET_INFO(id, fn) { wxEVT_COMMAND_TREE_SET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
126 // GetItem() is the item being expanded/collapsed, the "ING" versions can use
127 #define EVT_TREE_ITEM_EXPANDED(id, fn) { wxEVT_COMMAND_TREE_ITEM_EXPANDED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
128 #define EVT_TREE_ITEM_EXPANDING(id, fn) { wxEVT_COMMAND_TREE_ITEM_EXPANDING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
129 #define EVT_TREE_ITEM_COLLAPSED(id, fn) { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
130 #define EVT_TREE_ITEM_COLLAPSING(id, fn) { wxEVT_COMMAND_TREE_ITEM_COLLAPSING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL },
132 // GetOldItem() is the item which had the selection previously, GetItem() is
133 // the item which acquires selection
134 #define EVT_TREE_SEL_CHANGED(id, fn) { wxEVT_COMMAND_TREE_SEL_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL },
135 #define EVT_TREE_SEL_CHANGING(id, fn) { wxEVT_COMMAND_TREE_SEL_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL },
137 // GetCode() returns the key code
138 // NB: this is the only message for which GetItem() is invalid (you may get the
139 // item from GetSelection())
140 #define EVT_TREE_KEY_DOWN(id, fn) { wxEVT_COMMAND_TREE_KEY_DOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL },
142 // GetItem() returns the item being deleted, the associated data (if any) will
143 // be deleted just after the return of this event handler (if any)
144 #define EVT_TREE_DELETE_ITEM(id, fn) { wxEVT_COMMAND_TREE_DELETE_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL },
146 // GetItem() returns the item that was activated (double click, enter, space)
147 #define EVT_TREE_ITEM_ACTIVATED(id, fn) { wxEVT_COMMAND_TREE_ITEM_ACTIVATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL },
150 // _WX_TREECTRL_H_BASE_