CHANGED: #1471 Implemented property setting for CGgroupTable.

This commit is contained in:
dfighter1985 2012-08-05 20:09:57 +02:00
parent e4cd5dbfa1
commit b18b005e88
2 changed files with 44 additions and 0 deletions

View file

@ -148,6 +148,7 @@ namespace NLGUI
bool ContinuousUpdate;
std::string getProperties( const std::string &name ) const;
void setProperty( const std::string &name, const std::string &value );
protected:

View file

@ -1202,6 +1202,49 @@ namespace NLGUI
return CInterfaceGroup::getProperty( name );
}
void CGroupTable::setProperty( const std::string &name, const std::string &value )
{
if( name == "border" )
{
sint32 i;
if( fromString( value, i ) )
Border = i;
return;
}
else
if( name == "cellpadding" )
{
sint32 i;
if( fromString( value, i ) )
CellPadding = i;
return;
}
else
if( name == "cellspacing" )
{
sint32 i;
if( fromString( value, i ) )
CellSpacing = i;
return;
}
else
if( name == "bgcolor" )
{
CRGBA c;
if( fromString( value, c ) )
BgColor = c;
return;
}
else
if( name == "width" )
{
convertPixelsOrRatio( value.c_str(), ForceWidthMin, TableRatio );
return;
}
else
CInterfaceGroup::setProperty( name, value );
}
// ------------------------------------------------------------------------------------------------
bool CGroupTable::parse (xmlNodePtr cur, CInterfaceGroup * parentGroup)
{