CHANGED: #1471 Implemented property setting for CViewTextID.

This commit is contained in:
dfighter1985 2012-08-04 08:03:48 +02:00
parent 04840d06f7
commit fe1721f00f
2 changed files with 38 additions and 0 deletions

View file

@ -92,6 +92,7 @@ namespace NLGUI
~CViewTextID();
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();

View file

@ -69,6 +69,43 @@ namespace NLGUI
return CViewText::getProperty( name );
}
void CViewTextID::setProperty( const std::string &name, const std::string &value )
{
if( name == "textid" )
{
uint32 i;
if( NLMISC::fromString( value, i ) )
{
_TextId = i;
_IsDBLink = false;
}
else
{
_DBTextId.link( value.c_str() );
_IsDBLink = true;
}
return;
}
else
if( name == "dynamic_string" )
{
bool b;
if( NLMISC::fromString( value, b ) )
_DynamicString = b;
return;
}
else
if( name == "format_taged" )
{
bool b;
if( NLMISC::fromString( value, b ) )
_IsTextFormatTaged = b;
return;
}
else
CViewText::setProperty( name, value );
}
// ***************************************************************************
bool CViewTextID::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
{