X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..ab13b95e5cd3ce2feb83b5b5011fb21b84041f1e:/src/xrc/xh_listc.cpp?ds=sidebyside diff --git a/src/xrc/xh_listc.cpp b/src/xrc/xh_listc.cpp index 6f9f6b2ab4..6746b83224 100644 --- a/src/xrc/xh_listc.cpp +++ b/src/xrc/xh_listc.cpp @@ -7,7 +7,7 @@ // Copyright: (c) 2000 Brian Gavin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - + #ifdef __GNUG__ #pragma implementation "xh_listc.h" #endif @@ -19,13 +19,17 @@ #pragma hdrstop #endif +#if wxUSE_XRC + #include "wx/textctrl.h" #include "wx/xrc/xh_listc.h" #include "wx/listctrl.h" -wxListCtrlXmlHandler::wxListCtrlXmlHandler() -: wxXmlResourceHandler() +IMPLEMENT_DYNAMIC_CLASS(wxListCtrlXmlHandler, wxXmlResourceHandler) + +wxListCtrlXmlHandler::wxListCtrlXmlHandler() +: wxXmlResourceHandler() { XRC_ADD_STYLE(wxLC_LIST); XRC_ADD_STYLE(wxLC_REPORT); @@ -40,11 +44,15 @@ wxListCtrlXmlHandler::wxListCtrlXmlHandler() XRC_ADD_STYLE(wxLC_SINGLE_SEL); XRC_ADD_STYLE(wxLC_SORT_ASCENDING); XRC_ADD_STYLE(wxLC_SORT_DESCENDING); + XRC_ADD_STYLE(wxLC_VIRTUAL); + XRC_ADD_STYLE(wxLC_HRULES); + XRC_ADD_STYLE(wxLC_VRULES); + XRC_ADD_STYLE(wxLC_NO_SORT_HEADER); AddWindowStyles(); } wxObject *wxListCtrlXmlHandler::DoCreateResource() -{ +{ XRC_MAKE_INSTANCE(list, wxListCtrl) list->Create(m_parentAsWindow, @@ -55,9 +63,9 @@ wxObject *wxListCtrlXmlHandler::DoCreateResource() GetName()); // FIXME: add columns definition - + SetupWindow(list); - + return list; } @@ -65,3 +73,5 @@ bool wxListCtrlXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxListCtrl")); } + +#endif // wxUSE_XRC