X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f5b93fb9f2691f059643400ab3ff7b362b17aac..0ba6a836246ee6768c29d50adfe9fee30221da8e:/src/xrc/xh_split.cpp?ds=sidebyside diff --git a/src/xrc/xh_split.cpp b/src/xrc/xh_split.cpp index 4b23f9ff60..b3ba2adec8 100644 --- a/src/xrc/xh_split.cpp +++ b/src/xrc/xh_split.cpp @@ -7,10 +7,6 @@ // Copyright: (c) 2003 panga@freemail.hu, Vaclav Slavik // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_split.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,10 +15,14 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/xrc/xh_split.h" #include "wx/splitter.h" #include "wx/log.h" +IMPLEMENT_DYNAMIC_CLASS(wxSplitterWindowXmlHandler, wxXmlResourceHandler) + wxSplitterWindowXmlHandler::wxSplitterWindowXmlHandler() : wxXmlResourceHandler() { XRC_ADD_STYLE(wxSP_3D); @@ -33,6 +33,7 @@ wxSplitterWindowXmlHandler::wxSplitterWindowXmlHandler() : wxXmlResourceHandler( XRC_ADD_STYLE(wxSP_NOBORDER); XRC_ADD_STYLE(wxSP_PERMIT_UNSPLIT); XRC_ADD_STYLE(wxSP_LIVE_UPDATE); + XRC_ADD_STYLE(wxSP_NO_XP_THEME); AddWindowStyles(); } @@ -57,7 +58,7 @@ wxObject *wxSplitterWindowXmlHandler::DoCreateResource() wxXmlNode *n = m_node->GetChildren(); while (n) { - if ((n->GetType() == wxXML_ELEMENT_NODE) && + if ((n->GetType() == wxXML_ELEMENT_NODE) && (n->GetName() == wxT("object") || n->GetName() == wxT("object_ref"))) { @@ -71,7 +72,7 @@ wxObject *wxSplitterWindowXmlHandler::DoCreateResource() { win2 = win; break; - } + } } n = n->GetNext(); } @@ -100,4 +101,4 @@ bool wxSplitterWindowXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxSplitterWindow")); } - +#endif // wxUSE_XRC