]>
Commit | Line | Data |
---|---|---|
78d14f80 VS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: 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 | ///////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "xh_listb.h" | |
13 | #endif | |
14 | ||
15 | // For compilers that support precompilation, includes "wx.h". | |
16 | #include "wx/wxprec.h" | |
17 | ||
18 | #ifdef __BORLANDC__ | |
19 | #pragma hdrstop | |
20 | #endif | |
21 | ||
22 | #include "wx/xrc/xh_listb.h" | |
23 | #include "wx/listbox.h" | |
02df3799 | 24 | #include "wx/intl.h" |
78d14f80 | 25 | |
854e189f VS |
26 | IMPLEMENT_DYNAMIC_CLASS(wxListBoxXmlHandler, wxXmlResourceHandler) |
27 | ||
78d14f80 VS |
28 | wxListBoxXmlHandler::wxListBoxXmlHandler() |
29 | : wxXmlResourceHandler() , m_insideBox(FALSE) | |
30 | { | |
544fee32 VS |
31 | XRC_ADD_STYLE(wxLB_SINGLE); |
32 | XRC_ADD_STYLE(wxLB_MULTIPLE); | |
33 | XRC_ADD_STYLE(wxLB_EXTENDED); | |
34 | XRC_ADD_STYLE(wxLB_HSCROLL); | |
35 | XRC_ADD_STYLE(wxLB_ALWAYS_SB); | |
36 | XRC_ADD_STYLE(wxLB_NEEDED_SB); | |
37 | XRC_ADD_STYLE(wxLB_SORT); | |
78d14f80 VS |
38 | AddWindowStyles(); |
39 | } | |
40 | ||
41 | wxObject *wxListBoxXmlHandler::DoCreateResource() | |
42 | { | |
43 | if( m_class == wxT("wxListBox")) | |
44 | { | |
45 | // find the selection | |
544fee32 | 46 | long selection = GetLong(wxT("selection"), -1); |
78d14f80 VS |
47 | |
48 | // need to build the list of strings from children | |
49 | m_insideBox = TRUE; | |
544fee32 | 50 | CreateChildrenPrivately(NULL, GetParamNode(wxT("content"))); |
78d14f80 | 51 | wxString *strings = (wxString *) NULL; |
544fee32 | 52 | if (strList.GetCount() > 0) |
78d14f80 VS |
53 | { |
54 | strings = new wxString[strList.GetCount()]; | |
55 | int count = strList.GetCount(); | |
544fee32 | 56 | for (int i = 0; i < count; i++) |
78d14f80 VS |
57 | strings[i]=strList[i]; |
58 | } | |
59 | ||
544fee32 | 60 | XRC_MAKE_INSTANCE(control, wxListBox) |
f2588180 VS |
61 | |
62 | control->Create(m_parentAsWindow, | |
63 | GetID(), | |
64 | GetPosition(), GetSize(), | |
65 | strList.GetCount(), | |
66 | strings, | |
67 | GetStyle(), | |
68 | wxDefaultValidator, | |
69 | GetName()); | |
78d14f80 | 70 | |
544fee32 VS |
71 | if (selection != -1) |
72 | control->SetSelection(selection); | |
78d14f80 VS |
73 | |
74 | SetupWindow(control); | |
75 | ||
544fee32 VS |
76 | if (strings != NULL) |
77 | delete[] strings; | |
78d14f80 VS |
78 | strList.Clear(); // dump the strings |
79 | ||
80 | return control; | |
81 | } | |
82 | else | |
83 | { | |
84 | // on the inside now. | |
85 | // handle <item>Label</item> | |
86 | ||
87 | // add to the list | |
74c107ba VS |
88 | wxString str = GetNodeContent(m_node); |
89 | if (m_resource->GetFlags() & wxXRC_USE_LOCALE) | |
90 | str = wxGetTranslation(str); | |
91 | strList.Add(str); | |
78d14f80 VS |
92 | |
93 | return NULL; | |
94 | } | |
78d14f80 VS |
95 | } |
96 | ||
78d14f80 VS |
97 | bool wxListBoxXmlHandler::CanHandle(wxXmlNode *node) |
98 | { | |
99 | return (IsOfClass(node, wxT("wxListBox")) || | |
544fee32 | 100 | (m_insideBox && node->GetName() == wxT("item"))); |
78d14f80 | 101 | } |