]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/xrc/xh_tree.cpp | |
3 | // Purpose: XRC resource for wxTreeCtrl | |
4 | // Author: Brian Gavin | |
5 | // Created: 2000/09/09 | |
6 | // Copyright: (c) 2000 Brian Gavin | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | // For compilers that support precompilation, includes "wx.h". | |
11 | #include "wx/wxprec.h" | |
12 | ||
13 | #ifdef __BORLANDC__ | |
14 | #pragma hdrstop | |
15 | #endif | |
16 | ||
17 | #if wxUSE_XRC && wxUSE_TREECTRL | |
18 | ||
19 | #include "wx/xrc/xh_tree.h" | |
20 | #include "wx/treectrl.h" | |
21 | ||
22 | IMPLEMENT_DYNAMIC_CLASS(wxTreeCtrlXmlHandler, wxXmlResourceHandler) | |
23 | ||
24 | wxTreeCtrlXmlHandler::wxTreeCtrlXmlHandler() | |
25 | : wxXmlResourceHandler() | |
26 | { | |
27 | XRC_ADD_STYLE(wxTR_EDIT_LABELS); | |
28 | XRC_ADD_STYLE(wxTR_NO_BUTTONS); | |
29 | XRC_ADD_STYLE(wxTR_HAS_BUTTONS); | |
30 | XRC_ADD_STYLE(wxTR_TWIST_BUTTONS); | |
31 | XRC_ADD_STYLE(wxTR_NO_LINES); | |
32 | XRC_ADD_STYLE(wxTR_FULL_ROW_HIGHLIGHT); | |
33 | XRC_ADD_STYLE(wxTR_LINES_AT_ROOT); | |
34 | XRC_ADD_STYLE(wxTR_HIDE_ROOT); | |
35 | XRC_ADD_STYLE(wxTR_ROW_LINES); | |
36 | XRC_ADD_STYLE(wxTR_HAS_VARIABLE_ROW_HEIGHT); | |
37 | XRC_ADD_STYLE(wxTR_SINGLE); | |
38 | XRC_ADD_STYLE(wxTR_MULTIPLE); | |
39 | XRC_ADD_STYLE(wxTR_DEFAULT_STYLE); | |
40 | #if WXWIN_COMPATIBILITY_2_8 | |
41 | XRC_ADD_STYLE(wxTR_EXTENDED); | |
42 | #endif | |
43 | AddWindowStyles(); | |
44 | } | |
45 | ||
46 | wxObject *wxTreeCtrlXmlHandler::DoCreateResource() | |
47 | { | |
48 | XRC_MAKE_INSTANCE(tree, wxTreeCtrl) | |
49 | ||
50 | tree->Create(m_parentAsWindow, | |
51 | GetID(), | |
52 | GetPosition(), GetSize(), | |
53 | GetStyle(wxT("style"), wxTR_DEFAULT_STYLE), | |
54 | wxDefaultValidator, | |
55 | GetName()); | |
56 | ||
57 | wxImageList *imagelist = GetImageList(); | |
58 | if ( imagelist ) | |
59 | tree->AssignImageList(imagelist); | |
60 | ||
61 | SetupWindow(tree); | |
62 | ||
63 | return tree; | |
64 | } | |
65 | ||
66 | bool wxTreeCtrlXmlHandler::CanHandle(wxXmlNode *node) | |
67 | { | |
68 | return IsOfClass(node, wxT("wxTreeCtrl")); | |
69 | } | |
70 | ||
71 | #endif // wxUSE_XRC && wxUSE_TREECTRL |