]>
git.saurik.com Git - wxWidgets.git/blob - src/xrc/xh_choic.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XRC resource for wxChoice
4 // Author: Bob Mitchell
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"
20 #include "wx/xrc/xh_choic.h"
21 #include "wx/choice.h"
24 IMPLEMENT_DYNAMIC_CLASS(wxChoiceXmlHandler
, wxXmlResourceHandler
)
26 wxChoiceXmlHandler::wxChoiceXmlHandler()
27 : wxXmlResourceHandler() , m_insideBox(false)
29 XRC_ADD_STYLE(wxCB_SORT
);
33 wxObject
*wxChoiceXmlHandler::DoCreateResource()
35 if( m_class
== wxT("wxChoice"))
38 long selection
= GetLong(wxT("selection"), -1);
40 // need to build the list of strings from children
42 CreateChildrenPrivately(NULL
, GetParamNode(wxT("content")));
43 wxString
*strings
= (wxString
*) NULL
;
44 if (strList
.GetCount() > 0)
46 strings
= new wxString
[strList
.GetCount()];
47 int count
= strList
.GetCount();
48 for (int i
= 0; i
< count
; i
++)
49 strings
[i
]=strList
[i
];
52 XRC_MAKE_INSTANCE(control
, wxChoice
)
54 control
->Create(m_parentAsWindow
,
56 GetPosition(), GetSize(),
64 control
->SetSelection(selection
);
70 strList
.Clear(); // dump the strings
77 // handle <item>Label</item>
80 wxString str
= GetNodeContent(m_node
);
81 if (m_resource
->GetFlags() & wxXRC_USE_LOCALE
)
82 str
= wxGetTranslation(str
);
89 bool wxChoiceXmlHandler::CanHandle(wxXmlNode
*node
)
91 return (IsOfClass(node
, wxT("wxChoice")) ||
92 (m_insideBox
&& node
->GetName() == wxT("item")));