]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xml/xh_choic.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML 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/xml/xh_choic.h"
23 #include "wx/choice.h"
25 wxChoiceXmlHandler::wxChoiceXmlHandler()
26 : wxXmlResourceHandler() , m_InsideBox(FALSE
)
31 wxObject
*wxChoiceXmlHandler::DoCreateResource()
33 if( m_Node
->GetName() == _T("choice"))
36 long selection
= GetLong( _T("selection"), -1 );
38 // need to build the list of strings from children
40 CreateChildren( NULL
, TRUE
/* only this handler */,
41 GetParamNode(_T("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
];
52 wxChoice
*control
= new wxChoice(m_ParentAsWindow
,
54 GetPosition(), GetSize(),
63 control
->SetSelection( selection
);
69 strList
.Clear(); // dump the strings
76 // handle <item>Label</item>
79 strList
.Add( GetNodeContent(m_Node
) );
88 bool wxChoiceXmlHandler::CanHandle(wxXmlNode
*node
)
90 return( node
->GetName() == _T("choice") ||
92 node
->GetName() == _T("item" ))