CHANGED: #1471 CViewBitmapCombo fields can now be serialized.

This commit is contained in:
dfighter1985 2012-08-12 03:50:55 +02:00
parent 6870d47bee
commit 17c180db71
2 changed files with 31 additions and 0 deletions

View file

@ -109,6 +109,7 @@ namespace NLGUI
std::string getProperty( const std::string &name ) const;
void setProperty( const std::string &name, const std::string &value );
xmlNodePtr serialize( xmlNodePtr parentNode, const char *type ) const;
/**

View file

@ -257,6 +257,36 @@ namespace NLGUI
CViewBase::setProperty( name, value );
}
xmlNodePtr CViewBitmapCombo::serialize( xmlNodePtr parentNode, const char *type ) const
{
xmlNodePtr node = CViewBase::serialize( parentNode, type );
if( node == NULL )
return NULL;
xmlSetProp( node, BAD_CAST "type", BAD_CAST "bitmap_combo" );
std::string normal;
std::string over;
std::string pushed;
getTexList( _Texs, normal );
getTexList( _TexsOver, over );
getTexList( _TexsPushed, pushed );
xmlSetProp( node, BAD_CAST "tx_normal", BAD_CAST normal.c_str() );
xmlSetProp( node, BAD_CAST "tx_over", BAD_CAST over.c_str() );
xmlSetProp( node, BAD_CAST "tx_pushed", BAD_CAST pushed.c_str() );
getColList( _Col, normal );
getColList( _ColOver, over );
getColList( _ColPushed, pushed );
xmlSetProp( node, BAD_CAST "col_normal", BAD_CAST normal.c_str() );
xmlSetProp( node, BAD_CAST "col_over", BAD_CAST over.c_str() );
xmlSetProp( node, BAD_CAST "col_pushed", BAD_CAST pushed.c_str() );
return node;
}
//=======================================================================================
bool CViewBitmapCombo::parse(xmlNodePtr cur, CInterfaceGroup * parentGroup)
{