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