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