]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/treectrl.h
Apply patch (plus some additional changes) upgrading Scintilla to version 2.03. ...
[wxWidgets.git] / include / wx / msw / treectrl.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
3f7bc32b 2// Name: wx/msw/treectrl.h
2bda0e17
KB
3// Purpose: wxTreeCtrl class
4// Author: Julian Smart
08b7c251 5// Modified by: Vadim Zeitlin to be less MSW-specific on 10/10/98
2bda0e17
KB
6// Created: 01/02/97
7// RCS-ID: $Id$
371a5b4e 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
0228081f
VZ
12#ifndef _WX_MSW_TREECTRL_H_
13#define _WX_MSW_TREECTRL_H_
2bda0e17 14
08b7c251
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
d427503c 18
1e6feb95
VZ
19#if wxUSE_TREECTRL
20
ad5c34f3 21#include "wx/textctrl.h"
2899e223 22#include "wx/dynarray.h"
484523cf 23#include "wx/treebase.h"
ee4b2721 24#include "wx/hashmap.h"
2bda0e17 25
d427503c
VZ
26#ifdef __GNUWIN32__
27 // Cygwin windows.h defines these identifiers
28 #undef GetFirstChild
29 #undef GetNextSibling
30#endif // Cygwin
31
08b7c251 32// fwd decl
fb1a4789
VZ
33class WXDLLIMPEXP_FWD_CORE wxImageList;
34class WXDLLIMPEXP_FWD_CORE wxDragImage;
b5dbe15d 35struct WXDLLIMPEXP_FWD_CORE wxTreeViewItem;
08b7c251 36
989ab1e5
WS
37#if WXWIN_COMPATIBILITY_2_6
38 // NB: all the following flags are for compatbility only and will be removed in the
39 // next versions
40 // flags for deprecated InsertItem() variant (their values are the same as of
41 // TVI_FIRST and TVI_LAST)
42 #define wxTREE_INSERT_FIRST 0xFFFF0001
43 #define wxTREE_INSERT_LAST 0xFFFF0002
44#endif
2bda0e17 45
ee4b2721 46// hash storing attributes for our items
3f5c62f9 47WX_DECLARE_EXPORTED_VOIDPTR_HASH_MAP(wxTreeItemAttr *, wxMapTreeAttr);
ee4b2721 48
08b7c251
VZ
49// ----------------------------------------------------------------------------
50// wxTreeCtrl
51// ----------------------------------------------------------------------------
ee4b2721 52
53a2db12 53class WXDLLIMPEXP_CORE wxTreeCtrl : public wxTreeCtrlBase
2bda0e17 54{
092bddef 55public:
092bddef
VZ
56 // creation
57 // --------
08b7c251
VZ
58 wxTreeCtrl() { Init(); }
59
dabbc6a5 60 wxTreeCtrl(wxWindow *parent, wxWindowID id = wxID_ANY,
08b7c251
VZ
61 const wxPoint& pos = wxDefaultPosition,
62 const wxSize& size = wxDefaultSize,
63 long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT,
64 const wxValidator& validator = wxDefaultValidator,
2b5f62a0 65 const wxString& name = wxTreeCtrlNameStr)
092bddef
VZ
66 {
67 Create(parent, id, pos, size, style, validator, name);
68 }
08b7c251
VZ
69
70 virtual ~wxTreeCtrl();
71
dabbc6a5 72 bool Create(wxWindow *parent, wxWindowID id = wxID_ANY,
092bddef
VZ
73 const wxPoint& pos = wxDefaultPosition,
74 const wxSize& size = wxDefaultSize,
08b7c251 75 long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT,
092bddef 76 const wxValidator& validator = wxDefaultValidator,
2b5f62a0 77 const wxString& name = wxTreeCtrlNameStr);
08b7c251 78
8cee4a30
VZ
79 // implement base class pure virtuals
80 // ----------------------------------
08b7c251 81
027d45e8 82 virtual unsigned int GetCount() const;
08b7c251 83
8cee4a30
VZ
84 virtual unsigned int GetIndent() const;
85 virtual void SetIndent(unsigned int indent);
08b7c251 86
8cee4a30
VZ
87 virtual void SetImageList(wxImageList *imageList);
88 virtual void SetStateImageList(wxImageList *imageList);
08b7c251 89
8cee4a30 90 virtual wxString GetItemText(const wxTreeItemId& item) const;
a78955e3 91 virtual int GetItemImage(const wxTreeItemId& item,
8cee4a30
VZ
92 wxTreeItemIcon which = wxTreeItemIcon_Normal) const;
93 virtual wxTreeItemData *GetItemData(const wxTreeItemId& item) const;
94 virtual wxColour GetItemTextColour(const wxTreeItemId& item) const;
95 virtual wxColour GetItemBackgroundColour(const wxTreeItemId& item) const;
96 virtual wxFont GetItemFont(const wxTreeItemId& item) const;
2b5f62a0 97
8cee4a30 98 virtual void SetItemText(const wxTreeItemId& item, const wxString& text);
a78955e3 99 virtual void SetItemImage(const wxTreeItemId& item, int image,
74b31181 100 wxTreeItemIcon which = wxTreeItemIcon_Normal);
8cee4a30
VZ
101 virtual void SetItemData(const wxTreeItemId& item, wxTreeItemData *data);
102 virtual void SetItemHasChildren(const wxTreeItemId& item, bool has = true);
103 virtual void SetItemBold(const wxTreeItemId& item, bool bold = true);
104 virtual void SetItemDropHighlight(const wxTreeItemId& item,
105 bool highlight = true);
106 virtual void SetItemTextColour(const wxTreeItemId& item,
107 const wxColour& col);
108 virtual void SetItemBackgroundColour(const wxTreeItemId& item,
109 const wxColour& col);
110 virtual void SetItemFont(const wxTreeItemId& item, const wxFont& font);
9ec64fa7 111
08b7c251
VZ
112 // item status inquiries
113 // ---------------------
114
8cee4a30
VZ
115 virtual bool IsVisible(const wxTreeItemId& item) const;
116 virtual bool ItemHasChildren(const wxTreeItemId& item) const;
117 virtual bool IsExpanded(const wxTreeItemId& item) const;
118 virtual bool IsSelected(const wxTreeItemId& item) const;
119 virtual bool IsBold(const wxTreeItemId& item) const;
120
121 virtual size_t GetChildrenCount(const wxTreeItemId& item,
122 bool recursively = true) const;
4832f7c0 123
08b7c251
VZ
124 // navigation
125 // ----------
126
8cee4a30
VZ
127 virtual wxTreeItemId GetRootItem() const;
128 virtual wxTreeItemId GetSelection() const;
129 virtual size_t GetSelections(wxArrayTreeItemIds& selections) const;
3c01c595 130 virtual wxTreeItemId GetFocusedItem() const;
8cee4a30
VZ
131
132 virtual wxTreeItemId GetItemParent(const wxTreeItemId& item) const;
133 virtual wxTreeItemId GetFirstChild(const wxTreeItemId& item,
134 wxTreeItemIdValue& cookie) const;
135 virtual wxTreeItemId GetNextChild(const wxTreeItemId& item,
136 wxTreeItemIdValue& cookie) const;
137 virtual wxTreeItemId GetLastChild(const wxTreeItemId& item) const;
138
139 virtual wxTreeItemId GetNextSibling(const wxTreeItemId& item) const;
140 virtual wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const;
141
142 virtual wxTreeItemId GetFirstVisibleItem() const;
143 virtual wxTreeItemId GetNextVisible(const wxTreeItemId& item) const;
144 virtual wxTreeItemId GetPrevVisible(const wxTreeItemId& item) const;
08b7c251 145
092bddef
VZ
146 // operations
147 // ----------
08b7c251 148
a78955e3 149 virtual wxTreeItemId AddRoot(const wxString& text,
08b7c251
VZ
150 int image = -1, int selectedImage = -1,
151 wxTreeItemData *data = NULL);
152
8cee4a30
VZ
153 virtual void Delete(const wxTreeItemId& item);
154 virtual void DeleteChildren(const wxTreeItemId& item);
155 virtual void DeleteAllItems();
08b7c251 156
8cee4a30
VZ
157 virtual void Expand(const wxTreeItemId& item);
158 virtual void Collapse(const wxTreeItemId& item);
159 virtual void CollapseAndReset(const wxTreeItemId& item);
160 virtual void Toggle(const wxTreeItemId& item);
08b7c251 161
8cee4a30
VZ
162 virtual void Unselect();
163 virtual void UnselectAll();
164 virtual void SelectItem(const wxTreeItemId& item, bool select = true);
5cb3a695 165 virtual void SelectChildren(const wxTreeItemId& parent);
2ef31e80 166
8cee4a30
VZ
167 virtual void EnsureVisible(const wxTreeItemId& item);
168 virtual void ScrollTo(const wxTreeItemId& item);
169
170 virtual wxTextCtrl *EditLabel(const wxTreeItemId& item,
08b7c251 171 wxClassInfo* textCtrlClass = CLASSINFO(wxTextCtrl));
8cee4a30
VZ
172 virtual wxTextCtrl *GetEditControl() const;
173 virtual void EndEditLabel(const wxTreeItemId& WXUNUSED(item),
174 bool discardChanges = false)
d35dce3a
VZ
175 {
176 DoEndEditLabel(discardChanges);
177 }
08b7c251 178
8cee4a30
VZ
179 virtual void SortChildren(const wxTreeItemId& item);
180
181 virtual bool GetBoundingRect(const wxTreeItemId& item,
182 wxRect& rect,
183 bool textOnly = false) const;
08b7c251 184
08b7c251
VZ
185 // implementation
186 // --------------
3f7bc32b 187
39c7a53c
VZ
188 virtual wxVisualAttributes GetDefaultAttributes() const
189 {
190 return GetClassDefaultAttributes(GetWindowVariant());
191 }
192
193 static wxVisualAttributes
194 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
195
196
c140b7e7 197 virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
fbd8ac52 198 virtual WXLRESULT MSWDefWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
fd3f686c 199 virtual bool MSWCommand(WXUINT param, WXWORD id);
a23fd0e1 200 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
90c6edd7 201 virtual bool MSWShouldPreProcessMessage(WXMSG* msg);
08b7c251 202
bb448552
VZ
203 // override some base class virtuals
204 virtual bool SetBackgroundColour(const wxColour &colour);
205 virtual bool SetForegroundColour(const wxColour &colour);
206
a047aff2
JS
207 // returns true if the platform should explicitly apply a theme border
208 virtual bool CanApplyThemeBorder() const { return false; }
209
2bda0e17 210protected:
08b7c251
VZ
211 // SetImageList helper
212 void SetAnyImageList(wxImageList *imageList, int which);
213
d00407b2
VZ
214 // refresh a single item
215 void RefreshItem(const wxTreeItemId& item);
216
d35dce3a
VZ
217 // end edit label
218 void DoEndEditLabel(bool discardChanges = false);
219
03966fcb
RR
220 virtual int DoGetItemState(const wxTreeItemId& item) const;
221 virtual void DoSetItemState(const wxTreeItemId& item, int state);
222
8cee4a30
VZ
223 virtual wxTreeItemId DoInsertItem(const wxTreeItemId& parent,
224 size_t pos,
225 const wxString& text,
226 int image, int selectedImage,
227 wxTreeItemData *data);
228 virtual wxTreeItemId DoInsertAfter(const wxTreeItemId& parent,
229 const wxTreeItemId& idPrevious,
230 const wxString& text,
231 int image = -1, int selImage = -1,
232 wxTreeItemData *data = NULL);
be0e5d69 233 virtual wxTreeItemId DoTreeHitTest(const wxPoint& point, int& flags) const;
08b7c251 234
4523ebb3
VZ
235 // obtain the user data for the lParam member of TV_ITEM
236 class wxTreeItemParam *GetItemParam(const wxTreeItemId& item) const;
237
c7d9c476
VZ
238 // update the event to include the items client data and pass it to
239 // HandleWindowEvent(), return true if it processed it
240 bool HandleTreeEvent(wxTreeEvent& event) const;
241
242 // pass the event to HandleTreeEvent() and return true if the event was
243 // either unprocessed or not vetoed
244 bool IsTreeEventAllowed(wxTreeEvent& event) const
245 {
246 return !HandleTreeEvent(event) || event.IsAllowed();
247 }
248
aa8166dd
VZ
249 // generate a wxEVT_KEY_DOWN event from the specified WPARAM/LPARAM values
250 // having the same meaning as for WM_KEYDOWN, return true if it was
251 // processed
252 bool MSWHandleTreeKeyDownEvent(WXWPARAM wParam, WXLPARAM lParam);
253
254 // handle a key event in a multi-selection control, should be only called
255 // for keys which can be used to change the selection
c7d9c476
VZ
256 //
257 // return true if the key was processed, false otherwise
25f701e6 258 bool MSWHandleSelectionKey(unsigned vkey);
c7d9c476 259
4523ebb3
VZ
260
261 // data used only while editing the item label:
262 wxTextCtrl *m_textCtrl; // text control in which it is edited
263 wxTreeItemId m_idEdited; // the item being edited
264
6f02a879
VZ
265private:
266 // the common part of all ctors
267 void Init();
268
ae322a48 269 // helper functions
ffdbfc4a
PC
270 bool DoGetItem(wxTreeViewItem *tvItem) const;
271 void DoSetItem(wxTreeViewItem *tvItem);
6f02a879 272
ffdbfc4a 273 void DoExpand(const wxTreeItemId& item, int flag);
6f02a879 274
7dac12ef
VZ
275 void DoSelectItem(const wxTreeItemId& item, bool select = true);
276 void DoUnselectItem(const wxTreeItemId& item);
277 void DoToggleItemSelection(const wxTreeItemId& item);
278
c7d9c476 279 void DoUnselectAll();
5cb3a695 280 void DoSelectChildren(const wxTreeItemId& parent);
c7d9c476 281
08b7c251 282 void DeleteTextCtrl();
092bddef 283
0228081f
VZ
284 // return true if the item is the hidden root one (i.e. it's the root item
285 // and the tree has wxTR_HIDE_ROOT style)
286 bool IsHiddenRoot(const wxTreeItemId& item) const;
287
7dac12ef
VZ
288 // clears/sets the currently focused item
289 void ClearFocusedItem();
290 void SetFocusedItem(const wxTreeItemId& item);
0228081f 291
3c8cbc12
VZ
292 // check if the given flags (taken from TV_HITTESTINFO structure)
293 // indicate a position "on item": this is less trivial than just checking
294 // for TVHT_ONITEM because we consider that points to the left and right of
295 // item text are also "on item" when wxTR_FULL_ROW_HIGHLIGHT is used as the
296 // item visually spans the entire breadth of the window then
297 bool MSWIsOnItem(unsigned flags) const;
298
299
ee4b2721
VZ
300 // the hash storing the items attributes (indexed by item ids)
301 wxMapTreeAttr m_attrs;
696e1ea0 302
dabbc6a5 303 // true if the hash above is not empty
696e1ea0
VZ
304 bool m_hasAnyAttr;
305
68d9be05 306#if wxUSE_DRAGIMAGE
23f681ec
VZ
307 // used for dragging
308 wxDragImage *m_dragImage;
68d9be05 309#endif
23f681ec 310
a9c1265f
VZ
311 // Virtual root item, if wxTR_HIDE_ROOT is set.
312 void* m_pVirtualRoot;
313
3f7bc32b 314 // the starting item for selection with Shift
e3ad5702
JS
315 wxTreeItemId m_htSelStart, m_htClickedItem;
316 wxPoint m_ptClick;
3f7bc32b 317
c7d9c476
VZ
318 // whether dragging has started
319 bool m_dragStarted;
320
321 // whether focus was lost between subsequent clicks of a single item
322 bool m_focusLost;
323
7dac12ef
VZ
324 // set when we are changing selection ourselves (only used in multi
325 // selection mode)
326 bool m_changingSelection;
327
c7d9c476
VZ
328 // whether we need to trigger a state image click event
329 bool m_triggerStateImageClick;
330
d301c440
VZ
331 // whether we need to deselect other items on mouse up
332 bool m_mouseUpDeselect;
333
502a2b18
VZ
334 friend class wxTreeItemIndirectData;
335 friend class wxTreeSortHelper;
336
092bddef 337 DECLARE_DYNAMIC_CLASS(wxTreeCtrl)
c0c133e1 338 wxDECLARE_NO_COPY_CLASS(wxTreeCtrl);
2bda0e17
KB
339};
340
1e6feb95
VZ
341#endif // wxUSE_TREECTRL
342
0228081f 343#endif // _WX_MSW_TREECTRL_H_