]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_listb.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/xrc/xh_listb.cpp
3 // Purpose: XRC resource for wxListBox
4 // Author: Bob Mitchell & Vaclav Slavik
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // For compilers that support precompilation, includes "wx.h".
12 #include "wx/wxprec.h"
18 #if wxUSE_XRC && wxUSE_LISTBOX
20 #include "wx/xrc/xh_listb.h"
24 #include "wx/listbox.h"
27 IMPLEMENT_DYNAMIC_CLASS(wxListBoxXmlHandler
, wxXmlResourceHandler
)
29 wxListBoxXmlHandler::wxListBoxXmlHandler()
30 : wxXmlResourceHandler(),
33 XRC_ADD_STYLE(wxLB_SINGLE
);
34 XRC_ADD_STYLE(wxLB_MULTIPLE
);
35 XRC_ADD_STYLE(wxLB_EXTENDED
);
36 XRC_ADD_STYLE(wxLB_HSCROLL
);
37 XRC_ADD_STYLE(wxLB_ALWAYS_SB
);
38 XRC_ADD_STYLE(wxLB_NEEDED_SB
);
39 XRC_ADD_STYLE(wxLB_SORT
);
43 wxObject
*wxListBoxXmlHandler::DoCreateResource()
45 if ( m_class
== wxT("wxListBox"))
48 long selection
= GetLong(wxT("selection"), -1);
50 // need to build the list of strings from children
52 CreateChildrenPrivately(NULL
, GetParamNode(wxT("content")));
55 XRC_MAKE_INSTANCE(control
, wxListBox
)
57 control
->Create(m_parentAsWindow
,
59 GetPosition(), GetSize(),
66 control
->SetSelection(selection
);
69 strList
.Clear(); // dump the strings
76 // handle <item>Label</item>
79 wxString str
= GetNodeContent(m_node
);
80 if (m_resource
->GetFlags() & wxXRC_USE_LOCALE
)
81 str
= wxGetTranslation(str
, m_resource
->GetDomain());
88 bool wxListBoxXmlHandler::CanHandle(wxXmlNode
*node
)
90 return (IsOfClass(node
, wxT("wxListBox")) ||
91 (m_insideBox
&& node
->GetName() == wxT("item")));
94 #endif // wxUSE_XRC && wxUSE_LISTBOX