reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24917 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-12-18 19:11:15 +00:00
parent c1ea08d355
commit 3a04f1432d
6 changed files with 151 additions and 5 deletions

View File

@@ -2543,6 +2543,14 @@ class ToolBarBase(core.Control):
return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_RADIO,
shortHelp, longHelp, clientData)
def AddToolItem(*args, **kwargs):
"""AddToolItem(ToolBarToolBase tool) -> ToolBarToolBase"""
return _controls.ToolBarBase_AddToolItem(*args, **kwargs)
def InsertToolItem(*args, **kwargs):
"""InsertToolItem(size_t pos, ToolBarToolBase tool) -> ToolBarToolBase"""
return _controls.ToolBarBase_InsertToolItem(*args, **kwargs)
def AddControl(*args, **kwargs):
"""AddControl(Control control) -> ToolBarToolBase"""
return _controls.ToolBarBase_AddControl(*args, **kwargs)
@@ -2695,6 +2703,10 @@ class ToolBarBase(core.Control):
"""FindToolForPosition(int x, int y) -> ToolBarToolBase"""
return _controls.ToolBarBase_FindToolForPosition(*args, **kwargs)
def FindById(*args, **kwargs):
"""FindById(int toolid) -> ToolBarToolBase"""
return _controls.ToolBarBase_FindById(*args, **kwargs)
def IsVertical(*args, **kwargs):
"""IsVertical() -> bool"""
return _controls.ToolBarBase_IsVertical(*args, **kwargs)