Salome HOME
Image positioning by two points.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_DeleteOp.cxx
index 0e57e37266721a3c221e8627a2c0ec8cf1940b1e..704fa4e34d8b55b88748fa0e440cb34c39cf03f4 100644 (file)
@@ -47,12 +47,40 @@ void HYDROGUI_DeleteOp::startOperation()
 {
   HYDROGUI_Operation::startOperation();
 
+  HYDROData_SequenceOfObjects aFullSeq; // selected objects with their back-references
+  QStringList aFullNames;
+
   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
   if( !aSeq.IsEmpty() )
   {
+    for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
+    {
+      Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
+      if( !anObject.IsNull() )
+      {
+        aFullSeq.Append( anObject );
+        aFullNames.append( anObject->GetName() );
+
+        // collect the back-references
+        ObjectKind aKind = anObject->GetKind();
+        if( aKind == KIND_IMAGE || aKind == KIND_POLYLINE )
+        {
+          HYDROData_SequenceOfObjects anObjects;
+          QStringList aNames;
+          HYDROGUI_Tool::GetObjectBackReferences( module(), anObject, anObjects, aNames );
+          aFullSeq.Append( anObjects );
+          aFullNames.append( aNames );
+        }
+      }
+    }
+
+    aFullNames.removeDuplicates();
+    aFullNames.sort();
+
+    QString aList = aFullNames.join( "\n" );
     int anAnswer = SUIT_MessageBox::question( module()->getApp()->desktop(),
                                               tr( "DELETE_OBJECTS" ),
-                                              tr( "CONFIRM_DELETION" ),
+                                              tr( "CONFIRM_DELETION" ).arg( aList ),
                                               QMessageBox::Yes | QMessageBox::No,
                                               QMessageBox::No );
     if( anAnswer == QMessageBox::No )
@@ -62,13 +90,15 @@ void HYDROGUI_DeleteOp::startOperation()
     }
   }
 
-  for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
+  startDocOperation();
+  for( Standard_Integer anIndex = 1, aLength = aFullSeq.Length(); anIndex <= aLength; anIndex++ )
   {
-    Handle(HYDROData_Object) anObject = aSeq.Value( anIndex );
-    if( !anObject.IsNull() )
+    Handle(HYDROData_Entity) anObject = aFullSeq.Value( anIndex );
+    if( !anObject.IsNull() && !anObject->IsRemoved() )
       anObject->Remove();
   }
+  commitDocOperation();
 
-  module()->update( UF_Model | UF_Viewer );
+  module()->update( UF_Model | UF_Viewer | UF_OCCViewer );
   commit();
 }