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