Salome HOME
Access to 'Invalid value' of altitude from Bathymetry is added.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
index ba62ab2203758320d9445972ba4b803dc16cbd91..101a44251b0169a842c6138b4247eee09489cf6c 100644 (file)
 
 #include "HYDROGUI_DataModel.h"
 #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>
 
@@ -62,9 +66,19 @@ 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( PolylineId, "POLYLINE" );
+  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" );
@@ -80,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 );
@@ -87,7 +106,8 @@ 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( PolylineId, aHydroId, -1, -1 );
+  createMenu( ImportBathymetryId, aHydroId, -1, -1 );
+  createMenu( CreatePolylineId, aHydroId, -1, -1 );
   createMenu( FuseId, aHydroId, -1, -1 );
   createMenu( CutId, aHydroId, -1, -1 );
 }
@@ -202,12 +222,23 @@ 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 PolylineId:
-    anOp = new HYDROGUI_PolylineOp( aModule );
+  case ObserveImageId:
+    anOp = new HYDROGUI_ObserveImageOp( aModule );
+    break;
+  case ExportImageId:
+    anOp = new HYDROGUI_ExportImageOp( aModule );
+    break;
+  case CreatePolylineId:
+  case EditPolylineId:
+    anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
     break;
   case FuseId:
     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse );
@@ -215,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;