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