CHANGED: #1471 CGroupHTMLInputOffset fields can now we serialized.
--HG-- branch : gsoc2012-gui-editor
This commit is contained in:
parent
42b4eae629
commit
7dfb60bd0c
2 changed files with 13 additions and 0 deletions
|
@ -659,6 +659,7 @@ namespace NLGUI
|
|||
public:
|
||||
sint32 Offset;
|
||||
CGroupHTMLInputOffset(const TCtorParam ¶m);
|
||||
xmlNodePtr serialize( xmlNodePtr parentNode, const char *type ) const;
|
||||
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);
|
||||
};
|
||||
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue