mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 14:59:01 +00:00
CHANGED: Implemented property setting for CDBGroupSelectNumber.
This commit is contained in:
parent
87e5b794ae
commit
ede9c82fec
2 changed files with 44 additions and 0 deletions
|
@ -45,6 +45,7 @@ namespace NLGUI
|
|||
~CDBGroupSelectNumber();
|
||||
|
||||
std::string getProperty( const std::string &name ) const;
|
||||
void setProperty( const std::string &name, const std::string &value );
|
||||
|
||||
/// CInterfaceGroup Interface
|
||||
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);
|
||||
|
|
|
@ -82,6 +82,49 @@ namespace NLGUI
|
|||
return CInterfaceGroup::getProperty( name );
|
||||
}
|
||||
|
||||
void CDBGroupSelectNumber::setProperty( const std::string &name, const std::string &value )
|
||||
{
|
||||
if( name == "value" )
|
||||
{
|
||||
_Number.link( value.c_str() );
|
||||
return;
|
||||
}
|
||||
else
|
||||
if( name == "loop" )
|
||||
{
|
||||
bool b;
|
||||
if( fromString( value, b ) )
|
||||
_LoopMode = b;
|
||||
return;
|
||||
}
|
||||
else
|
||||
if( name == "min" )
|
||||
{
|
||||
sint i;
|
||||
if( fromString( value, i ) )
|
||||
_MinValue = i;
|
||||
return;
|
||||
}
|
||||
else
|
||||
if( name == "max" )
|
||||
{
|
||||
sint i;
|
||||
if( fromString( value, i ) )
|
||||
_MaxValue = i;
|
||||
return;
|
||||
}
|
||||
else
|
||||
if( name == "delta" )
|
||||
{
|
||||
sint i;
|
||||
if( fromString( value, i ) )
|
||||
_DeltaMultiplier = i;
|
||||
return;
|
||||
}
|
||||
else
|
||||
CInterfaceGroup::setProperty( name, value );
|
||||
}
|
||||
|
||||
// ***************************************************************************
|
||||
bool CDBGroupSelectNumber::parse (xmlNodePtr cur, CInterfaceGroup *parentGroup)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue