CHANGED: Implemented property setting for CGroupHeader.

--HG--
branch : gsoc2012-gui-editor
hg/feature/sse2
dfighter1985 13 years ago
parent 820a4ecfde
commit 0b20e12469

@ -43,6 +43,7 @@ namespace NLGUI
CGroupHeader(const TCtorParam &param);
std::string getProperty( const std::string &name ) const;
void setProperty( const std::string &name, const std::string &value );
// from CInterfaceGroup
virtual bool parse(xmlNodePtr cur, CInterfaceGroup * parentGroup);

@ -225,6 +225,19 @@ namespace NLGUI
return CGroupList::getProperty( name );
}
void CGroupHeader::setProperty( const std::string &name, const std::string &value )
{
if( name == "header_max_size" )
{
sint32 i;
if( fromString( value, i ) )
_HeaderMaxSize = i;
return;
}
else
return CGroupList::setProperty( name, value );
}
// *****************************************************************************************************************
bool CGroupHeader::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
{

Loading…
Cancel
Save