+ 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 token;
+ wxString phrase,varname;
+ phrase=GetQuoteField();
+ varname=GetToken();
+
+ 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 token,style;
+ wxString phrase,varname;
+ phrase=GetQuoteField();
+ varname=GetToken();
+
+ int x,y,width,height;
+ if (ReadRect(x,y,width,height))
+ ReadOrs(token);
+ if (token.Find("WS_GROUP") != -1)
+ style += "wxRB_GROUP";
+
+ m_xmlfile.Write("\t\t<object class=\"wxRadioButton\"");