X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/854e189f90dac9ba5e0239bca79aed64e8d6f46c..f4bc1aa27cb33f679d7e9c1518a7855bbc1fa471:/src/xrc/xh_bmp.cpp diff --git a/src/xrc/xh_bmp.cpp b/src/xrc/xh_bmp.cpp index c7a1ed9b5a..a91318801b 100644 --- a/src/xrc/xh_bmp.cpp +++ b/src/xrc/xh_bmp.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_bmp.cpp +// Name: src/xrc/xh_bmp.cpp // Purpose: XRC resource for wxBitmap and wxIcon // Author: Vaclav Slavik // Created: 2000/09/09 @@ -7,10 +7,6 @@ // Copyright: (c) 2000 Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_bmp.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,19 +15,26 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_bmp.h" -#include "wx/bitmap.h" + +#ifndef WX_PRECOMP + #include "wx/bitmap.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxBitmapXmlHandler, wxXmlResourceHandler) -wxBitmapXmlHandler::wxBitmapXmlHandler() -: wxXmlResourceHandler() +wxBitmapXmlHandler::wxBitmapXmlHandler() + :wxXmlResourceHandler() { } wxObject *wxBitmapXmlHandler::DoCreateResource() -{ - return new wxBitmap(GetBitmap(wxT(""))); +{ + // NB: empty parameter name means "take directly from this node's next + // instead of from subnode with given name" + return new wxBitmap(GetBitmap(wxEmptyString)); } bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node) @@ -41,17 +44,21 @@ bool wxBitmapXmlHandler::CanHandle(wxXmlNode *node) IMPLEMENT_DYNAMIC_CLASS(wxIconXmlHandler, wxXmlResourceHandler) -wxIconXmlHandler::wxIconXmlHandler() -: wxXmlResourceHandler() +wxIconXmlHandler::wxIconXmlHandler() +: wxXmlResourceHandler() { } wxObject *wxIconXmlHandler::DoCreateResource() -{ - return new wxIcon(GetIcon(wxT(""))); +{ + // NB: empty parameter name means "take directly from this node's next + // instead of from subnode with given name" + return new wxIcon(GetIcon(wxEmptyString)); } bool wxIconXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxIcon")); } + +#endif // wxUSE_XRC