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