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