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