]>
Commit | Line | Data |
---|---|---|
78d14f80 | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/xrc/xh_listb.cpp |
b5d6954b | 3 | // Purpose: XRC resource for wxListBox |
78d14f80 VS |
4 | // Author: Bob Mitchell & Vaclav Slavik |
5 | // Created: 2000/07/29 | |
6 | // RCS-ID: $Id$ | |
7 | // Copyright: (c) 2000 Bob Mitchell and Verant Interactive | |
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 | ||
2a673eb1 | 18 | #if wxUSE_XRC && wxUSE_LISTBOX |
a1e4ec87 | 19 | |
78d14f80 | 20 | #include "wx/xrc/xh_listb.h" |
88a7a4e1 WS |
21 | |
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/intl.h" | |
2a673eb1 | 24 | #include "wx/listbox.h" |
88a7a4e1 WS |
25 | #endif |
26 | ||
df27f1dc VZ |
27 | #include "wx/xml/xml.h" |
28 | ||
854e189f VS |
29 | IMPLEMENT_DYNAMIC_CLASS(wxListBoxXmlHandler, wxXmlResourceHandler) |
30 | ||
f80ea77b | 31 | wxListBoxXmlHandler::wxListBoxXmlHandler() |
187d8152 VZ |
32 | : wxXmlResourceHandler(), |
33 | m_insideBox(false) | |
78d14f80 | 34 | { |
544fee32 VS |
35 | XRC_ADD_STYLE(wxLB_SINGLE); |
36 | XRC_ADD_STYLE(wxLB_MULTIPLE); | |
37 | XRC_ADD_STYLE(wxLB_EXTENDED); | |
38 | XRC_ADD_STYLE(wxLB_HSCROLL); | |
39 | XRC_ADD_STYLE(wxLB_ALWAYS_SB); | |
40 | XRC_ADD_STYLE(wxLB_NEEDED_SB); | |
41 | XRC_ADD_STYLE(wxLB_SORT); | |
78d14f80 VS |
42 | AddWindowStyles(); |
43 | } | |
44 | ||
45 | wxObject *wxListBoxXmlHandler::DoCreateResource() | |
f80ea77b | 46 | { |
187d8152 | 47 | if ( m_class == wxT("wxListBox")) |
78d14f80 VS |
48 | { |
49 | // find the selection | |
544fee32 | 50 | long selection = GetLong(wxT("selection"), -1); |
78d14f80 VS |
51 | |
52 | // need to build the list of strings from children | |
f80ea77b | 53 | m_insideBox = true; |
544fee32 | 54 | CreateChildrenPrivately(NULL, GetParamNode(wxT("content"))); |
187d8152 | 55 | m_insideBox = false; |
78d14f80 | 56 | |
544fee32 | 57 | XRC_MAKE_INSTANCE(control, wxListBox) |
f2588180 VS |
58 | |
59 | control->Create(m_parentAsWindow, | |
60 | GetID(), | |
61 | GetPosition(), GetSize(), | |
187d8152 | 62 | strList, |
f2588180 VS |
63 | GetStyle(), |
64 | wxDefaultValidator, | |
65 | GetName()); | |
78d14f80 | 66 | |
544fee32 VS |
67 | if (selection != -1) |
68 | control->SetSelection(selection); | |
78d14f80 VS |
69 | |
70 | SetupWindow(control); | |
f80ea77b | 71 | strList.Clear(); // dump the strings |
78d14f80 VS |
72 | |
73 | return control; | |
74 | } | |
75 | else | |
76 | { | |
77 | // on the inside now. | |
78 | // handle <item>Label</item> | |
f80ea77b | 79 | |
78d14f80 | 80 | // add to the list |
74c107ba VS |
81 | wxString str = GetNodeContent(m_node); |
82 | if (m_resource->GetFlags() & wxXRC_USE_LOCALE) | |
d4a724d4 | 83 | str = wxGetTranslation(str, m_resource->GetDomain()); |
74c107ba | 84 | strList.Add(str); |
78d14f80 VS |
85 | |
86 | return NULL; | |
87 | } | |
78d14f80 VS |
88 | } |
89 | ||
78d14f80 VS |
90 | bool wxListBoxXmlHandler::CanHandle(wxXmlNode *node) |
91 | { | |
92 | return (IsOfClass(node, wxT("wxListBox")) || | |
544fee32 | 93 | (m_insideBox && node->GetName() == wxT("item"))); |
78d14f80 | 94 | } |
a1e4ec87 | 95 | |
2a673eb1 | 96 | #endif // wxUSE_XRC && wxUSE_LISTBOX |