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