Salome HOME
Create goups for stream.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ImportGeomObjectOp.cxx
index fd32dfad5d30c928c5489c4c7321448d8e2163ab..344f8cad83345a0d3efadd30b5214e1418ac8919 100644 (file)
 
 #include "HYDROGUI_ImportGeomObjectOp.h"
 
-#include "HYDROGUI_ObstacleDlg.h"
+#include "HYDROGUI_GeomObjectDlg.h"
 
 #include "HYDROGUI_DataModel.h"
 #include "HYDROGUI_Module.h"
 #include "HYDROGUI_Tool.h"
+#include "HYDROGUI_UpdateFlags.h"
 
 #include <HYDROData_Obstacle.h>
+#include <HYDROData_PolylineXY.h>
 #include <HYDROData_Iterator.h>
 
 #include <GEOMBase.h>
@@ -45,7 +47,11 @@ HYDROGUI_ImportGeomObjectOp::HYDROGUI_ImportGeomObjectOp( HYDROGUI_Module* theMo
   myOpType ( theOpType ),
   myIsToShowPanel ( theIsToShowPanel )
 {
-  setName( tr( "IMPORT_GEOM_OBJECT" ) );
+  if ( myOpType == ImportSelectedAsPolyline ) {
+    setName( tr( "IMPORT_GEOM_OBJECT_AS_POLYLINE" ) );
+  } else {
+    setName( tr( "IMPORT_GEOM_OBJECT_AS_OBSTACLE" ) );
+  }
 }
 
 HYDROGUI_ImportGeomObjectOp::~HYDROGUI_ImportGeomObjectOp()
@@ -58,27 +64,47 @@ void HYDROGUI_ImportGeomObjectOp::startOperation()
 
   // Get GEOM objects to import
   myGeomObjects.clear();
-  if ( myOpType == ImportCreated ) {
+  if ( myOpType == ImportCreatedAsObstacle ) {
     myGeomObjects = module()->GetGeomObjectsToImport();
-  } else if ( myOpType == ImportSelected ) {
-    myGeomObjects = HYDROGUI_Tool::GetSelectedGeomObjects( module() );
+  } else if ( myOpType == ImportSelectedAsObstacle ) {
+    myGeomObjects = 
+      HYDROGUI_Tool::GetSelectedGeomObjects( module(), getObstacleTypes() );
+  } else if ( myOpType == ImportSelectedAsPolyline ) {
+    myGeomObjects = 
+      HYDROGUI_Tool::GetSelectedGeomObjects( module(), getPolylineTypes() );
   }
 
-  HYDROGUI_ObstacleDlg* aPanel = 0;
+  HYDROGUI_GeomObjectDlg* aPanel = 0;
 
   if ( myGeomObjects.count() == 1 ) {
     // Get panel
-    aPanel = ::qobject_cast<HYDROGUI_ObstacleDlg*>( inputPanel() );
+    aPanel = ::qobject_cast<HYDROGUI_GeomObjectDlg*>( inputPanel() );
 
     if ( aPanel ) {
       // Reset the panel state
       aPanel->reset();
 
-      // Pass the existing obstacle names to the panel
-      QStringList anObstacles = 
-        HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_OBSTACLE );
+      // Set default name
+      SalomeApp_Study* aStudy = 
+        dynamic_cast<SalomeApp_Study*>( module()->getApp()->activeStudy() );
+      if ( aStudy ) {
+        QString anEntry = myGeomObjects.first();
+        _PTR(SObject) aSObject( aStudy->studyDS()->FindObjectID( qPrintable(anEntry) ) );
+        if ( aSObject ) {
+          aPanel->setDefaultName( QString::fromStdString(aSObject->GetName()) );
+        }
+      }
+
+      // Pass the existing object names to the panel
+      QStringList anExistingNames;
+      if ( myOpType == ImportCreatedAsObstacle || 
+           myOpType == ImportSelectedAsObstacle ) {
+        anExistingNames = HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_OBSTACLE );
+      } else if ( myOpType == ImportSelectedAsPolyline ) {
+        anExistingNames = HYDROGUI_Tool::FindExistingObjectsNames( doc(), KIND_POLYLINEXY );
+      }
 
-      aPanel->setObstacleNames( anObstacles );
+      aPanel->setObjectNames( anExistingNames );
     }
   }
 
