X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..a1b2d8d9b9fe8213cf7827a12dee4251d3ea48a7:/src/xrc/xh_slidr.cpp diff --git a/src/xrc/xh_slidr.cpp b/src/xrc/xh_slidr.cpp index acf894537d..8e4b7e74a7 100644 --- a/src/xrc/xh_slidr.cpp +++ b/src/xrc/xh_slidr.cpp @@ -7,8 +7,8 @@ // Copyright: (c) 2000 Bob Mitchell and Verant Interactive // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ + +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "xh_slidr.h" #endif @@ -19,13 +19,15 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_SLIDER + #include "wx/xrc/xh_slidr.h" #include "wx/slider.h" -#if wxUSE_SLIDER +IMPLEMENT_DYNAMIC_CLASS(wxSliderXmlHandler, wxXmlResourceHandler) -wxSliderXmlHandler::wxSliderXmlHandler() -: wxXmlResourceHandler() +wxSliderXmlHandler::wxSliderXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxSL_HORIZONTAL); XRC_ADD_STYLE(wxSL_VERTICAL); @@ -41,12 +43,12 @@ wxSliderXmlHandler::wxSliderXmlHandler() } wxObject *wxSliderXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxSlider) control->Create(m_parentAsWindow, GetID(), - GetLong(wxT("value"), wxSL_DEFAULT_VALUE), + GetLong(wxT("value"), wxSL_DEFAULT_VALUE), GetLong(wxT("min"), wxSL_DEFAULT_MIN), GetLong(wxT("max"), wxSL_DEFAULT_MAX), GetPosition(), GetSize(), @@ -80,7 +82,7 @@ wxObject *wxSliderXmlHandler::DoCreateResource() } SetupWindow(control); - + return control; } @@ -89,4 +91,4 @@ bool wxSliderXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxSlider")); } -#endif +#endif // wxUSE_XRC && wxUSE_SLIDER