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