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