CHANGED: #1471 Implemented property setting for CDBViewNumber.

This commit is contained in:
dfighter1985 2012-08-04 18:14:43 +02:00
parent 15440c0553
commit 0103afae6e
2 changed files with 56 additions and 0 deletions

View file

@ -40,6 +40,7 @@ namespace NLGUI
CDBViewNumber(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 checkCoords();
virtual void draw ();

View file

@ -84,6 +84,61 @@ namespace NLGUI
return CViewText::getProperty( name );
}
void CDBViewNumber::setProperty( const std::string &name, const std::string &value )
{
if( name == "value" )
{
_Number.link( value.c_str() );
return;
}
else
if( name == "positive" )
{
bool b;
if( fromString( value, b ) )
_Positive = b;
return;
}
else
if( name == "format" )
{
bool b;
if( fromString( value, b ) )
_Format = b;
return;
}
else
if( name == "divisor" )
{
sint64 i;
if( fromString( value, i ) )
_Divisor = i;
return;
}
else
if( name == "modulo" )
{
sint64 i;
if( fromString( value, i ) )
_Divisor = i;
return;
}
else
if( name == "suffix" )
{
_Suffix = value;
return;
}
else
if( name == "prefix" )
{
_Prefix = value;
return;
}
else
CViewText::setProperty( name, value );
}
// ***************************************************************************
bool CDBViewNumber::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup)
{