]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
Bug #282: Strange behavior during copypaste operation.
authormzn <mzn@opencascade.com>
Thu, 26 Dec 2013 07:42:15 +0000 (07:42 +0000)
committermzn <mzn@opencascade.com>
Thu, 26 Dec 2013 07:42:15 +0000 (07:42 +0000)
Allow multiple objects copy/paste.

src/HYDROGUI/HYDROGUI_DataModel.cxx
src/HYDROGUI/HYDROGUI_Module.cxx

index 9f6a00d182a3ad3551a7e723ebaa9ac80b67f66a..16feb2099ee733b3b84775f89489f5994fec2f02 100644 (file)
@@ -547,20 +547,25 @@ bool HYDROGUI_DataModel::redo()
 bool HYDROGUI_DataModel::canCopy()
 {
   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( (HYDROGUI_Module*)module() );
-  if( aSeq.Length() != 1 )
-    return false;
-
-  Handle(HYDROData_Entity) anObject = aSeq.First();
-  if( anObject.IsNull() )
-    return false;
+  bool isCanCopy = !aSeq.IsEmpty();
 
-  ObjectKind aKind = anObject->GetKind();
-  if( aKind > KIND_UNKNOWN && aKind <= KIND_LAST &&
-      aKind != KIND_DUMMY_3D && aKind != KIND_ZONE && 
-      aKind != KIND_SHAPES_GROUP && aKind != KIND_SPLITTED_GROUP )
-    return true;
-
-  return false;
+  for ( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ ) {
+    Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
+    if( !anObject.IsNull() ) {
+      ObjectKind aKind = anObject->GetKind();
+      bool isUnrecognized = aKind <= KIND_UNKNOWN || aKind > KIND_LAST;
+      bool isChildObject = aKind == KIND_DUMMY_3D || 
+                           aKind == KIND_ZONE ||
+                           aKind == KIND_SHAPES_GROUP || 
+                           aKind == KIND_SPLITTED_GROUP;
+      if ( isUnrecognized || isChildObject ) {
+        isCanCopy = false;
+        break;
+      }
+    }
+  }
+  
+  return isCanCopy;
 }
 
 bool HYDROGUI_DataModel::canPaste()
index ea883c19cd8fece6b7c1e179426dfe52f26b81c3..fb192aff8069ee159101f1efe13eb39cc3b15918 100644 (file)
@@ -610,19 +610,22 @@ void HYDROGUI_Module::contextMenuPopup( const QString& theClient,
         theMenu->addAction( action( SetColorId ) );
         theMenu->addSeparator();
       }
-
-      // Add copy action
-      if( aModel->canCopy() ) {
-        theMenu->addAction( action( CopyId ) );
-        theMenu->addSeparator();
-      }
     } else if ( anAllAreProfiles ) {
       theMenu->addAction( action( SelectedGeoreferencementId ) );
       theMenu->addSeparator();
     }
 
+    // Add copy action
+    QAction* aCopyAction = action( CopyId );
+    if( aCopyAction && aCopyAction->isEnabled() ) {
+      theMenu->addAction( action( CopyId ) );
+      theMenu->addSeparator();
+    }
+
+    // Add delete action
     if( !anIsDummyObject3D )
       theMenu->addAction( action( DeleteId ) );
+
     theMenu->addSeparator();
 
     if( anIsImage || anIsPolyline || anIsPolyline3D ||