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