1 /////////////////////////////////////////////////////////////////////////////
 
   3 // Purpose:     SWIG interface file for wxTreeCtrl and related classes
 
   7 // Created:     10-June-1998
 
   9 // Copyright:   (c) 2002 by Total Control Software
 
  10 // Licence:     wxWindows license
 
  11 /////////////////////////////////////////////////////////////////////////////
 
  16 //---------------------------------------------------------------------------
 
  19 #include <wx/treectrl.h>
 
  20 #include "wx/wxPython/pytree.h"
 
  23 MAKE_CONST_WXSTRING2(TreeCtrlNameStr, _T("wxTreeCtrl"));
 
  25 //---------------------------------------------------------------------------
 
  39     wxTR_HAS_VARIABLE_ROW_HEIGHT,
 
  45     wxTR_FULL_ROW_HIGHLIGHT,
 
  56     wxTreeItemIcon_Normal,              // not selected, not expanded
 
  57     wxTreeItemIcon_Selected,            //     selected, not expanded
 
  58     wxTreeItemIcon_Expanded,            // not selected,     expanded
 
  59     wxTreeItemIcon_SelectedExpanded,    //     selected,     expanded
 
  64 // constants for HitTest
 
  68     wxTREE_HITTEST_NOWHERE,
 
  69     wxTREE_HITTEST_ONITEMBUTTON,
 
  70     wxTREE_HITTEST_ONITEMICON,
 
  71     wxTREE_HITTEST_ONITEMINDENT,
 
  72     wxTREE_HITTEST_ONITEMLABEL,
 
  73     wxTREE_HITTEST_ONITEMRIGHT,
 
  74     wxTREE_HITTEST_ONITEMSTATEICON,
 
  75     wxTREE_HITTEST_TOLEFT,
 
  76     wxTREE_HITTEST_TORIGHT,
 
  77     wxTREE_HITTEST_ONITEMUPPERPART,
 
  78     wxTREE_HITTEST_ONITEMLOWERPART,
 
  82 //---------------------------------------------------------------------------
 
  86 // wxTreeItemId identifies an element of the tree. In this implementation, it's
 
  87 // just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
 
  88 // data structure in the generic version. It's opaque for the application and
 
  89 // the only method which can be used by user code is IsOk().
 
  95     // is this a valid tree item?
 
  99         bool __eq__(const wxTreeItemId* other) { return other ? (*self == *other) : false; }
 
 100         bool __ne__(const wxTreeItemId* other) { return other ? (*self != *other) : true;  }
 
 108         def __nonzero__(self): return self.IsOk() }
 
 114 // wxTreeItemData is some (arbitrary) user data associated with some tree
 
 115 // item.  The Python version is just a simple wrapper around a Python object
 
 116 // that knows how to handle references properly.  Using this class directly in
 
 117 // Python code should rarely be neccessary.  Just use the GetItemPyData and
 
 118 // SetItemPyData tree methods instead of the GetItemData and SetItemData
 
 120 %rename(TreeItemData) wxPyTreeItemData;
 
 121 class wxPyTreeItemData {
 
 123     wxPyTreeItemData(PyObject* obj = NULL);
 
 126     void      SetData(PyObject* obj);
 
 128     const wxTreeItemId& GetId();
 
 129     void                SetId(const wxTreeItemId& id);
 
 131     %extend { void Destroy() { delete self; } }
 
 136 #if 0  // it's not currently used anywhere...
 
 138 // wxTreeItemAttr: a structure containing the visual attributes of an item
 
 143     //wxTreeItemAttr() { }
 
 144     wxTreeItemAttr(const wxColour& colText = wxNullColour,
 
 145                    const wxColour& colBack = wxNullColour,
 
 146                    const wxFont& font = wxNullFont);
 
 149     void SetTextColour(const wxColour& colText);
 
 150     void SetBackgroundColour(const wxColour& colBack);
 
 151     void SetFont(const wxFont& font);
 
 154     bool HasTextColour();
 
 155     bool HasBackgroundColour();
 
 158     wxColour GetTextColour();
 
 159     wxColour GetBackgroundColour();
 
 162     %extend { void Destroy() { delete self; } }
 
 168 //---------------------------------------------------------------------------
 
 171 /* Tree control event types */
 
 172 %constant wxEventType wxEVT_COMMAND_TREE_BEGIN_DRAG;
 
 173 %constant wxEventType wxEVT_COMMAND_TREE_BEGIN_RDRAG;
 
 174 %constant wxEventType wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT;
 
 175 %constant wxEventType wxEVT_COMMAND_TREE_END_LABEL_EDIT;
 
 176 %constant wxEventType wxEVT_COMMAND_TREE_DELETE_ITEM;
 
 177 %constant wxEventType wxEVT_COMMAND_TREE_GET_INFO;
 
 178 %constant wxEventType wxEVT_COMMAND_TREE_SET_INFO;
 
 179 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDED;
 
 180 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_EXPANDING;
 
 181 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSED;
 
 182 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_COLLAPSING;
 
 183 %constant wxEventType wxEVT_COMMAND_TREE_SEL_CHANGED;
 
 184 %constant wxEventType wxEVT_COMMAND_TREE_SEL_CHANGING;
 
 185 %constant wxEventType wxEVT_COMMAND_TREE_KEY_DOWN;
 
 186 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_ACTIVATED;
 
 187 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK;
 
 188 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK;
 
 189 %constant wxEventType wxEVT_COMMAND_TREE_END_DRAG;
 
 190 %constant wxEventType wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK;
 
 191 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP;
 
 192 %constant wxEventType wxEVT_COMMAND_TREE_ITEM_MENU;
 
 195 EVT_TREE_BEGIN_DRAG        = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG       , 1)
 
 196 EVT_TREE_BEGIN_RDRAG       = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG      , 1)
 
 197 EVT_TREE_BEGIN_LABEL_EDIT  = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT , 1)
 
 198 EVT_TREE_END_LABEL_EDIT    = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT   , 1)
 
 199 EVT_TREE_DELETE_ITEM       = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM      , 1)
 
 200 EVT_TREE_GET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO         , 1)
 
 201 EVT_TREE_SET_INFO          = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO         , 1)
 
 202 EVT_TREE_ITEM_EXPANDED     = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED    , 1)
 
 203 EVT_TREE_ITEM_EXPANDING    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING   , 1)
 
 204 EVT_TREE_ITEM_COLLAPSED    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED   , 1)
 
 205 EVT_TREE_ITEM_COLLAPSING   = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING  , 1)
 
 206 EVT_TREE_SEL_CHANGED       = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED      , 1)
 
 207 EVT_TREE_SEL_CHANGING      = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING     , 1)
 
 208 EVT_TREE_KEY_DOWN          = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN         , 1)
 
 209 EVT_TREE_ITEM_ACTIVATED    = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED   , 1)
 
 210 EVT_TREE_ITEM_RIGHT_CLICK  = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK , 1)
 
 211 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, 1)
 
 212 EVT_TREE_END_DRAG          = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG         , 1)
 
 213 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK, 1)
 
 214 EVT_TREE_ITEM_GETTOOLTIP   = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP,   1)
 
 215 EVT_TREE_ITEM_MENU        = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MENU,         1)
 
 220 // wxTreeEvent is a special class for all events associated with tree controls
 
 222 // NB: note that not all accessors make sense for all events, see the event
 
 223 //     descriptions below
 
 224 class wxTreeEvent : public wxNotifyEvent {
 
 226     wxTreeEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
 
 228         // get the item on which the operation was performed or the newly
 
 229         // selected item for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events
 
 230     wxTreeItemId GetItem() const;
 
 231     void SetItem(const wxTreeItemId& item);
 
 233         // for wxEVT_COMMAND_TREE_SEL_CHANGED/ING events, get the previously
 
 235     wxTreeItemId GetOldItem() const;
 
 236     void SetOldItem(const wxTreeItemId& item);
 
 238         // the point where the mouse was when the drag operation started (for
 
 239         // wxEVT_COMMAND_TREE_BEGIN_(R)DRAG events only) or click position
 
 240     wxPoint GetPoint() const;
 
 241     void SetPoint(const wxPoint& pt);
 
 243         // keyboard data (for wxEVT_COMMAND_TREE_KEY_DOWN only)
 
 244     const wxKeyEvent& GetKeyEvent() const;
 
 245     int GetKeyCode() const;
 
 246     void SetKeyEvent(const wxKeyEvent& evt);
 
 248         // label (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
 
 249     const wxString& GetLabel() const;
 
 250     void SetLabel(const wxString& label);
 
 252         // edit cancel flag (for EVT_TREE_{BEGIN|END}_LABEL_EDIT only)
 
 253     bool IsEditCancelled() const;
 
 254     void SetEditCanceled(bool editCancelled);
 
 256         // Set the tooltip for the item (for EVT_TREE_ITEM_GETTOOLTIP events)
 
 257     void SetToolTip(const wxString& toolTip);
 
 258     wxString GetToolTip();
 
 261 //---------------------------------------------------------------------------
 
 264 %{ // C++ version of Python aware wxTreeCtrl
 
 265 class wxPyTreeCtrl : public wxTreeCtrl {
 
 266     DECLARE_ABSTRACT_CLASS(wxPyTreeCtrl);
 
 268     wxPyTreeCtrl() : wxTreeCtrl() {}
 
 269     wxPyTreeCtrl(wxWindow *parent, wxWindowID id,
 
 273                  const wxValidator& validator,
 
 274                  const wxString& name) :
 
 275         wxTreeCtrl(parent, id, pos, size, style, validator, name) {}
 
 277     bool Create(wxWindow *parent, wxWindowID id,
 
 281                 const wxValidator& validator,
 
 282                 const wxString& name) {
 
 283         return wxTreeCtrl::Create(parent, id, pos, size, style, validator, name);
 
 287     int OnCompareItems(const wxTreeItemId& item1,
 
 288                        const wxTreeItemId& item2) {
 
 291         wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 292         if ((found = wxPyCBH_findCallback(m_myInst, "OnCompareItems"))) {
 
 293             PyObject *o1 = wxPyConstructObject((void*)&item1, wxT("wxTreeItemId"), false);
 
 294             PyObject *o2 = wxPyConstructObject((void*)&item2, wxT("wxTreeItemId"), false);
 
 295             rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)",o1,o2));
 
 299         wxPyEndBlockThreads(blocked);
 
 301             rval = wxTreeCtrl::OnCompareItems(item1, item2);
 
 307 IMPLEMENT_ABSTRACT_CLASS(wxPyTreeCtrl, wxTreeCtrl);
 
 314 MustHaveApp(wxPyTreeCtrl);
 
 316 %rename(TreeCtrl) wxPyTreeCtrl;
 
 317 class wxPyTreeCtrl : public wxControl {
 
 319     %pythonAppend wxPyTreeCtrl         "self._setOORInfo(self);self._setCallbackInfo(self, TreeCtrl)"
 
 320     %pythonAppend wxPyTreeCtrl()       ""
 
 321     %typemap(out) wxPyTreeCtrl*;    // turn off this typemap
 
 323     wxPyTreeCtrl(wxWindow *parent, wxWindowID id = -1,
 
 324                  const wxPoint& pos = wxDefaultPosition,
 
 325                  const wxSize& size = wxDefaultSize,
 
 326                  long style = wxTR_DEFAULT_STYLE,
 
 327                  const wxValidator& validator = wxDefaultValidator,
 
 328                  const wxString& name = wxPyTreeCtrlNameStr);
 
 329     %RenameCtor(PreTreeCtrl, wxPyTreeCtrl());
 
 331     // Turn it back on again
 
 332     %typemap(out) wxPyTreeCtrl* { $result = wxPyMake_wxObject($1, $owner); }
 
 334     bool Create(wxWindow *parent, wxWindowID id = -1,
 
 335                 const wxPoint& pos = wxDefaultPosition,
 
 336                 const wxSize& size = wxDefaultSize,
 
 337                 long style = wxTR_DEFAULT_STYLE,
 
 338                 const wxValidator& validator = wxDefaultValidator,
 
 339                 const wxString& name = wxPyTreeCtrlNameStr);
 
 341     void _setCallbackInfo(PyObject* self, PyObject* _class);
 
 344     // get the total number of items in the control
 
 345     size_t GetCount() const;
 
 347     // indent is the number of pixels the children are indented relative to
 
 348     // the parents position. SetIndent() also redraws the control
 
 350     unsigned int GetIndent() const;
 
 351     void SetIndent(unsigned int indent);
 
 353     // spacing is the number of pixels between the start and the Text
 
 354     // not implemented under wxMSW
 
 355     unsigned int GetSpacing() const;
 
 356     void SetSpacing(unsigned int spacing);
 
 359     // image list: these functions allow to associate an image list with
 
 360     // the control and retrieve it. Note that the control does _not_ delete
 
 361     // the associated image list when it's deleted in order to allow image
 
 362     // lists to be shared between different controls.
 
 364     // The normal image list is for the icons which correspond to the
 
 365     // normal tree item state (whether it is selected or not).
 
 366     // Additionally, the application might choose to show a state icon
 
 367     // which corresponds to an app-defined item state (for example,
 
 368     // checked/unchecked) which are taken from the state image list.
 
 369     wxImageList *GetImageList() const;
 
 370     wxImageList *GetStateImageList() const;
 
 372     void SetImageList(wxImageList *imageList);
 
 373     void SetStateImageList(wxImageList *imageList);
 
 375     %apply SWIGTYPE *DISOWN { wxImageList *imageList };
 
 376     void AssignImageList(wxImageList *imageList);
 
 377     void AssignStateImageList(wxImageList *imageList);
 
 378     %clear wxImageList *imageList;
 
 381     // retrieve items label
 
 382     wxString GetItemText(const wxTreeItemId& item) const;
 
 384     // get one of the images associated with the item (normal by default)
 
 385     int GetItemImage(const wxTreeItemId& item,
 
 386                      wxTreeItemIcon which = wxTreeItemIcon_Normal) const;
 
 389         // get the wxPyTreeItemData associated with the tree item
 
 390         wxPyTreeItemData* GetItemData(const wxTreeItemId& item) {
 
 391             wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
 
 393                 data = new wxPyTreeItemData();
 
 394                 data->SetId(item); // set the id
 
 395                 self->SetItemData(item, data);
 
 399         // Get the Python object associated with the tree item
 
 400         PyObject* GetItemPyData(const wxTreeItemId& item) {
 
 401             wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
 
 403                 data = new wxPyTreeItemData();
 
 404                 data->SetId(item); // set the id
 
 405                 self->SetItemData(item, data);
 
 407             return data->GetData();
 
 410     %pythoncode { GetPyData = GetItemPyData }
 
 413     // get the item's text colour
 
 414     wxColour GetItemTextColour(const wxTreeItemId& item) const;
 
 416     // get the item's background colour
 
 417     wxColour GetItemBackgroundColour(const wxTreeItemId& item) const;
 
 419     // get the item's font
 
 420     wxFont GetItemFont(const wxTreeItemId& item) const;
 
 425     void SetItemText(const wxTreeItemId& item, const wxString& text);
 
 427     // get one of the images associated with the item (normal by default)
 
 428     void SetItemImage(const wxTreeItemId& item, int image,
 
 429                       wxTreeItemIcon which = wxTreeItemIcon_Normal);
 
 432         // associate a wxPyTreeItemData with the tree item
 
 433         void SetItemData(const wxTreeItemId& item, wxPyTreeItemData* data) {
 
 434             data->SetId(item); // set the id
 
 435             self->SetItemData(item, data);
 
 438         // associate a Python object with the tree item
 
 439         void SetItemPyData(const wxTreeItemId& item, PyObject* obj) {
 
 440             wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
 
 442                 data = new wxPyTreeItemData(obj);
 
 443                 data->SetId(item); // set the id
 
 444                 self->SetItemData(item, data);
 
 449     %pythoncode { SetPyData = SetItemPyData }
 
 452     // force appearance of [+] button near the item. This is useful to
 
 453     // allow the user to expand the items which don't have any children now
 
 454     // - but instead add them only when needed, thus minimizing memory
 
 455     // usage and loading time.
 
 456     void SetItemHasChildren(const wxTreeItemId& item, bool has = true);
 
 458     // the item will be shown in bold
 
 459     void SetItemBold(const wxTreeItemId& item, bool bold = true);
 
 461     // the item will be shown with a drop highlight
 
 462     void SetItemDropHighlight(const wxTreeItemId& item, bool highlight = true);
 
 464     // set the items text colour
 
 465     void SetItemTextColour(const wxTreeItemId& item, const wxColour& col);
 
 467     // set the items background colour
 
 468     void SetItemBackgroundColour(const wxTreeItemId& item, const wxColour& col);
 
 470     // set the items font (should be of the same height for all items)
 
 471     void SetItemFont(const wxTreeItemId& item, const wxFont& font);
 
 474     // is the item visible (it might be outside the view or not expanded)?
 
 475     bool IsVisible(const wxTreeItemId& item) const;
 
 477     // does the item has any children?
 
 478     bool ItemHasChildren(const wxTreeItemId& item) const;
 
 480     // is the item expanded (only makes sense if HasChildren())?
 
 481     bool IsExpanded(const wxTreeItemId& item) const;
 
 483     // is this item currently selected (the same as has focus)?
 
 484     bool IsSelected(const wxTreeItemId& item) const;
 
 486     // is item text in bold font?
 
 487     bool IsBold(const wxTreeItemId& item) const;
 
 490     // if 'recursively' is False, only immediate children count, otherwise
 
 491     // the returned number is the number of all items in this branch
 
 492     size_t GetChildrenCount(const wxTreeItemId& item,
 
 493                             bool recursively = true) /*const*/;
 
 497     // get the root tree item
 
 498     // wxTreeItemId.IsOk() will return False if there is no such item
 
 499     wxTreeItemId GetRootItem() const;
 
 501     // get the item currently selected 
 
 502     // wxTreeItemId.IsOk() will return False if there is no such item
 
 503     wxTreeItemId GetSelection() const;
 
 506         // get the items currently selected, return the number of such item
 
 508         // NB: this operation is expensive and can take a long time for a
 
 509         //     control with a lot of items (~ O(number of items)).
 
 510         PyObject* GetSelections() {
 
 511             wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 512             PyObject*           rval = PyList_New(0);
 
 513             wxArrayTreeItemIds  array;
 
 515             num = self->GetSelections(array);
 
 516             for (x=0; x < num; x++) {
 
 517                 wxTreeItemId *tii = new wxTreeItemId(array.Item(x));
 
 518                 PyObject* item = wxPyConstructObject((void*)tii, wxT("wxTreeItemId"), true);
 
 519                 PyList_Append(rval, item);
 
 522             wxPyEndBlockThreads(blocked);
 
 527     // get the parent of this item
 
 528     // wxTreeItemId.IsOk() will return False if there is no such item
 
 529     wxTreeItemId GetItemParent(const wxTreeItemId& item) const;
 
 532     // NOTE: These are a copy of the same methods in gizmos.i, be sure to
 
 533     // update both at the same time.  (Or find a good way to refactor!)
 
 535         // Get the first child of this item.  Returns a wxTreeItemId and an
 
 536         // opaque "cookie" value that should be passed to GetNextChild in
 
 537         // order to continue the search.
 
 538         PyObject* GetFirstChild(const wxTreeItemId& item) {
 
 540             wxTreeItemId* ritem = new wxTreeItemId(self->GetFirstChild(item, cookie));
 
 541             wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 542             PyObject* tup = PyTuple_New(2);
 
 543             PyTuple_SET_ITEM(tup, 0, wxPyConstructObject(ritem, wxT("wxTreeItemId"), true));
 
 544             PyTuple_SET_ITEM(tup, 1, wxPyMakeSwigPtr(cookie, wxT("void")));
 
 545             wxPyEndBlockThreads(blocked);
 
 550         // Get the next child of this item.  The cookie parameter is the 2nd
 
 551         // value returned from GetFirstChild or the previous GetNextChild.
 
 552         // Returns a wxTreeItemId and an opaque "cookie" value that should be
 
 553         // passed to GetNextChild in order to continue the search.
 
 554         PyObject* GetNextChild(const wxTreeItemId& item, void* cookie) {
 
 555             wxTreeItemId* ritem = new wxTreeItemId(self->GetNextChild(item, cookie));
 
 556             wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 557             PyObject* tup = PyTuple_New(2);
 
 558             PyTuple_SET_ITEM(tup, 0, wxPyConstructObject(ritem, wxT("wxTreeItemId"), true));
 
 559             PyTuple_SET_ITEM(tup, 1, wxPyMakeSwigPtr(cookie, wxT("void")));
 
 560             wxPyEndBlockThreads(blocked);
 
 565     // get the last child of this item
 
 566     wxTreeItemId GetLastChild(const wxTreeItemId& item) const;
 
 568     // get the next sibling of this item
 
 569     wxTreeItemId GetNextSibling(const wxTreeItemId& item) const;
 
 571     // get the previous sibling
 
 572     wxTreeItemId GetPrevSibling(const wxTreeItemId& item) const;
 
 574     // get first visible item
 
 575     wxTreeItemId GetFirstVisibleItem() const;
 
 577     // get the next visible item: item must be visible itself!
 
 578     // see IsVisible() and wxTreeCtrl::GetFirstVisibleItem()
 
 579     wxTreeItemId GetNextVisible(const wxTreeItemId& item) const;
 
 581     // get the previous visible item: item must be visible itself!
 
 582     wxTreeItemId GetPrevVisible(const wxTreeItemId& item) const;
 
 586     // add the root node to the tree
 
 587     wxTreeItemId AddRoot(const wxString& text,
 
 588                          int image = -1, int selectedImage = -1,
 
 589                          wxPyTreeItemData *data = NULL);
 
 591     // insert a new item in as the first child of the parent
 
 592     wxTreeItemId PrependItem(const wxTreeItemId& parent,
 
 593                              const wxString& text,
 
 594                              int image = -1, int selectedImage = -1,
 
 595                              wxPyTreeItemData *data = NULL);
 
 597     // insert a new item after a given one
 
 598     wxTreeItemId InsertItem(const wxTreeItemId& parent,
 
 599                             const wxTreeItemId& idPrevious,
 
 600                             const wxString& text,
 
 601                             int image = -1, int selectedImage = -1,
 
 602                             wxPyTreeItemData *data = NULL);
 
 604     // insert a new item before the one with the given index
 
 605     %Rename(InsertItemBefore, 
 
 606     wxTreeItemId, InsertItem(const wxTreeItemId& parent,
 
 608                             const wxString& text,
 
 609                             int image = -1, int selectedImage = -1,
 
 610                             wxPyTreeItemData *data = NULL));
 
 612         // insert a new item in as the last child of the parent
 
 613     wxTreeItemId AppendItem(const wxTreeItemId& parent,
 
 614                             const wxString& text,
 
 615                             int image = -1, int selectedImage = -1,
 
 616                             wxPyTreeItemData *data = NULL);
 
 620     // delete this item and associated data if any
 
 621     void Delete(const wxTreeItemId& item);
 
 623     // delete all children (but don't delete the item itself)
 
 624     // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
 
 625     void DeleteChildren(const wxTreeItemId& item);
 
 627     // delete all items from the tree
 
 628     // NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
 
 629     void DeleteAllItems();
 
 633     void Expand(const wxTreeItemId& item);
 
 635     // collapse the item without removing its children
 
 636     void Collapse(const wxTreeItemId& item);
 
 638     // collapse the item and remove all children
 
 639     void CollapseAndReset(const wxTreeItemId& item);
 
 641     // toggles the current state
 
 642     void Toggle(const wxTreeItemId& item);
 
 645     // remove the selection from currently selected item (if any)
 
 648     // remove the selection from the given one (multiselect mode only)
 
 649     void UnselectItem(const wxTreeItemId& item);
 
 651     // unselect all items (only makes sense for multiple selection control)
 
 655     void SelectItem(const wxTreeItemId& item, bool select = true);
 
 657     // toggle the item selection
 
 658     void ToggleItemSelection(const wxTreeItemId& item);
 
 661     // make sure this item is visible (expanding the parent item and/or
 
 662     // scrolling to this item if necessary)
 
 663     void EnsureVisible(const wxTreeItemId& item);
 
 665     // scroll to this item (but don't expand its parent)
 
 666     void ScrollTo(const wxTreeItemId& item);
 
 670     // start editing the item label: this (temporarily) replaces the item
 
 671     // with a one line edit control. The item will be selected if it hadn't
 
 673     /**wxTextCtrl* */ void  EditLabel(const wxTreeItemId& item);
 
 675     // returns the same pointer as StartEdit() if the item is being edited,
 
 676     // NULL otherwise (it's assumed that no more than one item may be
 
 677     // edited simultaneously)
 
 678     wxTextCtrl* GetEditControl() const;
 
 681     // end editing and accept or discard the changes to item label
 
 682     void EndEditLabel(const wxTreeItemId& item, bool discardChanges = false);
 
 686     // Sort the children of this item using OnCompareItems, a member function
 
 687     // that is called to compare 2 items and should return -1, 0 or +1 if the
 
 688     // first item is less than, equal to or greater than the second one. The
 
 689     // base class version performs alphabetic comparaison of item labels
 
 691     void SortChildren(const wxTreeItemId& item);
 
 696         wxTreeItemId, HitTest(const wxPoint& point, int& OUTPUT),
 
 697         "HitTest(Point point) -> (item, where)",
 
 698         "Determine which item (if any) belongs the given point.  The coordinates
 
 699 specified are relative to the client area of tree ctrl and the where return
 
 700 value is set to a bitmask of wxTREE_HITTEST_xxx constants.
 
 705         // get the bounding rectangle of the item (or of its label only)
 
 706         PyObject* GetBoundingRect(const wxTreeItemId& item,  bool textOnly = false) {
 
 708             if (self->GetBoundingRect(item, rect, textOnly)) {
 
 709                 wxPyBlock_t blocked = wxPyBeginBlockThreads();
 
 710                 wxRect* r = new wxRect(rect);
 
 711                 PyObject* val = wxPyConstructObject((void*)r, wxT("wxRect"), true);
 
 712                 wxPyEndBlockThreads(blocked);
 
 721     // set/get the item state.image (state == -1 means cycle to the next one)
 
 722     void SetState(const wxTreeItemId& node, int state);
 
 723     int GetState(const wxTreeItemId& node);
 
 726     static wxVisualAttributes
 
 727     GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
 
 731 //---------------------------------------------------------------------------
 
 733     // Map renamed classes back to their common name for OOR
 
 734     wxPyPtrTypeMap_Add("wxTreeItemData", "wxPyTreeItemData");
 
 735     wxPyPtrTypeMap_Add("wxTreeCtrl", "wxPyTreeCtrl");
 
 737 //---------------------------------------------------------------------------