X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2193517f1b909b834dc6e314acc3b873dc8196d9..917afc7b81c6f806ea3d50b455f7c4e320ecd68f:/contrib/utils/convertrc/rc2xml.h diff --git a/contrib/utils/convertrc/rc2xml.h b/contrib/utils/convertrc/rc2xml.h index 6b2fbf8555..184a8dadfb 100644 --- a/contrib/utils/convertrc/rc2xml.h +++ b/contrib/utils/convertrc/rc2xml.h @@ -13,6 +13,8 @@ class rc2xml : public wxObject { public: + wxString m_workingpath; + wxString m_targetpath; void WriteIcon(wxString iconname); void ParseNormalMSControl(); bool Convert(wxString rcfile, wxString xmlfile); @@ -53,11 +55,13 @@ protected: void ParseListBox(); void ParseStaticText(); void ParseTextCtrl(); + void ParseRadioButton(); + void ParseCheckBox(); void ParsePushButton(); bool Seperator(int ch); void ParseGroupBox(); - void ReadRect(int & x, int & y, int & width, int & height); - wxString GetToken(); + bool ReadRect(int & x, int & y, int & width, int & height); + wxString GetToken(bool *listseperator = 0); wxString GetQuoteField(); void ReadChar(int &ch); void ParseComboBox();