]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Operations.cxx
Salome HOME
Merge remote-tracking branch 'remotes/origin/BR_2017' into HEAD
[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( UnSubmersibleId, "UNSUBMERSIBLE", "HYDRO_UNSUBMERSIBLE16_ICO" );
238   createAction( ExportToShapeFileID, "EXPORT_TO_SHAPE_FILE", "EXPORT_TO_SHAPE_FILE_ICO" );
239
240   createAction( PolylineExtractionId, "POLYLINE_EXTRACTION" );
241   createAction( SplitPolylinesId, "SPLIT_POLYLINES", "SPLIT_POLYLINES_ICO" );
242   createAction( MergePolylinesId, "MERGE_POLYLINES", "MERGE_POLYLINES_ICO" );
243
244   createAction( LandCoverScalarMapModeOnId, "LC_SCALARMAP_COLORING_ON" );
245   createAction( LandCoverScalarMapModeOffId, "LC_SCALARMAP_COLORING_OFF" );
246
247   createAction( ShowHideArrows, "SHOW_HIDE_ARROWS" );
248 }
249
250 void HYDROGUI_Module::createMenus()
251 {
252   int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
253   int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
254   createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
255   createMenu( separator(), aFileMenu, -1, aCustomPos );
256
257   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
258   createMenu( UndoId, anEditMenu );
259   createMenu( RedoId, anEditMenu );
260   createMenu( separator(), anEditMenu );
261   createMenu( CopyId, anEditMenu );
262   createMenu( PasteId, anEditMenu );
263
264   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
265   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
266   createMenu( ImportSinusXId, aHydroId, -1, -1 );
267   createMenu( ExportSinusXId, aHydroId, -1, -1 );  
268   
269   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
270   createMenu( ImportStricklerTableFromFileId, aHydroId, -1, -1 );
271   createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
272   createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 );
273   createMenu( CreateChannelId, aHydroId, -1, -1 );
274   createMenu( CreateDigueId, aHydroId, -1, -1 );
275
276   int aNewImageId = createMenu( tr( "MEN_DESK_IMAGE" ), aHydroId, -1 );
277   createMenu( ImportImageId, aNewImageId, -1, -1 );
278   createMenu( separator(), aNewImageId );
279   createMenu( FuseImagesId, aNewImageId, -1, -1 );
280   createMenu( CutImagesId, aNewImageId, -1, -1 );
281   createMenu( SplitImageId, aNewImageId, -1, -1 );
282
283   int aNewPolylineId = createMenu( tr( "MEN_DESK_POLYLINE" ), aHydroId, -1 );
284   createMenu( ImportPolylineId, aNewPolylineId, -1, -1 );
285   createMenu( CreatePolylineId, aNewPolylineId, -1, -1 );
286   createMenu( separator(), aNewPolylineId );
287   createMenu( SplitPolylinesId, aNewPolylineId, -1, -1 );
288   createMenu( MergePolylinesId, aNewPolylineId, -1, -1 );
289
290   int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
291   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
292   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
293   createMenu( separator(), aNewProfileId );
294   createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
295
296   int aStreamMenuId = createMenu( tr( "MEN_DESK_STREAM" ), aHydroId, -1 );
297   createMenu( CreateStreamId, aStreamMenuId, -1, -1 );
298   createMenu( separator(), aStreamMenuId );
299   createMenu( RiverBottomId, aStreamMenuId, -1, -1 );
300   createMenu( ProfileInterpolateId, aStreamMenuId, -1, -1 );
301
302   int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
303   createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
304   createMenu( separator(), anObstacleMenuId );
305   createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
306   createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
307
308   int aLandCoverMapMenuId = createMenu( tr( "MEN_DESK_LAND_COVER_MAP" ), aHydroId, -1 );
309   createMenu( ImportLandCoverMapId, aLandCoverMapMenuId, -1, -1 );
310   createMenu( CreateLandCoverMapId, aLandCoverMapMenuId, -1, -1 );
311   createMenu( separator(), aLandCoverMapMenuId );
312   createMenu( AddLandCoverId, aLandCoverMapMenuId, -1, -1 );
313   createMenu( RemoveLandCoverId, aLandCoverMapMenuId, -1, -1 );
314   createMenu( separator(), aLandCoverMapMenuId );
315   createMenu( SplitLandCoverId, aLandCoverMapMenuId, -1, -1 );
316   createMenu( MergeLandCoverId, aLandCoverMapMenuId, -1, -1 );
317   createMenu( ChangeLandCoverTypeId, aLandCoverMapMenuId, -1, -1 );
318   
319   createMenu( CreateCalculationId, aHydroId, -1, -1 );
320   createMenu( separator(), aHydroId );
321   createMenu( EditLocalCSId, aHydroId, -1, -1 );
322   createMenu( separator(), aHydroId );
323 }
324
325 void HYDROGUI_Module::createPopups()
326 {
327 }
328
329 void HYDROGUI_Module::createToolbars()
330 {
331   int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) );
332   createTool( UndoId, aToolBar );
333   createTool( RedoId, aToolBar );
334
335   createTool( separator(), aToolBar );
336   createTool( ImportImageId, aToolBar );
337   createTool( ImportPolylineId, aToolBar );
338   createTool( ImportSinusXId, aToolBar );
339   createTool( ExportSinusXId, aToolBar );
340   createTool( ImportLandCoverMapId, aToolBar );
341
342   createTool( ImportBathymetryId, aToolBar );
343   createTool( CreatePolylineId, aToolBar );
344   createTool( CreatePolyline3DId, aToolBar );
345
346   createTool( separator(), aToolBar );
347   createTool( CreateProfileId, aToolBar );
348   createTool( ImportProfilesId, aToolBar );
349   createTool( AllGeoreferencementId, aToolBar );
350
351   createTool( separator(), aToolBar );
352   createTool( CreateChannelId, aToolBar );
353   createTool( CreateDigueId, aToolBar );
354
355   createTool( separator(), aToolBar );
356   createTool( CreateImmersibleZoneId, aToolBar );
357   createTool( CreateStreamId, aToolBar );
358
359   createTool( separator(), aToolBar );
360   createTool( ImportObstacleFromFileId, aToolBar );
361   createTool( CreateBoxId, aToolBar );
362   createTool( CreateCylinderId, aToolBar );
363
364   createTool( separator(), aToolBar );
365   createTool( ImportStricklerTableFromFileId, aToolBar );
366
367   createTool( separator(), aToolBar );
368   createTool( CreateLandCoverMapId, aToolBar );
369   createTool( AddLandCoverId, aToolBar );
370   createTool( RemoveLandCoverId, aToolBar );
371   createTool( SplitLandCoverId, aToolBar );
372   createTool( MergeLandCoverId, aToolBar );
373   createTool( ChangeLandCoverTypeId, aToolBar );
374   enableLCMActions();
375
376   createTool( separator(), aToolBar );
377   createTool( CreateCalculationId, aToolBar );
378
379   createTool( separator(), aToolBar );
380   createTool( FuseImagesId, aToolBar );
381   createTool( CutImagesId, aToolBar );
382   createTool( SplitImageId, aToolBar );
383
384   createTool( separator(), aToolBar );
385   createTool( BathymetrySelectionId, aToolBar );
386   createTool( BathymetryTextId, aToolBar );
387   createTool( BathymetryRescaleSelectionId, aToolBar );
388   createTool( BathymetryRescaleVisibleId, aToolBar );
389   createTool( BathymetryRescaleUserId, aToolBar );
390   createTool( BathymetryRescaleDefaultId, aToolBar );
391 }
392
393 void HYDROGUI_Module::createUndoRedoActions()
394 {
395   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
396
397   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
398     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
399     Qt::CTRL + Qt::Key_Z, application()->desktop() );
400     
401   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
402     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
403     Qt::CTRL + Qt::Key_Y, application()->desktop() );
404   
405   registerAction( UndoId, anEditUndo );
406   registerAction( RedoId, anEditRedo );
407
408   anEditUndo->setComment( tr( "STB_UNDO" ) );
409   anEditRedo->setComment( tr( "STB_REDO" ) );
410
411   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
412   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
413 }
414
415 void HYDROGUI_Module::updateUndoRedoControls()
416 {
417   HYDROGUI_DataModel* aModel = getDataModel();
418
419   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
420   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
421
422   bool aCanUndo = aModel->canUndo();
423   bool aCanRedo = aModel->canRedo();
424
425   if( aCanUndo )
426     aUndoAction->addNames( aModel->undoNames() );
427   aUndoAction->setEnabled( aCanUndo );
428
429   if( aCanRedo )
430     aRedoAction->addNames( aModel->redoNames() );
431   aRedoAction->setEnabled( aCanRedo );
432 }
433
434 void HYDROGUI_Module::enableLCMActions()
435 {
436   HYDROData_Iterator anIt( HYDROData_Document::Document( getStudyId() ), KIND_LAND_COVER_MAP );
437   bool anEnableTools = anIt.More();
438
439   QtxListAction* anAction;
440   anAction = (QtxListAction*)action( AddLandCoverId );
441   if ( anAction ) anAction->setEnabled( anEnableTools );
442   anAction = (QtxListAction*)action( RemoveLandCoverId );
443   if ( anAction ) anAction->setEnabled( anEnableTools );
444   anAction = (QtxListAction*)action( SplitLandCoverId );
445   if ( anAction ) anAction->setEnabled( anEnableTools );
446   anAction = (QtxListAction*)action( MergeLandCoverId );
447   if ( anAction ) anAction->setEnabled( anEnableTools );
448   anAction = (QtxListAction*)action( ChangeLandCoverTypeId );
449   if ( anAction ) anAction->setEnabled( anEnableTools );
450 }
451
452 void HYDROGUI_Module::onOperation()
453 {
454   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
455   int anId = actionId( anAction );
456   if( anId >= 0 )
457     startOperation( anId );
458
459   if( anId==ShowHideArrows )
460   {
461     setArrowsVisible( !arrowsVisible() );
462   }
463 }
464
465 bool HYDROGUI_Module::arrowsVisible() const
466 {
467   int aType;
468   SUIT_ResourceMgr* resMgr = application()->resourceMgr();
469   if( resMgr )
470   {
471     resMgr->value( "polyline", "arrow_type", aType );
472     return aType>0;
473   }
474   else
475     return false;
476 }
477
478 void HYDROGUI_Module::setArrowsVisible( bool isVisible )
479 {
480   SUIT_ResourceMgr* resMgr = application()->resourceMgr();
481
482   int aType=-1;
483   if( !resMgr )
484     return;
485
486   if( isVisible )
487   {
488     if( resMgr->hasValue( "polyline", "prev_arrow_type" ) )
489       resMgr->value( "polyline", "prev_arrow_type", aType );
490
491     if( aType<=0 )
492       aType = 1;
493     resMgr->setValue( "polyline", "arrow_type", aType );
494   }
495   else
496   {
497     resMgr->value( "polyline", "arrow_type", aType );
498     resMgr->setValue( "polyline", "prev_arrow_type", aType );
499     resMgr->setValue( "polyline", "arrow_type", 0 );
500   }
501   preferencesChanged( "polyline", "arrow_type" );
502 }
503
504 void HYDROGUI_Module::onDelete()
505 {
506   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
507   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
508   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
509     aPolylineOp->deleteSelected();
510   else
511     startOperation( DeleteId );
512 }
513
514 bool HYDROGUI_Module::onUndo( int theNumActions )
515 {
516   QApplication::setOverrideCursor( Qt::WaitCursor );
517   bool anIsOk = true;
518   HYDROGUI_DataModel* aModel = getDataModel();
519   if( aModel )
520   {
521     while( theNumActions > 0 )
522     {
523       if( !aModel->undo() )
524       {
525         anIsOk = false;
526         break;
527       }
528       theNumActions--;
529     }
530     update( UF_All );
531   }
532   QApplication::restoreOverrideCursor();
533   return anIsOk;
534 }
535
536 bool HYDROGUI_Module::onRedo( int theNumActions )
537 {
538   QApplication::setOverrideCursor( Qt::WaitCursor );
539   bool anIsOk = true;
540   HYDROGUI_DataModel* aModel = getDataModel();
541   if( aModel )
542   {
543     while( theNumActions > 0 )
544     {
545       if( !aModel->redo() )
546       {
547         anIsOk = false;
548         break;
549       }
550       theNumActions--;
551     }
552     update( UF_All );
553   }
554   QApplication::restoreOverrideCursor();
555   return anIsOk;
556 }
557
558 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
559 {
560   LightApp_Operation* anOp = 0;
561   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
562   switch( theId )
563   {
564   case SaveVisualStateId:
565   case LoadVisualStateId:
566     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
567     break;
568   case CopyId:
569   case PasteId:
570     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
571     break;
572   case ImportImageId:
573   case EditImportedImageId:
574     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
575     break;
576   case ImportPolylineId:
577     anOp = new HYDROGUI_ImportPolylineOp( aModule/*, theId == EditImportedPolylineId*/ );
578     break;
579   case ImportSinusXId:
580     anOp = new HYDROGUI_ImportSinusXOp( aModule );
581     break;
582   case ExportSinusXId:
583     anOp = new HYDROGUI_ExportSinusXOp( aModule );
584     break;
585   case ObserveImageId:
586     anOp = new HYDROGUI_ObserveImageOp( aModule );
587     break;
588   case ExportImageId:
589     anOp = new HYDROGUI_ExportImageOp( aModule );
590     break;
591   case UpdateObjectId:
592   case ForcedUpdateObjectId:
593     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
594     break;
595   case ExportToShapeFileID:
596     anOp = new HYDROGUI_ExportFileOp( aModule );
597     break;
598   case ImportLandCoverMapId:
599     anOp = new HYDROGUI_ImportLandCoverMapOp( aModule );
600     break;
601   case RemoveImageRefsId:
602     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
603     break;
604   case CreatePolyline3DId:
605   case EditPolyline3DId:
606     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
607     break;
608   case CreatePolylineId:
609   case EditPolylineId:
610     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
611     break;
612   case CreateProfileId:
613   case EditProfileId:
614     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
615     break;
616   case ProfileInterpolateId:
617     anOp = new HYDROGUI_ProfileInterpolateOp( aModule );
618     break;
619   case ImportProfilesId:
620     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
621     break;
622   case AllGeoreferencementId:
623     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
624     break;
625   case SelectedGeoreferencementId:
626     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
627     break;
628   case ImportBathymetryId:
629   case EditImportedBathymetryId:
630     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
631     break;
632   case BathymetryBoundsId:
633     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
634     break;
635   case BathymetrySelectionId:
636     anOp = new HYDROGUI_BathymetrySelectionOp( aModule );
637     break;
638   case BathymetryTextId:
639   case BathymetryRescaleSelectionId:
640   case BathymetryRescaleVisibleId:
641   case BathymetryRescaleUserId:
642   case BathymetryRescaleDefaultId:
643     anOp = new HYDROGUI_BathymetryOp( aModule, theId );
644     break;
645
646   case CreateImmersibleZoneId:
647   case EditImmersibleZoneId:
648     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
649     break;
650   case CreateStreamId:
651   case EditStreamId:
652     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
653     break;
654   case CreateChannelId:
655   case EditChannelId:
656     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
657     break;
658   case CreateDigueId:
659   case EditDigueId:
660     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
661     break;
662   case ImportStricklerTableFromFileId:
663   case ExportStricklerTableFromFileId:
664   case EditStricklerTableId:
665     anOp = new HYDROGUI_StricklerTableOp( aModule, theId );
666     break;
667   case CreateLandCoverMapId:
668   case AddLandCoverId:
669   case RemoveLandCoverId:
670   case SplitLandCoverId:
671   case MergeLandCoverId:
672   case ChangeLandCoverTypeId:
673     anOp = new HYDROGUI_LandCoverMapOp( aModule, theId );
674     break;
675   case DuplicateStricklerTableId:
676     anOp = new HYDROGUI_DuplicateOp( aModule );
677     break;
678   case CreateCalculationId:
679   case EditCalculationId:
680     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
681     break;
682   case ExportCalculationId:
683     anOp = new HYDROGUI_ExportCalculationOp( aModule );
684     break;
685   case FuseImagesId:
686   case EditFusedImageId:
687     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
688     break;
689   case CutImagesId:
690   case EditCutImageId:
691     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
692     break;
693   case SplitImageId:
694   case EditSplitImageId:
695     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplitImageId );
696     break;
697   case ImportObstacleFromFileId:
698     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
699     break;
700   case ImportGeomObjectAsObstacleId:
701     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
702     break;
703   case ImportGeomObjectAsPolylineId:
704     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
705     break;
706   case CreateBoxId:
707     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
708       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
709     break;
710   case CreateCylinderId:
711     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
712       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
713     break;
714   case TranslateObstacleId:
715     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
716     break;
717   case CopyViewerPositionId:
718     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
719     break;
720   case DeleteId:
721     anOp = new HYDROGUI_DeleteOp( aModule );
722     break;
723   case SetColorId:
724     anOp = new HYDROGUI_SetColorOp( aModule );
725     break;
726   case SetTransparencyId:
727     anOp = new HYDROGUI_SetTransparencyOp( aModule );
728     break;
729   case SetZLevelId:
730     anOp = new HYDROGUI_ZLevelsOp( aModule );
731     break;
732   case EditLocalCSId:
733     anOp = new HYDROGUI_LocalCSOp( aModule );
734     break;
735   case RiverBottomId:
736   case RiverBottomContextId:
737     anOp = new HYDROGUI_RiverBottomOp( aModule );
738     break;
739   case RecognizeContoursId:
740     anOp = new HYDROGUI_RecognizeContoursOp( aModule );
741     break;
742   case ShowId:
743   case ShowOnlyId:
744   case ShowAllId:
745   case HideId:
746   case HideAllId:
747     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
748     break;
749   case SubmersibleId:
750     anOp = new HYDROGUI_SubmersibleOp( aModule, true );
751     break;
752   case UnSubmersibleId:
753     anOp = new HYDROGUI_SubmersibleOp( aModule, false );
754     break;
755   case PolylineExtractionId:
756     anOp = new HYDROGUI_PolylineExtractionOp( aModule );
757     break;
758   case SplitPolylinesId:
759     anOp = new HYDROGUI_SplitPolylinesOp( aModule );
760     break;
761   case MergePolylinesId:
762     anOp = new HYDROGUI_MergePolylinesOp( aModule );
763     break;
764   case LandCoverScalarMapModeOnId:
765   case LandCoverScalarMapModeOffId:
766     anOp = new HYDROGUI_LandCoverColoringOp( aModule, theId );
767     break;
768   }
769
770   if( !anOp )
771     anOp = LightApp_Module::createOperation( theId );
772
773   return anOp;
774 }
775
776 bool HYDROGUI_Module::reusableOperation( const int id )
777 {
778   if ( id == ImportGeomObjectAsObstacleId ||
779        id == ImportGeomObjectAsPolylineId ) {
780     return false;
781   }
782
783   return LightApp_Module::reusableOperation( id );
784 }
785
786 /**
787  * Returns true if the object with the given entry can be renamed.
788  * @param theEntry the object entry
789  */
790 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
791 {
792   // Allow to rename all HYDRO objects
793   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
794   return !anEntity.IsNull();
795 }
796 /**
797  * Returns true if the object with the given entry is renamed.
798  * @param theEntry the object entry
799  * @param theName the new name
800  */
801 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
802 {
803   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
804   bool aRes = false;
805   if ( !anEntity.IsNull() )
806   {
807     HYDROGUI_DataModel* aModel = getDataModel();
808     if( aModel )
809     {
810       if( anEntity->GetName() != theName )
811       {
812         // check that there are no other objects with the same name in the document
813         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
814         if ( anObject.IsNull() )
815         {
816           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
817           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
818           {
819             anEntity->SetName( theName );
820             aRes = true;
821           }
822           else
823           {
824             aRes = aModel->rename( anEntity, theName );
825           }
826         }
827         else
828         {
829           // Inform the user that the name is already used
830           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
831           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
832           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
833         }
834       }
835     }
836   }
837   return aRes;
838 }
839
840 void HYDROGUI_Module::onBathymetrySelection()
841 {
842   QAction* a = qobject_cast<QAction*>( sender() );
843   if( !a )
844     return;
845
846   bool isChecked = a->isChecked();
847   if( isChecked )
848     startOperation( BathymetrySelectionId );
849   else
850   {
851     LightApp_Operation* op = operation( BathymetryTextId );
852     if( op )
853       op->abort();
854
855     op = operation( BathymetrySelectionId );
856     if( op )
857       op->abort();
858   }
859 }
860
861 void HYDROGUI_Module::onBathymetryText()
862 {
863   QAction* a = qobject_cast<QAction*>( sender() );
864   if( !a )
865     return;
866
867   bool isChecked = a->isChecked();
868   if( isChecked )
869     startOperation( BathymetryTextId );
870   else
871     operation( BathymetryTextId )->abort();
872 }