mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
text posref is now an enum too.
This commit is contained in:
parent
762139cc1e
commit
afd1d96363
2 changed files with 19 additions and 7 deletions
|
@ -149,11 +149,16 @@ namespace NLGUI
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if( name == "text_posref" )
|
if( name == "text_posref" )
|
||||||
|
{
|
||||||
|
std::string pr;
|
||||||
|
pr = CInterfaceElement::HotSpotToString( _TextPosRef );
|
||||||
|
return pr;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
if( name == "text_parent_posref" )
|
||||||
{
|
{
|
||||||
std::string pr;
|
std::string pr;
|
||||||
pr = CInterfaceElement::HotSpotToString( _TextParentPosRef );
|
pr = CInterfaceElement::HotSpotToString( _TextParentPosRef );
|
||||||
pr += " ";
|
|
||||||
pr += CInterfaceElement::HotSpotToString( _TextPosRef );
|
|
||||||
return pr;
|
return pr;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -324,10 +329,13 @@ namespace NLGUI
|
||||||
else
|
else
|
||||||
if( name == "text_posref" )
|
if( name == "text_posref" )
|
||||||
{
|
{
|
||||||
THotSpot parent, posref;
|
_TextPosRef = convertHotSpot( value.c_str() );
|
||||||
CInterfaceElement::convertHotSpotCouple( value.c_str(), parent, posref );
|
return;
|
||||||
_TextPosRef = posref;
|
}
|
||||||
_TextParentPosRef = parent;
|
else
|
||||||
|
if( name == "text_parent_posref" )
|
||||||
|
{
|
||||||
|
_TextParentPosRef = convertHotSpot( value.c_str() );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
@ -325,7 +325,11 @@ namespace GUIEditor
|
||||||
e->setProperty( propName.toUtf8().constData(), v );
|
e->setProperty( propName.toUtf8().constData(), v );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
if( ( propName == "posref" ) || ( propName == "parentposref" ) )
|
if( ( propName == "posref" ) ||
|
||||||
|
( propName == "parentposref" ) ||
|
||||||
|
( propName == "text_posref" ) ||
|
||||||
|
( propName == "text_parent_posref" )
|
||||||
|
)
|
||||||
{
|
{
|
||||||
CInterfaceElement *e = CWidgetManager::getInstance()->getElementFromId( currentElement );
|
CInterfaceElement *e = CWidgetManager::getInstance()->getElementFromId( currentElement );
|
||||||
if( e == NULL )
|
if( e == NULL )
|
||||||
|
|
Loading…
Reference in a new issue