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