Salome HOME
Fix for the bug #45: check and warning when the same image is used in 2 arguments.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
index 8eeee9a60f733da982cf832c94be561a1824efda..85601129dadd793f7522178b8d52a669f80a73b8 100644 (file)
@@ -24,6 +24,7 @@
 
 #include "HYDROGUI_CopyPasteOp.h"
 #include "HYDROGUI_CalculationOp.h"
+#include "HYDROGUI_ChannelOp.h"
 #include "HYDROGUI_DataModel.h"
 #include "HYDROGUI_DeleteOp.h"
 #include "HYDROGUI_ExportImageOp.h"
 #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_StreamOp.h"
 #include "HYDROGUI_TwoImagesOp.h"
 #include "HYDROGUI_UpdateFlags.h"
-#include "HYDROGUI_UpdateImageOp.h"
+#include "HYDROGUI_UpdateObjectOp.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 "HYDROGUI_Tool.h"
 
-#include "HYDROData_Document.h"
-#include "HYDROData_Obstacle.h"
+#include <HYDROData_Document.h>
+#include <HYDROData_Obstacle.h>
+#include <HYDROData_SplitToZonesTool.h>
 
 #include <GeometryGUI.h>
 #include <GeometryGUI_Operations.h>
@@ -66,6 +71,7 @@
 #include <SUIT_Desktop.h>
 #include <SUIT_ResourceMgr.h>
 #include <SUIT_Session.h>
+#include <SUIT_MessageBox.h>
 
 #include <QAction>
 #include <QApplication>
@@ -96,25 +102,38 @@ void HYDROGUI_Module::createActions()
   createAction( CopyId, "COPY", "", Qt::CTRL + Qt::Key_C );
   createAction( PasteId, "PASTE", "", Qt::CTRL + Qt::Key_V );
 
+  createAction( UpdateObjectId, "UPDATE_OBJECT" );
+
   createAction( ImportImageId, "IMPORT_IMAGE", "", Qt::CTRL + Qt::Key_I );
   createAction( EditImportedImageId, "EDIT_IMPORTED_IMAGE" );
   createAction( ObserveImageId, "OBSERVE_IMAGE" );
   createAction( ExportImageId, "EXPORT_IMAGE" );
-  createAction( UpdateImageId, "UPDATE_IMAGE" );
   createAction( RemoveImageRefsId, "REMOVE_IMAGE_REFERENCE" );
 
   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( EditImportedBathymetryId, "EDIT_IMPORTED_BATHYMETRY" );
 
   createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE" );
   createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE" );
 
+  createAction( CreateStreamId, "CREATE_STREAM" );
+  createAction( EditStreamId, "EDIT_STREAM" );
+
+  createAction( CreateChannelId, "CREATE_CHANNEL" );
+  createAction( EditChannelId, "EDIT_CHANNEL" );
+
   createAction( ImportObstacleFromFileId, "IMPORT_OBSTACLE_FROM_FILE" );
   createAction( ImportGeomObjectId, "IMPORT_GEOM_OBJECT" );
   createAction( CreateBoxId, "CREATE_BOX" );
@@ -164,17 +183,24 @@ 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 );
+  int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
+  createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
+
+  int anArtificialMenuId = createMenu( tr( "MEN_DESK_ARTIFICIAL" ), aHydroId, -1 );
+  createMenu( CreateChannelId, anArtificialMenuId, -1, -1 );
 
-  createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 );
+  int aNaturalMenuId = createMenu( tr( "MEN_DESK_NATURAL" ), aHydroId, -1 );
+  createMenu( CreateImmersibleZoneId, aNaturalMenuId, -1, -1 );
+  createMenu( CreateStreamId, aNaturalMenuId, -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 );
+  int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
+  createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
+  createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
+  createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
 
   createMenu( CreateCalculationId, aHydroId, -1, -1 );
   createMenu( separator(), aHydroId );
@@ -322,12 +348,16 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   case ExportImageId:
     anOp = new HYDROGUI_ExportImageOp( aModule );
     break;
-  case UpdateImageId:
-    anOp = new HYDROGUI_UpdateImageOp( aModule );
+  case UpdateObjectId:
+    anOp = new HYDROGUI_UpdateObjectOp( aModule );
     break;
   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 );
@@ -339,13 +369,28 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   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 );
+  case EditImportedBathymetryId:
+    anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
     break;
   case CreateImmersibleZoneId:
   case EditImmersibleZoneId:
     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
     break;
+  case CreateStreamId:
+  case EditStreamId:
+    anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
+    break;
+  case CreateChannelId:
+  case EditChannelId:
+    anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
+    break;
   case CreateCalculationId:
   case EditCalculationId:
     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
@@ -438,3 +483,49 @@ QStringList HYDROGUI_Module::GetGeomObjectsToImport()
 {
   return myGeomObjectsToImport;
 }
+
+/**
+ * Returns true if the object with the given entry can be renamed.
+ * @param theEntry the object entry
+ */
+bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
+{
+  // Allow to rename all HYDRO objects
+  Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
+  return !anEntity.IsNull();
+}
+/**
+ * Returns true if the object with the given entry is renamed.
+ * @param theEntry the object entry
+ * @param theName the new name
+ */
+bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
+{
+  Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
+  bool aRes = !anEntity.IsNull();
+  if ( aRes )
+  {
+    HYDROGUI_DataModel* aModel = getDataModel();
+    if( aModel )
+    {
+      if( anEntity->GetName() != theName )
+      {
+        // check that there are no other objects with the same name in the document
+        Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
+        aRes = anObject.IsNull();
+        if ( aRes )
+        {
+          aRes = aModel->rename( anEntity, theName );
+        }
+        else
+        {
+          // Inform the user that the name is already used
+          QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
+          QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
+          SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
+        }
+      }
+    }
+  }
+  return aRes;
+}