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>
|
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...
|
|
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.
◆ xsPropertyIO()
xsPropertyIO::xsPropertyIO |
( |
| ) |
|
|
inline |
◆ ~xsPropertyIO()
virtual xsPropertyIO::~xsPropertyIO |
( |
| ) |
|
|
inlinevirtual |
◆ 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
-
parent | Pointer to parent XML node |
name | Name of new XML node |
value | Content of new XML node |
type | Type 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
-
source | Pointer to the source property |
target | Pointer 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
-
property | Pointer 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
-
property | Pointer to the target property object |
source | Pointer 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
-
property | Pointer to the target property object |
valstr | Textual 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
-
property | Pointer to the source property object |
target | Pointer to the target XML node |
The documentation for this class was generated from the following file: