]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_imaglist.i
the #ifdef around BROWSEINFO.lpszTitle assignment is bogus; should be c_str() everywhere
[wxWidgets.git] / wxPython / src / _imaglist.i
index a5a37f08ff90cac37e12449f56e5f44bc36b2e3e..b5df300010bb2d00c529eccfc4c56be7709803f6 100644 (file)
@@ -33,6 +33,8 @@ enum {
 };
 
 
+MustHaveApp(wxImageList);
+
 
 //  wxImageList is used for wxListCtrl, wxTreeCtrl. These controls refer to
 //  images for their items by an index into an image list.
@@ -41,7 +43,7 @@ enum {
 //  two bitmaps, or an icon.
 class wxImageList : public wxObject {
 public:
-    wxImageList(int width, int height, int mask=True, int initialCount=1);
+    wxImageList(int width, int height, int mask=true, int initialCount=1);
     ~wxImageList();
 
     int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
@@ -56,12 +58,16 @@ public:
 #endif
 
     bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
-              const bool solidBackground = False);
+              const bool solidBackground = false);
 
     int GetImageCount();
     bool Remove(int index);
     bool RemoveAll();
-    void GetSize(int index, int& OUTPUT, int& OUTPUT);
+
+    DocDeclA(
+        void, GetSize(int index, int& OUTPUT, int& OUTPUT),
+        "GetSize() -> (width,height)");
+        
 };
 
 //---------------------------------------------------------------------------