@@ -107,57 +133,97 @@ bool HYDROGUI_ImportGeomObjectOp::processApply( int& theUpdateFlags,
     return false;
   }
 
-  QString anObstacleName;
-  Handle(HYDROData_Obstacle) anObstacleToEdit;  
+  QString anObjectName;
+  Handle(HYDROData_Entity) anObjectToEdit;  
+  ObjectKind anObjectKind = 
+    myOpType == ImportSelectedAsPolyline ? KIND_POLYLINEXY : KIND_OBSTACLE;
 
-  // Get panel
-  HYDROGUI_ObstacleDlg* aPanel = ::qobject_cast<HYDROGUI_ObstacleDlg*>( inputPanel() );
-  if ( aPanel ) {
-    QString anEditedName = aPanel->getEditedObstacleName().simplified();
+  if ( myGeomObjects.count() == 1 ) {
+    // Get panel
+    HYDROGUI_GeomObjectDlg* aPanel = ::qobject_cast<HYDROGUI_GeomObjectDlg*>( inputPanel() );
+    if ( aPanel ) {
+      // Check object name
+      anObjectName = aPanel->getObjectName().simplified();
+      if ( anObjectName.isEmpty() ) {
+        theErrorMsg = tr( "INCORRECT_OBJECT_NAME" );
+        return false;
+      }
 
-    if ( !anEditedName.isEmpty() ) {
-      anObstacleToEdit = Handle(HYDROData_Obstacle)::DownCast(
-        HYDROGUI_Tool::FindObjectByName( module(), anEditedName, KIND_OBSTACLE ) );
+      // Get object to edit
+      QString anEditedName = aPanel->getEditedObjectName().simplified();
+
+      if ( !anEditedName.isEmpty() ) {
+        anObjectToEdit = HYDROGUI_Tool::FindObjectByName( module(), anEditedName, anObjectKind );
+      }
     }
 
-    anObstacleName = anEditedName; //TODO: aPanel->getObstacleName();
+    if( anObjectToEdit.IsNull() || anObjectToEdit->GetName() != anObjectName ) {
+      // check that there are no other objects with the same name in the document
+      Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( module(), anObjectName/*, anObjectKind*/ );
+      if( !anObject.IsNull() ) {
+        theErrorMsg = tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( anObjectName );
+        return false;
+      }
+    }
   }
 
   bool anIsOk = false;
 
-  // Get the created object as SObject
+  // Get the GEOM object as SObject
   foreach ( const QString& anEntry, myGeomObjects ) {
     _PTR(SObject) aSObject( aStudy->studyDS()->FindObjectID( qPrintable(anEntry)) );
-    if (aSObject) {
+    if ( aSObject ) {
       // Get the corresponding TopoDS_Shape
       TopoDS_Shape aShape = GEOMBase::GetShapeFromIOR( aSObject->GetIOR().c_str() );
-      if ( !aShape.IsNull() ) {
-        // Create/edit an obstacle object
-        // TODO refactoring: get rid of obstacle from TopoDS_Shape creation code copy/paste
-        Handle(HYDROData_Obstacle) anObstacle; 
+      if ( aShape.IsNull() ) {
+        continue;
+      }
+      
+      // Create/edit an object
+      Handle(HYDROData_Entity) anObject; 
 
-        if ( anObstacleToEdit.IsNull() ) {
-          anObstacle = 
+      if ( anObjectToEdit.IsNull() ) {
+        if ( myOpType == ImportCreatedAsObstacle || myOpType == ImportSelectedAsObstacle ) {
+          anObject = 
             Handle(HYDROData_Obstacle)::DownCast( doc()->CreateObject(KIND_OBSTACLE) );
-        } else {
-          anObstacle = anObstacleToEdit;
+          Handle(HYDROData_Obstacle) anObstacle = Handle(HYDROData_Obstacle)::DownCast( anObject );
+          anObstacle->SetFillingColor( HYDROData_Obstacle::DefaultFillingColor() );
+          anObstacle->SetBorderColor( HYDROData_Obstacle::DefaultBorderColor() );
+        } else if ( myOpType == ImportSelectedAsPolyline ) {
+          anObject = 
+            Handle(HYDROData_PolylineXY)::DownCast( doc()->CreateObject(KIND_POLYLINEXY) );
         }
+      } else {
+        anObject = anObjectToEdit;
+      }
 
-        // Set name
-        if ( anObstacleName.isEmpty() ) {
-          QString aName = QString::fromStdString( aSObject->GetName() );
-          anObstacleName = HYDROGUI_Tool::GenerateObjectName( module(), aName );
-        }
-        if ( anObstacle->GetName() != anObstacleName ) {
-          anObstacle->SetName( anObstacleName );
-        }
+      // Set name
+      if ( anObjectName.isEmpty() ) {
+        QString aName = QString::fromStdString( aSObject->GetName() );
+        anObjectName = HYDROGUI_Tool::GenerateObjectName( 
+          module(), aName, QStringList(), true );
+      }
+      if ( anObject->GetName() != anObjectName ) {
+        anObject->SetName( anObjectName );
+      }
 
-        // Set shape
-        anObstacle->SetShape3D( aShape );
+      anObjectName.clear();
 
-        // Set operation status
+      // Set shape
+      if ( myOpType == ImportCreatedAsObstacle || myOpType == ImportSelectedAsObstacle ) {
+        Handle(HYDROData_Obstacle) anObstacle = Handle(HYDROData_Obstacle)::DownCast( anObject );
+        anObstacle->SetShape3D( aShape );
         anIsOk = true;
-        theUpdateFlags = UF_Model;
+      } else if ( myOpType == ImportSelectedAsPolyline ) {
+        Handle(HYDROData_PolylineXY) aPolyline = Handle(HYDROData_PolylineXY)::DownCast( anObject );
+        // TODO ISSUE #228: set the shape ("aShape") to the polyline
+        // anIsOk = aPolyline->setShape( aShape );
+      }
+
+      // Check operation status
+      if ( anIsOk ) {
+        anObject->Update();
+        theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced;
       }
     }
   }
@@ -169,8 +235,30 @@ HYDROGUI_InputPanel* HYDROGUI_ImportGeomObjectOp::createInputPanel() const
 {
   HYDROGUI_InputPanel* aPanel = 0;
   if ( myIsToShowPanel ) {
-    aPanel = new HYDROGUI_ObstacleDlg( module(), getName() );
+    QString anObjectTypeName = 
+      myOpType == ImportSelectedAsPolyline ? tr("DEFAULT_POLYLINE_NAME") :
+                  tr("DEFAULT_OBSTACLE_NAME");
+    aPanel = new HYDROGUI_GeomObjectDlg( module(), getName(), anObjectTypeName );
   }
 
   return aPanel;
+}
+
+QList<GEOM::shape_type> HYDROGUI_ImportGeomObjectOp::getObstacleTypes()
+{
+  QList<GEOM::shape_type> aTypes;
+
+  aTypes << GEOM::COMPOUND << GEOM::COMPOUND << GEOM::SOLID << 
+            GEOM::SHELL << GEOM::FACE << GEOM::SHAPE;
+
+  return aTypes;
+}
+
+QList<GEOM::shape_type> HYDROGUI_ImportGeomObjectOp::getPolylineTypes()
+{
+  QList<GEOM::shape_type> aTypes;
+
+  aTypes << GEOM::WIRE << GEOM::EDGE;
+
+  return aTypes;
 }
\ No newline at end of file