Salome HOME
Dump Image data to python script (Feature #13).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Tool.cxx
index 5aeadb6178fd74df3e50021d8317ca55c17379f8..991dff2564ed7865717bc2d6fad8e44ae9f42eaf 100644 (file)
@@ -332,3 +332,58 @@ QList<size_t> HYDROGUI_Tool::GetGraphicsViewIdList( HYDROGUI_Module* theModule )
   }
   return aList;
 }
+
+void HYDROGUI_Tool::GetObjectReferences( const Handle(HYDROData_Image)& theImage,
+                                         HYDROData_SequenceOfObjects& theRefObjects,
+                                         QStringList& theRefNames )
+{
+  if( theImage.IsNull() )
+    return;
+
+  for( int anIndex = 0, aNbRef = theImage->NbReferences(); anIndex < aNbRef; anIndex++ )
+  {
+    Handle(HYDROData_Image) aRefImage = theImage->Reference( anIndex );
+    if( !aRefImage.IsNull() && !aRefImage->IsRemoved() )
+    {
+      QString aName = aRefImage->GetName();
+      if( !theRefNames.contains( aName ) )
+      {
+        theRefObjects.Append( aRefImage );
+        theRefNames.append( aRefImage->GetName() );
+        GetObjectReferences( aRefImage, theRefObjects, theRefNames );
+      }
+    }
+  }
+}
+
+void HYDROGUI_Tool::GetObjectBackReferences( HYDROGUI_Module* theModule,
+                                             const Handle(HYDROData_Object)& theObj,
+                                             HYDROData_SequenceOfObjects& theBackRefObjects,
+                                             QStringList& theBackRefNames )
+{
+  if( theObj.IsNull() )
+    return;
+
+  Handle(HYDROData_Document) aDocument = HYDROData_Document::Document( theModule->getStudyId() );
+  if( aDocument.IsNull() )
+    return;
+
+  QString aName = theObj->GetName();
+
+  HYDROData_Iterator anIterator( aDocument, KIND_IMAGE );
+  for( ; anIterator.More(); anIterator.Next() )
+  {
+    Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( anIterator.Current() );
+    if( !anImage.IsNull() )
+    {
+      HYDROData_SequenceOfObjects aRefObjects;
+      QStringList aRefNames;
+      GetObjectReferences( anImage, aRefObjects, aRefNames );
+      if( aRefNames.contains( aName ) )
+      {
+        theBackRefObjects.Append( anImage );
+        theBackRefNames.append( anImage->GetName() );
+      }
+    }
+  }
+}