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