Salome HOME
porting on Linux
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Operations.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_Operations.h"
20
21 #include "HYDROGUI_CopyPasteOp.h"
22 #include "HYDROGUI_CalculationOp.h"
23 #include "HYDROGUI_ChannelOp.h"
24 #include "HYDROGUI_DataModel.h"
25 #include "HYDROGUI_CopyPastePositionOp.h"
26 #include "HYDROGUI_DeleteOp.h"
27 #include "HYDROGUI_DigueOp.h"
28 #include "HYDROGUI_ExportImageOp.h"
29 #include "HYDROGUI_ExportFileOp.h"
30 #include "HYDROGUI_ImportImageOp.h"
31 #include "HYDROGUI_ImportPolylineOp.h"
32 #include "HYDROGUI_ImportBathymetryOp.h"
33 #include "HYDROGUI_ImmersibleZoneOp.h"
34 #include "HYDROGUI_Module.h"
35 #include "HYDROGUI_ObserveImageOp.h"
36 #include "HYDROGUI_PolylineOp.h"
37 #include "HYDROGUI_Poly3DOp.h"
38 #include "HYDROGUI_ProfileOp.h"
39 #include "HYDROGUI_RemoveImageRefsOp.h"
40 #include "HYDROGUI_ShowHideOp.h"
41 #include "HYDROGUI_StreamOp.h"
42 #include "HYDROGUI_TwoImagesOp.h"
43 #include "HYDROGUI_UpdateFlags.h"
44 #include "HYDROGUI_UpdateObjectOp.h"
45 #include "HYDROGUI_VisualStateOp.h"
46 #include "HYDROGUI_ImmersibleZoneOp.h"
47 #include "HYDROGUI_ImportGeomObjectOp.h"
48 #include "HYDROGUI_ImportObstacleFromFileOp.h"
49 #include "HYDROGUI_TranslateObstacleOp.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 #include "HYDROGUI_ZLevelsOp.h"
57 #include "HYDROGUI_LocalCSOp.h"
58 #include "HYDROGUI_RiverBottomOp.h"
59 #include "HYDROGUI_ProfileInterpolateOp.h"
60 #include "HYDROGUI_RecognizeContoursOp.h"
61 #include "HYDROGUI_SubmersibleOp.h"
62 #include "HYDROGUI_StricklerTableOp.h"
63 #include "HYDROGUI_DuplicateOp.h"
64 #include "HYDROGUI_LandCoverOp.h"
65
66 #include <HYDROData_Document.h>
67 #include <HYDROData_Obstacle.h>
68 #include <HYDROData_SplitToZonesTool.h>
69
70 #include <GeometryGUI.h>
71 #include <GeometryGUI_Operations.h>
72 #include <GEOMBase.h>
73
74 #include <SalomeApp_Study.h>
75
76 #include <LightApp_Application.h>
77
78 #include <CAM_Application.h>
79
80 #include <QtxListAction.h>
81 #include <QtxActionToolMgr.h>
82
83 #include <SUIT_Desktop.h>
84 #include <SUIT_ResourceMgr.h>
85 #include <SUIT_Session.h>
86 #include <SUIT_MessageBox.h>
87
88 #include <QAction>
89 #include <QApplication>
90
91 QAction* HYDROGUI_Module::createAction( const int theId, const QString& theSuffix, const QString& theImg,
92                                         const int theKey, const bool isToggle, const QString& theSlot )
93 {
94   QString aSlot = theSlot;
95   if( aSlot.isEmpty() )
96     aSlot = SLOT( onOperation() );
97   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
98   std::string anImg = theImg.toStdString();
99   QPixmap aPixmap = theImg.isEmpty() ? QPixmap() : aResMgr->loadPixmap( "HYDRO", tr( anImg.c_str() ) );
100   std::string aMenu    = ( "MEN_" + theSuffix ).toStdString();
101   std::string aDesktop = ( "DSK_" + theSuffix ).toStdString();
102   std::string aToolbar = ( "STB_" + theSuffix ).toStdString();
103   std::string aSlotStr = aSlot.toStdString();
104   return LightApp_Module::createAction( theId, tr( aDesktop.c_str() ), aPixmap,
105     tr( aMenu.c_str() ), tr( aToolbar.c_str() ),
106                 theKey, application()->desktop(), isToggle, this, aSlotStr.c_str() );
107 }
108
109 void HYDROGUI_Module::createActions()
110 {
111   createAction( SaveVisualStateId, "SAVE_VISUAL_STATE" );
112   createAction( LoadVisualStateId, "LOAD_VISUAL_STATE" );
113
114   createAction( CopyId, "COPY", "", Qt::CTRL + Qt::Key_C );
115   createAction( PasteId, "PASTE", "", Qt::CTRL + Qt::Key_V );
116
117   createAction( UpdateObjectId, "UPDATE_OBJECT" );
118   createAction( ForcedUpdateObjectId, "FORCED_UPDATE_OBJECT" );
119
120   createAction( ImportImageId, "IMPORT_IMAGE", "IMPORT_IMAGE_ICO", Qt::CTRL + Qt::Key_I );
121   createAction( EditImportedImageId, "EDIT_IMPORTED_IMAGE", "EDIT_IMPORTED_IMAGE_ICO" );
122   createAction( ObserveImageId, "OBSERVE_IMAGE", "OBSERVE_IMAGE_ICO" );
123   createAction( ExportImageId, "EXPORT_IMAGE", "EXPORT_IMAGE_ICO" );
124   createAction( RemoveImageRefsId, "REMOVE_IMAGE_REFERENCE", "REMOVE_IMAGE_REFERENCE_ICO" );
125   
126   createAction( ImportPolylineId, "IMPORT_POLYLINE", "IMPORT_POLYLINE_ICO" );
127
128   createAction( CreatePolylineId, "CREATE_POLYLINE", "CREATE_POLYLINE_ICO" );
129   createAction( EditPolylineId, "EDIT_POLYLINE", "EDIT_POLYLINE_ICO" ); 
130
131   createAction( CreatePolyline3DId, "CREATE_POLYLINE_3D", "CREATE_POLYLINE_3D_ICO" );
132   createAction( EditPolyline3DId, "EDIT_POLYLINE_3D", "EDIT_POLYLINE_3D_ICO" ); 
133
134   createAction( CreateProfileId, "CREATE_PROFILE", "CREATE_PROFILE_ICO" );
135   createAction( ImportProfilesId, "IMPORT_PROFILES", "IMPORT_PROFILES_ICO" );
136   createAction( EditProfileId, "EDIT_PROFILE", "EDIT_PROFILE_ICO" ); 
137   createAction( AllGeoreferencementId, "GEOREFERENCEMENT", "GEOREFERENCEMENT_ICO" ); 
138   createAction( SelectedGeoreferencementId, "GEOREFERENCEMENT", "GEOREFERENCEMENT_ICO" ); 
139   
140   createAction( ImportBathymetryId, "IMPORT_BATHYMETRY", "IMPORT_BATHYMETRY_ICO", Qt::CTRL + Qt::Key_B );
141   createAction( EditImportedBathymetryId, "EDIT_IMPORTED_BATHYMETRY", "EDIT_IMPORTED_BATHYMETRY_ICO" );
142   createAction( BathymetryBoundsId, "BATHYMETRY_BOUNDS", "BATHYMETRY_BOUNDS_ICO" );
143
144   createAction( CreateImmersibleZoneId, "CREATE_IMMERSIBLE_ZONE", "CREATE_IMMERSIBLE_ZONE_ICO" );
145   createAction( EditImmersibleZoneId, "EDIT_IMMERSIBLE_ZONE", "EDIT_IMMERSIBLE_ZONE_ICO" );
146
147   createAction( CreateStreamId, "CREATE_STREAM", "CREATE_STREAM_ICO" );
148   createAction( EditStreamId, "EDIT_STREAM", "EDIT_STREAM_ICO" );
149
150   createAction( CreateChannelId, "CREATE_CHANNEL", "CREATE_CHANNEL_ICO" );
151   createAction( EditChannelId, "EDIT_CHANNEL", "EDIT_CHANNEL_ICO" );
152
153   createAction( CreateDigueId, "CREATE_DIGUE", "CREATE_DIGUE_ICO" );
154   createAction( EditDigueId, "EDIT_DIGUE", "EDIT_DIGUE_ICO" );
155
156   createAction( ImportStricklerTableFromFileId, "IMPORT_STRICKLER_TABLE", "IMPORT_STRICKLER_TABLE_ICO" );
157   createAction( ExportStricklerTableFromFileId, "EXPORT_STRICKLER_TABLE", "EXPORT_STRICKLER_TABLE_ICO" );
158   createAction( EditStricklerTableId, "EDIT_STRICKLER_TABLE", "EDIT_STRICKLER_TABLE_ICO" );
159   createAction( DuplicateStricklerTableId, "DUPLICATE_STRICKLER_TABLE", "DUPLICATE_STRICKLER_TABLE_ICO" );
160
161   createAction( CreateLandCoverId, "CREATE_LAND_COVER", "CREATE_LAND_COVER_ICO" );
162   createAction( EditLandCoverId, "EDIT_LAND_COVER", "EDIT_LAND_COVER_ICO" );
163
164   createAction( ImportObstacleFromFileId, "IMPORT_OBSTACLE_FROM_FILE", "IMPORT_OBSTACLE_FROM_FILE_ICO" );
165   createAction( ImportGeomObjectAsObstacleId, "IMPORT_GEOM_OBJECT_AS_OBSTACLE", "IMPORT_GEOM_OBJECT_ICO" );
166   createAction( ImportGeomObjectAsPolylineId, "IMPORT_GEOM_OBJECT_AS_POLYLINE", "IMPORT_GEOM_OBJECT_ICO" );
167   createAction( CreateBoxId, "CREATE_BOX", "CREATE_BOX_ICO" );
168   createAction( CreateCylinderId, "CREATE_CYLINDER", "CREATE_CYLINDER_ICO" );
169   createAction( TranslateObstacleId, "TRANSLATE_OBSTACLE" );
170
171   createAction( CreateCalculationId, "CREATE_CALCULATION", "CREATE_CALCULATION_ICO" );
172   createAction( EditCalculationId, "EDIT_CALCULATION", "EDIT_CALCULATION_ICO" );
173   createAction( ExportCalculationId, "EXPORT_CALCULATION", "EXPORT_CALCULATION_ICO" );
174
175   createAction( FuseImagesId, "FUSE_IMAGES", "FUSE_IMAGES_ICO" );
176   createAction( EditFusedImageId, "EDIT_FUSED_IMAGE", "EDIT_FUSED_IMAGE_ICO" );
177
178   createAction( CutImagesId, "CUT_IMAGES", "CUT_IMAGES_ICO" );
179   createAction( EditCutImageId, "EDIT_CUT_IMAGE", "EDIT_CUT_IMAGE_ICO" );
180
181   createAction( SplitImageId, "SPLIT_IMAGE", "SPLIT_IMAGE_ICO" );
182   createAction( EditSplittedImageId, "EDIT_SPLITTED_IMAGE", "EDIT_SPLITTED_IMAGE_ICO" );
183
184   createAction( RecognizeContoursId, "RECOGNIZE_CONTOURS", "RECOGNIZE_CONTOURS_ICO" );
185
186   createAction( CopyViewerPositionId, "COPY_VIEWER_POSITION", "" );
187
188   createAction( DeleteId, "DELETE", "", Qt::Key_Delete, false,
189                 SLOT( onDelete() ) );
190
191   createAction( SetColorId, "COLOR" );
192   createAction( SetZLevelId, "ZLEVEL" );
193   createAction( EditLocalCSId, "EDIT_LOCAL_CS" );
194
195   createAction( ShowId, "SHOW" );
196   createAction( ShowOnlyId, "SHOW_ONLY" );
197   createAction( ShowAllId, "SHOW_ALL" );
198   createAction( HideId, "HIDE" );
199   createAction( HideAllId, "HIDE_ALL" );
200
201   createAction( RiverBottomId, "CREATE_STREAM_BOTTOM", "CREATE_STREAM_BOTTOM_ICO" );
202   createAction( RiverBottomContextId, "CREATE_STREAM_BOTTOM", "CREATE_STREAM_BOTTOM_ICO" );
203   createAction( ProfileInterpolateId, "PROFILE_INTERPOLATE", "PROFILE_INTERPOLATE_ICO" );
204
205   createAction( SubmersibleId, "SUBMERSIBLE", "SUBMERSIBLE_ICO" );
206   createAction( ExportPolylineId, "EXPORT_POLYLINE", "EXPORT_POLYLINE_ICO" );
207
208 }
209
210 void HYDROGUI_Module::createMenus()
211 {
212   int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
213   int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
214   createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
215   createMenu( separator(), aFileMenu, -1, aCustomPos );
216
217   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
218   createMenu( UndoId, anEditMenu );
219   createMenu( RedoId, anEditMenu );
220   createMenu( separator(), anEditMenu );
221   createMenu( CopyId, anEditMenu );
222   createMenu( PasteId, anEditMenu );
223
224   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
225   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
226   createMenu( ImportImageId, aHydroId, -1, -1 );
227   createMenu( ImportPolylineId, aHydroId, -1, -1 );
228   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
229   createMenu( ImportStricklerTableFromFileId, aHydroId, -1, -1 );
230   createMenu( CreatePolylineId, aHydroId, -1, -1 );
231   createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
232   createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 );
233   createMenu( CreateChannelId, aHydroId, -1, -1 );
234   createMenu( CreateDigueId, aHydroId, -1, -1 );  
235   createMenu( CreateLandCoverId, aHydroId, -1, -1 );  
236
237   int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
238   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
239   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
240   createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
241
242   int aStreamMenuId = createMenu( tr( "MEN_DESK_STREAM" ), aHydroId, -1 );
243   createMenu( CreateStreamId, aStreamMenuId, -1, -1 );
244   createMenu( RiverBottomId, aStreamMenuId, -1, -1 );
245   createMenu( ProfileInterpolateId, aStreamMenuId, -1, -1 );
246
247   int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
248   createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
249   createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
250   createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
251
252   createMenu( CreateCalculationId, aHydroId, -1, -1 );
253   createMenu( separator(), aHydroId );
254   createMenu( EditLocalCSId, aHydroId, -1, -1 );
255   createMenu( separator(), aHydroId );
256   createMenu( FuseImagesId, aHydroId, -1, -1 );
257   createMenu( CutImagesId, aHydroId, -1, -1 );
258   createMenu( SplitImageId, aHydroId, -1, -1 );
259   createMenu( separator(), aHydroId );
260 }
261
262 void HYDROGUI_Module::createPopups()
263 {
264 }
265
266 void HYDROGUI_Module::createToolbars()
267 {
268   int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) );
269   createTool( UndoId, aToolBar );
270   createTool( RedoId, aToolBar );
271
272   createTool( separator(), aToolBar );
273   createTool( ImportImageId, aToolBar );
274   createTool( ImportPolylineId, aToolBar );
275   createTool( ImportBathymetryId, aToolBar );
276   createTool( CreatePolylineId, aToolBar );
277   createTool( CreatePolyline3DId, aToolBar );
278
279   createTool( separator(), aToolBar );
280   createTool( CreateProfileId, aToolBar );
281   createTool( ImportProfilesId, aToolBar );
282   createTool( AllGeoreferencementId, aToolBar );
283
284   createTool( separator(), aToolBar );
285   createTool( CreateChannelId, aToolBar );
286   createTool( CreateDigueId, aToolBar );
287
288   createTool( separator(), aToolBar );
289   createTool( CreateImmersibleZoneId, aToolBar );
290   createTool( CreateStreamId, aToolBar );
291
292   createTool( separator(), aToolBar );
293   createTool( ImportObstacleFromFileId, aToolBar );
294   createTool( CreateBoxId, aToolBar );
295   createTool( CreateCylinderId, aToolBar );
296
297   createTool( separator(), aToolBar );
298   createTool( ImportStricklerTableFromFileId, aToolBar );
299
300   createTool( separator(), aToolBar );
301   createTool( CreateLandCoverId, aToolBar );
302
303   createTool( separator(), aToolBar );
304   createTool( CreateCalculationId, aToolBar );
305
306   createTool( separator(), aToolBar );
307   createTool( FuseImagesId, aToolBar );
308   createTool( CutImagesId, aToolBar );
309   createTool( SplitImageId, aToolBar );
310 }
311
312 void HYDROGUI_Module::createUndoRedoActions()
313 {
314   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
315
316   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
317     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
318     Qt::CTRL + Qt::Key_Z, application()->desktop() );
319     
320   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
321     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
322     Qt::CTRL + Qt::Key_Y, application()->desktop() );
323   
324   registerAction( UndoId, anEditUndo );
325   registerAction( RedoId, anEditRedo );
326
327   anEditUndo->setComment( tr( "STB_UNDO" ) );
328   anEditRedo->setComment( tr( "STB_REDO" ) );
329
330   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
331   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
332 }
333
334 void HYDROGUI_Module::updateUndoRedoControls()
335 {
336   HYDROGUI_DataModel* aModel = getDataModel();
337
338   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
339   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
340
341   bool aCanUndo = aModel->canUndo();
342   bool aCanRedo = aModel->canRedo();
343
344   if( aCanUndo )
345     aUndoAction->addNames( aModel->undoNames() );
346   aUndoAction->setEnabled( aCanUndo );
347
348   if( aCanRedo )
349     aRedoAction->addNames( aModel->redoNames() );
350   aRedoAction->setEnabled( aCanRedo );
351 }
352
353 void HYDROGUI_Module::onOperation()
354 {
355   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
356   int anId = actionId( anAction );
357   if( anId >= 0 )
358     startOperation( anId );
359 }
360
361 void HYDROGUI_Module::onDelete()
362 {
363   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
364   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
365   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
366     aPolylineOp->deleteSelected();
367   else
368     startOperation( DeleteId );
369 }
370
371 bool HYDROGUI_Module::onUndo( int theNumActions )
372 {
373   QApplication::setOverrideCursor( Qt::WaitCursor );
374   bool anIsOk = true;
375   HYDROGUI_DataModel* aModel = getDataModel();
376   if( aModel )
377   {
378     while( theNumActions > 0 )
379     {
380       if( !aModel->undo() )
381       {
382         anIsOk = false;
383         break;
384       }
385       theNumActions--;
386     }
387     update( UF_All );
388   }
389   QApplication::restoreOverrideCursor();
390   return anIsOk;
391 }
392
393 bool HYDROGUI_Module::onRedo( int theNumActions )
394 {
395   QApplication::setOverrideCursor( Qt::WaitCursor );
396   bool anIsOk = true;
397   HYDROGUI_DataModel* aModel = getDataModel();
398   if( aModel )
399   {
400     while( theNumActions > 0 )
401     {
402       if( !aModel->redo() )
403       {
404         anIsOk = false;
405         break;
406       }
407       theNumActions--;
408     }
409     update( UF_All );
410   }
411   QApplication::restoreOverrideCursor();
412   return anIsOk;
413 }
414
415 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
416 {
417   LightApp_Operation* anOp = 0;
418   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
419   switch( theId )
420   {
421   case SaveVisualStateId:
422   case LoadVisualStateId:
423     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
424     break;
425   case CopyId:
426   case PasteId:
427     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
428     break;
429   case ImportImageId:
430   case EditImportedImageId:
431     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
432     break;
433   case ImportPolylineId:
434     anOp = new HYDROGUI_ImportPolylineOp( aModule/*, theId == EditImportedPolylineId*/ );
435     break;
436   case ObserveImageId:
437     anOp = new HYDROGUI_ObserveImageOp( aModule );
438     break;
439   case ExportImageId:
440     anOp = new HYDROGUI_ExportImageOp( aModule );
441     break;
442   case UpdateObjectId:
443   case ForcedUpdateObjectId:
444     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
445     break;
446   case ExportPolylineId:
447     anOp = new HYDROGUI_ExportFileOp( aModule );
448     break;
449   case RemoveImageRefsId:
450     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
451     break;
452   case CreatePolyline3DId:
453   case EditPolyline3DId:
454     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
455     break;
456   case CreatePolylineId:
457   case EditPolylineId:
458     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
459     break;
460   case CreateProfileId:
461   case EditProfileId:
462     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
463     break;
464   case ProfileInterpolateId:
465     anOp = new HYDROGUI_ProfileInterpolateOp( aModule );
466     break;
467   case ImportProfilesId:
468     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
469     break;
470   case AllGeoreferencementId:
471     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
472     break;
473   case SelectedGeoreferencementId:
474     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
475     break;
476   case ImportBathymetryId:
477   case EditImportedBathymetryId:
478     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
479     break;
480   case BathymetryBoundsId:
481     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
482     break;
483   case CreateImmersibleZoneId:
484   case EditImmersibleZoneId:
485     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
486     break;
487   case CreateStreamId:
488   case EditStreamId:
489     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
490     break;
491   case CreateChannelId:
492   case EditChannelId:
493     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
494     break;
495   case CreateDigueId:
496   case EditDigueId:
497     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
498     break;
499   case ImportStricklerTableFromFileId:
500   case ExportStricklerTableFromFileId:
501   case EditStricklerTableId:
502     anOp = new HYDROGUI_StricklerTableOp( aModule, theId );
503     break;
504   case CreateLandCoverId:
505   case EditLandCoverId:
506     anOp = new HYDROGUI_LandCoverOp( aModule, theId == EditLandCoverId );
507     break;
508   case DuplicateStricklerTableId:
509     anOp = new HYDROGUI_DuplicateOp( aModule );
510     break;
511   case CreateCalculationId:
512   case EditCalculationId:
513     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
514     break;
515   case ExportCalculationId:
516     anOp = new HYDROGUI_ExportCalculationOp( aModule );
517     break;
518   case FuseImagesId:
519   case EditFusedImageId:
520     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
521     break;
522   case CutImagesId:
523   case EditCutImageId:
524     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
525     break;
526   case SplitImageId:
527   case EditSplittedImageId:
528     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
529     break;
530   case ImportObstacleFromFileId:
531     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
532     break;
533   case ImportGeomObjectAsObstacleId:
534     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
535     break;
536   case ImportGeomObjectAsPolylineId:
537     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
538     break;
539   case CreateBoxId:
540     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
541       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
542     break;
543   case CreateCylinderId:
544     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
545       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
546     break;
547   case TranslateObstacleId:
548     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
549     break;
550   case CopyViewerPositionId:
551     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
552     break;
553   case DeleteId:
554     anOp = new HYDROGUI_DeleteOp( aModule );
555     break;
556   case SetColorId:
557     anOp = new HYDROGUI_SetColorOp( aModule );
558     break;
559   case SetZLevelId:
560     anOp = new HYDROGUI_ZLevelsOp( aModule );
561     break;
562   case EditLocalCSId:
563     anOp = new HYDROGUI_LocalCSOp( aModule );
564     break;
565   case RiverBottomId:
566   case RiverBottomContextId:
567     anOp = new HYDROGUI_RiverBottomOp( aModule );
568     break;
569   case RecognizeContoursId:
570     anOp = new HYDROGUI_RecognizeContoursOp( aModule );
571     break;
572   case ShowId:
573   case ShowOnlyId:
574   case ShowAllId:
575   case HideId:
576   case HideAllId:
577     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
578     break;
579   case SubmersibleId:
580     anOp = new HYDROGUI_SubmersibleOp( aModule );
581     break;
582   }
583
584   if( !anOp )
585     anOp = LightApp_Module::createOperation( theId );
586
587   return anOp;
588 }
589
590 bool HYDROGUI_Module::reusableOperation( const int id )
591 {
592   if ( id == ImportGeomObjectAsObstacleId ||
593        id == ImportGeomObjectAsPolylineId ) {
594     return false;
595   }
596
597   return LightApp_Module::reusableOperation( id );
598 }
599
600 /**
601  * Returns true if the object with the given entry can be renamed.
602  * @param theEntry the object entry
603  */
604 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
605 {
606   // Allow to rename all HYDRO objects
607   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
608   return !anEntity.IsNull();
609 }
610 /**
611  * Returns true if the object with the given entry is renamed.
612  * @param theEntry the object entry
613  * @param theName the new name
614  */
615 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
616 {
617   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
618   bool aRes = false;
619   if ( !anEntity.IsNull() )
620   {
621     HYDROGUI_DataModel* aModel = getDataModel();
622     if( aModel )
623     {
624       if( anEntity->GetName() != theName )
625       {
626         // check that there are no other objects with the same name in the document
627         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
628         if ( anObject.IsNull() )
629         {
630           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
631           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
632           {
633             anEntity->SetName( theName );
634             aRes = true;
635           }
636           else
637           {
638             aRes = aModel->rename( anEntity, theName );
639           }
640         }
641         else
642         {
643           // Inform the user that the name is already used
644           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
645           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
646           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
647         }
648       }
649     }
650   }
651   return aRes;
652 }