const Handle(HYDROData_Entity)& theRefObject,
const QString& theMethod ) const
{
- if ( theRefObject.IsNull() )
+ if ( !checkObjectPythonDefinition( theTreatedObjects, theScript, theRefObject ) )
return;
+ QString aRefObjName = theRefObject->GetObjPyName();
+
+ QString anObjName = GetObjPyName();
+ theScript << QString( "%1.%2( %3 );" )
+ .arg( anObjName ).arg( theMethod ).arg( aRefObjName );
+}
+
+bool HYDROData_Entity::checkObjectPythonDefinition( MapOfTreatedObjects& theTreatedObjects,
+ QStringList& theScript,
+ const Handle(HYDROData_Entity)& theRefObject ) const
+{
+ if ( theRefObject.IsNull() )
+ return false;
+
QString aRefObjName = theRefObject->GetObjPyName();
if ( aRefObjName.isEmpty() )
- return;
+ return false;
- bool anIsToSetObject = true;
+ if ( theTreatedObjects.contains( aRefObjName ) )
+ return true;
// The definition of reference object must be dumped before this
- if ( !theTreatedObjects.contains( aRefObjName ) )
- {
- // Write definition of reference polyline
- QStringList aRefObjDump = theRefObject->DumpToPython( theTreatedObjects );
- if ( ( anIsToSetObject = !aRefObjDump.isEmpty() ) )
- {
- QStringList aTmpList = theScript;
- theScript = aRefObjDump;
+ QStringList aRefObjDump = theRefObject->DumpToPython( theTreatedObjects );
+ if ( aRefObjDump.isEmpty() )
+ return false;
- theScript << QString( "" );
- theScript << aTmpList;
+ QStringList aTmpList = theScript;
+ theScript = aRefObjDump;
- theTreatedObjects.insert( aRefObjName, theRefObject );
- }
- }
+ theScript << QString( "" );
+ theScript << aTmpList;
- if ( anIsToSetObject )
- {
- QString anObjName = GetObjPyName();
- theScript << QString( "%1.%2( %3 );" )
- .arg( anObjName ).arg( theMethod ).arg( aRefObjName );
- }
+ theTreatedObjects.insert( aRefObjName, theRefObject );
+
+ return true;
}
void HYDROData_Entity::setPythonObjectColor( QStringList& theScript,
const Handle(HYDROData_Entity)& theRefObject,
const QString& theMethod ) const;
+ bool checkObjectPythonDefinition( MapOfTreatedObjects& theTreatedObjects,
+ QStringList& theScript,
+ const Handle(HYDROData_Entity)& theRefObject ) const;
+
void setPythonObjectColor( QStringList& theScript,
const QColor& theColor,
const QColor& theDefaultColor,
{
Handle(HYDROData_Profile) aProfile =
Handle(HYDROData_Profile)::DownCast( aRefProfileUZ->GetFatherObject() );
- if ( !aProfile.IsNull() )
+ if ( checkObjectPythonDefinition( theTreatedObjects, aResList, aProfile ) )
{
QString aProfileName = aProfile->GetObjPyName();
if ( !aProfileName.isEmpty() )
{
Handle(HYDROData_Profile) aProfile =
Handle(HYDROData_Profile)::DownCast( aChildProfileUZ->GetFatherObject() );
- if ( !aProfile.IsNull() )
+ if ( checkObjectPythonDefinition( theTreatedObjects, aResList, aProfile ) )
{
QString aProfileName = aProfile->GetObjPyName();
if ( !aProfileName.isEmpty() )