X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5d6954b87d910969226ffade9714db7429211f3..5e80ff3d31fde40c3cef5a3b47d08850d95b5d1a:/src/xrc/xh_bmp.cpp?ds=sidebyside diff --git a/src/xrc/xh_bmp.cpp b/src/xrc/xh_bmp.cpp index 1c6e18924d..ad56a9add2 100644 --- a/src/xrc/xh_bmp.cpp +++ b/src/xrc/xh_bmp.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_bmp.h" #endif @@ -19,42 +19,43 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_bmp.h" #include "wx/bitmap.h" +IMPLEMENT_DYNAMIC_CLASS(wxBitmapXmlHandler, wxXmlResourceHandler) -wxBitmapXmlHandler::wxBitmapXmlHandler() -: wxXmlResourceHandler() +wxBitmapXmlHandler::wxBitmapXmlHandler() +: wxXmlResourceHandler() { } wxObject *wxBitmapXmlHandler::DoCreateResource() -{ +{ return new wxBitmap(GetBitmap(wxT(""))); } - - bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxBitmap")); } +IMPLEMENT_DYNAMIC_CLASS(wxIconXmlHandler, wxXmlResourceHandler) -wxIconXmlHandler::wxIconXmlHandler() -: wxXmlResourceHandler() +wxIconXmlHandler::wxIconXmlHandler() +: wxXmlResourceHandler() { } wxObject *wxIconXmlHandler::DoCreateResource() -{ +{ return new wxIcon(GetIcon(wxT(""))); } - - bool wxIconXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxIcon")); } +#endif // wxUSE_XRC