CHANGED: #1471 CGroupScrollText fields can now be serialized.

--HG--
branch : gsoc2012-gui-editor
hg/feature/sse2
dfighter1985 13 years ago
parent 4c9ab0ac63
commit 5371a77486

@ -45,6 +45,7 @@ namespace NLGUI
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 ); void setProperty( const std::string &name, const std::string &value );
xmlNodePtr serialize( xmlNodePtr parentNode, const char *type ) const;
/// CInterfaceGroup Interface /// CInterfaceGroup Interface
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup); virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);

@ -70,6 +70,19 @@ namespace NLGUI
CInterfaceGroup::setProperty( name, value ); CInterfaceGroup::setProperty( name, value );
} }
xmlNodePtr CGroupScrollText::serialize( xmlNodePtr parentNode, const char *type ) const
{
xmlNodePtr node = CInterfaceGroup::serialize( parentNode, type );
if( node == NULL )
return NULL;
xmlSetProp( node, BAD_CAST "type", BAD_CAST "scroll_text" );
xmlSetProp( node, BAD_CAST "invert_scroll_bar", BAD_CAST NLMISC::toString( _InvertScrollBar ).c_str() );
return node;
}
//======================================================================== //========================================================================
bool CGroupScrollText::parse(xmlNodePtr cur,CInterfaceGroup *parentGroup) bool CGroupScrollText::parse(xmlNodePtr cur,CInterfaceGroup *parentGroup)
{ {

Loading…
Cancel
Save