| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: treectrl.h |
| 3 | // Purpose: wxTreeCtrl class |
| 4 | // Author: Denis Pershin |
| 5 | // Modified by: |
| 6 | // Created: 08/08/98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) Denis Pershin |
| 9 | // Licence: wxWindows license |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_TREECTRL_H_ |
| 13 | #define _WX_TREECTRL_H_ |
| 14 | |
| 15 | #ifdef __GNUG__ |
| 16 | #pragma interface "treectrl.h" |
| 17 | #endif |
| 18 | |
| 19 | #include "wx/textctrl.h" |
| 20 | #include "wx/control.h" |
| 21 | #include "wx/event.h" |
| 22 | #include "wx/imaglist.h" |
| 23 | |
| 24 | #include <gtk/gtk.h> |
| 25 | |
| 26 | // the type for "untyped" data |
| 27 | typedef long wxDataType; |
| 28 | |
| 29 | // fwd decl |
| 30 | class wxImageList; |
| 31 | struct wxTreeViewItem; |
| 32 | |
| 33 | // a callback function used for sorting tree items, it should return -1 if the |
| 34 | // first item precedes the second, +1 if the second precedes the first or 0 if |
| 35 | // they're equivalent |
| 36 | class wxTreeItemData; |
| 37 | typedef int (*wxTreeItemCmpFunc)(wxTreeItemData *item1, wxTreeItemData *item2); |
| 38 | |
| 39 | // ---------------------------------------------------------------------------- |
| 40 | // constants |
| 41 | // ---------------------------------------------------------------------------- |
| 42 | |
| 43 | // values for the `flags' parameter of wxTreeCtrl::HitTest() which determine |
| 44 | // where exactly the specified point is situated: |
| 45 | // above the client area. |
| 46 | static const int wxTREE_HITTEST_ABOVE = 0x0001; |
| 47 | // below the client area. |
| 48 | static const int wxTREE_HITTEST_BELOW = 0x0002; |
| 49 | // in the client area but below the last item. |
| 50 | static const int wxTREE_HITTEST_NOWHERE = 0x0004; |
| 51 | // on the button associated with an item. |
| 52 | static const int wxTREE_HITTEST_ONITEMBUTTON = 0x0010; |
| 53 | // on the bitmap associated with an item. |
| 54 | static const int wxTREE_HITTEST_ONITEMICON = 0x0020; |
| 55 | // in the indentation associated with an item. |
| 56 | static const int wxTREE_HITTEST_ONITEMINDENT = 0x0040; |
| 57 | // on the label (string) associated with an item. |
| 58 | static const int wxTREE_HITTEST_ONITEMLABEL = 0x0080; |
| 59 | // in the area to the right of an item. |
| 60 | static const int wxTREE_HITTEST_ONITEMRIGHT = 0x0100; |
| 61 | // on the state icon for a tree view item that is in a user-defined state. |
| 62 | static const int wxTREE_HITTEST_ONITEMSTATEICON = 0x0200; |
| 63 | // to the right of the client area. |
| 64 | static const int wxTREE_HITTEST_TOLEFT = 0x0400; |
| 65 | // to the left of the client area. |
| 66 | static const int wxTREE_HITTEST_TORIGHT = 0x0800; |
| 67 | // anywhere on the item |
| 68 | static const int wxTREE_HITTEST_ONITEM = wxTREE_HITTEST_ONITEMICON | |
| 69 | wxTREE_HITTEST_ONITEMLABEL | |
| 70 | wxTREE_HITTEST_ONITEMSTATEICON; |
| 71 | |
| 72 | // NB: all the following flags are for compatbility only and will be removed in |
| 73 | // next versions |
| 74 | |
| 75 | // flags for deprecated `Expand(int action)' |
| 76 | enum |
| 77 | { |
| 78 | wxTREE_EXPAND_EXPAND, |
| 79 | wxTREE_EXPAND_COLLAPSE, |
| 80 | wxTREE_EXPAND_COLLAPSE_RESET, |
| 81 | wxTREE_EXPAND_TOGGLE |
| 82 | }; |
| 83 | |
| 84 | // flags for deprecated InsertItem() variant |
| 85 | #define wxTREE_INSERT_FIRST 0xFFFF0001 |
| 86 | #define wxTREE_INSERT_LAST 0xFFFF0002 |
| 87 | |
| 88 | // ---------------------------------------------------------------------------- |
| 89 | // wxTreeItemId identifies an element of the tree. In this implementation, it's |
| 90 | // just a trivial wrapper around GTK GtkTreeItem *. It's opaque for the |
| 91 | // application. |
| 92 | // ---------------------------------------------------------------------------- |
| 93 | class WXDLLEXPORT wxTreeItemId { |
| 94 | public: |
| 95 | // ctors |
| 96 | wxTreeItemId() { m_itemId = NULL; } |
| 97 | |
| 98 | // default copy ctor/assignment operator are ok for us |
| 99 | |
| 100 | // accessors |
| 101 | // is this a valid tree item? |
| 102 | bool IsOk() const { return m_itemId != NULL; } |
| 103 | |
| 104 | // conversion to/from either real (system-dependent) tree item id or |
| 105 | // to "long" which used to be the type for tree item ids in previous |
| 106 | // versions of wxWindows |
| 107 | |
| 108 | // for wxTreeCtrl usage only |
| 109 | wxTreeItemId(GtkTreeItem *itemId) { m_itemId = itemId; } |
| 110 | operator GtkTreeItem *() const { return m_itemId; } |
| 111 | void operator =(GtkTreeItem *item) { m_itemId = item; } |
| 112 | |
| 113 | protected: |
| 114 | GtkTreeItem *m_itemId; |
| 115 | }; |
| 116 | |
| 117 | // ---------------------------------------------------------------------------- |
| 118 | // wxTreeItemData is some (arbitrary) user class associated with some item. The |
| 119 | // main advantage of having this class (compared to old untyped interface) is |
| 120 | // that wxTreeItemData's are destroyed automatically by the tree and, as this |
| 121 | // class has virtual dtor, it means that the memory will be automatically |
| 122 | // freed. OTOH, we don't just use wxObject instead of wxTreeItemData because |
| 123 | // the size of this class is critical: in any real application, each tree leaf |
| 124 | // will have wxTreeItemData associated with it and number of leaves may be |
| 125 | // quite big. |
| 126 | // |
| 127 | // Because the objects of this class are deleted by the tree, they should |
| 128 | // always be allocated on the heap! |
| 129 | // ---------------------------------------------------------------------------- |
| 130 | class WXDLLEXPORT wxTreeItemData : private wxTreeItemId { |
| 131 | public: |
| 132 | // default ctor/copy ctor/assignment operator are ok |
| 133 | |
| 134 | // dtor is virtual and all the items are deleted by the tree control when |
| 135 | // it's deleted, so you normally don't have to care about freeing memory |
| 136 | // allocated in your wxTreeItemData-derived class |
| 137 | virtual ~wxTreeItemData() { } |
| 138 | |
| 139 | // accessors: set/get the item associated with this node |
| 140 | void SetId(const wxTreeItemId& id) { m_itemId = id; } |
| 141 | const wxTreeItemId& GetId() const { return (wxTreeItemId&) m_itemId; } |
| 142 | }; |
| 143 | |
| 144 | class WXDLLEXPORT wxTreeCtrl: public wxControl { |
| 145 | public: |
| 146 | // creation |
| 147 | // -------- |
| 148 | wxTreeCtrl() { Init(); } |
| 149 | |
| 150 | wxTreeCtrl(wxWindow *parent, wxWindowID id = -1, |
| 151 | const wxPoint& pos = wxDefaultPosition, |
| 152 | const wxSize& size = wxDefaultSize, |
| 153 | long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT, |
| 154 | const wxValidator& validator = wxDefaultValidator, |
| 155 | const wxString& name = "wxTreeCtrl") { |
| 156 | Create(parent, id, pos, size, style, validator, name); |
| 157 | } |
| 158 | |
| 159 | virtual ~wxTreeCtrl(); |
| 160 | |
| 161 | bool Create(wxWindow *parent, wxWindowID id = -1, |
| 162 | const wxPoint& pos = wxDefaultPosition, |
| 163 | const wxSize& size = wxDefaultSize, |
| 164 | long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT, |
| 165 | const wxValidator& validator = wxDefaultValidator, |
| 166 | const wxString& name = "wxTreeCtrl"); |
| 167 | |
| 168 | // accessors |
| 169 | // --------- |
| 170 | |
| 171 | // get the total number of items in the control |
| 172 | size_t GetCount() const; |
| 173 | |
| 174 | // indent is the number of pixels the children are indented relative to |
| 175 | // the parents position. SetIndent() also redraws the control |
| 176 | // immediately. |
| 177 | unsigned int GetIndent() const; |
| 178 | void SetIndent(unsigned int indent); |
| 179 | |
| 180 | // image list: these functions allow to associate an image list with |
| 181 | // the control and retrieve it. Note that the control does _not_ delete |
| 182 | // the associated image list when it's deleted in order to allow image |
| 183 | // lists to be shared between different controls. |
| 184 | // |
| 185 | // The normal image list is for the icons which correspond to the |
| 186 | // normal tree item state (whether it is selected or not). |
| 187 | // Additionally, the application might choose to show a state icon |
| 188 | // which corresponds to an app-defined item state (for example, |
| 189 | // checked/unchecked) which are taken from the state image list. |
| 190 | wxImageList *GetImageList() const; |
| 191 | wxImageList *GetStateImageList() const; |
| 192 | |
| 193 | void SetImageList(wxImageList *imageList); |
| 194 | void SetStateImageList(wxImageList *imageList); |
| 195 | |
| 196 | // Functions to work with tree ctrl items. Unfortunately, they can _not_ be |
| 197 | // member functions of wxTreeItem because they must know the tree the item |
| 198 | // belongs to for Windows implementation and storing the pointer to |
| 199 | // wxTreeCtrl in each wxTreeItem is just too much waste. |
| 200 | |
| 201 | // accessors |
| 202 | // --------- |
| 203 | |
| 204 | // retrieve items label |
| 205 | wxString GetItemText(const wxTreeItemId& item) const; |
| 206 | // get the normal item image |
| 207 | int GetItemImage(const wxTreeItemId& item) const; |
| 208 | // get the selected item image |
| 209 | int GetItemSelectedImage(const wxTreeItemId& item) const; |
| 210 | // get the data associated with the item |
| 211 | wxTreeItemData *GetItemData(const wxTreeItemId& item) const; |
| 212 | |
| 213 | // modifiers |
| 214 | // --------- |
| 215 | |
| 216 | // set items label |
| 217 | void SetItemText(const wxTreeItemId& item, const wxString& text); |
| 218 | // set the normal item image |
| 219 | void SetItemImage(const wxTreeItemId& item, int image); |
| 220 | // set the selected item image |
| 221 | void SetItemSelectedImage(const wxTreeItemId& item, int image); |
| 222 | // associate some data with the item |
| 223 | void SetItemData(const wxTreeItemId& item, wxTreeItemData *data); |
| 224 | |
| 225 | // item status inquiries |
| 226 | // --------------------- |
| 227 | |
| 228 | // is the item visible (it might be outside the view or not expanded)? |
| 229 | bool IsVisible(const wxTreeItemId& item) const; |
| 230 | // does the item has any children? |
| 231 | bool ItemHasChildren(const wxTreeItemId& item) const; |
| 232 | // is the item expanded (only makes sense if HasChildren())? |
| 233 | bool IsExpanded(const wxTreeItemId& item) const; |
| 234 | // is this item currently selected (the same as has focus)? |
| 235 | bool IsSelected(const wxTreeItemId& item) const; |
| 236 | |
| 237 | // number of children |
| 238 | // ------------------ |
| 239 | |
| 240 | // if 'recursively' is FALSE, only immediate children count, otherwise |
| 241 | // the returned number is the number of all items in this branch |
| 242 | size_t GetChildrenCount(const wxTreeItemId& item, bool recursively = TRUE); |
| 243 | |
| 244 | // navigation |
| 245 | // ---------- |
| 246 | |
| 247 | // wxTreeItemId.IsOk() will return FALSE if there is no such item |
| 248 | |
| 249 | // get the root tree item |
| 250 | wxTreeItemId GetRootItem() const; |
| 251 | |
| 252 | // get the item currently selected (may return NULL if no selection) |
| 253 | wxTreeItemId GetSelection() const; |
| 254 | |
| 255 | // get the parent of this item (may return NULL if root) |
| 256 | wxTreeItemId GetParent(const wxTreeItemId& item) const; |
| 257 | |
| 258 | // for this enumeration function you must pass in a "cookie" parameter |
| 259 | // which is opaque for the application but is necessary for the library |
| 260 | // to make these functions reentrant (i.e. allow more than one |
| 261 | // enumeration on one and the same object simultaneously). Of course, |
| 262 | // the "cookie" passed to GetFirstChild() and GetNextChild() should be |
| 263 | // the same! |
| 264 | |
| 265 | // get the first child of this item |
| 266 | wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& cookie) const; |
| 267 | // get the next child (after GetFirstChild or GetNextChild) |
| 268 | wxTreeItemId GetNextChild(const wxTreeItemId& item, long& cookie) const; |
| 269 | // get the last child of this item - this method doesn't use cookies |
| 270 | wxTreeItemId GetLastChild(const wxTreeItemId& item) const; |
| 271 | |
| 272 | // get the next sibling of this item |
| 273 | wxTreeItemId GetNextSibling(const wxTreeItemId& item) const; |
| 274 | // get the previous sibling |
| 275 | wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const; |
| 276 | |
| 277 | // get first visible item |
| 278 | wxTreeItemId GetFirstVisibleItem() const; |
| 279 | // get the next visible item: item must be visible itself! |
| 280 | // see IsVisible() and wxTreeCtrl::GetFirstVisibleItem() |
| 281 | wxTreeItemId GetNextVisible(const wxTreeItemId& item) const; |
| 282 | // get the previous visible item: item must be visible itself! |
| 283 | wxTreeItemId GetPrevVisible(const wxTreeItemId& item) const; |
| 284 | |
| 285 | // operations |
| 286 | // ---------- |
| 287 | |
| 288 | // add the root node to the tree |
| 289 | wxTreeItemId AddRoot(const wxString& text, |
| 290 | int image = -1, int selectedImage = -1, |
| 291 | wxTreeItemData *data = NULL); |
| 292 | |
| 293 | // insert a new item in as the first child of the parent |
| 294 | wxTreeItemId PrependItem(const wxTreeItemId& parent, |
| 295 | const wxString& text, |
| 296 | int image = -1, int selectedImage = -1, |
| 297 | wxTreeItemData *data = NULL); |
| 298 | |
| 299 | // insert a new item after a given one |
| 300 | wxTreeItemId InsertItem(const wxTreeItemId& parent, |
| 301 | const wxTreeItemId& idPrevious, |
| 302 | const wxString& text, |
| 303 | int image = -1, int selectedImage = -1, |
| 304 | wxTreeItemData *data = NULL); |
| 305 | |
| 306 | // insert a new item in as the last child of the parent |
| 307 | wxTreeItemId AppendItem(const wxTreeItemId& parent, |
| 308 | const wxString& text, |
| 309 | int image = -1, int selectedImage = -1, |
| 310 | wxTreeItemData *data = NULL); |
| 311 | |
| 312 | // delete this item and associated data if any |
| 313 | void Delete(const wxTreeItemId& item); |
| 314 | // delete all items from the tree |
| 315 | void DeleteAllItems(); |
| 316 | |
| 317 | // expand this item |
| 318 | void Expand(const wxTreeItemId& item); |
| 319 | // collapse the item without removing its children |
| 320 | void Collapse(const wxTreeItemId& item); |
| 321 | // collapse the item and remove all children |
| 322 | void CollapseAndReset(const wxTreeItemId& item); |
| 323 | // toggles the current state |
| 324 | void Toggle(const wxTreeItemId& item); |
| 325 | |
| 326 | // remove the selection from currently selected item (if any) |
| 327 | void Unselect(); |
| 328 | // select this item |
| 329 | void SelectItem(const wxTreeItemId& item); |
| 330 | // make sure this item is visible (expanding the parent item and/or |
| 331 | // scrolling to this item if necessary) |
| 332 | void EnsureVisible(const wxTreeItemId& item); |
| 333 | // scroll to this item (but don't expand its parent) |
| 334 | void ScrollTo(const wxTreeItemId& item); |
| 335 | |
| 336 | // start editing the item label: this (temporarily) replaces the item |
| 337 | // with a one line edit control. The item will be selected if it hadn't |
| 338 | // been before. textCtrlClass parameter allows you to create an edit |
| 339 | // control of arbitrary user-defined class deriving from wxTextCtrl. |
| 340 | wxTextCtrl* EditLabel(const wxTreeItemId& item, |
| 341 | wxClassInfo* textCtrlClass = CLASSINFO(wxTextCtrl)); |
| 342 | // returns the same pointer as StartEdit() if the item is being edited, |
| 343 | // NULL otherwise (it's assumed that no more than one item may be |
| 344 | // edited simultaneously) |
| 345 | wxTextCtrl* GetEditControl() const; |
| 346 | // end editing and accept or discard the changes to item label |
| 347 | void EndEditLabel(const wxTreeItemId& item, bool discardChanges = FALSE); |
| 348 | |
| 349 | // sort the children of this item using the specified callback function |
| 350 | // (it should return -1, 0 or +1 as usual), if it's not specified |
| 351 | // alphabetical comparaison is performed. |
| 352 | // |
| 353 | // NB: this function is not reentrant! |
| 354 | void SortChildren(const wxTreeItemId& item, |
| 355 | wxTreeItemCmpFunc *cmpFunction = NULL); |
| 356 | |
| 357 | // deprecated |
| 358 | // ---------- |
| 359 | |
| 360 | // these methods are deprecated and will be removed in future versions of |
| 361 | // wxWindows, they're here for compatibility only, don't use them in new |
| 362 | // code (the comments indicate why these methods are now useless and how to |
| 363 | // replace them) |
| 364 | |
| 365 | // use Expand, Collapse, CollapseAndReset or Toggle |
| 366 | void ExpandItem(const wxTreeItemId& item, int action); |
| 367 | |
| 368 | // use AddRoot, PrependItem or AppendItem |
| 369 | wxTreeItemId InsertItem(const wxTreeItemId& parent, |
| 370 | const wxString& text, |
| 371 | int image = -1, int selImage = -1, |
| 372 | long insertAfter = wxTREE_INSERT_LAST); |
| 373 | |
| 374 | // use Set/GetImageList and Set/GetStateImageList |
| 375 | wxImageList *GetImageList(int) const |
| 376 | { return GetImageList(); } |
| 377 | void SetImageList(wxImageList *imageList, int) |
| 378 | { SetImageList(imageList); } |
| 379 | |
| 380 | void SendExpanding(const wxTreeItemId& item); |
| 381 | void SendExpanded(const wxTreeItemId& item); |
| 382 | void SendCollapsing(const wxTreeItemId& item); |
| 383 | void SendCollapsed(const wxTreeItemId& item); |
| 384 | void SendSelChanging(const wxTreeItemId& item); |
| 385 | void SendSelChanged(const wxTreeItemId& item); |
| 386 | protected: |
| 387 | wxTreeItemId m_editItem; |
| 388 | GtkTree *m_tree; |
| 389 | GtkTreeItem *m_anchor; |
| 390 | wxTextCtrl* m_textCtrl; |
| 391 | wxImageList* m_imageListNormal; |
| 392 | wxImageList* m_imageListState; |
| 393 | |
| 394 | long m_curitemId; |
| 395 | |
| 396 | void SendMessage(wxEventType command, const wxTreeItemId& item); |
| 397 | // GtkTreeItem *findGtkTreeItem(wxTreeCtrlId &id) const; |
| 398 | |
| 399 | // the common part of all ctors |
| 400 | void Init(); |
| 401 | // insert a new item in as the last child of the parent |
| 402 | wxTreeItemId p_InsertItem(GtkTreeItem *p, |
| 403 | const wxString& text, |
| 404 | int image, int selectedImage, |
| 405 | wxTreeItemData *data); |
| 406 | |
| 407 | |
| 408 | DECLARE_DYNAMIC_CLASS(wxTreeCtrl) |
| 409 | }; |
| 410 | |
| 411 | // ---------------------------------------------------------------------------- |
| 412 | // wxTreeEvent is a special class for all events associated with tree controls |
| 413 | // |
| 414 | // NB: note that not all accessors make sense for all events, see the event |
| 415 | // descriptions below |
| 416 | // ---------------------------------------------------------------------------- |
| 417 | class WXDLLEXPORT wxTreeEvent : public wxCommandEvent |
| 418 | { |
| 419 | friend wxTreeCtrl; |
| 420 | public: |
| 421 | wxTreeEvent(wxEventType commandType = wxEVT_NULL, int id = 0); |
| 422 | |
| 423 | // accessors |
| 424 | // get the item on which the operation was performed or the newly |
| 425 | // selected item for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events |
| 426 | wxTreeItemId GetItem() const { return m_item; } |
| 427 | |
| 428 | // for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events, get the previously |
| 429 | // selected item |
| 430 | wxTreeItemId GetOldItem() const { return m_itemOld; } |
| 431 | |
| 432 | // the point where the mouse was when the drag operation started (for |
| 433 | // wxEVT_COMMAND_TREE_BEGIN_(R)DRAG events only) |
| 434 | wxPoint GetPoint() const { return m_pointDrag; } |
| 435 | |
| 436 | // keyboard code (for wxEVT_COMMAND_TREE_KEY_DOWN only) |
| 437 | int GetCode() const { return m_code; } |
| 438 | |
| 439 | // set return code for wxEVT_COMMAND_TREE_ITEM_{EXPAND|COLLAPS}ING events |
| 440 | // call this to forbid the change in item status |
| 441 | void Veto() { m_code = TRUE; } |
| 442 | |
| 443 | private: |
| 444 | // @@ we could save some space by using union here |
| 445 | int m_code; |
| 446 | wxTreeItemId m_item, |
| 447 | m_itemOld; |
| 448 | wxPoint m_pointDrag; |
| 449 | |
| 450 | DECLARE_DYNAMIC_CLASS(wxTreeEvent) |
| 451 | }; |
| 452 | |
| 453 | typedef void (wxEvtHandler::*wxTreeEventFunction)(wxTreeEvent&); |
| 454 | |
| 455 | // ---------------------------------------------------------------------------- |
| 456 | // macros for handling tree control events |
| 457 | // ---------------------------------------------------------------------------- |
| 458 | |
| 459 | // GetItem() returns the item being dragged, GetPoint() the mouse coords |
| 460 | #define EVT_TREE_BEGIN_DRAG(id, fn) { wxEVT_COMMAND_TREE_BEGIN_DRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 461 | #define EVT_TREE_BEGIN_RDRAG(id, fn) { wxEVT_COMMAND_TREE_BEGIN_RDRAG, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 462 | |
| 463 | // GetItem() returns the itme whose label is being edited |
| 464 | #define EVT_TREE_BEGIN_LABEL_EDIT(id, fn) { wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 465 | #define EVT_TREE_END_LABEL_EDIT(id, fn) { wxEVT_COMMAND_TREE_END_LABEL_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 466 | |
| 467 | // provide/update information about GetItem() item |
| 468 | #define EVT_TREE_GET_INFO(id, fn) { wxEVT_COMMAND_TREE_GET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 469 | #define EVT_TREE_SET_INFO(id, fn) { wxEVT_COMMAND_TREE_SET_INFO, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 470 | |
| 471 | // GetItem() is the item being expanded/collapsed, the "ING" versions can use |
| 472 | #define EVT_TREE_ITEM_EXPANDED(id, fn) { wxEVT_COMMAND_TREE_ITEM_EXPANDED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 473 | #define EVT_TREE_ITEM_EXPANDING(id, fn) { wxEVT_COMMAND_TREE_ITEM_EXPANDING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 474 | #define EVT_TREE_ITEM_COLLAPSED(id, fn) { wxEVT_COMMAND_TREE_ITEM_COLLAPSED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 475 | #define EVT_TREE_ITEM_COLLAPSING(id, fn) { wxEVT_COMMAND_TREE_ITEM_COLLAPSING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL }, |
| 476 | |
| 477 | // GetOldItem() is the item which had the selection previously, GetItem() is |
| 478 | // the item which acquires selection |
| 479 | #define EVT_TREE_SEL_CHANGED(id, fn) { wxEVT_COMMAND_TREE_SEL_CHANGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL }, |
| 480 | #define EVT_TREE_SEL_CHANGING(id, fn) { wxEVT_COMMAND_TREE_SEL_CHANGING, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL }, |
| 481 | |
| 482 | // GetCode() returns the key code |
| 483 | // NB: this is the only message for which GetItem() is invalid (you may get the |
| 484 | // item from GetSelection()) |
| 485 | #define EVT_TREE_KEY_DOWN(id, fn) { wxEVT_COMMAND_TREE_KEY_DOWN, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, NULL }, |
| 486 | |
| 487 | // GetItem() returns the item being deleted, the associated data (if any) will |
| 488 | // be deleted just after the return of this event handler (if any) |
| 489 | #define EVT_TREE_DELETE_ITEM(id, fn) { wxEVT_COMMAND_TREE_DELETE_ITEM, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxTreeEventFunction) & fn, (wxObject *) NULL }, |
| 490 | |
| 491 | #endif |
| 492 | // _WX_TREECTRL_H_ |