Salome HOME
Polyline3D creation/edit dialog and operation are added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
index 08aa0d8fb8f6664d577d65c784dac5517cbf6bf6..233cddba4fe986dcef15016fe8defc5bd674d7cd 100644 (file)
@@ -33,6 +33,8 @@
 #include "HYDROGUI_Module.h"
 #include "HYDROGUI_ObserveImageOp.h"
 #include "HYDROGUI_PolylineOp.h"
+#include "HYDROGUI_Poly3DOp.h"
+#include "HYDROGUI_ProfileOp.h"
 #include "HYDROGUI_RemoveImageRefsOp.h"
 #include "HYDROGUI_ShowHideOp.h"
 #include "HYDROData_SplitToZonesTool.h"
 #include "HYDROGUI_UpdateFlags.h"
 #include "HYDROGUI_UpdateImageOp.h"
 #include "HYDROGUI_VisualStateOp.h"
+#include "HYDROGUI_ImmersibleZoneOp.h"
+#include "HYDROGUI_ImportGeomObjectOp.h"
+#include "HYDROGUI_ImportObstacleFromFileOp.h"
+#include "HYDROGUI_ExportCalculationOp.h"
+#include "HYDROGUI_ImportProfilesOp.h"
+#include "HYDROGUI_GeoreferencementOp.h"
+#include "HYDROGUI_SetColorOp.h"
+
+#include "HYDROData_Document.h"
+#include "HYDROData_Obstacle.h"
+
+#include <GeometryGUI.h>
+#include <GeometryGUI_Operations.h>
+#include <GEOMBase.h>
+
+#include <SalomeApp_Study.h>
+
+#include <LightApp_Application.h>
 
 #include <CAM_Application.h>
 
@@ -65,8 +85,8 @@ QAction* HYDROGUI_Module::createAction( const int theId, const QString& theSuffi
   std::string aDesktop = ( "DSK_" + theSuffix ).toStdString();
   std::string aToolbar = ( "STB_" + theSuffix ).toStdString();
   std::string aSlotStr = aSlot.toStdString();
-  return LightApp_Module::createAction( theId, tr( aMenu.c_str() ), aPixmap,
-    tr( aDesktop.c_str() ), tr( aToolbar.c_str() ),
+  return LightApp_Module::createAction( theId, tr( aDesktop.c_str() ), aPixmap,
+    tr( aMenu.c_str() ), tr( aToolbar.c_str() ),
                theKey, application()->desktop(), isToggle, this, aSlotStr.c_str() );
 }
 
@@ -88,13 +108,28 @@ void HYDROGUI_Module::createActions()
   createAction( CreatePolylineId, "CREATE_POLYLINE" );
   createAction( EditPolylineId, "EDIT_POLYLINE" ); 
 
+  createAction( CreatePolyline3DId, "CREATE_POLYLINE_3D" );
+  createAction( EditPolyline3DId, "EDIT_POLYLINE_3D" ); 
+
+  createAction( CreateProfileId, "CREATE_PROFILE" );
+  createAction( ImportProfilesId, "IMPORT_PROFILES" );
+  createAction( EditProfileId, "EDIT_PROFILE" ); 
+  createAction( AllGeoreferencementId, "GEOREFERENCEMENT" ); 
+  createAction( SelectedGeoreferencementId, "GEOREFERENCEMENT" ); 
+  
   createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "", Qt::CTRL + Qt::Key_B );
 
   createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE" );
   createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE" );
 
+  createAction( ImportObstacleFromFileId, "IMPORT_OBSTACLE_FROM_FILE" );
+  createAction( ImportGeomObjectId, "IMPORT_GEOM_OBJECT" );
+  createAction( CreateBoxId, "CREATE_BOX" );
+  createAction( CreateCylinderId, "CREATE_CYLINDER" );
+
   createAction( CreateCalculationId, "CREATE_CALCULATION" );
   createAction( EditCalculationId, "EDIT_CALCULATION" );
+  createAction( ExportCalculationId, "EXPORT_CALCULATION" );
 
   createAction( FuseImagesId, "FUSE_IMAGES" );
   createAction( EditFusedImageId, "EDIT_FUSED_IMAGE" );
@@ -105,7 +140,10 @@ void HYDROGUI_Module::createActions()
   createAction( SplitImageId, "SPLIT_IMAGE" );
   createAction( EditSplittedImageId, "EDIT_SPLITTED_IMAGE" );
 
-  createAction( DeleteId, "DELETE", "", Qt::Key_Delete );
+  createAction( DeleteId, "DELETE", "", Qt::Key_Delete, false,
+                SLOT( onDelete() ) );
+
+  createAction( SetColorId, "COLOR" );
 
   createAction( ShowId, "SHOW" );
   createAction( ShowOnlyId, "SHOW_ONLY" );
