CHANGED: #1471 CGroupWheel fields can now we serialized.

This commit is contained in:
dfighter1985 2012-08-14 00:59:29 +02:00
parent 6567a626e4
commit 86b570c4d5
2 changed files with 23 additions and 0 deletions

View file

@ -33,6 +33,7 @@ namespace NLGUI
std::string getProperty( const std::string &name ) const;
void setProperty( const std::string &name, const std::string &value );
xmlNodePtr serialize( xmlNodePtr parentNode, const char *type ) const;
/// Coming from CInterfaceElement
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);

View file

@ -86,6 +86,28 @@ namespace NLGUI
CInterfaceGroup::setProperty( name, value );
}
xmlNodePtr CInterfaceGroupWheel::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 "group_wheel" );
xmlSetProp( node, BAD_CAST "on_wheel_up",
BAD_CAST CAHManager::getInstance()->getActionHandlerName( _AHWheelUp ).c_str() );
xmlSetProp( node, BAD_CAST "on_wheel_up_params", BAD_CAST _AHWheelUpParams.toString().c_str() );
xmlSetProp( node, BAD_CAST "on_wheel_down",
BAD_CAST CAHManager::getInstance()->getActionHandlerName( _AHWheelDown ).c_str() );
xmlSetProp( node, BAD_CAST "on_wheel_down_params", BAD_CAST _AHWheelDownParams.toString().c_str() );
return node;
}
// *****************************************************************************************************************
bool CInterfaceGroupWheel::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
{