CHANGED: #1471 Implemented property setting for CViewTextFormated.
This commit is contained in:
parent
15bff79e02
commit
04840d06f7
2 changed files with 12 additions and 0 deletions
|
@ -47,6 +47,7 @@ namespace NLGUI
|
||||||
CViewTextFormated (const TCtorParam ¶m) : CViewText(param)
|
CViewTextFormated (const TCtorParam ¶m) : CViewText(param)
|
||||||
{}
|
{}
|
||||||
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();
|
||||||
const ucstring &getFormatString() const { return _FormatString; }
|
const ucstring &getFormatString() const { return _FormatString; }
|
||||||
|
|
|
@ -35,6 +35,17 @@ namespace NLGUI
|
||||||
return CViewText::getProperty( name );
|
return CViewText::getProperty( name );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CViewTextFormated::setProperty( const std::string &name, const std::string &value )
|
||||||
|
{
|
||||||
|
if( name == "format" )
|
||||||
|
{
|
||||||
|
setFormatString( value );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
CViewText::setProperty( name, value );
|
||||||
|
}
|
||||||
|
|
||||||
// ****************************************************************************
|
// ****************************************************************************
|
||||||
bool CViewTextFormated::parse(xmlNodePtr cur,CInterfaceGroup * parentGroup)
|
bool CViewTextFormated::parse(xmlNodePtr cur,CInterfaceGroup * parentGroup)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue