CHANGED: #1471 CGroupHTMLInputOffset fields can now we serialized.

This commit is contained in:
dfighter1985 2012-08-14 01:10:14 +02:00
parent 86b570c4d5
commit d42171a216
2 changed files with 13 additions and 0 deletions

View file

@ -659,6 +659,7 @@ namespace NLGUI
public:
sint32 Offset;
CGroupHTMLInputOffset(const TCtorParam &param);
xmlNodePtr serialize( xmlNodePtr parentNode, const char *type ) const;
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);
};

View file

@ -4222,6 +4222,18 @@ namespace NLGUI
{
}
xmlNodePtr CGroupHTMLInputOffset::serialize( xmlNodePtr parentNode, const char *type ) const
{
xmlNodePtr node = CInterfaceGroup::serialize( parentNode, type );
if( node == NULL )
return NULL;
xmlSetProp( node, BAD_CAST "type", BAD_CAST "html_input_offset" );
xmlSetProp( node, BAD_CAST "y_offset", BAD_CAST toString( Offset ).c_str() );
return node;
}
// ***************************************************************************
bool CGroupHTMLInputOffset::parse(xmlNodePtr cur, CInterfaceGroup *parentGroup)
{