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