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