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