+//AUTOCHECKBOX "&log.", ID_XLOG, 25, 24, 21, 12
+void rc2xml::ParseCheckBox(wxString phrase, wxString varname)
+{
+ wxString token;
+ token=PeekToken();
+ while (!token.IsNumber())
+ {
+ token=GetToken();
+ token=PeekToken();
+ }
+ int x,y,width,height;
+ ReadRect(x,y,width,height);
+
+ m_xmlfile.Write(_T("\t\t<object class=\"wxCheckBox\""));
+ WriteBasicInfo(x,y,width,height,varname);
+ WriteLabel(phrase);
+ m_xmlfile.Write(_T("\t\t</object>\n"));
+
+}
+//AUTORADIOBUTTON "&text", ID_SW10, 13, 12, 68, 10, BS_AUTORADIOBUTTON | WS_GROUP
+void rc2xml::ParseRadioButton(wxString phrase, wxString varname)
+{
+ wxString token,style;
+ int x,y,width,height;
+ bool GotOrs;
+ GotOrs = ReadOrs(token);
+ if (ReadRect(x,y,width,height))
+ if (GotOrs==false)
+ ReadOrs(token);
+ if (token.Find(_T("WS_GROUP")) != wxNOT_FOUND)
+ style += _T("wxRB_GROUP");
+
+ m_xmlfile.Write(_T("\t\t<object class=\"wxRadioButton\""));
+ WriteBasicInfo(x,y,width,height,varname);
+ WriteLabel(phrase);
+ WriteStyle(style);
+ m_xmlfile.Write(_T("\t\t</object>\n"));
+
+}
+