CHANGED: #1471 Implemented property setting for CViewTextID.
This commit is contained in:
parent
04840d06f7
commit
fe1721f00f
2 changed files with 38 additions and 0 deletions
|
@ -92,6 +92,7 @@ namespace NLGUI
|
||||||
~CViewTextID();
|
~CViewTextID();
|
||||||
|
|
||||||
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 );
|
||||||
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);
|
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);
|
||||||
virtual void checkCoords();
|
virtual void checkCoords();
|
||||||
|
|
||||||
|
|
|
@ -69,6 +69,43 @@ namespace NLGUI
|
||||||
return CViewText::getProperty( name );
|
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)
|
bool CViewTextID::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue