X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..5875d39c9ba19f518e691792524f2fd03261c825:/src/xrc/xh_gauge.cpp diff --git a/src/xrc/xh_gauge.cpp b/src/xrc/xh_gauge.cpp index a52b8075aa..832c7e3960 100644 --- a/src/xrc/xh_gauge.cpp +++ b/src/xrc/xh_gauge.cpp @@ -7,10 +7,6 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_gauge.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,13 +15,15 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_GAUGE + #include "wx/xrc/xh_gauge.h" #include "wx/gauge.h" -#if wxUSE_GAUGE +IMPLEMENT_DYNAMIC_CLASS(wxGaugeXmlHandler, wxXmlResourceHandler) -wxGaugeXmlHandler::wxGaugeXmlHandler() -: wxXmlResourceHandler() +wxGaugeXmlHandler::wxGaugeXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxGA_HORIZONTAL); XRC_ADD_STYLE(wxGA_VERTICAL); @@ -35,12 +33,12 @@ wxGaugeXmlHandler::wxGaugeXmlHandler() } wxObject *wxGaugeXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxGauge) control->Create(m_parentAsWindow, GetID(), - GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE), + GetLong(wxT("range"), wxGAUGE_DEFAULT_RANGE), GetPosition(), GetSize(), GetStyle(), wxDefaultValidator, @@ -69,4 +67,4 @@ bool wxGaugeXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxGauge")); } -#endif // wxUSE_GAUGE +#endif // wxUSE_XRC && wxUSE_GAUGE