]>
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 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_choic.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/xrc/xh_choic.h"
23 #include "wx/choice.h"
25 wxChoiceXmlHandler::wxChoiceXmlHandler()
26 : wxXmlResourceHandler() , m_insideBox(FALSE
)
28 XRC_ADD_STYLE(wxCB_SORT
);
32 wxObject
*wxChoiceXmlHandler::DoCreateResource()
34 if( m_class
== wxT("wxChoice"))
37 long selection
= GetLong(wxT("selection"), -1);
39 // need to build the list of strings from children
41 CreateChildrenPrivately(NULL
, GetParamNode(wxT("content")));
42 wxString
*strings
= (wxString
*) NULL
;
43 if (strList
.GetCount() > 0)
45 strings
= new wxString
[strList
.GetCount()];
46 int count
= strList
.GetCount();
47 for (int i
= 0; i
< count
; i
++)
48 strings
[i
]=strList
[i
];
51 XRC_MAKE_INSTANCE(control
, wxChoice
)
53 control
->Create(m_parentAsWindow
,
55 GetPosition(), GetSize(),
63 control
->SetSelection(selection
);
69 strList
.Clear(); // dump the strings
76 // handle <item>Label</item>
79 strList
.Add(GetNodeContent(m_node
));
85 bool wxChoiceXmlHandler::CanHandle(wxXmlNode
*node
)
87 return (IsOfClass(node
, wxT("wxChoice")) ||
88 (m_insideBox
&& node
->GetName() == wxT("item")));