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