mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-05 23:09:02 +00:00
CHANGED: #1471 CGroupEditBox action handlers will now be retrievable, even if the action handler couldn't be found at the time of parsing.
This commit is contained in:
parent
5042c99d95
commit
d6b99c3026
1 changed files with 7 additions and 1 deletions
|
@ -439,7 +439,6 @@ namespace NLGUI
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
xmlSetProp( node, BAD_CAST "type", BAD_CAST "edit_box" );
|
xmlSetProp( node, BAD_CAST "type", BAD_CAST "edit_box" );
|
||||||
|
|
||||||
xmlSetProp( node, BAD_CAST "onchange", BAD_CAST _AHOnChange.c_str() );
|
xmlSetProp( node, BAD_CAST "onchange", BAD_CAST _AHOnChange.c_str() );
|
||||||
xmlSetProp( node, BAD_CAST "onchange_params", BAD_CAST _ParamsOnChange.c_str() );
|
xmlSetProp( node, BAD_CAST "onchange_params", BAD_CAST _ParamsOnChange.c_str() );
|
||||||
xmlSetProp( node, BAD_CAST "on_focus_lost", BAD_CAST _AHOnFocusLost.c_str() );
|
xmlSetProp( node, BAD_CAST "on_focus_lost", BAD_CAST _AHOnFocusLost.c_str() );
|
||||||
|
@ -535,6 +534,13 @@ namespace NLGUI
|
||||||
// NB: use InterfaceGroup "OnEnter" data. Different script params for an historic reason
|
// NB: use InterfaceGroup "OnEnter" data. Different script params for an historic reason
|
||||||
CAHManager::getInstance()->parseAH(cur, "onenter", "params", _AHOnEnter, _AHOnEnterParams);
|
CAHManager::getInstance()->parseAH(cur, "onenter", "params", _AHOnEnter, _AHOnEnterParams);
|
||||||
|
|
||||||
|
if( editorMode )
|
||||||
|
{
|
||||||
|
prop = (char*) xmlGetProp( cur, BAD_CAST "onenter" );
|
||||||
|
if( prop != NULL )
|
||||||
|
mapAHString( "onenter", std::string( prop ) );
|
||||||
|
}
|
||||||
|
|
||||||
prop = (char*) xmlGetProp( cur, (xmlChar*)"onchange" );
|
prop = (char*) xmlGetProp( cur, (xmlChar*)"onchange" );
|
||||||
if (prop) _AHOnChange = (const char *) prop;
|
if (prop) _AHOnChange = (const char *) prop;
|
||||||
prop = (char*) xmlGetProp( cur, (xmlChar*)"onchange_params" );
|
prop = (char*) xmlGetProp( cur, (xmlChar*)"onchange_params" );
|
||||||
|
|
Loading…
Reference in a new issue