Salome HOME
Merge branch 'BR_v14_rc' of ssh://git.salome-platform.org/modules/hydro into BR_v14_rc
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_Operations.h"
20
21 #include "HYDROGUI_CopyPasteOp.h"
22 #include "HYDROGUI_CalculationOp.h"
23 #include "HYDROGUI_ChannelOp.h"
24 #include "HYDROGUI_DataModel.h"
25 #include "HYDROGUI_CopyPastePositionOp.h"
26 #include "HYDROGUI_DeleteOp.h"
27 #include "HYDROGUI_DigueOp.h"
28 #include "HYDROGUI_ExportImageOp.h"
29 #include "HYDROGUI_ExportFileOp.h"
30 #include "HYDROGUI_ImportImageOp.h"
31 #include "HYDROGUI_ImportPolylineOp.h"
32 #include "HYDROGUI_ImportSinusXOp.h"
33 #include "HYDROGUI_ImportBathymetryOp.h"
34 #include "HYDROGUI_ImmersibleZoneOp.h"
35 #include "HYDROGUI_Module.h"
36 #include "HYDROGUI_ObserveImageOp.h"
37 #include "HYDROGUI_PolylineOp.h"
38 #include "HYDROGUI_Poly3DOp.h"
39 #include "HYDROGUI_ProfileOp.h"
40 #include "HYDROGUI_RemoveImageRefsOp.h"
41 #include "HYDROGUI_ShowHideOp.h"
42 #include "HYDROGUI_StreamOp.h"
43 #include "HYDROGUI_TwoImagesOp.h"
44 #include "HYDROGUI_UpdateFlags.h"
45 #include "HYDROGUI_UpdateObjectOp.h"
46 #include "HYDROGUI_VisualStateOp.h"
47 #include "HYDROGUI_ImmersibleZoneOp.h"
48 #include "HYDROGUI_ImportGeomObjectOp.h"
49 #include "HYDROGUI_ImportObstacleFromFileOp.h"
50 #include "HYDROGUI_TranslateObstacleOp.h"
51 #include "HYDROGUI_ExportCalculationOp.h"
52 #include "HYDROGUI_ImportProfilesOp.h"
53 #include "HYDROGUI_GeoreferencementOp.h"
54 #include "HYDROGUI_SetColorOp.h"
55 #include "HYDROGUI_BathymetryBoundsOp.h"
56 #include "HYDROGUI_Tool.h"
57 #include "HYDROGUI_ZLevelsOp.h"
58 #include "HYDROGUI_LocalCSOp.h"
59 #include "HYDROGUI_RiverBottomOp.h"
60 #include "HYDROGUI_ProfileInterpolateOp.h"
61 #include "HYDROGUI_RecognizeContoursOp.h"
62 #include "HYDROGUI_SubmersibleOp.h"
63 #include "HYDROGUI_StricklerTableOp.h"
64 #include "HYDROGUI_DuplicateOp.h"
65 #include "HYDROGUI_LandCoverOp.h"
66 #include "HYDROGUI_ExportSinusXOp.h"
67 #include "HYDROGUI_MergePolylinesOp.h"
68 #include "HYDROGUI_SplitPolylinesOp.h"
69 #include "HYDROGUI_LandCoverColoringOp.h"
70
71 #include <HYDROData_Document.h>
72 #include <HYDROData_Obstacle.h>
73 #include <HYDROData_SplitToZonesTool.h>
74
75 #include <GeometryGUI.h>
76 #include <GeometryGUI_Operations.h>
77 #include <GEOMBase.h>
78
79 #include <SalomeApp_Study.h>
80
81 #include <LightApp_Application.h>
82
83 #include <CAM_Application.h>
84
85 #include <QtxListAction.h>
86 #include <QtxActionToolMgr.h>
87
88 #include <SUIT_Desktop.h>
89 #include <SUIT_ResourceMgr.h>
90 #include <SUIT_Session.h>
91 #include <SUIT_MessageBox.h>
92
93 #include <QAction>
94 #include <QApplication>
95
96 QAction* HYDROGUI_Module::createAction( const int theId, const QString& theSuffix, const QString& theImg,
97                                         const int theKey, const bool isToggle, const QString& theSlot )
98 {
99   QString aSlot = theSlot;
100   if( aSlot.isEmpty() )
101     aSlot = SLOT( onOperation() );
102   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
103   std::string anImg = theImg.toStdString();
104   QPixmap aPixmap = theImg.isEmpty() ? QPixmap() : aResMgr->loadPixmap( "HYDRO", tr( anImg.c_str() ) );
105   std::string aMenu    = ( "MEN_" + theSuffix ).toStdString();
106   std::string aDesktop = ( "DSK_" + theSuffix ).toStdString();
107   std::string aToolbar = ( "STB_" + theSuffix ).toStdString();
108   std::string aSlotStr = aSlot.toStdString();
109   return LightApp_Module::createAction( theId, tr( aDesktop.c_str() ), aPixmap,
110     tr( aMenu.c_str() ), tr( aToolbar.c_str() ),
111                 theKey, application()->desktop(), isToggle, this, aSlotStr.c_str() );
112 }
113
114 void HYDROGUI_Module::createActions()
115 {
116   createAction( SaveVisualStateId, "SAVE_VISUAL_STATE" );
117   createAction( LoadVisualStateId, "LOAD_VISUAL_STATE" );
118
119   createAction( CopyId, "COPY", "", Qt::CTRL + Qt::Key_C );
120   createAction( PasteId, "PASTE", "", Qt::CTRL + Qt::Key_V );
121
122   createAction( UpdateObjectId, "UPDATE_OBJECT" );
123   createAction( ForcedUpdateObjectId, "FORCED_UPDATE_OBJECT" );
124
125   createAction( ImportImageId, "IMPORT_IMAGE", "IMPORT_IMAGE_ICO", Qt::CTRL + Qt::Key_I );
126   createAction( EditImportedImageId, "EDIT_IMPORTED_IMAGE", "EDIT_IMPORTED_IMAGE_ICO" );
127   createAction( ObserveImageId, "OBSERVE_IMAGE", "OBSERVE_IMAGE_ICO" );
128   createAction( ExportImageId, "EXPORT_IMAGE", "EXPORT_IMAGE_ICO" );
129   createAction( RemoveImageRefsId, "REMOVE_IMAGE_REFERENCE", "REMOVE_IMAGE_REFERENCE_ICO" );
130   
131   createAction( ImportPolylineId, "IMPORT_POLYLINE", "IMPORT_POLYLINE_ICO" );
132   createAction( ImportSinusXId, "IMPORT_SINUSX", "IMPORT_SINUSX_ICO" );
133   createAction( ExportSinusXId, "EXPORT_SINUSX", "EXPORT_SINUSX_ICO" );
134
135   createAction( CreatePolylineId, "CREATE_POLYLINE", "CREATE_POLYLINE_ICO" );
136   createAction( EditPolylineId, "EDIT_POLYLINE", "EDIT_POLYLINE_ICO" ); 
137
138   createAction( CreatePolyline3DId, "CREATE_POLYLINE_3D", "CREATE_POLYLINE_3D_ICO" );
139   createAction( EditPolyline3DId, "EDIT_POLYLINE_3D", "EDIT_POLYLINE_3D_ICO" ); 
140
141   createAction( CreateProfileId, "CREATE_PROFILE", "CREATE_PROFILE_ICO" );
142   createAction( ImportProfilesId, "IMPORT_PROFILES", "IMPORT_PROFILES_ICO" );
143   createAction( EditProfileId, "EDIT_PROFILE", "EDIT_PROFILE_ICO" ); 
144   createAction( AllGeoreferencementId, "GEOREFERENCEMENT", "GEOREFERENCEMENT_ICO" ); 
145   createAction( SelectedGeoreferencementId, "GEOREFERENCEMENT", "GEOREFERENCEMENT_ICO" ); 
146   
147   createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "IMPORT_BATHYMETRY_ICO", Qt::CTRL + Qt::Key_B );
148   createAction( EditImportedBathymetryId, "EDIT_IMPORTED_BATHYMETRY", "EDIT_IMPORTED_BATHYMETRY_ICO" );
149   createAction( BathymetryBoundsId, "BATHYMETRY_BOUNDS", "BATHYMETRY_BOUNDS_ICO" );
150
151   createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE", "CREATE_IMMERSIBLE_ZONE_ICO" );
152   createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE", "EDIT_IMMERSIBLE_ZONE_ICO" );
153
154   createAction( CreateStreamId, "CREATE_STREAM", "CREATE_STREAM_ICO" );
155   createAction( EditStreamId, "EDIT_STREAM", "EDIT_STREAM_ICO" );
156
157   createAction( CreateChannelId, "CREATE_CHANNEL", "CREATE_CHANNEL_ICO" );
158   createAction( EditChannelId, "EDIT_CHANNEL", "EDIT_CHANNEL_ICO" );
159
160   createAction( CreateDigueId, "CREATE_DIGUE", "CREATE_DIGUE_ICO" );
161   createAction( EditDigueId, "EDIT_DIGUE", "EDIT_DIGUE_ICO" );
162
163   createAction( ImportStricklerTableFromFileId, "IMPORT_STRICKLER_TABLE", "IMPORT_STRICKLER_TABLE_ICO" );
164   createAction( ExportStricklerTableFromFileId, "EXPORT_STRICKLER_TABLE", "EXPORT_STRICKLER_TABLE_ICO" );
165   createAction( EditStricklerTableId, "EDIT_STRICKLER_TABLE", "EDIT_STRICKLER_TABLE_ICO" );
166   createAction( DuplicateStricklerTableId, "DUPLICATE_STRICKLER_TABLE", "DUPLICATE_STRICKLER_TABLE_ICO" );
167
168   createAction( CreateLandCoverId, "CREATE_LAND_COVER", "CREATE_LAND_COVER_ICO" );
169   createAction( EditLandCoverId, "EDIT_LAND_COVER", "EDIT_LAND_COVER_ICO" );
170
171   createAction( ImportObstacleFromFileId, "IMPORT_OBSTACLE_FROM_FILE", "IMPORT_OBSTACLE_FROM_FILE_ICO" );
172   createAction( ImportGeomObjectAsObstacleId, "IMPORT_GEOM_OBJECT_AS_OBSTACLE", "IMPORT_GEOM_OBJECT_ICO" );
173   createAction( ImportGeomObjectAsPolylineId, "IMPORT_GEOM_OBJECT_AS_POLYLINE", "IMPORT_GEOM_OBJECT_ICO" );
174   createAction( CreateBoxId, "CREATE_BOX", "CREATE_BOX_ICO" );
175   createAction( CreateCylinderId, "CREATE_CYLINDER", "CREATE_CYLINDER_ICO" );
176   createAction( TranslateObstacleId, "TRANSLATE_OBSTACLE" );
177
178   createAction( CreateCalculationId, "CREATE_CALCULATION", "CREATE_CALCULATION_ICO" );
179   createAction( EditCalculationId, "EDIT_CALCULATION", "EDIT_CALCULATION_ICO" );
180   createAction( ExportCalculationId, "EXPORT_CALCULATION", "EXPORT_CALCULATION_ICO" );
181
182   createAction( FuseImagesId, "FUSE_IMAGES", "FUSE_IMAGES_ICO" );
183   createAction( EditFusedImageId, "EDIT_FUSED_IMAGE", "EDIT_FUSED_IMAGE_ICO" );
184
185   createAction( CutImagesId, "CUT_IMAGES", "CUT_IMAGES_ICO" );
186   createAction( EditCutImageId, "EDIT_CUT_IMAGE", "EDIT_CUT_IMAGE_ICO" );
187
188   createAction( SplitImageId, "SPLIT_IMAGE", "SPLIT_IMAGE_ICO" );
189   createAction( EditSplittedImageId, "EDIT_SPLITTED_IMAGE", "EDIT_SPLITTED_IMAGE_ICO" );
190
191   createAction( RecognizeContoursId, "RECOGNIZE_CONTOURS", "RECOGNIZE_CONTOURS_ICO" );
192
193   createAction( CopyViewerPositionId, "COPY_VIEWER_POSITION", "" );
194
195   createAction( DeleteId, "DELETE", "", Qt::Key_Delete, false,
196                 SLOT( onDelete() ) );
197
198   createAction( SetColorId, "COLOR" );
199   createAction( SetZLevelId, "ZLEVEL" );
200   createAction( EditLocalCSId, "EDIT_LOCAL_CS" );
201
202   createAction( ShowId, "SHOW" );
203   createAction( ShowOnlyId, "SHOW_ONLY" );
204   createAction( ShowAllId, "SHOW_ALL" );
205   createAction( HideId, "HIDE" );
206   createAction( HideAllId, "HIDE_ALL" );
207
208   createAction( RiverBottomId, "CREATE_STREAM_BOTTOM", "CREATE_STREAM_BOTTOM_ICO" );
209   createAction( RiverBottomContextId, "CREATE_STREAM_BOTTOM", "CREATE_STREAM_BOTTOM_ICO" );
210   createAction( ProfileInterpolateId, "PROFILE_INTERPOLATE", "PROFILE_INTERPOLATE_ICO" );
211
212   createAction( SubmersibleId, "SUBMERSIBLE", "SUBMERSIBLE_ICO" );
213   createAction( ExportPolylineId, "EXPORT_POLYLINE", "EXPORT_POLYLINE_ICO" );
214
215   createAction( SplitPolylinesId, "SPLIT_POLYLINES", "SPLIT_POLYLINES_ICO" );
216   createAction( MergePolylinesId, "MERGE_POLYLINES", "MERGE_POLYLINES_ICO" );
217
218   createAction( LandCoverScalarMapModeOnId, "LC_SCALARMAP_COLORING_ON" );
219   createAction( LandCoverScalarMapModeOffId, "LC_SCALARMAP_COLORING_OFF" );
220 }
221
222 void HYDROGUI_Module::createMenus()
223 {
224   int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
225   int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
226   createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
227   createMenu( separator(), aFileMenu, -1, aCustomPos );
228
229   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
230   createMenu( UndoId, anEditMenu );
231   createMenu( RedoId, anEditMenu );
232   createMenu( separator(), anEditMenu );
233   createMenu( CopyId, anEditMenu );
234   createMenu( PasteId, anEditMenu );
235
236   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
237   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
238   createMenu( ImportImageId, aHydroId, -1, -1 );
239   createMenu( ImportPolylineId, aHydroId, -1, -1 );
240   createMenu( ImportSinusXId, aHydroId, -1, -1 );
241   createMenu( ExportSinusXId, aHydroId, -1, -1 );
242   
243   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
244   createMenu( ImportStricklerTableFromFileId, aHydroId, -1, -1 );
245   createMenu( CreatePolylineId, aHydroId, -1, -1 );
246   createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
247   createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 );
248   createMenu( CreateChannelId, aHydroId, -1, -1 );
249   createMenu( CreateDigueId, aHydroId, -1, -1 );  
250   createMenu( CreateLandCoverId, aHydroId, -1, -1 );  
251
252   int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
253   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
254   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
255   createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
256
257   int aStreamMenuId = createMenu( tr( "MEN_DESK_STREAM" ), aHydroId, -1 );
258   createMenu( CreateStreamId, aStreamMenuId, -1, -1 );
259   createMenu( RiverBottomId, aStreamMenuId, -1, -1 );
260   createMenu( ProfileInterpolateId, aStreamMenuId, -1, -1 );
261
262   int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
263   createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
264   createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
265   createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
266
267   createMenu( CreateCalculationId, aHydroId, -1, -1 );
268   createMenu( separator(), aHydroId );
269   createMenu( EditLocalCSId, aHydroId, -1, -1 );
270   createMenu( separator(), aHydroId );
271   createMenu( FuseImagesId, aHydroId, -1, -1 );
272   createMenu( CutImagesId, aHydroId, -1, -1 );
273   createMenu( SplitImageId, aHydroId, -1, -1 );
274   createMenu( separator(), aHydroId );
275   createMenu( SplitPolylinesId, aHydroId, -1, -1 );
276   createMenu( MergePolylinesId, aHydroId, -1, -1 );
277 }
278
279 void HYDROGUI_Module::createPopups()
280 {
281 }
282
283 void HYDROGUI_Module::createToolbars()
284 {
285   int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) );
286   createTool( UndoId, aToolBar );
287   createTool( RedoId, aToolBar );
288
289   createTool( separator(), aToolBar );
290   createTool( ImportImageId, aToolBar );
291   createTool( ImportPolylineId, aToolBar );
292   createTool( ImportSinusXId, aToolBar );
293   createTool( ExportSinusXId, aToolBar );
294
295   createTool( ImportBathymetryId, aToolBar );
296   createTool( CreatePolylineId, aToolBar );
297   createTool( CreatePolyline3DId, aToolBar );
298
299   createTool( separator(), aToolBar );
300   createTool( CreateProfileId, aToolBar );
301   createTool( ImportProfilesId, aToolBar );
302   createTool( AllGeoreferencementId, aToolBar );
303
304   createTool( separator(), aToolBar );
305   createTool( CreateChannelId, aToolBar );
306   createTool( CreateDigueId, aToolBar );
307
308   createTool( separator(), aToolBar );
309   createTool( CreateImmersibleZoneId, aToolBar );
310   createTool( CreateStreamId, aToolBar );
311
312   createTool( separator(), aToolBar );
313   createTool( ImportObstacleFromFileId, aToolBar );
314   createTool( CreateBoxId, aToolBar );
315   createTool( CreateCylinderId, aToolBar );
316
317   createTool( separator(), aToolBar );
318   createTool( ImportStricklerTableFromFileId, aToolBar );
319
320   createTool( separator(), aToolBar );
321   createTool( CreateLandCoverId, aToolBar );
322
323   createTool( separator(), aToolBar );
324   createTool( CreateCalculationId, aToolBar );
325
326   createTool( separator(), aToolBar );
327   createTool( FuseImagesId, aToolBar );
328   createTool( CutImagesId, aToolBar );
329   createTool( SplitImageId, aToolBar );
330 }
331
332 void HYDROGUI_Module::createUndoRedoActions()
333 {
334   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
335
336   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
337     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
338     Qt::CTRL + Qt::Key_Z, application()->desktop() );
339     
340   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
341     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
342     Qt::CTRL + Qt::Key_Y, application()->desktop() );
343   
344   registerAction( UndoId, anEditUndo );
345   registerAction( RedoId, anEditRedo );
346
347   anEditUndo->setComment( tr( "STB_UNDO" ) );
348   anEditRedo->setComment( tr( "STB_REDO" ) );
349
350   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
351   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
352 }
353
354 void HYDROGUI_Module::updateUndoRedoControls()
355 {
356   HYDROGUI_DataModel* aModel = getDataModel();
357
358   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
359   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
360
361   bool aCanUndo = aModel->canUndo();
362   bool aCanRedo = aModel->canRedo();
363
364   if( aCanUndo )
365     aUndoAction->addNames( aModel->undoNames() );
366   aUndoAction->setEnabled( aCanUndo );
367
368   if( aCanRedo )
369     aRedoAction->addNames( aModel->redoNames() );
370   aRedoAction->setEnabled( aCanRedo );
371 }
372
373 void HYDROGUI_Module::onOperation()
374 {
375   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
376   int anId = actionId( anAction );
377   if( anId >= 0 )
378     startOperation( anId );
379 }
380
381 void HYDROGUI_Module::onDelete()
382 {
383   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
384   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
385   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
386     aPolylineOp->deleteSelected();
387   else
388     startOperation( DeleteId );
389 }
390
391 bool HYDROGUI_Module::onUndo( int theNumActions )
392 {
393   QApplication::setOverrideCursor( Qt::WaitCursor );
394   bool anIsOk = true;
395   HYDROGUI_DataModel* aModel = getDataModel();
396   if( aModel )
397   {
398     while( theNumActions > 0 )
399     {
400       if( !aModel->undo() )
401       {
402         anIsOk = false;
403         break;
404       }
405       theNumActions--;
406     }
407     update( UF_All );
408   }
409   QApplication::restoreOverrideCursor();
410   return anIsOk;
411 }
412
413 bool HYDROGUI_Module::onRedo( int theNumActions )
414 {
415   QApplication::setOverrideCursor( Qt::WaitCursor );
416   bool anIsOk = true;
417   HYDROGUI_DataModel* aModel = getDataModel();
418   if( aModel )
419   {
420     while( theNumActions > 0 )
421     {
422       if( !aModel->redo() )
423       {
424         anIsOk = false;
425         break;
426       }
427       theNumActions--;
428     }
429     update( UF_All );
430   }
431   QApplication::restoreOverrideCursor();
432   return anIsOk;
433 }
434
435 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
436 {
437   LightApp_Operation* anOp = 0;
438   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
439   switch( theId )
440   {
441   case SaveVisualStateId:
442   case LoadVisualStateId:
443     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
444     break;
445   case CopyId:
446   case PasteId:
447     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
448     break;
449   case ImportImageId:
450   case EditImportedImageId:
451     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
452     break;
453   case ImportPolylineId:
454     anOp = new HYDROGUI_ImportPolylineOp( aModule/*, theId == EditImportedPolylineId*/ );
455     break;
456   case ImportSinusXId:
457     anOp = new HYDROGUI_ImportSinusXOp( aModule );
458     break;
459   case ExportSinusXId:
460     anOp = new HYDROGUI_ExportSinusXOp( aModule );
461     break;
462   case ObserveImageId:
463     anOp = new HYDROGUI_ObserveImageOp( aModule );
464     break;
465   case ExportImageId:
466     anOp = new HYDROGUI_ExportImageOp( aModule );
467     break;
468   case UpdateObjectId:
469   case ForcedUpdateObjectId:
470     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
471     break;
472   case ExportPolylineId:
473     anOp = new HYDROGUI_ExportFileOp( aModule );
474     break;
475   case RemoveImageRefsId:
476     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
477     break;
478   case CreatePolyline3DId:
479   case EditPolyline3DId:
480     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
481     break;
482   case CreatePolylineId:
483   case EditPolylineId:
484     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
485     break;
486   case CreateProfileId:
487   case EditProfileId:
488     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
489     break;
490   case ProfileInterpolateId:
491     anOp = new HYDROGUI_ProfileInterpolateOp( aModule );
492     break;
493   case ImportProfilesId:
494     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
495     break;
496   case AllGeoreferencementId:
497     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
498     break;
499   case SelectedGeoreferencementId:
500     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
501     break;
502   case ImportBathymetryId:
503   case EditImportedBathymetryId:
504     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
505     break;
506   case BathymetryBoundsId:
507     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
508     break;
509   case CreateImmersibleZoneId:
510   case EditImmersibleZoneId:
511     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
512     break;
513   case CreateStreamId:
514   case EditStreamId:
515     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
516     break;
517   case CreateChannelId:
518   case EditChannelId:
519     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
520     break;
521   case CreateDigueId:
522   case EditDigueId:
523     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
524     break;
525   case ImportStricklerTableFromFileId:
526   case ExportStricklerTableFromFileId:
527   case EditStricklerTableId:
528     anOp = new HYDROGUI_StricklerTableOp( aModule, theId );
529     break;
530   case CreateLandCoverId:
531   case EditLandCoverId:
532     anOp = new HYDROGUI_LandCoverOp( aModule, theId == EditLandCoverId );
533     break;
534   case DuplicateStricklerTableId:
535     anOp = new HYDROGUI_DuplicateOp( aModule );
536     break;
537   case CreateCalculationId:
538   case EditCalculationId:
539     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
540     break;
541   case ExportCalculationId:
542     anOp = new HYDROGUI_ExportCalculationOp( aModule );
543     break;
544   case FuseImagesId:
545   case EditFusedImageId:
546     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
547     break;
548   case CutImagesId:
549   case EditCutImageId:
550     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
551     break;
552   case SplitImageId:
553   case EditSplittedImageId:
554     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
555     break;
556   case ImportObstacleFromFileId:
557     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
558     break;
559   case ImportGeomObjectAsObstacleId:
560     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
561     break;
562   case ImportGeomObjectAsPolylineId:
563     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
564     break;
565   case CreateBoxId:
566     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
567       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
568     break;
569   case CreateCylinderId:
570     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
571       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
572     break;
573   case TranslateObstacleId:
574     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
575     break;
576   case CopyViewerPositionId:
577     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
578     break;
579   case DeleteId:
580     anOp = new HYDROGUI_DeleteOp( aModule );
581     break;
582   case SetColorId:
583     anOp = new HYDROGUI_SetColorOp( aModule );
584     break;
585   case SetZLevelId:
586     anOp = new HYDROGUI_ZLevelsOp( aModule );
587     break;
588   case EditLocalCSId:
589     anOp = new HYDROGUI_LocalCSOp( aModule );
590     break;
591   case RiverBottomId:
592   case RiverBottomContextId:
593     anOp = new HYDROGUI_RiverBottomOp( aModule );
594     break;
595   case RecognizeContoursId:
596     anOp = new HYDROGUI_RecognizeContoursOp( aModule );
597     break;
598   case ShowId:
599   case ShowOnlyId:
600   case ShowAllId:
601   case HideId:
602   case HideAllId:
603     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
604     break;
605   case SubmersibleId:
606     anOp = new HYDROGUI_SubmersibleOp( aModule );
607     break;
608   case SplitPolylinesId:
609     anOp = new HYDROGUI_SplitPolylinesOp( aModule );
610     break;
611   case MergePolylinesId:
612     anOp = new HYDROGUI_MergePolylinesOp( aModule );
613     break;
614   case LandCoverScalarMapModeOnId:
615   case LandCoverScalarMapModeOffId:
616     anOp = new HYDROGUI_LandCoverColoringOp( aModule, theId );
617     break;
618   }
619
620   if( !anOp )
621     anOp = LightApp_Module::createOperation( theId );
622
623   return anOp;
624 }
625
626 bool HYDROGUI_Module::reusableOperation( const int id )
627 {
628   if ( id == ImportGeomObjectAsObstacleId ||
629        id == ImportGeomObjectAsPolylineId ) {
630     return false;
631   }
632
633   return LightApp_Module::reusableOperation( id );
634 }
635
636 /**
637  * Returns true if the object with the given entry can be renamed.
638  * @param theEntry the object entry
639  */
640 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
641 {
642   // Allow to rename all HYDRO objects
643   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
644   return !anEntity.IsNull();
645 }
646 /**
647  * Returns true if the object with the given entry is renamed.
648  * @param theEntry the object entry
649  * @param theName the new name
650  */
651 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
652 {
653   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
654   bool aRes = false;
655   if ( !anEntity.IsNull() )
656   {
657     HYDROGUI_DataModel* aModel = getDataModel();
658     if( aModel )
659     {
660       if( anEntity->GetName() != theName )
661       {
662         // check that there are no other objects with the same name in the document
663         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
664         if ( anObject.IsNull() )
665         {
666           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
667           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
668           {
669             anEntity->SetName( theName );
670             aRes = true;
671           }
672           else
673           {
674             aRes = aModel->rename( anEntity, theName );
675           }
676         }
677         else
678         {
679           // Inform the user that the name is already used
680           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
681           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
682           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
683         }
684       }
685     }
686   }
687   return aRes;
688 }