]>
git.saurik.com Git - wxWidgets.git/blob - contrib/src/xml/xh_chckl.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: XML resource for wxCheckList
4 // Author: Bob Mitchell
7 // Copyright: (c) 2000 Bob Mitchell and Verant Interactive
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
12 #pragma implementation "xh_chckl.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/xml/xh_chckl.h"
23 #include "wx/checklst.h"
25 wxCheckListXmlHandler::wxCheckListXmlHandler()
26 : wxXmlResourceHandler(), m_InsideBox(FALSE
)
31 wxObject
*wxCheckListXmlHandler::DoCreateResource()
33 if( m_Node
->GetName() == _T("checklist"))
35 // need to build the list of strings from children
37 CreateChildren( NULL
, TRUE
/* only this handler */);
38 wxString
*strings
= (wxString
*) NULL
;
39 if( strList
.GetCount() > 0 )
41 strings
= new wxString
[strList
.GetCount()];
42 int count
= strList
.GetCount();
43 for( int i
= 0; i
< count
; i
++ )
44 strings
[i
]=strList
[i
];
48 wxCheckListBox
*control
= new wxCheckListBox(m_ParentAsWindow
,
50 GetPosition(), GetSize(),
58 // step through children myself (again.)
59 wxXmlNode
*n
= GetParamNode(_T("children"));
60 if (n
) n
= n
->GetChildren();
64 if (n
->GetType() != wxXML_ELEMENT_NODE
||
65 n
->GetName() != _T("item" ))
66 { n
= n
->GetNext(); continue; }
68 // checking boolean is a bit ugly here (see GetBool() )
69 wxString v
= n
->GetPropVal(_T("checked"), wxEmptyString
);
73 if( v
== _T("1") || v
== _T("t") || v
== _T("yes") ||
74 v
== _T("on") || v
== _T("true") )
76 control
->Check( i
, TRUE
);
88 strList
.Clear(); // dump the strings
95 // handle <item checked="boolean">Label</item>
98 strList
.Add( GetNodeContent(m_Node
) );
107 bool wxCheckListXmlHandler::CanHandle(wxXmlNode
*node
)
109 return( node
->GetName() == _T("checklist") ||
111 node
->GetName() == _T("item" ))