Salome HOME
Access to 'Invalid value' of altitude from Bathymetry is added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
index e173c54b1538d7bd9b5070ab6c79191ba21c6b24..101a44251b0169a842c6138b4247eee09489cf6c 100644 (file)
 #include "HYDROGUI_DeleteOp.h"
 #include "HYDROGUI_ExportImageOp.h"
 #include "HYDROGUI_ImportImageOp.h"
+#include "HYDROGUI_ImportBathymetryOp.h"
 #include "HYDROGUI_Module.h"
 #include "HYDROGUI_ObserveImageOp.h"
 #include "HYDROGUI_PolylineOp.h"
 #include "HYDROGUI_ShowHideOp.h"
 #include "HYDROGUI_TwoImagesOp.h"
 #include "HYDROGUI_UpdateFlags.h"
+#include "HYDROGUI_VisualStateOp.h"
 
 #include <CAM_Application.h>
 
@@ -64,13 +66,20 @@ QAction* HYDROGUI_Module::createAction( const int theId, const QString& theSuffi
 
 void HYDROGUI_Module::createActions()
 {
+  createAction( SaveVisualStateId, "SAVE_VISUAL_STATE" );
+  createAction( LoadVisualStateId, "LOAD_VISUAL_STATE" );
+
   createAction( ImportImageId, "IMPORT_IMAGE", "", Qt::CTRL + Qt::Key_I );
-  createAction( EditImageId, "EDIT_IMAGE" );
+  createAction( EditImportedImageId, "EDIT_IMPORTED_IMAGE" );
+  createAction( EditCompositeImageId, "EDIT_COMPOSITE_IMAGE" );
   createAction( ObserveImageId, "OBSERVE_IMAGE" );
   createAction( ExportImageId, "EXPORT_IMAGE" );
+
   createAction( CreatePolylineId, "CREATE_POLYLINE" );
   createAction( EditPolylineId, "EDIT_POLYLINE" ); 
 
+  createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "", Qt::CTRL + Qt::SHIFT + Qt::Key_I );
+
   createAction( FuseId, "FUSE_IMAGES" );
   createAction( CutId, "CUT_IMAGES" );
 
@@ -85,6 +94,11 @@ void HYDROGUI_Module::createActions()
 
 void HYDROGUI_Module::createMenus()
 {
+  int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
+  int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
+  createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
+  createMenu( separator(), aFileMenu, -1, aCustomPos );
+
   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
   createMenu( UndoId, anEditMenu );
   createMenu( RedoId, anEditMenu );
@@ -92,6 +106,7 @@ void HYDROGUI_Module::createMenus()
   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
   createMenu( ImportImageId, aHydroId, -1, -1 );
+  createMenu( ImportBathymetryId, aHydroId, -1, -1 );
   createMenu( CreatePolylineId, aHydroId, -1, -1 );
   createMenu( FuseId, aHydroId, -1, -1 );
   createMenu( CutId, aHydroId, -1, -1 );
@@ -207,9 +222,13 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
   switch( theId )
   {
+  case SaveVisualStateId:
+  case LoadVisualStateId:
+    anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
+    break;
   case ImportImageId:
-  case EditImageId:
-    anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImageId );
+  case EditImportedImageId:
+    anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
     break;
   case ObserveImageId:
     anOp = new HYDROGUI_ObserveImageOp( aModule );
@@ -227,6 +246,12 @@ LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
   case CutId:
     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut );
     break;
+  case EditCompositeImageId:
+    anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Edit );
+    break;
+  case ImportBathymetryId:
+    anOp = new HYDROGUI_ImportBathymetryOp( aModule );
+    break;
   case DeleteId:
     anOp = new HYDROGUI_DeleteOp( aModule );
     break;