]> SALOME platform Git repositories - modules/hydro.git/blob - src/HYDROGUI/HYDROGUI_Operations.cxx
Salome HOME
Merge remote-tracking branch 'origin/BR_SHP_FORMAT2' into BR_LAND_COVER_MAP
[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
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   createAction( ChangeLandCoverTypeId, "CHANGE_LAND_COVER_TYPE", "CHANGE_LAND_COVER_TYPE_ICO" );
179
180   createAction( ImportObstacleFromFileId, "IMPORT_OBSTACLE_FROM_FILE", "IMPORT_OBSTACLE_FROM_FILE_ICO" );
181   createAction( ImportGeomObjectAsObstacleId, "IMPORT_GEOM_OBJECT_AS_OBSTACLE", "IMPORT_GEOM_OBJECT_ICO" );
182   createAction( ImportGeomObjectAsPolylineId, "IMPORT_GEOM_OBJECT_AS_POLYLINE", "IMPORT_GEOM_OBJECT_ICO" );
183   createAction( CreateBoxId, "CREATE_BOX", "CREATE_BOX_ICO" );
184   createAction( CreateCylinderId, "CREATE_CYLINDER", "CREATE_CYLINDER_ICO" );
185   createAction( TranslateObstacleId, "TRANSLATE_OBSTACLE" );
186
187   createAction( CreateCalculationId, "CREATE_CALCULATION", "CREATE_CALCULATION_ICO" );
188   createAction( EditCalculationId, "EDIT_CALCULATION", "EDIT_CALCULATION_ICO" );
189   createAction( ExportCalculationId, "EXPORT_CALCULATION", "EXPORT_CALCULATION_ICO" );
190
191   createAction( FuseImagesId, "FUSE_IMAGES", "FUSE_IMAGES_ICO" );
192   createAction( EditFusedImageId, "EDIT_FUSED_IMAGE", "EDIT_FUSED_IMAGE_ICO" );
193
194   createAction( CutImagesId, "CUT_IMAGES", "CUT_IMAGES_ICO" );
195   createAction( EditCutImageId, "EDIT_CUT_IMAGE", "EDIT_CUT_IMAGE_ICO" );
196
197   createAction( SplitImageId, "SPLIT_IMAGE", "SPLIT_IMAGE_ICO" );
198   createAction( EditSplittedImageId, "EDIT_SPLITTED_IMAGE", "EDIT_SPLITTED_IMAGE_ICO" );
199
200   createAction( RecognizeContoursId, "RECOGNIZE_CONTOURS", "RECOGNIZE_CONTOURS_ICO" );
201
202   createAction( CopyViewerPositionId, "COPY_VIEWER_POSITION", "" );
203
204   createAction( DeleteId, "DELETE", "", Qt::Key_Delete, false,
205                 SLOT( onDelete() ) );
206
207   createAction( SetColorId, "COLOR" );
208   createAction( SetZLevelId, "ZLEVEL" );
209   createAction( EditLocalCSId, "EDIT_LOCAL_CS" );
210
211   createAction( ShowId, "SHOW" );
212   createAction( ShowOnlyId, "SHOW_ONLY" );
213   createAction( ShowAllId, "SHOW_ALL" );
214   createAction( HideId, "HIDE" );
215   createAction( HideAllId, "HIDE_ALL" );
216
217   createAction( RiverBottomId, "CREATE_STREAM_BOTTOM", "CREATE_STREAM_BOTTOM_ICO" );
218   createAction( RiverBottomContextId, "CREATE_STREAM_BOTTOM", "CREATE_STREAM_BOTTOM_ICO" );
219   createAction( ProfileInterpolateId, "PROFILE_INTERPOLATE", "PROFILE_INTERPOLATE_ICO" );
220
221   createAction( SubmersibleId, "SUBMERSIBLE", "SUBMERSIBLE_ICO" );
222   createAction( ExportToShapeFileID, "EXPORT_TO_SHAPE_FILE", "EXPORT_TO_SHAPE_FILE_ICO" );
223
224   createAction( PolylineExtractionId, "POLYLINE_EXTRACTION" );
225   createAction( SplitPolylinesId, "SPLIT_POLYLINES", "SPLIT_POLYLINES_ICO" );
226   createAction( MergePolylinesId, "MERGE_POLYLINES", "MERGE_POLYLINES_ICO" );
227
228   createAction( LandCoverScalarMapModeOnId, "LC_SCALARMAP_COLORING_ON" );
229   createAction( LandCoverScalarMapModeOffId, "LC_SCALARMAP_COLORING_OFF" );
230 }
231
232 void HYDROGUI_Module::createMenus()
233 {
234   int aFileMenu = createMenu( tr( "MEN_DESK_FILE" ), -1, -1, 0 );
235   int aCustomPos = 5; // to insert custom actions after "Save as" and before "Preferences"
236   createMenu( SaveVisualStateId, aFileMenu, aCustomPos );
237   createMenu( separator(), aFileMenu, -1, aCustomPos );
238
239   int anEditMenu = createMenu( tr( "MEN_DESK_EDIT" ), -1, -1, 5 );
240   createMenu( UndoId, anEditMenu );
241   createMenu( RedoId, anEditMenu );
242   createMenu( separator(), anEditMenu );
243   createMenu( CopyId, anEditMenu );
244   createMenu( PasteId, anEditMenu );
245
246   int aHydroMenu = 6; // Edit menu id == 5, View menu id == 10
247   int aHydroId = createMenu( tr( "MEN_DESK_HYDRO" ), -1, -1, aHydroMenu );
248   createMenu( ImportSinusXId, aHydroId, -1, -1 );
249   createMenu( ExportSinusXId, aHydroId, -1, -1 );  
250   
251   createMenu( ImportBathymetryId, aHydroId, -1, -1 );
252   createMenu( ImportStricklerTableFromFileId, aHydroId, -1, -1 );
253   createMenu( CreatePolyline3DId, aHydroId, -1, -1 );
254   createMenu( CreateImmersibleZoneId, aHydroId, -1, -1 );
255   createMenu( CreateChannelId, aHydroId, -1, -1 );
256   createMenu( CreateDigueId, aHydroId, -1, -1 );
257
258   int aNewImageId = createMenu( tr( "MEN_DESK_IMAGE" ), aHydroId, -1 );
259   createMenu( ImportImageId, aNewImageId, -1, -1 );
260   createMenu( separator(), aNewImageId );
261   createMenu( FuseImagesId, aNewImageId, -1, -1 );
262   createMenu( CutImagesId, aNewImageId, -1, -1 );
263   createMenu( SplitImageId, aNewImageId, -1, -1 );
264
265   int aNewPolylineId = createMenu( tr( "MEN_DESK_POLYLINE" ), aHydroId, -1 );
266   createMenu( ImportPolylineId, aNewPolylineId, -1, -1 );
267   createMenu( CreatePolylineId, aNewPolylineId, -1, -1 );
268   createMenu( separator(), aNewPolylineId );
269   createMenu( SplitPolylinesId, aNewPolylineId, -1, -1 );
270   createMenu( MergePolylinesId, aNewPolylineId, -1, -1 );
271
272   int aNewProfileId = createMenu( tr( "MEN_DESK_PROFILE" ), aHydroId, -1 );
273   createMenu( CreateProfileId, aNewProfileId, -1, -1 );
274   createMenu( ImportProfilesId, aNewProfileId, -1, -1 );
275   createMenu( separator(), aNewProfileId );
276   createMenu( AllGeoreferencementId, aNewProfileId, -1, -1 );
277
278   int aStreamMenuId = createMenu( tr( "MEN_DESK_STREAM" ), aHydroId, -1 );
279   createMenu( CreateStreamId, aStreamMenuId, -1, -1 );
280   createMenu( separator(), aStreamMenuId );
281   createMenu( RiverBottomId, aStreamMenuId, -1, -1 );
282   createMenu( ProfileInterpolateId, aStreamMenuId, -1, -1 );
283
284   int anObstacleMenuId = createMenu( tr( "MEN_DESK_OBSTACLE" ), aHydroId, -1 );
285   createMenu( ImportObstacleFromFileId, anObstacleMenuId, -1, -1 );
286   createMenu( separator(), anObstacleMenuId );
287   createMenu( CreateBoxId, anObstacleMenuId, -1, -1 );
288   createMenu( CreateCylinderId, anObstacleMenuId, -1, -1 );
289
290   int aLandCoverMapMenuId = createMenu( tr( "MEN_DESK_LAND_COVER_MAP" ), aHydroId, -1 );
291   createMenu( ImportLandCoverMapId, aLandCoverMapMenuId, -1, -1 );
292   createMenu( CreateLandCoverMapId, aLandCoverMapMenuId, -1, -1 );
293   createMenu( separator(), aLandCoverMapMenuId );
294   createMenu( AddLandCoverId, aLandCoverMapMenuId, -1, -1 );
295   createMenu( RemoveLandCoverId, aLandCoverMapMenuId, -1, -1 );
296   createMenu( separator(), aLandCoverMapMenuId );
297   createMenu( SplitLandCoverId, aLandCoverMapMenuId, -1, -1 );
298   createMenu( MergeLandCoverId, aLandCoverMapMenuId, -1, -1 );
299   createMenu( ChangeLandCoverTypeId, aLandCoverMapMenuId, -1, -1 );
300   
301   createMenu( CreateCalculationId, aHydroId, -1, -1 );
302   createMenu( separator(), aHydroId );
303   createMenu( EditLocalCSId, aHydroId, -1, -1 );
304   createMenu( separator(), aHydroId );
305 }
306
307 void HYDROGUI_Module::createPopups()
308 {
309 }
310
311 void HYDROGUI_Module::createToolbars()
312 {
313   int aToolBar = createTool( tr( "MEN_DESK_HYDRO" ) );
314   createTool( UndoId, aToolBar );
315   createTool( RedoId, aToolBar );
316
317   createTool( separator(), aToolBar );
318   createTool( ImportImageId, aToolBar );
319   createTool( ImportPolylineId, aToolBar );
320   createTool( ImportSinusXId, aToolBar );
321   createTool( ExportSinusXId, aToolBar );
322   createTool( ImportLandCoverMapId, aToolBar );
323
324   createTool( ImportBathymetryId, aToolBar );
325   createTool( CreatePolylineId, aToolBar );
326   createTool( CreatePolyline3DId, aToolBar );
327
328   createTool( separator(), aToolBar );
329   createTool( CreateProfileId, aToolBar );
330   createTool( ImportProfilesId, aToolBar );
331   createTool( AllGeoreferencementId, aToolBar );
332
333   createTool( separator(), aToolBar );
334   createTool( CreateChannelId, aToolBar );
335   createTool( CreateDigueId, aToolBar );
336
337   createTool( separator(), aToolBar );
338   createTool( CreateImmersibleZoneId, aToolBar );
339   createTool( CreateStreamId, aToolBar );
340
341   createTool( separator(), aToolBar );
342   createTool( ImportObstacleFromFileId, aToolBar );
343   createTool( CreateBoxId, aToolBar );
344   createTool( CreateCylinderId, aToolBar );
345
346   createTool( separator(), aToolBar );
347   createTool( ImportStricklerTableFromFileId, aToolBar );
348
349   createTool( separator(), aToolBar );
350   createTool( CreateLandCoverMapId, aToolBar );
351   createTool( AddLandCoverId, aToolBar );
352   createTool( RemoveLandCoverId, aToolBar );
353   createTool( SplitLandCoverId, aToolBar );
354   createTool( MergeLandCoverId, aToolBar );
355   createTool( ChangeLandCoverTypeId, aToolBar );
356
357   createTool( separator(), aToolBar );
358   createTool( CreateCalculationId, aToolBar );
359
360   createTool( separator(), aToolBar );
361   createTool( FuseImagesId, aToolBar );
362   createTool( CutImagesId, aToolBar );
363   createTool( SplitImageId, aToolBar );
364 }
365
366 void HYDROGUI_Module::createUndoRedoActions()
367 {
368   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
369
370   QtxListAction* anEditUndo = new QtxListAction( tr( "MEN_UNDO" ),
371     aResMgr->loadPixmap( "HYDRO", tr( "UNDO_ICO" ) ), tr( "DSK_UNDO" ),
372     Qt::CTRL + Qt::Key_Z, application()->desktop() );
373     
374   QtxListAction* anEditRedo = new QtxListAction( tr( "MEN_REDO" ),
375     aResMgr->loadPixmap( "HYDRO", tr( "REDO_ICO" ) ), tr( "DSK_REDO" ),
376     Qt::CTRL + Qt::Key_Y, application()->desktop() );
377   
378   registerAction( UndoId, anEditUndo );
379   registerAction( RedoId, anEditRedo );
380
381   anEditUndo->setComment( tr( "STB_UNDO" ) );
382   anEditRedo->setComment( tr( "STB_REDO" ) );
383
384   connect( anEditUndo, SIGNAL( triggered( int ) ), this, SLOT( onUndo( int ) ) );
385   connect( anEditRedo, SIGNAL( triggered( int ) ), this, SLOT( onRedo( int ) ) );
386 }
387
388 void HYDROGUI_Module::updateUndoRedoControls()
389 {
390   HYDROGUI_DataModel* aModel = getDataModel();
391
392   QtxListAction* aUndoAction = (QtxListAction*)action( UndoId );
393   QtxListAction* aRedoAction = (QtxListAction*)action( RedoId );
394
395   bool aCanUndo = aModel->canUndo();
396   bool aCanRedo = aModel->canRedo();
397
398   if( aCanUndo )
399     aUndoAction->addNames( aModel->undoNames() );
400   aUndoAction->setEnabled( aCanUndo );
401
402   if( aCanRedo )
403     aRedoAction->addNames( aModel->redoNames() );
404   aRedoAction->setEnabled( aCanRedo );
405 }
406
407 void HYDROGUI_Module::onOperation()
408 {
409   const QAction* anAction = dynamic_cast<const QAction*>( sender() );
410   int anId = actionId( anAction );
411   if( anId >= 0 )
412     startOperation( anId );
413 }
414
415 void HYDROGUI_Module::onDelete()
416 {
417   SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
418   HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
419   if ( aPolylineOp && aPolylineOp->deleteEnabled() )
420     aPolylineOp->deleteSelected();
421   else
422     startOperation( DeleteId );
423 }
424
425 bool HYDROGUI_Module::onUndo( int theNumActions )
426 {
427   QApplication::setOverrideCursor( Qt::WaitCursor );
428   bool anIsOk = true;
429   HYDROGUI_DataModel* aModel = getDataModel();
430   if( aModel )
431   {
432     while( theNumActions > 0 )
433     {
434       if( !aModel->undo() )
435       {
436         anIsOk = false;
437         break;
438       }
439       theNumActions--;
440     }
441     update( UF_All );
442   }
443   QApplication::restoreOverrideCursor();
444   return anIsOk;
445 }
446
447 bool HYDROGUI_Module::onRedo( 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->redo() )
457       {
458         anIsOk = false;
459         break;
460       }
461       theNumActions--;
462     }
463     update( UF_All );
464   }
465   QApplication::restoreOverrideCursor();
466   return anIsOk;
467 }
468
469 LightApp_Operation* HYDROGUI_Module::createOperation( const int theId ) const
470 {
471   LightApp_Operation* anOp = 0;
472   HYDROGUI_Module* aModule = const_cast<HYDROGUI_Module*>( this );
473   switch( theId )
474   {
475   case SaveVisualStateId:
476   case LoadVisualStateId:
477     anOp = new HYDROGUI_VisualStateOp( aModule, theId == LoadVisualStateId );
478     break;
479   case CopyId:
480   case PasteId:
481     anOp = new HYDROGUI_CopyPasteOp( aModule, theId == PasteId );
482     break;
483   case ImportImageId:
484   case EditImportedImageId:
485     anOp = new HYDROGUI_ImportImageOp( aModule, theId == EditImportedImageId );
486     break;
487   case ImportPolylineId:
488     anOp = new HYDROGUI_ImportPolylineOp( aModule/*, theId == EditImportedPolylineId*/ );
489     break;
490   case ImportSinusXId:
491     anOp = new HYDROGUI_ImportSinusXOp( aModule );
492     break;
493   case ExportSinusXId:
494     anOp = new HYDROGUI_ExportSinusXOp( aModule );
495     break;
496   case ObserveImageId:
497     anOp = new HYDROGUI_ObserveImageOp( aModule );
498     break;
499   case ExportImageId:
500     anOp = new HYDROGUI_ExportImageOp( aModule );
501     break;
502   case UpdateObjectId:
503   case ForcedUpdateObjectId:
504     anOp = new HYDROGUI_UpdateObjectOp( aModule, theId == ForcedUpdateObjectId );
505     break;
506   case ExportToShapeFileID:
507     anOp = new HYDROGUI_ExportFileOp( aModule );
508     break;
509   case ImportLandCoverMapId:
510     anOp = new HYDROGUI_ImportLandCoverMapOp( aModule );
511     break;
512   case RemoveImageRefsId:
513     anOp = new HYDROGUI_RemoveImageRefsOp( aModule );
514     break;
515   case CreatePolyline3DId:
516   case EditPolyline3DId:
517     anOp = new HYDROGUI_Poly3DOp( aModule, theId == EditPolyline3DId );
518     break;
519   case CreatePolylineId:
520   case EditPolylineId:
521     anOp = new HYDROGUI_PolylineOp( aModule, theId == EditPolylineId );
522     break;
523   case CreateProfileId:
524   case EditProfileId:
525     anOp = new HYDROGUI_ProfileOp( aModule, theId == EditProfileId );
526     break;
527   case ProfileInterpolateId:
528     anOp = new HYDROGUI_ProfileInterpolateOp( aModule );
529     break;
530   case ImportProfilesId:
531     anOp = new HYDROGUI_ImportProfilesOp( aModule ) ;
532     break;
533   case AllGeoreferencementId:
534     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::All ) ;
535     break;
536   case SelectedGeoreferencementId:
537     anOp = new HYDROGUI_GeoreferencementOp( aModule, HYDROGUI_GeoreferencementOp::Selected ) ;
538     break;
539   case ImportBathymetryId:
540   case EditImportedBathymetryId:
541     anOp = new HYDROGUI_ImportBathymetryOp( aModule, theId == EditImportedBathymetryId  );
542     break;
543   case BathymetryBoundsId:
544     anOp = new HYDROGUI_BathymetryBoundsOp( aModule );
545     break;
546   case CreateImmersibleZoneId:
547   case EditImmersibleZoneId:
548     anOp = new HYDROGUI_ImmersibleZoneOp( aModule, theId == EditImmersibleZoneId );
549     break;
550   case CreateStreamId:
551   case EditStreamId:
552     anOp = new HYDROGUI_StreamOp( aModule, theId == EditStreamId );
553     break;
554   case CreateChannelId:
555   case EditChannelId:
556     anOp = new HYDROGUI_ChannelOp( aModule, theId == EditChannelId );
557     break;
558   case CreateDigueId:
559   case EditDigueId:
560     anOp = new HYDROGUI_DigueOp( aModule, theId == EditDigueId );
561     break;
562   case ImportStricklerTableFromFileId:
563   case ExportStricklerTableFromFileId:
564   case EditStricklerTableId:
565     anOp = new HYDROGUI_StricklerTableOp( aModule, theId );
566     break;
567   case CreateLandCoverMapId:
568   case AddLandCoverId:
569   case RemoveLandCoverId:
570   case SplitLandCoverId:
571   case MergeLandCoverId:
572     anOp = new HYDROGUI_LandCoverMapOp( aModule, theId );
573     break;
574   case ChangeLandCoverTypeId:
575     anOp = new HYDROGUI_LandCoverMapOp( aModule, theId );
576     break;
577   case DuplicateStricklerTableId:
578     anOp = new HYDROGUI_DuplicateOp( aModule );
579     break;
580   case CreateCalculationId:
581   case EditCalculationId:
582     anOp = new HYDROGUI_CalculationOp( aModule, theId == EditCalculationId );
583     break;
584   case ExportCalculationId:
585     anOp = new HYDROGUI_ExportCalculationOp( aModule );
586     break;
587   case FuseImagesId:
588   case EditFusedImageId:
589     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Fuse, theId == EditFusedImageId );
590     break;
591   case CutImagesId:
592   case EditCutImageId:
593     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Cut, theId == EditCutImageId );
594     break;
595   case SplitImageId:
596   case EditSplittedImageId:
597     anOp = new HYDROGUI_TwoImagesOp( aModule, HYDROGUI_TwoImagesOp::Split, theId == EditSplittedImageId );
598     break;
599   case ImportObstacleFromFileId:
600     anOp = new HYDROGUI_ImportObstacleFromFileOp( aModule );
601     break;
602   case ImportGeomObjectAsObstacleId:
603     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsObstacle );
604     break;
605   case ImportGeomObjectAsPolylineId:
606     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, HYDROGUI_ImportGeomObjectOp::ImportSelectedAsPolyline );
607     break;
608   case CreateBoxId:
609     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
610       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpBox );
611     break;
612   case CreateCylinderId:
613     anOp = new HYDROGUI_ImportGeomObjectOp( aModule, 
614       HYDROGUI_ImportGeomObjectOp::ImportCreatedAsObstacle, GEOMOp::OpCylinder );
615     break;
616   case TranslateObstacleId:
617     anOp = new HYDROGUI_TranslateObstacleOp( aModule );
618     break;
619   case CopyViewerPositionId:
620     anOp = new HYDROGUI_CopyPastePositionOp( aModule, false );
621     break;
622   case DeleteId:
623     anOp = new HYDROGUI_DeleteOp( aModule );
624     break;
625   case SetColorId:
626     anOp = new HYDROGUI_SetColorOp( aModule );
627     break;
628   case SetZLevelId:
629     anOp = new HYDROGUI_ZLevelsOp( aModule );
630     break;
631   case EditLocalCSId:
632     anOp = new HYDROGUI_LocalCSOp( aModule );
633     break;
634   case RiverBottomId:
635   case RiverBottomContextId:
636     anOp = new HYDROGUI_RiverBottomOp( aModule );
637     break;
638   case RecognizeContoursId:
639     anOp = new HYDROGUI_RecognizeContoursOp( aModule );
640     break;
641   case ShowId:
642   case ShowOnlyId:
643   case ShowAllId:
644   case HideId:
645   case HideAllId:
646     anOp = new HYDROGUI_ShowHideOp( aModule, theId );
647     break;
648   case SubmersibleId:
649     anOp = new HYDROGUI_SubmersibleOp( aModule );
650     break;
651   case PolylineExtractionId:
652     anOp = new HYDROGUI_PolylineExtractionOp( aModule );
653     break;
654   case SplitPolylinesId:
655     anOp = new HYDROGUI_SplitPolylinesOp( aModule );
656     break;
657   case MergePolylinesId:
658     anOp = new HYDROGUI_MergePolylinesOp( aModule );
659     break;
660   case LandCoverScalarMapModeOnId:
661   case LandCoverScalarMapModeOffId:
662     anOp = new HYDROGUI_LandCoverColoringOp( aModule, theId );
663     break;
664   }
665
666   if( !anOp )
667     anOp = LightApp_Module::createOperation( theId );
668
669   return anOp;
670 }
671
672 bool HYDROGUI_Module::reusableOperation( const int id )
673 {
674   if ( id == ImportGeomObjectAsObstacleId ||
675        id == ImportGeomObjectAsPolylineId ) {
676     return false;
677   }
678
679   return LightApp_Module::reusableOperation( id );
680 }
681
682 /**
683  * Returns true if the object with the given entry can be renamed.
684  * @param theEntry the object entry
685  */
686 bool HYDROGUI_Module::renameAllowed( const QString& theEntry ) const
687 {
688   // Allow to rename all HYDRO objects
689   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
690   return !anEntity.IsNull();
691 }
692 /**
693  * Returns true if the object with the given entry is renamed.
694  * @param theEntry the object entry
695  * @param theName the new name
696  */
697 bool HYDROGUI_Module::renameObject( const QString& theEntry, const QString& theName )
698 {
699   Handle(HYDROData_Entity) anEntity = getDataModel()->objectByEntry( theEntry );
700   bool aRes = false;
701   if ( !anEntity.IsNull() )
702   {
703     HYDROGUI_DataModel* aModel = getDataModel();
704     if( aModel )
705     {
706       if( anEntity->GetName() != theName )
707       {
708         // check that there are no other objects with the same name in the document
709         Handle(HYDROData_Entity) anObject = HYDROGUI_Tool::FindObjectByName( this, theName );
710         if ( anObject.IsNull() )
711         {
712           SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
713           if ( anOp && anOp->inherits( "HYDROGUI_CalculationOp" ) )
714           {
715             anEntity->SetName( theName );
716             aRes = true;
717           }
718           else
719           {
720             aRes = aModel->rename( anEntity, theName );
721           }
722         }
723         else
724         {
725           // Inform the user that the name is already used
726           QString aTitle = QObject::tr( "INSUFFICIENT_INPUT_DATA" );
727           QString aMessage = QObject::tr( "OBJECT_EXISTS_IN_DOCUMENT" ).arg( theName );
728           SUIT_MessageBox::critical( getApp()->desktop(), aTitle, aMessage );
729         }
730       }
731     }
732   }
733   return aRes;
734 }