public:
wxImageList::wxImageList() { }
- wxImageList(int width, int height, bool mask = TRUE, int initialCount = 1);
+ wxImageList( int width, int height, bool mask = TRUE, int initialCount = 1 );
~wxImageList();
bool Create();
int GetImageCount() const;
bool RemoveAll();
bool GetSize( int index, int &width, int &height ) const;
bool Draw(int index, wxDC& dc, int x, int y,
- int flags = wxIMAGELIST_DRAW_NORMAL, const bool solidBackground = FALSE );
-
+ int flags = wxIMAGELIST_DRAW_NORMAL, bool solidBackground = FALSE );
+
private:
wxList m_images;
+ int m_width;
+ int m_height;
};
#endif // __IMAGELISTH_G__