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