Salome HOME
The data model has been rolled back to previous version.
[modules/hydro.git] / src / HYDROData / HYDROData_Tool.cxx
index cd6090370b15f1941099fa91fea84db1bba7bd78..fee6e1105dc018dac99aff70dd9077297291c9bb 100644 (file)
@@ -1,8 +1,10 @@
 
 #include "HYDROData_Tool.h"
 
+#include "HYDROData_ArtificialObject.h"
 #include "HYDROData_Image.h"
 #include "HYDROData_Iterator.h"
+#include "HYDROData_NaturalObject.h"
 
 #include <QFile>
 #include <QStringList>
@@ -26,26 +28,26 @@ void HYDROData_Tool::WriteStringsToFile( QFile&             theFile,
 void HYDROData_Tool::SetMustBeUpdatedImages(
   const Handle(HYDROData_Document)& theDoc  )
 {
-  bool aChanged = true;
+  bool anIsChanged = true;
 
   // iterate until there is no changes because images on all level of dependency must be updated
-  while ( aChanged )
+  while ( anIsChanged )
   {
-    aChanged = false;
+    anIsChanged = false;
 
     HYDROData_Iterator anIter( theDoc, KIND_IMAGE );
     for ( ; anIter.More(); anIter.Next() )
     {
       Handle(HYDROData_Image) anImage = 
         Handle(HYDROData_Image)::DownCast( anIter.Current() );
-      if ( anImage.IsNull() || anImage->MustBeUpdated() )
+      if ( anImage.IsNull() || anImage->IsMustBeUpdated() )
         continue;
 
       Handle(HYDROData_Image) aTrsfRefImage = anImage->GetTrsfReferenceImage();
-      if ( !aTrsfRefImage.IsNull() && aTrsfRefImage->MustBeUpdated() )
+      if ( !aTrsfRefImage.IsNull() && aTrsfRefImage->IsMustBeUpdated() )
       {
-        anImage->MustBeUpdated( true );
-        aChanged = true;
+        anImage->SetToUpdate( true );
+        anIsChanged = true;
         continue;
       }
 
@@ -53,11 +55,11 @@ void HYDROData_Tool::SetMustBeUpdatedImages(
       {
         Handle(HYDROData_Image) aRefImage =
           Handle(HYDROData_Image)::DownCast( anImage->Reference( i ) );
-        if ( !aRefImage.IsNull() && aRefImage->MustBeUpdated() )
+        if ( !aRefImage.IsNull() && aRefImage->IsMustBeUpdated() )
         {
            // image references to updated => also must be updated
-           anImage->MustBeUpdated(true);
-           aChanged = true;
+           anImage->SetToUpdate( true );
+           anIsChanged = true;
         }
       }
     }
@@ -66,7 +68,8 @@ void HYDROData_Tool::SetMustBeUpdatedImages(
 
 QString HYDROData_Tool::GenerateObjectName( const Handle(HYDROData_Document)& theDoc,
                                             const QString&                    thePrefix,
-                                            const QStringList&                theUsedNames )
+                                            const QStringList&                theUsedNames,
+                                            const bool                        theIsTryToUsePurePrefix )
 {
   QStringList aNamesList( theUsedNames );
 
@@ -87,14 +90,18 @@ QString HYDROData_Tool::GenerateObjectName( const Handle(HYDROData_Document)& th
 
   QString aName;
 
-  int anId = 1;
-  while( anId < 1000 )
-  {
-    aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) );
+  if ( theIsTryToUsePurePrefix && !aNamesList.contains( thePrefix ) ) {
+    aName = thePrefix;
+  } else {
+    int anId = 1;
+    while( anId < 1000 )
+    {
+      aName = QString( "%1_%2" ).arg( thePrefix ).arg( QString::number( anId++ ) );
 
-    // check that there are no other objects with the same name in the document
-    if ( !aNamesList.contains( aName ) )
-      break;
+      // check that there are no other objects with the same name in the document
+      if ( !aNamesList.contains( aName ) )
+        break;
+    }
   }
 
   return aName;
@@ -150,3 +157,11 @@ HYDROData_SequenceOfObjects HYDROData_Tool::FindObjectsByNames( const Handle(HYD
   return aResSeq;
 }
 
+bool HYDROData_Tool::IsGeometryObject( const Handle(HYDROData_Entity)& theObject )
+{
+  if ( theObject.IsNull() )
+    return false;
+  
+  return theObject->IsKind( STANDARD_TYPE(HYDROData_ArtificialObject) ) ||
+         theObject->IsKind( STANDARD_TYPE(HYDROData_NaturalObject) );
+}