reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37584 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-14 22:13:50 +00:00
parent e17b4db3f8
commit b1fcee843e
67 changed files with 2976 additions and 460 deletions

View File

@@ -240,6 +240,14 @@ class BitmapButton(Button):
"""
return _controls_.BitmapButton_GetBitmapSelected(*args, **kwargs)
def GetBitmapHover(*args, **kwargs):
"""
GetBitmapHover(self) -> Bitmap
Returns the bitmap used when the mouse is over the button, may be invalid.
"""
return _controls_.BitmapButton_GetBitmapHover(*args, **kwargs)
def SetBitmapDisabled(*args, **kwargs):
"""
SetBitmapDisabled(self, Bitmap bitmap)
@@ -273,6 +281,16 @@ class BitmapButton(Button):
"""
return _controls_.BitmapButton_SetBitmapLabel(*args, **kwargs)
def SetBitmapHover(*args, **kwargs):
"""
SetBitmapHover(self, Bitmap hover)
Sets the bitmap to be shown when the mouse is over the button. This function
is new since wxWidgets version 2.7.0 and the hover bitmap is currently only
supported in wxMSW.
"""
return _controls_.BitmapButton_SetBitmapHover(*args, **kwargs)
def SetMargins(*args, **kwargs):
"""SetMargins(self, int x, int y)"""
return _controls_.BitmapButton_SetMargins(*args, **kwargs)