X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6762286db6cf974817dead5b88bebf0e390dbb7e..ed8b46bba32c76a5544e6043a0a6de21eda5a712:/include/wx/osx/imaglist.h diff --git a/include/wx/osx/imaglist.h b/include/wx/osx/imaglist.h index 10e96b588d..b56242db12 100644 --- a/include/wx/osx/imaglist.h +++ b/include/wx/osx/imaglist.h @@ -27,10 +27,10 @@ public: virtual ~wxImageList(); bool Create( int width, int height, bool mask = true, int initialCount = 1 ); bool Create(); - + virtual int GetImageCount() const; virtual bool GetSize( int index, int &width, int &height ) const; - + int Add( const wxIcon& bitmap ); int Add( const wxBitmap& bitmap ); int Add( const wxBitmap& bitmap, const wxBitmap& mask ); @@ -42,17 +42,17 @@ public: bool Replace( int index, const wxBitmap &bitmap, const wxBitmap &mask ); bool Remove( int index ); bool RemoveAll(); - + virtual bool Draw(int index, wxDC& dc, int x, int y, int flags = wxIMAGELIST_DRAW_NORMAL, bool solidBackground = false); - + private: wxList m_images; - + int m_width; int m_height; - + DECLARE_DYNAMIC_CLASS(wxImageList) };