X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/854e189f90dac9ba5e0239bca79aed64e8d6f46c..c77eea28f955e9c5e59d952594ccc5e96de1597e:/src/xrc/xh_chckb.cpp diff --git a/src/xrc/xh_chckb.cpp b/src/xrc/xh_chckb.cpp index c7a0e824b6..4f84fccd36 100644 --- a/src/xrc/xh_chckb.cpp +++ b/src/xrc/xh_chckb.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_chckb.cpp +// Name: src/xrc/xh_chckb.cpp // Purpose: XRC resource for wxCheckBox // Author: Bob Mitchell // Created: 2000/03/21 @@ -7,10 +7,6 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_chckb.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,21 +15,28 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_CHECKBOX + #include "wx/xrc/xh_chckb.h" -#include "wx/checkbox.h" -#if wxUSE_CHECKBOX +#ifndef WX_PRECOMP + #include "wx/checkbox.h" +#endif IMPLEMENT_DYNAMIC_CLASS(wxCheckBoxXmlHandler, wxXmlResourceHandler) -wxCheckBoxXmlHandler::wxCheckBoxXmlHandler() -: wxXmlResourceHandler() +wxCheckBoxXmlHandler::wxCheckBoxXmlHandler() +: wxXmlResourceHandler() { + XRC_ADD_STYLE(wxCHK_2STATE); + XRC_ADD_STYLE(wxCHK_3STATE); + XRC_ADD_STYLE(wxCHK_ALLOW_3RD_STATE_FOR_USER); + XRC_ADD_STYLE(wxALIGN_RIGHT); AddWindowStyles(); } wxObject *wxCheckBoxXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxCheckBox) control->Create(m_parentAsWindow, @@ -46,7 +49,7 @@ wxObject *wxCheckBoxXmlHandler::DoCreateResource() control->SetValue(GetBool( wxT("checked"))); SetupWindow(control); - + return control; } @@ -55,4 +58,4 @@ bool wxCheckBoxXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxCheckBox")); } -#endif +#endif // wxUSE_XRC && wxUSE_CHECKBOX