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