X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7557b9b54279e438608cdfc28badf348ce8ac2ff..2d17efa94e68c37fb415cf530daa558692ab7c2d:/wxPython/src/gtk/_gdi.py diff --git a/wxPython/src/gtk/_gdi.py b/wxPython/src/gtk/_gdi.py index c7ceb2f500..89748cd19d 100644 --- a/wxPython/src/gtk/_gdi.py +++ b/wxPython/src/gtk/_gdi.py @@ -1039,7 +1039,7 @@ def CursorFromImage(*args, **kwargs): CursorFromImage(Image image) -> Cursor Constructs a cursor from a `wx.Image`. The mask (if any) will be used - as transparent. + for setting the transparent portions of the cursor. """ val = _gdi_.new_CursorFromImage(*args, **kwargs) val.thisown = 1 @@ -4427,6 +4427,14 @@ class ImageList(_core.Object): """AddIcon(self, Icon icon) -> int""" return _gdi_.ImageList_AddIcon(*args, **kwargs) + def GetBitmap(*args, **kwargs): + """GetBitmap(self, int index) -> Bitmap""" + return _gdi_.ImageList_GetBitmap(*args, **kwargs) + + def GetIcon(*args, **kwargs): + """GetIcon(self, int index) -> Icon""" + return _gdi_.ImageList_GetIcon(*args, **kwargs) + def Replace(*args, **kwargs): """Replace(self, int index, Bitmap bitmap) -> bool""" return _gdi_.ImageList_Replace(*args, **kwargs)