]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Operations.cxx
Salome HOME
refs #1340
[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
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( RegenerateRegionColorsId, "REGENERATE_REGION_COLORS" );
247
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
460 void HYDROGUI_Module::onDelete()
461 {
462   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
463   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
464   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
465     aPolylineOp->deleteSelected();
466   else
467     startOperation( DeleteId );
468 }
469
470 bool HYDROGUI_Module::onUndo( int theNumActions )
471 {
472   QApplication::setOverrideCursor( Qt::WaitCursor );
473   bool anIsOk = true;
474   HYDROGUI_DataModel* aModel = getDataModel();
475   if( aModel )
476   {
477     while( theNumActions > 0 )
478     {
479       if( !aModel->undo() )
480       {
481         anIsOk = false;
482         break;
483       }
484       theNumActions--;
485     }
486     update( UF_All );
487   }
488   QApplication::restoreOverrideCursor();
489   return anIsOk;
490 }
491
492 bool HYDROGUI_Module::onRedo( int theNumActions )
493 {
494   QApplication::setOverrideCursor( Qt::WaitCursor );
495   bool anIsOk = true;
496   HYDROGUI_DataModel* aModel = getDataModel();
497   if( aModel )
498   {
499     while( theNumActions > 0 )
500     {
501       if( !aModel->redo() )
502       {
503         anIsOk = false;
504         break;
505       }
506       theNumActions--;
507     }
508     update( UF_All );
509   }
510   QApplication::restoreOverrideCursor();
511   return anIsOk;
512 }
513
514 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
515 {
516   LightApp_Operation* anOp = 0;
517   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
518   switch( theId )
519   {
520   case SaveVisualStateId:
521   case LoadVisualStateId:
522     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
523     break;
524   case CopyId:
525   case PasteId:
526     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
527     break;
528   case ImportImageId:
529   case EditImportedImageId:
530     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
531     break;
532   case ImportPolylineId:
533     anOp = new HYDROGUI_ImportPolylineOp( aModule/*, theId == EditImportedPolylineId*/ );
534     break;
535   case ImportSinusXId:
536     anOp = new HYDROGUI_ImportSinusXOp( aModule );
537     break;
538   case ExportSinusXId:
539     anOp = new HYDROGUI_ExportSinusXOp( aModule );
540     break;
541   case ObserveImageId:
542     anOp = new HYDROGUI_ObserveImageOp( aModule );
543     break;
544   case ExportImageId:
545     anOp = new HYDROGUI_ExportImageOp( aModule );
546     break;
547   case UpdateObjectId:
548   case ForcedUpdateObjectId:
549     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
550     break;
551   case ExportToShapeFileID:
552     anOp = new HYDROGUI_ExportFileOp( aModule );
553     break;
554   case ImportLandCoverMapId:
555     anOp = new HYDROGUI_ImportLandCoverMapOp( aModule );
556     break;
557   case RemoveImageRefsId:
558     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
559     break;
560   case CreatePolyline3DId:
561   case EditPolyline3DId:
562     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
563     break;
564   case CreatePolylineId:
565   case EditPolylineId:
566     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
567     break;
568   case CreateProfileId:
569   case EditProfileId:
570     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
571     break;
572   case ProfileInterpolateId:
573     anOp = new HYDROGUI_ProfileInterpolateOp( aModule );
574     break;
575   case ImportProfilesId:
576     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
577     break;
578   case AllGeoreferencementId:
579     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
580     break;
581   case SelectedGeoreferencementId:
582     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
583     break;
584   case ImportBathymetryId:
585   case EditImportedBathymetryId:
586     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
587     break;
588   case BathymetryBoundsId:
589     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
590     break;
591   case BathymetrySelectionId:
592     anOp = new HYDROGUI_BathymetrySelectionOp( aModule );
593     break;
594   case BathymetryTextId:
595   case BathymetryRescaleSelectionId:
596   case BathymetryRescaleVisibleId:
597   case BathymetryRescaleUserId:
598   case BathymetryRescaleDefaultId:
599     anOp = new HYDROGUI_BathymetryOp( aModule, theId );
600     break;
601
602   case CreateImmersibleZoneId:
603   case EditImmersibleZoneId:
604     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
605     break;
606   case CreateStreamId:
607   case EditStreamId:
608     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
609     break;
610   case CreateChannelId:
611   case EditChannelId:
612     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
613     break;
614   case CreateDigueId:
615   case EditDigueId:
616     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
617     break;
618   case ImportStricklerTableFromFileId:
619   case ExportStricklerTableFromFileId:
620   case EditStricklerTableId:
621     anOp = new HYDROGUI_StricklerTableOp( aModule, theId );
622     break;
623   case CreateLandCoverMapId:
624   case AddLandCoverId:
625   case RemoveLandCoverId:
626   case SplitLandCoverId:
627   case MergeLandCoverId:
628   case ChangeLandCoverTypeId:
629     anOp = new HYDROGUI_LandCoverMapOp( aModule, theId );
630     break;
631   case DuplicateStricklerTableId:
632     anOp = new HYDROGUI_DuplicateOp( aModule );
633     break;
634   case CreateCalculationId:
635   case EditCalculationId:
636     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
637     break;
638   case ExportCalculationId:
639     anOp = new HYDROGUI_ExportCalculationOp( aModule );
640     break;
641   case FuseImagesId:
642   case EditFusedImageId:
643     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
644     break;
645   case CutImagesId:
646   case EditCutImageId:
647     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
648     break;
649   case SplitImageId:
650   case EditSplitImageId:
651     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplitImageId );
652     break;
653   case ImportObstacleFromFileId:
654     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
655     break;
656   case ImportGeomObjectAsObstacleId:
657     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
658     break;
659   case ImportGeomObjectAsPolylineId:
660     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
661     break;
662   case CreateBoxId:
663     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
664       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
665     break;
666   case CreateCylinderId:
667     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
668       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
669     break;
670   case TranslateObstacleId:
671     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
672     break;
673   case CopyViewerPositionId:
674     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
675     break;
676   case DeleteId:
677     anOp = new HYDROGUI_DeleteOp( aModule );
678     break;
679   case SetColorId:
680     anOp = new HYDROGUI_SetColorOp( aModule );
681     break;
682   case SetTransparencyId:
683     anOp = new HYDROGUI_SetTransparencyOp( aModule );
684     break;
685   case SetZLevelId:
686     anOp = new HYDROGUI_ZLevelsOp( aModule );
687     break;
688   case EditLocalCSId:
689     anOp = new HYDROGUI_LocalCSOp( aModule );
690     break;
691   case RiverBottomId:
692   case RiverBottomContextId:
693     anOp = new HYDROGUI_RiverBottomOp( aModule );
694     break;
695   case RecognizeContoursId:
696     anOp = new HYDROGUI_RecognizeContoursOp( aModule );
697     break;
698   case ShowId:
699   case ShowOnlyId:
700   case ShowAllId:
701   case HideId:
702   case HideAllId:
703     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
704     break;
705   case SubmersibleId:
706     anOp = new HYDROGUI_SubmersibleOp( aModule );
707     break;
708   case PolylineExtractionId:
709     anOp = new HYDROGUI_PolylineExtractionOp( aModule );
710     break;
711   case SplitPolylinesId:
712     anOp = new HYDROGUI_SplitPolylinesOp( aModule );
713     break;
714   case MergePolylinesId:
715     anOp = new HYDROGUI_MergePolylinesOp( aModule );
716     break;
717   case LandCoverScalarMapModeOnId:
718   case LandCoverScalarMapModeOffId:
719     anOp = new HYDROGUI_LandCoverColoringOp( aModule, theId );
720     break;
721   case RegenerateRegionColorsId:
722      anOp = new HYDROGUI_RegenerateRegionColorsOp( aModule );
723   }
724
725   if( !anOp )
726     anOp = LightApp_Module::createOperation( theId );
727
728   return anOp;
729 }
730
731 bool HYDROGUI_Module::reusableOperation( const int id )
732 {
733   if ( id == ImportGeomObjectAsObstacleId ||
734        id == ImportGeomObjectAsPolylineId ) {
735     return false;
736   }
737
738   return LightApp_Module::reusableOperation( id );
739 }
740
741 /**
742  * Returns true if the object with the given entry can be renamed.
743  * @param theEntry the object entry
744  */
745 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
746 {
747   // Allow to rename all HYDRO objects
748   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
749   return !anEntity.IsNull();
750 }
751 /**
752  * Returns true if the object with the given entry is renamed.
753  * @param theEntry the object entry
754  * @param theName the new name
755  */
756 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
757 {
758   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
759   bool aRes = false;
760   if ( !anEntity.IsNull() )
761   {
762     HYDROGUI_DataModel* aModel = getDataModel();
763     if( aModel )
764     {
765       if( anEntity->GetName() != theName )
766       {
767         // check that there are no other objects with the same name in the document
768         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
769         if ( anObject.IsNull() )
770         {
771           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
772           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
773           {
774             anEntity->SetName( theName );
775             aRes = true;
776           }
777           else
778           {
779             aRes = aModel->rename( anEntity, theName );
780           }
781         }
782         else
783         {
784           // Inform the user that the name is already used
785           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
786           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
787           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
788         }
789       }
790     }
791   }
792   return aRes;
793 }
794
795 void HYDROGUI_Module::onBathymetrySelection()
796 {
797   QAction* a = qobject_cast<QAction*>( sender() );
798   if( !a )
799     return;
800
801   bool isChecked = a->isChecked();
802   if( isChecked )
803     startOperation( BathymetrySelectionId );
804   else
805   {
806     LightApp_Operation* op = operation( BathymetryTextId );
807     if( op )
808       op->abort();
809
810     op = operation( BathymetrySelectionId );
811     if( op )
812       op->abort();
813   }
814 }
815
816 void HYDROGUI_Module::onBathymetryText()
817 {
818   QAction* a = qobject_cast<QAction*>( sender() );
819   if( !a )
820     return;
821
822   bool isChecked = a->isChecked();
823   if( isChecked )
824     startOperation( BathymetryTextId );
825   else
826     operation( BathymetryTextId )->abort();
827 }