Update of /cvsroot/gcblue/gcb_wx/include/graphics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30331/include/graphics
Modified Files:
tcButton.h tcConsoleBox.h tcEditBox.h tcRadioButton.h
tcStandardWindow.h
Log Message:
Replaced libxml2 with TinyXml to make Xml easier to use
Index: tcButton.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcButton.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tcButton.h 27 Feb 2004 00:07:58 -0000 1.5
--- tcButton.h 24 Mar 2004 21:09:26 -0000 1.6
***************
*** 30,34 ****
#include <string>
! class tcXMLNode;
/**
--- 30,34 ----
#include <string>
! class TiXmlNode;
/**
***************
*** 56,60 ****
tcButton(tcWindow *parent, const wxPoint& pos, const wxSize& size,
const wxString& name = "PushButton");
! tcButton(tcWindow *parent, tcXMLNode *config);
virtual ~tcButton();
--- 56,60 ----
tcButton(tcWindow *parent, const wxPoint& pos, const wxSize& size,
const wxString& name = "PushButton");
! tcButton(tcWindow *parent, TiXmlNode *config);
virtual ~tcButton();
Index: tcEditBox.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcEditBox.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** tcEditBox.h 2 Mar 2004 02:52:14 -0000 1.2
--- tcEditBox.h 24 Mar 2004 21:09:26 -0000 1.3
***************
*** 25,29 ****
#include "tcWindow.h"
! class tcXMLNode;
/**
--- 25,29 ----
#include "tcWindow.h"
! class TiXmlNode;
/**
***************
*** 41,45 ****
void SetCommand(long cmd) {command = cmd;}
! tcEditBox(tcWindow *parent, tcXMLNode *config);
virtual ~tcEditBox(void);
protected:
--- 41,45 ----
void SetCommand(long cmd) {command = cmd;}
! tcEditBox(tcWindow *parent, TiXmlNode *config);
virtual ~tcEditBox(void);
protected:
Index: tcStandardWindow.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcStandardWindow.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** tcStandardWindow.h 20 Mar 2004 18:46:46 -0000 1.6
--- tcStandardWindow.h 24 Mar 2004 21:09:26 -0000 1.7
***************
*** 32,36 ****
#include "tcSound.h"
! class tcXMLFile;
/**
--- 32,36 ----
#include "tcSound.h"
! class TiXmlDocument;
/**
***************
*** 48,52 ****
virtual ~tcStandardWindow();
protected:
! tcXMLFile *config; ///< XML auto-configuration file for window
static Gdiplus::SolidBrush *mpBrush;
static Gdiplus::Font *font20;
--- 48,52 ----
virtual ~tcStandardWindow();
protected:
! TiXmlDocument *config; ///< XML auto-configuration file for window
static Gdiplus::SolidBrush *mpBrush;
static Gdiplus::Font *font20;
Index: tcRadioButton.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcRadioButton.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tcRadioButton.h 27 Feb 2004 00:07:58 -0000 1.1
--- tcRadioButton.h 24 Mar 2004 21:09:26 -0000 1.2
***************
*** 28,32 ****
#include <string>
! class tcXMLNode;
class tcButton;
--- 28,32 ----
#include <string>
! class TiXmlNode;
class tcButton;
***************
*** 48,52 ****
void SetSoundEffect(int effect) {soundEffect = effect;}
! tcRadioButton(tcWindow *parent, tcXMLNode *config); ///< XML configuration required for this control
virtual ~tcRadioButton();
--- 48,52 ----
void SetSoundEffect(int effect) {soundEffect = effect;}
! tcRadioButton(tcWindow *parent, TiXmlNode *config); ///< XML configuration required for this control
virtual ~tcRadioButton();
Index: tcConsoleBox.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcConsoleBox.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** tcConsoleBox.h 23 Mar 2004 18:22:37 -0000 1.1
--- tcConsoleBox.h 24 Mar 2004 21:09:26 -0000 1.2
***************
*** 32,36 ****
#include "tcWindow.h"
! class tcXMLNode;
/**
--- 32,36 ----
#include "tcWindow.h"
! class TiXmlNode;
/**
***************
*** 69,73 ****
void UpdateCursor();
! tcConsoleBox(tcWindow *parent, tcXMLNode *config);
virtual ~tcConsoleBox();
protected:
--- 69,73 ----
void UpdateCursor();
! tcConsoleBox(tcWindow *parent, TiXmlNode *config);
virtual ~tcConsoleBox();
protected:
|