X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bd6412b6d07c0291a8927375abaa7c0f815e4a96..b736d59eb531794e6b1cef2b4997c517569ff0dd:/include/wx/imaglist.h?ds=sidebyside diff --git a/include/wx/imaglist.h b/include/wx/imaglist.h index 8c4bec7bcc..72255ac710 100644 --- a/include/wx/imaglist.h +++ b/include/wx/imaglist.h @@ -5,13 +5,14 @@ // Modified by: // Created: // Copyright: (c) Julian Smart -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #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. @@ -27,7 +28,8 @@ */ // Flag values for Set/GetImageList -enum { +enum +{ wxIMAGE_LIST_NORMAL, // Normal icons wxIMAGE_LIST_SMALL, // Small icons wxIMAGE_LIST_STATE // State icons: unimplemented (see WIN32 documentation) @@ -39,14 +41,16 @@ enum { #define wxIMAGELIST_DRAW_SELECTED 0x0004 #define wxIMAGELIST_DRAW_FOCUSED 0x0008 +#if defined(__WXMSW__) || defined(__WXMAC__) + #define wxHAS_NATIVE_IMAGELIST +#endif -#if defined(__WIN32__) && !defined(__WXUNIVERSAL__) - #include "wx/msw/imaglist.h" -#elif defined(__WXMAC_CARBON__) - #include "wx/mac/imaglist.h" -#else +#if !defined(wxHAS_NATIVE_IMAGELIST) #include "wx/generic/imaglist.h" +#elif defined(__WXMSW__) + #include "wx/msw/imaglist.h" +#elif defined(__WXMAC__) + #include "wx/osx/imaglist.h" #endif -#endif - // _WX_IMAGLIST_H_BASE_ +#endif // _WX_IMAGLIST_H_BASE_