X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544fee32eeac1a4f6ca3e0c7c1b13ee24f1d1c1c..822e690b221486b63895b5f14a7fbee2bc966fe5:/contrib/src/xrc/xh_listc.cpp diff --git a/contrib/src/xrc/xh_listc.cpp b/contrib/src/xrc/xh_listc.cpp index 6f9f6b2ab4..f6c9eab2c2 100644 --- a/contrib/src/xrc/xh_listc.cpp +++ b/contrib/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 @@ -24,8 +24,10 @@ #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 +42,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 +61,9 @@ wxObject *wxListCtrlXmlHandler::DoCreateResource() GetName()); // FIXME: add columns definition - + SetupWindow(list); - + return list; }