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