Salome HOME
Exlude the user input during process events by application (Bug #325).
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_Operations.h"
24
25 #include "HYDROGUI_CopyPasteOp.h"
26 #include "HYDROGUI_CalculationOp.h"
27 #include "HYDROGUI_ChannelOp.h"
28 #include "HYDROGUI_DataModel.h"
29 #include "HYDROGUI_CopyPastePositionOp.h"
30 #include "HYDROGUI_DeleteOp.h"
31 #include "HYDROGUI_DigueOp.h"
32 #include "HYDROGUI_ExportImageOp.h"
33 #include "HYDROGUI_ImportImageOp.h"
34 #include "HYDROGUI_ImportBathymetryOp.h"
35 #include "HYDROGUI_ImmersibleZoneOp.h"
36 #include "HYDROGUI_Module.h"
37 #include "HYDROGUI_ObserveImageOp.h"
38 #include "HYDROGUI_PolylineOp.h"
39 #include "HYDROGUI_Poly3DOp.h"
40 #include "HYDROGUI_ProfileOp.h"
41 #include "HYDROGUI_RemoveImageRefsOp.h"
42 #include "HYDROGUI_ShowHideOp.h"
43 #include "HYDROGUI_StreamOp.h"
44 #include "HYDROGUI_TwoImagesOp.h"
45 #include "HYDROGUI_UpdateFlags.h"
46 #include "HYDROGUI_UpdateObjectOp.h"
47 #include "HYDROGUI_VisualStateOp.h"
48 #include "HYDROGUI_ImmersibleZoneOp.h"
49 #include "HYDROGUI_ImportGeomObjectOp.h"
50 #include "HYDROGUI_ImportObstacleFromFileOp.h"
51 #include "HYDROGUI_TranslateObstacleOp.h"
52 #include "HYDROGUI_ExportCalculationOp.h"
53 #include "HYDROGUI_ImportProfilesOp.h"
54 #include "HYDROGUI_GeoreferencementOp.h"
55 #include "HYDROGUI_SetColorOp.h"
56 #include "HYDROGUI_BathymetryBoundsOp.h"
57 #include "HYDROGUI_Tool.h"
58
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
174   createAction( ShowId, "SHOW" );
175   createAction( ShowOnlyId, "SHOW_ONLY" );
176   createAction( ShowAllId, "SHOW_ALL" );
177   createAction( HideId, "HIDE" );
178   createAction( HideAllId, "HIDE_ALL" );
179 }
180
181 void HYDROGUI_Module::createMenus()
182 {
183   int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
184   int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
185   createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
186   createMenu( separator(), aFileMenu, -1, aCustomPos );
187
188   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
189   createMenu( UndoId, anEditMenu );
190   createMenu( RedoId, anEditMenu );
191   createMenu( separator(), anEditMenu );
192   createMenu( CopyId, anEditMenu );
193   createMenu( PasteId, anEditMenu );
194
195   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
196   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
197   createMenu( ImportImageId, aHydroId, -1, -1 );
198   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
199   createMenu( CreatePolylineId, aHydroId, -1, -1 );
200   createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
201
202   int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
203   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
204   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
205   createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
206
207   int anArtificialMenuId = createMenu( tr( "MEN_DESK_ARTIFICIAL" ), aHydroId, -1 );
208   createMenu( CreateChannelId, anArtificialMenuId, -1, -1 );
209   createMenu( CreateDigueId, anArtificialMenuId, -1, -1 );
210
211   int aNaturalMenuId = createMenu( tr( "MEN_DESK_NATURAL" ), aHydroId, -1 );
212   createMenu( CreateImmersibleZoneId, aNaturalMenuId, -1, -1 );
213   createMenu( CreateStreamId, aNaturalMenuId, -1, -1 );
214
215   int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
216   createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
217   createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
218   createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
219
220   createMenu( CreateCalculationId, aHydroId, -1, -1 );
221   createMenu( separator(), aHydroId );
222   createMenu( FuseImagesId, aHydroId, -1, -1 );
223   createMenu( CutImagesId, aHydroId, -1, -1 );
224   createMenu( SplitImageId, aHydroId, -1, -1 );
225   createMenu( separator(), aHydroId );
226 }
227
228 void HYDROGUI_Module::createPopups()
229 {
230 }
231
232 void HYDROGUI_Module::createToolbars()
233 {
234   int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) );
235   createTool( UndoId, aToolBar );
236   createTool( RedoId, aToolBar );
237
238   createTool( separator(), aToolBar );
239   createTool( ImportImageId, aToolBar );
240   createTool( ImportBathymetryId, aToolBar );
241   createTool( CreatePolylineId, aToolBar );
242   createTool( CreatePolyline3DId, aToolBar );
243
244   createTool( separator(), aToolBar );
245   createTool( CreateProfileId, aToolBar );
246   createTool( ImportProfilesId, aToolBar );
247   createTool( AllGeoreferencementId, aToolBar );
248
249   createTool( separator(), aToolBar );
250   createTool( CreateChannelId, aToolBar );
251   createTool( CreateDigueId, aToolBar );
252
253   createTool( separator(), aToolBar );
254   createTool( CreateImmersibleZoneId, aToolBar );
255   createTool( CreateStreamId, aToolBar );
256
257   createTool( separator(), aToolBar );
258   createTool( ImportObstacleFromFileId, aToolBar );
259   createTool( CreateBoxId, aToolBar );
260   createTool( CreateCylinderId, aToolBar );
261
262   createTool( separator(), aToolBar );
263   createTool( CreateCalculationId, aToolBar );
264
265   createTool( separator(), aToolBar );
266   createTool( FuseImagesId, aToolBar );
267   createTool( CutImagesId, aToolBar );
268   createTool( SplitImageId, aToolBar );
269 }
270
271 void HYDROGUI_Module::createUndoRedoActions()
272 {
273   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
274
275   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
276     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
277     Qt::CTRL + Qt::Key_Z, application()->desktop() );
278     
279   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
280     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
281     Qt::CTRL + Qt::Key_Y, application()->desktop() );
282   
283   registerAction( UndoId, anEditUndo );
284   registerAction( RedoId, anEditRedo );
285
286   anEditUndo->setComment( tr( "STB_UNDO" ) );
287   anEditRedo->setComment( tr( "STB_REDO" ) );
288
289   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
290   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
291 }
292
293 void HYDROGUI_Module::updateUndoRedoControls()
294 {
295   HYDROGUI_DataModel* aModel = getDataModel();
296
297   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
298   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
299
300   bool aCanUndo = aModel->canUndo();
301   bool aCanRedo = aModel->canRedo();
302
303   if( aCanUndo )
304     aUndoAction->addNames( aModel->undoNames() );
305   aUndoAction->setEnabled( aCanUndo );
306
307   if( aCanRedo )
308     aRedoAction->addNames( aModel->redoNames() );
309   aRedoAction->setEnabled( aCanRedo );
310 }
311
312 void HYDROGUI_Module::onOperation()
313 {
314   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
315   int anId = actionId( anAction );
316   if( anId >= 0 )
317     startOperation( anId );
318 }
319
320 void HYDROGUI_Module::onDelete()
321 {
322   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
323   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
324   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
325     aPolylineOp->deleteSelected();
326   else
327     startOperation( DeleteId );
328 }
329
330 bool HYDROGUI_Module::onUndo( int theNumActions )
331 {
332   QApplication::setOverrideCursor( Qt::WaitCursor );
333   bool anIsOk = true;
334   HYDROGUI_DataModel* aModel = getDataModel();
335   if( aModel )
336   {
337     while( theNumActions > 0 )
338     {
339       if( !aModel->undo() )
340       {
341         anIsOk = false;
342         break;
343       }
344       theNumActions--;
345     }
346     update( UF_All );
347   }
348   QApplication::restoreOverrideCursor();
349   return anIsOk;
350 }
351
352 bool HYDROGUI_Module::onRedo( int theNumActions )
353 {
354   QApplication::setOverrideCursor( Qt::WaitCursor );
355   bool anIsOk = true;
356   HYDROGUI_DataModel* aModel = getDataModel();
357   if( aModel )
358   {
359     while( theNumActions > 0 )
360     {
361       if( !aModel->redo() )
362       {
363         anIsOk = false;
364         break;
365       }
366       theNumActions--;
367     }
368     update( UF_All );
369   }
370   QApplication::restoreOverrideCursor();
371   return anIsOk;
372 }
373
374 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
375 {
376   LightApp_Operation* anOp = 0;
377   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
378   switch( theId )
379   {
380   case SaveVisualStateId:
381   case LoadVisualStateId:
382     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
383     break;
384   case CopyId:
385   case PasteId:
386     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
387     break;
388   case ImportImageId:
389   case EditImportedImageId:
390     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
391     break;
392   case ObserveImageId:
393     anOp = new HYDROGUI_ObserveImageOp( aModule );
394     break;
395   case ExportImageId:
396     anOp = new HYDROGUI_ExportImageOp( aModule );
397     break;
398   case UpdateObjectId:
399   case ForcedUpdateObjectId:
400     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
401     break;
402   case RemoveImageRefsId:
403     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
404     break;
405   case CreatePolyline3DId:
406   case EditPolyline3DId:
407     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
408     break;
409   case CreatePolylineId:
410   case EditPolylineId:
411     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
412     break;
413   case CreateProfileId:
414   case EditProfileId:
415     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
416     break;
417   case ImportProfilesId:
418     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
419     break;
420   case AllGeoreferencementId:
421     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
422     break;
423   case SelectedGeoreferencementId:
424     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
425     break;
426   case ImportBathymetryId:
427   case EditImportedBathymetryId:
428     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
429     break;
430   case BathymetryBoundsId:
431     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
432     break;
433   case CreateImmersibleZoneId:
434   case EditImmersibleZoneId:
435     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
436     break;
437   case CreateStreamId:
438   case EditStreamId:
439     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
440     break;
441   case CreateChannelId:
442   case EditChannelId:
443     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
444     break;
445   case CreateDigueId:
446   case EditDigueId:
447     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
448     break;
449   case CreateCalculationId:
450   case EditCalculationId:
451     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
452     break;
453   case ExportCalculationId:
454     anOp = new HYDROGUI_ExportCalculationOp( aModule );
455     break;
456   case FuseImagesId:
457   case EditFusedImageId:
458     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
459     break;
460   case CutImagesId:
461   case EditCutImageId:
462     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
463     break;
464   case SplitImageId:
465   case EditSplittedImageId:
466     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
467     break;
468   case ImportObstacleFromFileId:
469     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
470     break;
471   case ImportGeomObjectAsObstacleId:
472     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
473     break;
474   case ImportGeomObjectAsPolylineId:
475     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
476     break;
477   case CreateBoxId:
478     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
479       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
480     break;
481   case CreateCylinderId:
482     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
483       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
484     break;
485   case TranslateObstacleId:
486     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
487     break;
488   case CopyViewerPositionId:
489     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
490     break;
491   case DeleteId:
492     anOp = new HYDROGUI_DeleteOp( aModule );
493     break;
494   case SetColorId:
495     anOp = new HYDROGUI_SetColorOp( aModule );
496     break;
497   case ShowId:
498   case ShowOnlyId:
499   case ShowAllId:
500   case HideId:
501   case HideAllId:
502     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
503     break;
504   }
505
506   if( !anOp )
507     anOp = LightApp_Module::createOperation( theId );
508
509   return anOp;
510 }
511
512 bool HYDROGUI_Module::reusableOperation( const int id )
513 {
514   if ( id == ImportGeomObjectAsObstacleId ||
515        id == ImportGeomObjectAsPolylineId ) {
516     return false;
517   }
518
519   return LightApp_Module::reusableOperation( id );
520 }
521
522 /**
523  * Returns true if the object with the given entry can be renamed.
524  * @param theEntry the object entry
525  */
526 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
527 {
528   // Allow to rename all HYDRO objects
529   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
530   return !anEntity.IsNull();
531 }
532 /**
533  * Returns true if the object with the given entry is renamed.
534  * @param theEntry the object entry
535  * @param theName the new name
536  */
537 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
538 {
539   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
540   bool aRes = false;
541   if ( !anEntity.IsNull() )
542   {
543     HYDROGUI_DataModel* aModel = getDataModel();
544     if( aModel )
545     {
546       if( anEntity->GetName() != theName )
547       {
548         // check that there are no other objects with the same name in the document
549         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
550         if ( anObject.IsNull() )
551         {
552           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
553           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
554           {
555             anEntity->SetName( theName );
556             aRes = true;
557           }
558           else
559           {
560             aRes = aModel->rename( anEntity, theName );
561           }
562         }
563         else
564         {
565           // Inform the user that the name is already used
566           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
567           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
568           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
569         }
570       }
571     }
572   }
573   return aRes;
574 }