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