]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/imaglist.h
Added variant.h/cpp; changed variable names in object.h; added some
[wxWidgets.git] / include / wx / generic / imaglist.h
index 2a0893a3ac18b073195c18c390885d2b35167ad9..d13864cbbf914f2f1af7334de8717012630fc971 100644 (file)
 #define wxIMAGELIST_DRAW_SELECTED       0x0004
 #define wxIMAGELIST_DRAW_FOCUSED        0x0008
 
+// Flag values for Set/GetImageList
+enum {
+    wxIMAGE_LIST_NORMAL, // Normal icons
+    wxIMAGE_LIST_SMALL,  // Small icons
+    wxIMAGE_LIST_STATE   // State icons: unimplemented (see WIN32 documentation)
+};
+
 class wxImageList: public wxObject
 {
    DECLARE_DYNAMIC_CLASS(wxImageList)
    
   public:
 
-    wxImageList::wxImageList() { }
+    wxImageList() { }
     wxImageList( int width, int height, bool mask = TRUE, int initialCount = 1 );
     ~wxImageList();
     bool Create();
     int GetImageCount() const;
     int Add( const wxBitmap &bitmap );
+    wxBitmap *GetBitmap(int index);
     bool Replace( int index, const wxBitmap &bitmap );
     bool Remove( int index );
     bool RemoveAll();