+ m_xmlfile.Write("\t\t<object class=\"wxTextCtrl\"");
+ WriteBasicInfo(x,y,width,height,varname);
+ m_xmlfile.Write("\t\t</object>\n");
+
+}
+//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<object class=\"wxCheckBox\"");
+ WriteBasicInfo(x,y,width,height,varname);
+ WriteLabel(phrase);
+ m_xmlfile.Write("\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("WS_GROUP") != -1)
+ style += "wxRB_GROUP";
+
+ m_xmlfile.Write("\t\t<object class=\"wxRadioButton\"");