X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5d6954b87d910969226ffade9714db7429211f3..3ae670cd59711e19ed3c65dc7fd7fff102d52b69:/src/xrc/xh_tree.cpp diff --git a/src/xrc/xh_tree.cpp b/src/xrc/xh_tree.cpp index 2e6f9f64f2..b2db5a257e 100644 --- a/src/xrc/xh_tree.cpp +++ b/src/xrc/xh_tree.cpp @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: xh_tree.cpp +// Name: src/xrc/xh_tree.cpp // Purpose: XRC resource for wxTreeCtrl // Author: Brian Gavin // Created: 2000/09/09 @@ -7,10 +7,6 @@ // Copyright: (c) 2000 Brian Gavin // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifdef __GNUG__ -#pragma implementation "xh_tree.h" -#endif // For compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" @@ -19,39 +15,58 @@ #pragma hdrstop #endif +#if wxUSE_XRC && wxUSE_TREECTRL + #include "wx/xrc/xh_tree.h" #include "wx/treectrl.h" +IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrlXmlHandler, wxXmlResourceHandler) -wxTreeCtrlXmlHandler::wxTreeCtrlXmlHandler() -: wxXmlResourceHandler() +wxTreeCtrlXmlHandler::wxTreeCtrlXmlHandler() +: wxXmlResourceHandler() { - ADD_STYLE(wxTR_HAS_BUTTONS); - ADD_STYLE(wxTR_EDIT_LABELS); - ADD_STYLE(wxTR_MULTIPLE); + XRC_ADD_STYLE(wxTR_EDIT_LABELS); + XRC_ADD_STYLE(wxTR_NO_BUTTONS); + XRC_ADD_STYLE(wxTR_HAS_BUTTONS); + XRC_ADD_STYLE(wxTR_TWIST_BUTTONS); + XRC_ADD_STYLE(wxTR_NO_LINES); + XRC_ADD_STYLE(wxTR_FULL_ROW_HIGHLIGHT); + XRC_ADD_STYLE(wxTR_LINES_AT_ROOT); + XRC_ADD_STYLE(wxTR_HIDE_ROOT); + XRC_ADD_STYLE(wxTR_ROW_LINES); + XRC_ADD_STYLE(wxTR_HAS_VARIABLE_ROW_HEIGHT); + XRC_ADD_STYLE(wxTR_SINGLE); + XRC_ADD_STYLE(wxTR_MULTIPLE); + XRC_ADD_STYLE(wxTR_DEFAULT_STYLE); +#if WXWIN_COMPATIBILITY_2_8 + XRC_ADD_STYLE(wxTR_EXTENDED); +#endif AddWindowStyles(); } - wxObject *wxTreeCtrlXmlHandler::DoCreateResource() -{ - wxTreeCtrl *tree = new wxTreeCtrl(m_parentAsWindow, - GetID(), - GetPosition(), GetSize(), - GetStyle(), - wxDefaultValidator, - GetName()); - +{ + XRC_MAKE_INSTANCE(tree, wxTreeCtrl) + + tree->Create(m_parentAsWindow, + GetID(), + GetPosition(), GetSize(), + GetStyle(wxT("style"), wxTR_DEFAULT_STYLE), + wxDefaultValidator, + GetName()); + + wxImageList *imagelist = GetImageList(); + if ( imagelist ) + tree->AssignImageList(imagelist); + SetupWindow(tree); - + return tree; } - - bool wxTreeCtrlXmlHandler::CanHandle(wxXmlNode *node) { return IsOfClass(node, wxT("wxTreeCtrl")); } - +#endif // wxUSE_XRC && wxUSE_TREECTRL