mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-23 15:26:16 +00:00
CHANGED: #1471 Implemented property setting for CGgroupModal.
This commit is contained in:
parent
fb19686b06
commit
3fcf024368
2 changed files with 94 additions and 0 deletions
|
@ -54,6 +54,7 @@ namespace NLGUI
|
||||||
CGroupModal(const TCtorParam ¶m);
|
CGroupModal(const TCtorParam ¶m);
|
||||||
|
|
||||||
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 );
|
||||||
|
|
||||||
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);
|
virtual bool parse (xmlNodePtr cur, CInterfaceGroup *parentGroup);
|
||||||
virtual void updateCoords ();
|
virtual void updateCoords ();
|
||||||
|
|
|
@ -114,6 +114,99 @@ namespace NLGUI
|
||||||
return CGroupFrame::getProperty( name );
|
return CGroupFrame::getProperty( name );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CGroupModal::setProperty( const std::string &name, const std::string &value )
|
||||||
|
{
|
||||||
|
if( name == "mouse_pos" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
SpawnOnMousePos = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "exit_click_out" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
ExitClickOut = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "exit_click_l" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
ExitClickL = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "exit_click_r" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
ExitClickR = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "exit_click_b" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
{
|
||||||
|
ExitClickL = ExitClickR = b;
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "force_inside_screen" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
ForceInsideScreen = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "category" )
|
||||||
|
{
|
||||||
|
Category = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "onclick_out" )
|
||||||
|
{
|
||||||
|
OnClickOut = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "onclick_out_params" )
|
||||||
|
{
|
||||||
|
OnClickOutParams = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "onpostclick_out" )
|
||||||
|
{
|
||||||
|
OnPostClickOut = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "onpostclick_out_params" )
|
||||||
|
{
|
||||||
|
OnPostClickOutParams = value;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "exit_key_pushed" )
|
||||||
|
{
|
||||||
|
bool b;
|
||||||
|
if( NLMISC::fromString( value, b ) )
|
||||||
|
ExitKeyPushed = b;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
CGroupFrame::setProperty( name, value );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// ***************************************************************************
|
// ***************************************************************************
|
||||||
bool CGroupModal::parse (xmlNodePtr cur, CInterfaceGroup *parentGroup)
|
bool CGroupModal::parse (xmlNodePtr cur, CInterfaceGroup *parentGroup)
|
||||||
|
|
Loading…
Reference in a new issue