CHANGED: Implemented property setting for CInterfaceGroupWheel.
This commit is contained in:
parent
17b59d9110
commit
30dfa426cf
2 changed files with 30 additions and 0 deletions
|
@ -32,6 +32,7 @@ namespace NLGUI
|
||||||
CInterfaceGroupWheel(const TCtorParam ¶m);
|
CInterfaceGroupWheel(const TCtorParam ¶m);
|
||||||
|
|
||||||
std::string getProperty( const std::string &name ) const;
|
std::string getProperty( const std::string &name ) const;
|
||||||
|
void setProperty( const std::string &name, const std::string &value );
|
||||||
|
|
||||||
/// Coming from CInterfaceElement
|
/// Coming from CInterfaceElement
|
||||||
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);
|
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);
|
||||||
|
|
|
@ -57,6 +57,35 @@ namespace NLGUI
|
||||||
return CInterfaceGroup::getProperty( name );
|
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)
|
bool CInterfaceGroupWheel::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue