X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f177c8e7309c8cf3ece1563870d135cc8f0e6a1..34153050fe525ca6c46f259b638fae5590a87290:/src/msw/gdiimage.cpp?ds=sidebyside diff --git a/src/msw/gdiimage.cpp b/src/msw/gdiimage.cpp index d34a94c64c..bc4c53ec52 100644 --- a/src/msw/gdiimage.cpp +++ b/src/msw/gdiimage.cpp @@ -37,10 +37,16 @@ #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" +# include "wx/msw/curico.h" #endif // __WIN16__ // ---------------------------------------------------------------------------- @@ -295,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);