X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..5c5ab9ebc3a7dd441c9e3b25cb3daf8f733c374f:/src/msw/gdiimage.cpp diff --git a/src/msw/gdiimage.cpp b/src/msw/gdiimage.cpp index 9e2947717d..bc4c53ec52 100644 --- a/src/msw/gdiimage.cpp +++ b/src/msw/gdiimage.cpp @@ -37,7 +37,17 @@ #include "wx/app.h" #include "wx/msw/dib.h" +#include "wx/msw/bitmap.h" #include "wx/msw/gdiimage.h" +#include "wx/bitmap.h" + +#if wxUSE_XPM_IN_MSW +# include "wx/xpmhand.h" +#endif // wxUSE_XPM_IN_MSW + +#ifdef __WIN16__ +# include "wx/msw/curico.h" +#endif // __WIN16__ // ---------------------------------------------------------------------------- // private classes @@ -291,10 +301,12 @@ void wxGDIImage::InitStandardHandlers() AddHandler(new wxBMPResourceHandler); AddHandler(new wxBMPFileHandler); - // Not added by default: include xpmhand.h in your app - // and call these in your wxApp::OnInit. - // AddHandler(new wxXPMFileHandler); - // AddHandler(new wxXPMDataHandler); + // GRG: Add these handlers by default if XPM support is enabled + +#if wxUSE_XPM_IN_MSW + AddHandler(new wxXPMFileHandler); + AddHandler(new wxXPMDataHandler); +#endif // wxUSE_XPM_IN_MSW AddHandler(new wxICOResourceHandler); AddHandler(new wxICOFileHandler);