@@ -133,12 +171,26 @@ void HYDROGUI_Module::createMenus()
   createMenu( ImportImageId, aHydroId, -1, -1 );
   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
   createMenu( CreatePolylineId, aHydroId, -1, -1 );
+  createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
+
+  int aNewProfileId = createMenu( tr( "MEN_PROFILE" ), aHydroId, -1 );
+  createMenu( CreateProfileId, aNewProfileId, -1, -1 );
+  createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
+  createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
+
   createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 );
+
+  int aNewObstacleId = createMenu( tr( "MEN_OBSTACLE" ), aHydroId, -1 );
+  createMenu( ImportObstacleFromFileId, aNewObstacleId, -1, -1 );
+  createMenu( CreateBoxId, aNewObstacleId, -1, -1 );
+  createMenu( CreateCylinderId, aNewObstacleId, -1, -1 );
+
   createMenu( CreateCalculationId, aHydroId, -1, -1 );
   createMenu( separator(), aHydroId );
   createMenu( FuseImagesId, aHydroId, -1, -1 );
   createMenu( CutImagesId, aHydroId, -1, -1 );
   createMenu( SplitImageId, aHydroId, -1, -1 );
+  createMenu( separator(), aHydroId );
 }
 
 void HYDROGUI_Module::createPopups()
@@ -201,6 +253,16 @@ void HYDROGUI_Module::onOperation()
     startOperation( anId );
 }
 
+void HYDROGUI_Module::onDelete()
+{
+  SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
+  HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
+  if ( aPolylineOp && aPolylineOp->deleteEnabled() )
+    aPolylineOp->deleteSelected();
+  else
+    startOperation( DeleteId );
+}
+
 bool HYDROGUI_Module::onUndo( int theNumActions )
 {
   QApplication::setOverrideCursor( Qt::WaitCursor );
@@ -275,10 +337,27 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   case RemoveImageRefsId:
     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
     break;
+  case CreatePolyline3DId:
+  case EditPolyline3DId:
+    anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
+    break;
   case CreatePolylineId:
   case EditPolylineId:
     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
     break;
+  case CreateProfileId:
+  case EditProfileId:
+    anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
+    break;
+  case ImportProfilesId:
+    anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
+    break;
+  case AllGeoreferencementId:
+    anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
+    break;
+  case SelectedGeoreferencementId:
+    anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
+    break;
   case ImportBathymetryId:
     anOp = new HYDROGUI_ImportBathymetryOp( aModule );
     break;
@@ -290,6 +369,9 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   case EditCalculationId:
     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
     break;
+  case ExportCalculationId:
+    anOp = new HYDROGUI_ExportCalculationOp( aModule );
+    break;
   case FuseImagesId:
   case EditFusedImageId:
     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
@@ -302,9 +384,27 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   case EditSplittedImageId:
     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
     break;
+  case ImportObstacleFromFileId:
+    anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
+    break;
+  case ImportCreatedPrimitiveId:
+    anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportCreated );
+    break;
+  case ImportGeomObjectId:
+    anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelected );
+    break;
+  case CreateBoxId:
+    application()->activateOperation( "Geometry", GEOMOp::OpBox );
+    break;
+  case CreateCylinderId:
+    application()->activateOperation( "Geometry", GEOMOp::OpCylinder );
+    break;
   case DeleteId:
     anOp = new HYDROGUI_DeleteOp( aModule );
     break;
+  case SetColorId:
+    anOp = new HYDROGUI_SetColorOp( aModule );
+    break;
   case ShowId:
   case ShowOnlyId:
   case ShowAllId:
@@ -319,3 +419,41 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
 
   return anOp;
 }
+
+bool HYDROGUI_Module::reusableOperation( const int id )
+{
+  if ( id == ImportGeomObjectId ) {
+    return false;
+  }
+
+  return LightApp_Module::reusableOperation( id );
+}
+
+/**
+ * Called when the operation perfomed by another module is finished.
+ * \param theModuleName the name of the module which perfomed the operation
+ * \param theOperationName the operation name
+ * \param theEntryList the list of the created objects entries
+ */
+void HYDROGUI_Module::onExternalOperationFinished( const QString& theModuleName,
+                                                   const QString& theOperationName,
+                                                   const QStringList& theEntryList )
+{
+  // Process "Geometry" module operations with non-empty list of created objects only
+  if ( theModuleName != "Geometry" || theEntryList.isEmpty() ) {
+    return;
+  }
+  
+  // Start import GEOM object operation
+  myGeomObjectsToImport = theEntryList;
+  startOperation( ImportCreatedPrimitiveId );
+  myGeomObjectsToImport.clear();
+}
+
+/**
+ * Returns the list of entries of GEOM objects to be imported.
+ */
+QStringList HYDROGUI_Module::GetGeomObjectsToImport()
+{
+  return myGeomObjectsToImport;
+}