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