CHANGED: Implemented property setting for CInterfaceGroupWheel.

This commit is contained in:
dfighter1985 2012-08-06 20:11:22 +02:00
parent 17b59d9110
commit 30dfa426cf
2 changed files with 30 additions and 0 deletions

View file

@ -32,6 +32,7 @@ namespace NLGUI
CInterfaceGroupWheel(const TCtorParam &param);
std::string getProperty( const std::string &name ) const;
void setProperty( const std::string &name, const std::string &value );
/// Coming from CInterfaceElement
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);

View file

@ -57,6 +57,35 @@ namespace NLGUI
return CInterfaceGroup::getProperty( name );
}
void CInterfaceGroupWheel::setProperty( const std::string &name, const std::string &value )
{
if( name == "on_wheel_up" )
{
_AHWheelUp = CAHManager::getInstance()->getAH( value, std::string() );
return;
}
else
if( name == "on_wheel_up_params" )
{
_AHWheelUpParams = value;
return;
}
else
if( name == "on_wheel_down" )
{
_AHWheelDown = CAHManager::getInstance()->getAH( value, std::string() );
return;
}
else
if( name == "on_wheel_down_params" )
{
_AHWheelDownParams = value;
return;
}
else
CInterfaceGroup::setProperty( name, value );
}
// *****************************************************************************************************************
bool CInterfaceGroupWheel::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
{