CHANGED: #1471 Implemented property setting for CDBViewDigit.

This commit is contained in:
dfighter1985 2012-08-04 01:56:11 +02:00
parent cf53991e7a
commit 1da81983ae
2 changed files with 37 additions and 0 deletions

View file

@ -39,6 +39,7 @@ namespace NLGUI
CDBViewDigit(const TCtorParam &param);
std::string getProperty( const std::string &name ) const;
void setProperty( const std::string &name, const std::string &value );
virtual bool parse (xmlNodePtr cur, CInterfaceGroup * parentGroup);
virtual void draw ();
virtual void updateCoords();

View file

@ -67,6 +67,42 @@ namespace NLGUI
}
void CDBViewDigit::setProperty( const std::string &name, const std::string &value )
{
if( name == "value" )
{
_Number.link( value.c_str() );
return;
}
else
if( name == "numdigit" )
{
sint32 i;
if( fromString( value, i ) )
_NumDigit = i;
return;
}
else
if( name == "wspace" )
{
sint32 i;
if( fromString( value, i ) )
_WSpace = i;
return;
}
else
if( name == "color" )
{
CRGBA c;
if( fromString( value, c ) )
_Color = c;
return;
}
else
CViewBase::setProperty( name, value );
}
// ***************************************************************************
bool CDBViewDigit::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup)
{