3. Be able to abort incorrectly formated files without crashing
*/
-#ifdef __GNUG__
-#pragma implementation "rc2xml.cpp"
-#pragma interface "rc2xml.cpp"
-#endif
-
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
// for all others, include the necessary headers (this file is usually all you
// need because it includes almost all "standard" wxWidgets headers
#ifndef WX_PRECOMP
-#include <wx/wx.h>
+#include "wx/wx.h"
#endif
#include "wx/image.h"
#include "wx/deprecated/setup.h"
#include "wx/deprecated/resource.h"
-#include <wx/textfile.h>
-#include <wx/tokenzr.h>
+#include "wx/textfile.h"
+#include "wx/tokenzr.h"
}
-bool rc2xml::Seperator(int ch)
+bool rc2xml::Separator(int ch)
{
//if ((ch==' ')|(ch==',')|(ch==13)|(ch==10)|(ch=='|')|(ch=='\t'))
if ((ch==' ')|(ch==',')|(ch==13)|(ch==10)|(ch=='\t'))
return ret; // check for more parameters
}
-wxString rc2xml::GetToken(bool *listseperator)
+wxString rc2xml::GetToken(bool *listseparator)
{
wxString token=wxEmptyString;
return token;
}
- while (Seperator(ch))
+ while (Separator(ch))
{
ReadChar(ch);
if (m_done)
}
- while (!Seperator(ch))
+ while (!Separator(ch))
{
token += (char)ch;
ReadChar(ch);
if (ch == EOF)
m_done = true;
- if (listseperator)
- *listseperator = (ch == ',');
+ if (listseparator)
+ *listseparator = (ch == ',');
return token;
}
wxString rc2xml::PeekToken()
{
- wxString token;
- int p;
- p=m_rc.Tell();
- token=GetToken();
+ wxFileOffset p = m_rc.Tell();
+ wxString token=GetToken();
m_rc.Seek(p);
return token;
}
+
//MS Windows pain in the butt CONTROL
void rc2xml::ParseControlMS()
{
- wxString label,varname,kindctrl,token;
- token=PeekToken();
+ wxString token = PeekToken();
if (token.Contains(_T("\"")))
ParseNormalMSControl();
else
ParseWeirdMSControl();
-
}
/* CONTROL "Slider1",IDC_SLIDER1,"msctls_trackbar32",TBS_BOTH |
void rc2xml::ParseCtrlButton(wxString label, wxString varname)
{
wxString token;
- int p;
- p=m_rc.Tell();
+ wxFileOffset p = m_rc.Tell();
ReadOrs(token);
m_rc.Seek(p);
if (token.Find(_T("BS_AUTOCHECKBOX"))!=wxNOT_FOUND)
ParseCheckBox(label, varname);
else if ((token.Find(_T("BS_AUTORADIOBUTTON"))!=wxNOT_FOUND)||
- (token.Find(_T("BS_RADIOBUTTON"))!=wxNOT_FOUND))
+ (token.Find(_T("BS_RADIOBUTTON"))!=wxNOT_FOUND))
ParseRadioButton(label, varname);
else if (token.Find(_T("BS_GROUPBOX"))!=wxNOT_FOUND)
ParseGroupBox(label, varname);
void rc2xml::ParseNormalMSControl()
{
-wxString label,varname,kindctrl;
-
-label=GetQuoteField();
-varname=GetToken();
-kindctrl=GetQuoteField();
-kindctrl.MakeUpper();
+ wxString label=GetQuoteField();
+ wxString varname=GetToken();
+ wxString kindctrl=GetQuoteField();
+ kindctrl.MakeUpper();
if (kindctrl==_T("MSCTLS_UPDOWN32"))
ParseSpinCtrl(label,varname);
- if (kindctrl==_T("MSCTLS_TRACKBAR32"))
+ else if (kindctrl==_T("MSCTLS_TRACKBAR32"))
ParseSlider(label,varname);
- if (kindctrl==_T("MSCTLS_PROGRESS32"))
+ else if (kindctrl==_T("MSCTLS_PROGRESS32"))
ParseProgressBar(label,varname);
- if (kindctrl==_T("SYSTREEVIEW32"))
+ else if (kindctrl==_T("SYSTREEVIEW32"))
ParseTreeCtrl(label,varname);
- if (kindctrl==_T("SYSMONTHCAL32"))
+ else if (kindctrl==_T("SYSMONTHCAL32"))
ParseCalendar(label,varname);
- if (kindctrl==_T("SYSLISTVIEW32"))
+ else if (kindctrl==_T("SYSLISTVIEW32"))
ParseListCtrl(label,varname);
- if (kindctrl==_T("BUTTON"))
+ else if (kindctrl==_T("BUTTON"))
ParseCtrlButton(label,varname);
- if (kindctrl==_T("RICHEDIT"))
+ else if (kindctrl==_T("RICHEDIT"))
ParseRichEdit(label,varname);
- if (kindctrl==_T("STATIC"))
- {
+ else if (kindctrl==_T("STATIC"))
+ {
wxString token;
- int p=m_rc.Tell();
+ wxFileOffset p = m_rc.Tell();
ReadOrs(token);
m_rc.Seek(p);
if (token.Find(_T("SS_BITMAP"))!=wxNOT_FOUND)
ParseStaticBitmap(label,varname);
else
ParseStaticText(label,varname);
- }
- if (kindctrl==_T("EDIT"))
+ }
+ else if (kindctrl==_T("EDIT"))
ParseTextCtrl(varname);
- if (kindctrl==_T("LISTBOX"))
+ else if (kindctrl==_T("LISTBOX"))
ParseListBox(varname);
- if (kindctrl==_T("COMBOBOX"))
+ else if (kindctrl==_T("COMBOBOX"))
ParseComboBox(varname);
-
}
void rc2xml::ParseWeirdMSControl()
{
- wxString kindctrl;
- wxString varname;
- wxString id;
- id=GetToken();
- varname=GetToken();
- kindctrl=GetQuoteField();
+ wxString id = GetToken();
+ wxString varname = GetToken();
+ wxString kindctrl = GetQuoteField();
kindctrl.MakeUpper();
// CONTROL IDB_FACE,IDC_STATIC,"Static",SS_BITMAP,26,62,32,30
if (kindctrl==_T("STATIC"))
- {
+ {
if (PeekToken()==_T("SS_BITMAP"))
ParseStaticBitmap(id,varname);
else
wxLogError(_T("Unknown MS Control Static token"));
- }
-
+ }
}
-//SCROLLBAR IDC_SCROLLBAR1,219,56,10,40,SBS_VERT
+//SCROLLBAR IDC_SCROLLBAR1,219,56,10,40,SBS_VERT
void rc2xml::ParseScrollBar()
{
wxString token;