]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_imaglist.i
Add wxPyTabArt
[wxWidgets.git] / wxPython / src / _imaglist.i
index b0c0974868fcb257c30d2a7ddf0b26b40530f613..9a63bb10b8cdb09e28c670e77bbb763f4495b81d 100644 (file)
@@ -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));
@@ -53,13 +59,7 @@ public:
     wxBitmap GetBitmap(int index) const;
     wxIcon GetIcon(int index) const;
       
-#ifdef __WXMSW__
     bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
-#else
-//      %Rename(ReplaceIcon,bool, Replace(int index, const wxIcon& icon));
-//      int Add(const wxBitmap& bitmap);
-    bool Replace(int index, const wxBitmap& bitmap);
-#endif
 
     bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
               const bool solidBackground = false);
@@ -70,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`");
 };
 
 //---------------------------------------------------------------------------