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