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