X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/xrc/xh_scrol.cpp diff --git a/contrib/src/xrc/xh_scrol.cpp b/contrib/src/xrc/xh_scrol.cpp index 8077a49101..f1c6fcba19 100644 --- a/contrib/src/xrc/xh_scrol.cpp +++ b/contrib/src/xrc/xh_scrol.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Brian Gavin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_scrol.h" #endif @@ -22,9 +22,10 @@ #include "wx/xrc/xh_scrol.h" #include "wx/scrolbar.h" +IMPLEMENT_DYNAMIC_CLASS(wxScrollBarXmlHandler, wxXmlResourceHandler) -wxScrollBarXmlHandler::wxScrollBarXmlHandler() -: wxXmlResourceHandler() +wxScrollBarXmlHandler::wxScrollBarXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxSB_HORIZONTAL); XRC_ADD_STYLE(wxSB_VERTICAL); @@ -32,7 +33,7 @@ wxScrollBarXmlHandler::wxScrollBarXmlHandler() } wxObject *wxScrollBarXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(control, wxScrollBar) control->Create(m_parentAsWindow, @@ -42,13 +43,14 @@ wxObject *wxScrollBarXmlHandler::DoCreateResource() wxDefaultValidator, GetName()); - control->SetScrollbar(GetLong( wxT("value"), 0), + control->SetScrollbar(GetLong( wxT("value"), 0), GetLong( wxT("thumbsize"),1), GetLong( wxT("range"), 10), GetLong( wxT("pagesize"),1)); SetupWindow(control); - + CreateChildren(control); + return control; }