]> git.saurik.com Git - wxWidgets.git/blame - include/wx/treebase.h
Upported combobox changes and another fix.
[wxWidgets.git] / include / wx / treebase.h
CommitLineData
484523cf 1/////////////////////////////////////////////////////////////////////////////
5e0e6ceb 2// Name: 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
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_TREEBASE_H_
13#define _WX_TREEBASE_H_
14
af49c4b8 15#if defined(__GNUG__) && !defined(__APPLE__)
484523cf
JS
16 #pragma interface "treebase.h"
17#endif
18
19// ----------------------------------------------------------------------------
20// headers
21// ----------------------------------------------------------------------------
22
1e6feb95 23#if wxUSE_TREECTRL
33737618 24
618a5e38 25#include "wx/window.h" // for wxClientData
484523cf 26#include "wx/event.h"
ed39ff57 27#include "wx/dynarray.h"
484523cf
JS
28
29// ----------------------------------------------------------------------------
30// wxTreeItemId identifies an element of the tree. In this implementation, it's
2f3dcbbf
VZ
31// just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
32// data structure in the generic version. It's opaque for the application and
33// the only method which can be used by user code is IsOk().
484523cf
JS
34// ----------------------------------------------------------------------------
35
36// Using this typedef removes an ambiguity when calling Remove()
37typedef unsigned long wxTreeItemIdValue;
38
39class WXDLLEXPORT wxTreeItemId
40{
484523cf
JS
41public:
42 // ctors
43 // 0 is invalid value for HTREEITEM
44 wxTreeItemId() { m_pItem = 0; }
45
2f3dcbbf
VZ
46 // this one is used in the generic version
47 wxTreeItemId(void *pItem) { m_pItem = (long) pItem; }
48
49 // and this one under MSW
50 wxTreeItemId(long lItem) { m_pItem = lItem; }
51
484523cf
JS
52 // default copy ctor/assignment operator are ok for us
53
54 // accessors
55 // is this a valid tree item?
56 bool IsOk() const { return m_pItem != 0; }
57
58 // deprecated: only for compatibility
484523cf
JS
59 operator wxTreeItemIdValue() const { return m_pItem; }
60
484523cf
JS
61 wxTreeItemIdValue m_pItem;
62};
63
64// ----------------------------------------------------------------------------
65// wxTreeItemData is some (arbitrary) user class associated with some item. The
66// main advantage of having this class (compared to old untyped interface) is
67// that wxTreeItemData's are destroyed automatically by the tree and, as this
68// class has virtual dtor, it means that the memory will be automatically
69// freed. OTOH, we don't just use wxObject instead of wxTreeItemData because
70// the size of this class is critical: in any real application, each tree leaf
71// will have wxTreeItemData associated with it and number of leaves may be
72// quite big.
73//
74// Because the objects of this class are deleted by the tree, they should
75// always be allocated on the heap!
76// ----------------------------------------------------------------------------
77
78class WXDLLEXPORT wxTreeItemData: public wxClientData
79{
80friend class WXDLLEXPORT wxTreeCtrl;
81friend class WXDLLEXPORT wxGenericTreeCtrl;
82public:
83 // creation/destruction
84 // --------------------
85 // default ctor
86 wxTreeItemData() { }
87
88 // default copy ctor/assignment operator are ok
89
90 // accessor: get the item associated with us
91 const wxTreeItemId& GetId() const { return m_pItem; }
92 void SetId(const wxTreeItemId& id) { m_pItem = id; }
93
94protected:
95 wxTreeItemId m_pItem;
96};
97
5a1cad6e 98WX_DEFINE_EXPORTED_ARRAY_LONG(wxTreeItemId, wxArrayTreeItemIds);
484523cf
JS
99
100// ----------------------------------------------------------------------------
101// constants
102// ----------------------------------------------------------------------------
103
104// enum for different images associated with a treectrl item
105enum wxTreeItemIcon
106{
107 wxTreeItemIcon_Normal, // not selected, not expanded
108 wxTreeItemIcon_Selected, // selected, not expanded
109 wxTreeItemIcon_Expanded, // not selected, expanded
110 wxTreeItemIcon_SelectedExpanded, // selected, expanded
111 wxTreeItemIcon_Max
112};
113
618a5e38
RR
114/*
115 * wxTreeCtrl flags
116 */
117// TODO: maybe renumber these?
c6f4913a
VS
118#define wxTR_NO_BUTTONS 0x0000 // for convenience
119#define wxTR_HAS_BUTTONS 0x0001 // generates a +/- button
120#define wxTR_TWIST_BUTTONS 0x0002 // generates a twister button
121#define wxTR_NO_LINES 0x0004 // don't generate level connectors
122#define wxTR_LINES_AT_ROOT 0x0008 // connect top-level nodes
123#define wxTR_MAC_BUTTONS wxTR_TWIST_BUTTONS // backward compatibility
124#define wxTR_AQUA_BUTTONS 0x0010 // used internally
125
126#define wxTR_SINGLE 0x0000 // for convenience
127#define wxTR_MULTIPLE 0x0020 // can select multiple items
128#define wxTR_EXTENDED 0x0040 // TODO: allow extended selection
129#define wxTR_FULL_ROW_HIGHLIGHT 0x2000 // highlight full horizontal space
130
131#define wxTR_EDIT_LABELS 0x0200 // can edit item labels
132#define wxTR_ROW_LINES 0x0400 // put border around items
133#define wxTR_HIDE_ROOT 0x0800 // don't display root node
134#define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080 // what it says
618a5e38
RR
135
136// TODO: different default styles for wxGTK, wxMotif, whatever?
137#ifdef __WXMAC__
138 #define wxTR_DEFAULT_STYLE (wxTR_TWIST_BUTTONS|wxTR_NO_LINES|wxTR_ROW_LINES)
139#else
140 #define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS|wxTR_LINES_AT_ROOT)
141#endif
484523cf
JS
142
143// values for the `flags' parameter of wxTreeCtrl::HitTest() which determine
144// where exactly the specified point is situated:
145
146static const int wxTREE_HITTEST_ABOVE = 0x0001;
147static const int wxTREE_HITTEST_BELOW = 0x0002;
148static const int wxTREE_HITTEST_NOWHERE = 0x0004;
149 // on the button associated with an item.
150static const int wxTREE_HITTEST_ONITEMBUTTON = 0x0008;
151 // on the bitmap associated with an item.
152static const int wxTREE_HITTEST_ONITEMICON = 0x0010;
153 // on the indent associated with an item.
154static const int wxTREE_HITTEST_ONITEMINDENT = 0x0020;
155 // on the label (string) associated with an item.
156static const int wxTREE_HITTEST_ONITEMLABEL = 0x0040;
157 // on the right of the label associated with an item.
158static const int wxTREE_HITTEST_ONITEMRIGHT = 0x0080;
159 // on the label (string) associated with an item.
160static const int wxTREE_HITTEST_ONITEMSTATEICON = 0x0100;
161 // on the left of the wxTreeCtrl.
162static const int wxTREE_HITTEST_TOLEFT = 0x0200;
163 // on the right of the wxTreeCtrl.
164static const int wxTREE_HITTEST_TORIGHT = 0x0400;
165 // on the upper part (first half) of the item.
166static const int wxTREE_HITTEST_ONITEMUPPERPART = 0x0800;
167 // on the lower part (second half) of the item.
168static const int wxTREE_HITTEST_ONITEMLOWERPART = 0x1000;
169
170 // anywhere on the item
171static const int wxTREE_HITTEST_ONITEM = wxTREE_HITTEST_ONITEMICON |
172 wxTREE_HITTEST_ONITEMLABEL;
173
174// tree ctrl default name
161f4f73 175WXDLLEXPORT_DATA(extern const wxChar*) wxTreeCtrlNameStr;
484523cf
JS
176
177// ----------------------------------------------------------------------------
178// wxTreeItemAttr: a structure containing the visual attributes of an item
179// ----------------------------------------------------------------------------
180
181class WXDLLEXPORT wxTreeItemAttr
182{
183public:
184 // ctors
185 wxTreeItemAttr() { }
186 wxTreeItemAttr(const wxColour& colText,
187 const wxColour& colBack,
188 const wxFont& font)
189 : m_colText(colText), m_colBack(colBack), m_font(font) { }
190
191 // setters
192 void SetTextColour(const wxColour& colText) { m_colText = colText; }
193 void SetBackgroundColour(const wxColour& colBack) { m_colBack = colBack; }
194 void SetFont(const wxFont& font) { m_font = font; }
195
196 // accessors
197 bool HasTextColour() const { return m_colText.Ok(); }
198 bool HasBackgroundColour() const { return m_colBack.Ok(); }
199 bool HasFont() const { return m_font.Ok(); }
200
201 const wxColour& GetTextColour() const { return m_colText; }
202 const wxColour& GetBackgroundColour() const { return m_colBack; }
203 const wxFont& GetFont() const { return m_font; }
204
205private:
206 wxColour m_colText,
207 m_colBack;
208 wxFont m_font;
209};
210
211// ----------------------------------------------------------------------------
212// wxTreeEvent is a special class for all events associated with tree controls
213//
214// NB: note that not all accessors make sense for all events, see the event
215// descriptions below
216// ----------------------------------------------------------------------------
217
218class WXDLLEXPORT wxTreeEvent : public wxNotifyEvent
219{
484523cf
JS
220public:
221 wxTreeEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
222
223 // accessors
224 // get the item on which the operation was performed or the newly
225 // selected item for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events
226 wxTreeItemId GetItem() const { return m_item; }
227
228 // for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events, get the previously
229 // selected item
230 wxTreeItemId GetOldItem() const { return m_itemOld; }
231
232 // the point where the mouse was when the drag operation started (for
33737618 233 // wxEVT_COMMAND_TREE_BEGIN_(R)DRAG events only) or click position
484523cf
JS
234 wxPoint GetPoint() const { return m_pointDrag; }
235
b09bda68
VZ
236 // keyboard data (for wxEVT_COMMAND_TREE_KEY_DOWN only)
237 const wxKeyEvent& GetKeyEvent() const { return m_evtKey; }
1944ad76 238 int GetKeyCode() const { return m_evtKey.GetKeyCode(); }
484523cf
JS
239
240 // label (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
241 const wxString& GetLabel() const { return m_label; }
242
dd23c25c
JS
243 // edit cancel flag (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
244 bool IsEditCancelled() const { return m_editCancelled; }
245
1944ad76
VZ
246#if WXWIN_COMPATIBILITY_2_2
247 // for compatibility only, don't use
248 int GetCode() const { return m_evtKey.GetKeyCode(); }
249#endif // WXWIN_COMPATIBILITY_2_2
250
484523cf 251private:
b09bda68
VZ
252 // not all of the members are used (or initialized) for all events
253 wxKeyEvent m_evtKey;
484523cf
JS
254 wxTreeItemId m_item,
255 m_itemOld;
256 wxPoint m_pointDrag;
257 wxString m_label;
dd23c25c 258 bool m_editCancelled;
b09bda68
VZ
259
260 friend class WXDLLEXPORT wxTreeCtrl;
261 friend class WXDLLEXPORT wxGenericTreeCtrl;
262
263 DECLARE_DYNAMIC_CLASS(wxTreeEvent);
484523cf
JS
264};
265
266typedef void (wxEvtHandler::*wxTreeEventFunction)(wxTreeEvent&);
267
268// ----------------------------------------------------------------------------
2e4df4bf 269// tree control events and macros for handling them
484523cf
JS
270// ----------------------------------------------------------------------------
271
2e4df4bf
VZ
272BEGIN_DECLARE_EVENT_TYPES()
273 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_DRAG, 600)
274 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_RDRAG, 601)
275 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, 602)
276 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_LABEL_EDIT, 603)
277 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_DELETE_ITEM, 604)
278 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_GET_INFO, 605)
279 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SET_INFO, 606)
280 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDED, 607)
281 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_EXPANDING, 608)
282 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSED, 609)
283 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_COLLAPSING, 610)
284 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGED, 611)
285 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_SEL_CHANGING, 612)
286 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_KEY_DOWN, 613)
287 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_ACTIVATED, 614)
288 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, 615)
289 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 616)
290 DECLARE_EVENT_TYPE(wxEVT_COMMAND_TREE_END_DRAG, 617)
291END_DECLARE_EVENT_TYPES()
292
484523cf
JS
293// GetItem() returns the item being dragged, GetPoint() the mouse coords
294//
295// if you call event.Allow(), the drag operation will start and a
296// EVT_TREE_END_DRAG event will be sent when the drag is over.
2e4df4bf
VZ
297#define EVT_TREE_BEGIN_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
298#define EVT_TREE_BEGIN_RDRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_BEGIN_RDRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
484523cf
JS
299
300// GetItem() is the item on which the drop occured (if any) and GetPoint() the
301// current mouse coords
2e4df4bf 302#define EVT_TREE_END_DRAG(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_END_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
484523cf
JS
303
304// GetItem() returns the itme whose label is being edited, GetLabel() returns
305// the current item label for BEGIN and the would be new one for END.
306//
307// Vetoing BEGIN event means that label editing won't happen at all,
308// vetoing END means that the new value is discarded and the old one kept
2e4df4bf
VZ
309#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 ),
310#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 ),
484523cf
JS
311
312// provide/update information about GetItem() item
2e4df4bf
VZ
313#define EVT_TREE_GET_INFO(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_GET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
314#define EVT_TREE_SET_INFO(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_SET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
484523cf
JS
315
316// GetItem() is the item being expanded/collapsed, the "ING" versions can use
2e4df4bf
VZ
317#define EVT_TREE_ITEM_EXPANDED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_EXPANDED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
318#define EVT_TREE_ITEM_EXPANDING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_EXPANDING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
319#define EVT_TREE_ITEM_COLLAPSED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_COLLAPSED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
320#define EVT_TREE_ITEM_COLLAPSING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_COLLAPSING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
484523cf
JS
321
322// GetOldItem() is the item which had the selection previously, GetItem() is
323// the item which acquires selection
2e4df4bf
VZ
324#define EVT_TREE_SEL_CHANGED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_SEL_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
325#define EVT_TREE_SEL_CHANGING(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_SEL_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
484523cf 326
1944ad76 327// GetKeyCode() returns the key code
484523cf
JS
328// NB: this is the only message for which GetItem() is invalid (you may get the
329// item from GetSelection())
2e4df4bf 330#define EVT_TREE_KEY_DOWN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_KEY_DOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
484523cf
JS
331
332// GetItem() returns the item being deleted, the associated data (if any) will
333// be deleted just after the return of this event handler (if any)
2e4df4bf 334#define EVT_TREE_DELETE_ITEM(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_DELETE_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL ),
484523cf
JS
335
336// GetItem() returns the item that was activated (double click, enter, space)
2e4df4bf 337#define EVT_TREE_ITEM_ACTIVATED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_TREE_ITEM_ACTIVATED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL ),
484523cf
JS
338
339// GetItem() returns the item that was clicked on
2e4df4bf
VZ
340#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 ),
341#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 ),
484523cf 342
1e6feb95 343#endif // wxUSE_TREECTRL
33737618 344
618a5e38 345#endif // _WX_TREEBASE_H_
484523cf 346