]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/imaglist.h
Add XRC handler for wxCommandLinkButton.
[wxWidgets.git] / include / wx / imaglist.h
index f4468e216f9ca75abd133df219c19f4306059fbd..18b0daa5046726775d00a42a75094099ee24d8d3 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef _WX_IMAGLIST_H_BASE_
 #define _WX_IMAGLIST_H_BASE_
 
+#include "wx/defs.h"
+
 /*
  * wxImageList is used for wxListCtrl, wxTreeCtrl. These controls refer to
  * images for their items by an index into an image list.
@@ -40,7 +42,7 @@ enum
 #define wxIMAGELIST_DRAW_SELECTED       0x0004
 #define wxIMAGELIST_DRAW_FOCUSED        0x0008
 
-#if defined(__WXMSW__) || defined(__WXMAC__)
+#if defined(__WXMSW__) || defined(__WXMAC__) || defined(__WXPALMOS__)
     #define wxHAS_NATIVE_IMAGELIST
 #endif
 
@@ -49,7 +51,9 @@ enum
 #elif defined(__WXMSW__)
     #include "wx/msw/imaglist.h"
 #elif defined(__WXMAC__)
-    #include "wx/mac/imaglist.h"
+    #include "wx/osx/imaglist.h"
+#elif defined(__WXPALMOS__)
+    #include "wx/palmos/imaglist.h"
 #endif
 
 #endif // _WX_IMAGLIST_H_BASE_