wxShapeFramework  1.13.0 beta
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
xsPropertyIO Class Reference

Base class encapsulating a property I/O handler. The class is used by the xsSerializable class and is responsiblefor reading and writing of an XML node containing property information. Each supported property (data) type should have its own I/O handler class. Moreover, all derived classes must provide public functions 'static wxString classname::ToString(datatype value)' and 'static datatype classname:: FromString( const wxString& value )' responsible for conversion between datatype and and its string representation (these functions are used internally by class virtual functions. More...

#include <PropertyIO.h>

Inheritance diagram for xsPropertyIO:
Collaboration diagram for xsPropertyIO:

Public Member Functions

 DECLARE_DYNAMIC_CLASS (xsProperty)
 
 xsPropertyIO ()
 Constructor. More...
 
virtual ~xsPropertyIO ()
 Destructor. More...
 
virtual void Read (xsProperty *property, wxXmlNode *source)
 Read content of the property XML node and store it to given property object. More...
 
virtual void Write (xsProperty *property, wxXmlNode *target)
 Write content of given property object to target XML node. More...
 
virtual wxString GetValueStr (xsProperty *property)
 Get textual representation of current property value. More...
 
virtual void SetValueStr (xsProperty *property, const wxString &valstr)
 Set value defined by its textual representation to given property. More...
 

Static Public Member Functions

static wxXmlNode * AddPropertyNode (wxXmlNode *parent, const wxString &name, const wxString &value, wxXmlNodeType type=wxXML_TEXT_NODE)
 Create new XML node of given name and value and assign it to the given parent XML node. More...
 

Protected Member Functions

void AppendPropertyType (xsProperty *source, wxXmlNode *target)
 Append info about the source property to given XML node. More...
 

Detailed Description

Base class encapsulating a property I/O handler. The class is used by the xsSerializable class and is responsiblefor reading and writing of an XML node containing property information. Each supported property (data) type should have its own I/O handler class. Moreover, all derived classes must provide public functions 'static wxString classname::ToString(datatype value)' and 'static datatype classname:: FromString( const wxString& value )' responsible for conversion between datatype and and its string representation (these functions are used internally by class virtual functions.

Constructor & Destructor Documentation

◆ xsPropertyIO()

xsPropertyIO::xsPropertyIO ( )
inline

Constructor.

◆ ~xsPropertyIO()

virtual xsPropertyIO::~xsPropertyIO ( )
inlinevirtual

Destructor.

Member Function Documentation

◆ AddPropertyNode()

static wxXmlNode* xsPropertyIO::AddPropertyNode ( wxXmlNode *  parent,
const wxString &  name,
const wxString &  value,
wxXmlNodeType  type = wxXML_TEXT_NODE 
)
static

Create new XML node of given name and value and assign it to the given parent XML node.

Parameters
parentPointer to parent XML node
nameName of new XML node
valueContent of new XML node
typeType of new XML (content) node

◆ AppendPropertyType()

void xsPropertyIO::AppendPropertyType ( xsProperty source,
wxXmlNode *  target 
)
protected

Append info about the source property to given XML node.

Parameters
sourcePointer to the source property
targetPointer to modified XML node

◆ DECLARE_DYNAMIC_CLASS()

xsPropertyIO::DECLARE_DYNAMIC_CLASS ( xsProperty  )

◆ GetValueStr()

virtual wxString xsPropertyIO::GetValueStr ( xsProperty property)
inlinevirtual

Get textual representation of current property value.

Parameters
propertyPointer to the source property object
Returns
Textual representation of property's value

◆ Read()

virtual void xsPropertyIO::Read ( xsProperty property,
wxXmlNode *  source 
)
inlinevirtual

Read content of the property XML node and store it to given property object.

Parameters
propertyPointer to the target property object
sourcePointer to the source XML node

◆ SetValueStr()

virtual void xsPropertyIO::SetValueStr ( xsProperty property,
const wxString &  valstr 
)
inlinevirtual

Set value defined by its textual representation to given property.

Parameters
propertyPointer to the target property object
valstrTextual representation of given value

◆ Write()

virtual void xsPropertyIO::Write ( xsProperty property,
wxXmlNode *  target 
)
inlinevirtual

Write content of given property object to target XML node.

Parameters
propertyPointer to the source property object
targetPointer to the target XML node

The documentation for this class was generated from the following file: