X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/995c1788f537c773b476ca078b220fbc126ebc12..b6cf9ad090a3ab83c3f14043af9798b61eaff1d3:/src/xrc/xh_gdctl.cpp?ds=sidebyside diff --git a/src/xrc/xh_gdctl.cpp b/src/xrc/xh_gdctl.cpp index 9252d60f91..37a01cecc7 100644 --- a/src/xrc/xh_gdctl.cpp +++ b/src/xrc/xh_gdctl.cpp @@ -8,7 +8,7 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma implementation "xh_gdctl.h" #endif @@ -19,27 +19,28 @@ #pragma hdrstop #endif -#include "wx/defs.h" -#if wxUSE_DIRDLG +#if wxUSE_XRC && wxUSE_DIRDLG #include "wx/textctrl.h" #include "wx/xrc/xh_gdctl.h" #include "wx/dirctrl.h" +IMPLEMENT_DYNAMIC_CLASS(wxGenericDirCtrlXmlHandler, wxXmlResourceHandler) + wxGenericDirCtrlXmlHandler::wxGenericDirCtrlXmlHandler() : wxXmlResourceHandler() { - ADD_STYLE(wxDIRCTRL_DIR_ONLY); - ADD_STYLE(wxDIRCTRL_3D_INTERNAL); - ADD_STYLE(wxDIRCTRL_SELECT_FIRST); - ADD_STYLE(wxDIRCTRL_SHOW_FILTERS); + XRC_ADD_STYLE(wxDIRCTRL_DIR_ONLY); + XRC_ADD_STYLE(wxDIRCTRL_3D_INTERNAL); + XRC_ADD_STYLE(wxDIRCTRL_SELECT_FIRST); + XRC_ADD_STYLE(wxDIRCTRL_SHOW_FILTERS); AddWindowStyles(); } wxObject *wxGenericDirCtrlXmlHandler::DoCreateResource() { XRC_MAKE_INSTANCE(ctrl, wxGenericDirCtrl) - + ctrl->Create(m_parentAsWindow, GetID(), GetText(wxT("defaultfolder")), @@ -59,4 +60,4 @@ bool wxGenericDirCtrlXmlHandler::CanHandle(wxXmlNode *node) return IsOfClass(node, wxT("wxGenericDirCtrl")); } -#endif +#endif // wxUSE_XRC && wxUSE_DIRDLG