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