]> git.saurik.com Git - wxWidgets.git/commitdiff
Added FindById
authorRobin Dunn <robin@alldunn.com>
Thu, 18 Dec 2003 00:01:33 +0000 (00:01 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 18 Dec 2003 00:01:33 +0000 (00:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24900 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_toolbar.i

index 208beb8b0adc8de4d15aaf53d27e678b44039850..e8ee8dad4845b2239323dff689717e5f66ba87ef 100644 (file)
@@ -303,9 +303,8 @@ public:
                               shortHelp, longHelp, clientData)
     }
 
-    // TODO?
-    //wxToolBarToolBase *AddTool (wxToolBarToolBase *tool);
-    //wxToolBarToolBase *InsertTool (size_t pos, wxToolBarToolBase *tool);
+    %name(AddToolItem) wxToolBarToolBase *AddTool (wxToolBarToolBase *tool);
+    %name(InsertToolItem) wxToolBarToolBase *InsertTool (size_t pos, wxToolBarToolBase *tool);
 
     wxToolBarToolBase *AddControl(wxControl *control);
     wxToolBarToolBase *InsertControl(size_t pos, wxControl *control);
@@ -376,6 +375,9 @@ public:
     // there is no tool at this point (corrdinates are client)
     wxToolBarToolBase *FindToolForPosition(wxCoord x, wxCoord y);
 
+    // find the tool by id
+    wxToolBarToolBase *FindById(int toolid) const;
+
     // return True if this is a vertical toolbar, otherwise False
     bool IsVertical();
 };