X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6af7d1bdb70d0e284ec442d1235f57db0edb6687..9ac884500ce30c58e24b0a6af1288b576d2e03e4:/wxPython/src/_imaglist.i diff --git a/wxPython/src/_imaglist.i b/wxPython/src/_imaglist.i index a47dd81a3d..9a63bb10b8 100644 --- a/wxPython/src/_imaglist.i +++ b/wxPython/src/_imaglist.i @@ -43,8 +43,14 @@ MustHaveApp(wxImageList); // two bitmaps, or an icon. class wxImageList : public wxObject { public: + // turn off this typemap + %typemap(out) wxImageList*; + wxImageList(int width, int height, int mask=true, int initialCount=1); ~wxImageList(); + + // Turn it back on again + %typemap(out) wxImageList* { $result = wxPyMake_wxObject($1, $owner); } int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap); %Rename(AddWithColourMask,int, Add(const wxBitmap& bitmap, const wxColour& maskColour)); @@ -64,8 +70,10 @@ public: DocDeclA( void, GetSize(int index, int& OUTPUT, int& OUTPUT), - "GetSize() -> (width,height)"); + "GetSize(index) -> (width,height)"); + %property(ImageCount, GetImageCount, doc="See `GetImageCount`"); + %property(Size, GetSize, doc="See `GetSize`"); }; //---------------------------------------------------------------------------