CHANGED: #1471 Implemented property setting for CDBViewDigit.

--HG--
branch : gsoc2012-gui-editor
hg/feature/sse2
dfighter1985 12 years ago
parent b3a815abce
commit 702225b348

@ -39,6 +39,7 @@ namespace NLGUI
CDBViewDigit(const TCtorParam &param); CDBViewDigit(const TCtorParam &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 draw (); virtual void draw ();
virtual void updateCoords(); virtual void updateCoords();

@ -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) bool CDBViewDigit::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup)
{ {

Loading…
Cancel
Save