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