]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Operations.cxx
Salome HOME
refs #1330: individual shape and size for polylines
[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( PolylineStyleId, "POLYLINE_STYLE" );
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
459 void HYDROGUI_Module::onDelete()
460 {
461   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
462   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
463   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
464     aPolylineOp->deleteSelected();
465   else
466     startOperation( DeleteId );
467 }
468
469 bool HYDROGUI_Module::onUndo( int theNumActions )
470 {
471   QApplication::setOverrideCursor( Qt::WaitCursor );
472   bool anIsOk = true;
473   HYDROGUI_DataModel* aModel = getDataModel();
474   if( aModel )
475   {
476     while( theNumActions > 0 )
477     {
478       if( !aModel->undo() )
479       {
480         anIsOk = false;
481         break;
482       }
483       theNumActions--;
484     }
485     update( UF_All );
486   }
487   QApplication::restoreOverrideCursor();
488   return anIsOk;
489 }
490
491 bool HYDROGUI_Module::onRedo( int theNumActions )
492 {
493   QApplication::setOverrideCursor( Qt::WaitCursor );
494   bool anIsOk = true;
495   HYDROGUI_DataModel* aModel = getDataModel();
496   if( aModel )
497   {
498     while( theNumActions > 0 )
499     {
500       if( !aModel->redo() )
501       {
502         anIsOk = false;
503         break;
504       }
505       theNumActions--;
506     }
507     update( UF_All );
508   }
509   QApplication::restoreOverrideCursor();
510   return anIsOk;
511 }
512
513 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
514 {
515   LightApp_Operation* anOp = 0;
516   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
517   switch( theId )
518   {
519   case SaveVisualStateId:
520   case LoadVisualStateId:
521     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
522     break;
523   case CopyId:
524   case PasteId:
525     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
526     break;
527   case ImportImageId:
528   case EditImportedImageId:
529     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
530     break;
531   case ImportPolylineId:
532     anOp = new HYDROGUI_ImportPolylineOp( aModule/*, theId == EditImportedPolylineId*/ );
533     break;
534   case ImportSinusXId:
535     anOp = new HYDROGUI_ImportSinusXOp( aModule );
536     break;
537   case ExportSinusXId:
538     anOp = new HYDROGUI_ExportSinusXOp( aModule );
539     break;
540   case ObserveImageId:
541     anOp = new HYDROGUI_ObserveImageOp( aModule );
542     break;
543   case ExportImageId:
544     anOp = new HYDROGUI_ExportImageOp( aModule );
545     break;
546   case UpdateObjectId:
547   case ForcedUpdateObjectId:
548     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
549     break;
550   case ExportToShapeFileID:
551     anOp = new HYDROGUI_ExportFileOp( aModule );
552     break;
553   case ImportLandCoverMapId:
554     anOp = new HYDROGUI_ImportLandCoverMapOp( aModule );
555     break;
556   case RemoveImageRefsId:
557     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
558     break;
559   case CreatePolyline3DId:
560   case EditPolyline3DId:
561     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
562     break;
563   case CreatePolylineId:
564   case EditPolylineId:
565     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
566     break;
567   case CreateProfileId:
568   case EditProfileId:
569     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
570     break;
571   case ProfileInterpolateId:
572     anOp = new HYDROGUI_ProfileInterpolateOp( aModule );
573     break;
574   case ImportProfilesId:
575     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
576     break;
577   case AllGeoreferencementId:
578     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
579     break;
580   case SelectedGeoreferencementId:
581     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
582     break;
583   case ImportBathymetryId:
584   case EditImportedBathymetryId:
585     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
586     break;
587   case BathymetryBoundsId:
588     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
589     break;
590   case BathymetrySelectionId:
591     anOp = new HYDROGUI_BathymetrySelectionOp( aModule );
592     break;
593   case BathymetryTextId:
594   case BathymetryRescaleSelectionId:
595   case BathymetryRescaleVisibleId:
596   case BathymetryRescaleUserId:
597   case BathymetryRescaleDefaultId:
598     anOp = new HYDROGUI_BathymetryOp( aModule, theId );
599     break;
600
601   case CreateImmersibleZoneId:
602   case EditImmersibleZoneId:
603     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
604     break;
605   case CreateStreamId:
606   case EditStreamId:
607     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
608     break;
609   case CreateChannelId:
610   case EditChannelId:
611     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
612     break;
613   case CreateDigueId:
614   case EditDigueId:
615     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
616     break;
617   case ImportStricklerTableFromFileId:
618   case ExportStricklerTableFromFileId:
619   case EditStricklerTableId:
620     anOp = new HYDROGUI_StricklerTableOp( aModule, theId );
621     break;
622   case CreateLandCoverMapId:
623   case AddLandCoverId:
624   case RemoveLandCoverId:
625   case SplitLandCoverId:
626   case MergeLandCoverId:
627   case ChangeLandCoverTypeId:
628     anOp = new HYDROGUI_LandCoverMapOp( aModule, theId );
629     break;
630   case DuplicateStricklerTableId:
631     anOp = new HYDROGUI_DuplicateOp( aModule );
632     break;
633   case CreateCalculationId:
634   case EditCalculationId:
635     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
636     break;
637   case ExportCalculationId:
638     anOp = new HYDROGUI_ExportCalculationOp( aModule );
639     break;
640   case FuseImagesId:
641   case EditFusedImageId:
642     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
643     break;
644   case CutImagesId:
645   case EditCutImageId:
646     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
647     break;
648   case SplitImageId:
649   case EditSplitImageId:
650     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplitImageId );
651     break;
652   case ImportObstacleFromFileId:
653     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
654     break;
655   case ImportGeomObjectAsObstacleId:
656     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
657     break;
658   case ImportGeomObjectAsPolylineId:
659     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
660     break;
661   case CreateBoxId:
662     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
663       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
664     break;
665   case CreateCylinderId:
666     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
667       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
668     break;
669   case TranslateObstacleId:
670     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
671     break;
672   case CopyViewerPositionId:
673     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
674     break;
675   case DeleteId:
676     anOp = new HYDROGUI_DeleteOp( aModule );
677     break;
678   case SetColorId:
679     anOp = new HYDROGUI_SetColorOp( aModule );
680     break;
681   case SetTransparencyId:
682     anOp = new HYDROGUI_SetTransparencyOp( aModule );
683     break;
684   case SetZLevelId:
685     anOp = new HYDROGUI_ZLevelsOp( aModule );
686     break;
687   case EditLocalCSId:
688     anOp = new HYDROGUI_LocalCSOp( aModule );
689     break;
690   case RiverBottomId:
691   case RiverBottomContextId:
692     anOp = new HYDROGUI_RiverBottomOp( aModule );
693     break;
694   case RecognizeContoursId:
695     anOp = new HYDROGUI_RecognizeContoursOp( aModule );
696     break;
697   case ShowId:
698   case ShowOnlyId:
699   case ShowAllId:
700   case HideId:
701   case HideAllId:
702     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
703     break;
704   case SubmersibleId:
705     anOp = new HYDROGUI_SubmersibleOp( aModule );
706     break;
707   case PolylineExtractionId:
708     anOp = new HYDROGUI_PolylineExtractionOp( aModule );
709     break;
710   case SplitPolylinesId:
711     anOp = new HYDROGUI_SplitPolylinesOp( aModule );
712     break;
713   case MergePolylinesId:
714     anOp = new HYDROGUI_MergePolylinesOp( aModule );
715     break;
716   case LandCoverScalarMapModeOnId:
717   case LandCoverScalarMapModeOffId:
718     anOp = new HYDROGUI_LandCoverColoringOp( aModule, theId );
719     break;
720   case PolylineStyleId:
721     anOp = new HYDROGUI_PolylineStyleOp( aModule );
722     break;
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 }