X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/78d14f80e9a72041ede52c30d912ec5cef21b1b3..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/xrc/xh_bmp.cpp diff --git a/contrib/src/xrc/xh_bmp.cpp b/contrib/src/xrc/xh_bmp.cpp index 181af55af3..0853104360 100644 --- a/contrib/src/xrc/xh_bmp.cpp +++ b/contrib/src/xrc/xh_bmp.cpp @@ -1,13 +1,13 @@ ///////////////////////////////////////////////////////////////////////////// // Name: xh_bmp.cpp -// Purpose: XML resource for wxBitmap and wxIcon +// Purpose: XRC resource for wxBitmap and wxIcon // Author: Vaclav Slavik // Created: 2000/09/09 // RCS-ID: $Id$ // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_bmp.h" #endif @@ -22,39 +22,36 @@ #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")); } -