Salome HOME
77aecedec32b355f6ba39745ce9d1507bdb22943
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Module.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_Module.h"
20
21 #include "HYDROGUI.h"
22 #include "HYDROGUI_DataModel.h"
23 #include "HYDROGUI_DataObject.h"
24 #include "HYDROGUI_Displayer.h"
25 #include "HYDROGUI_GVSelector.h"
26 #include "HYDROGUI_InputPanel.h"
27 #include "HYDROGUI_ObjSelector.h"
28 #include "HYDROGUI_OCCDisplayer.h"
29 #include "HYDROGUI_OCCSelector.h"
30 #include "HYDROGUI_Operations.h"
31 #include "HYDROGUI_PrsImage.h"
32 #include "HYDROGUI_Tool.h"
33 #include "HYDROGUI_UpdateFlags.h"
34 #include "HYDROGUI_Shape.h"
35 #include "HYDROGUI_VTKPrs.h"
36 #include "HYDROGUI_VTKPrsDisplayer.h"
37 #include "HYDROGUI_AbstractDisplayer.h"
38 #include "HYDROGUI_PolylineOp.h"
39 #include "HYDROGUI_SetColorOp.h"
40 #include "HYDROGUI_ImportGeomObjectOp.h"
41 #include "HYDROGUI_ShowHideOp.h"
42
43 #include <HYDROData_Tool.h>
44 #include <HYDROData_Image.h>
45 #include <HYDROData_Stream.h>
46 #include <HYDROData_Profile.h>
47 #include <HYDROData_Lambert93.h>
48 #include <HYDROData_Polyline3D.h>
49 #include <HYDROData_StricklerTable.h>
50
51 #include <HYDROData_OperationsFactory.h>
52
53 #include <CurveCreator_Utils.hxx>
54
55 #include <GraphicsView_ViewFrame.h>
56 #include <GraphicsView_ViewManager.h>
57 #include <GraphicsView_ViewPort.h>
58 #include <GraphicsView_Viewer.h>
59
60 #include <ImageComposer_CutOperator.h>
61 #include <ImageComposer_CropOperator.h>
62 #include <ImageComposer_FuseOperator.h>
63
64 #include <LightApp_Application.h>
65 #include <LightApp_DataOwner.h>
66 #include <LightApp_GVSelector.h>
67 #include <LightApp_SelectionMgr.h>
68 #include <LightApp_UpdateFlags.h>
69
70 #include <SalomeApp_Study.h>
71
72 #include <OCCViewer_ViewFrame.h>
73 #include <OCCViewer_ViewManager.h>
74 #include <OCCViewer_ViewModel.h>
75
76 #include <SALOME_Event.h>
77
78 #include <SUIT_DataBrowser.h>
79 #include <SUIT_DataObject.h>
80 #include <SUIT_ViewManager.h>
81 #include <SUIT_ResourceMgr.h>
82 #include <SUIT_Desktop.h>
83 #include <SUIT_Study.h>
84 #include <SUIT_Session.h>
85
86 #include <SVTK_ViewManager.h>
87 #include <SVTK_ViewModel.h>
88 #include <SVTK_ViewWindow.h>
89 #include <SVTK_Selector.h>
90
91 #include <OCCViewer_ViewPort3d.h>
92
93 #include <GEOMUtils.hxx>
94 #include <GeometryGUI.h>
95
96 #include <SALOMEDS_wrap.hxx>
97
98 #include <QAction>
99 #include <QApplication>
100 #include <QGraphicsSceneMouseEvent>
101 #include <QMenu>
102 #include <QMouseEvent>
103 #include <QStatusBar>
104 #include <QCursor>
105
106 static int ViewManagerId = 0;
107
108 extern "C" HYDRO_EXPORT CAM_Module* createModule()
109 {
110   return new HYDROGUI_Module();
111 }
112
113 extern "C" HYDRO_EXPORT char* getModuleVersion()
114 {
115   return (char*)HYDRO_VERSION;
116 }
117
118 HYDROGUI_Module::HYDROGUI_Module()
119 : LightApp_Module( "HYDRO" ),
120   myDisplayer( 0 ),
121   myOCCDisplayer( 0 ),
122   myIsUpdateEnabled( true )
123 {
124 }
125
126 HYDROGUI_Module::~HYDROGUI_Module()
127 {
128 }
129
130 int HYDROGUI_Module::getStudyId() const
131 {
132   LightApp_Application* anApp = getApp();
133   return anApp ? anApp->activeStudy()->id() : 0;
134 }
135
136 void HYDROGUI_Module::initialize( CAM_Application* theApp )
137 {
138   LightApp_Module::initialize( theApp );
139
140   createActions();
141   createUndoRedoActions();
142   createMenus();
143   createPopups();
144   createToolbars();
145
146   setMenuShown( false );
147   setToolShown( false );
148
149   myDisplayer = new HYDROGUI_Displayer( this );
150   myOCCDisplayer = new HYDROGUI_OCCDisplayer( this );
151   myVTKDisplayer = new HYDROGUI_VTKPrsDisplayer( this );
152 }
153
154 bool HYDROGUI_Module::activateModule( SUIT_Study* theStudy )
155 {
156   bool aRes = LightApp_Module::activateModule( theStudy );
157
158   LightApp_Application* anApp = getApp();
159   SUIT_Desktop* aDesktop = anApp->desktop();
160
161   getApp()->setEditEnabled( false ); // hide SalomeApp copy/paste actions
162
163   setMenuShown( true );
164   setToolShown( true );
165
166 #ifndef DISABLE_PYCONSOLE
167   aDesktop->tabifyDockWidget( HYDROGUI_Tool::WindowDock( anApp->getWindow( LightApp_Application::WT_PyConsole ) ), 
168                               HYDROGUI_Tool::WindowDock( anApp->getWindow( LightApp_Application::WT_LogWindow ) ) );
169 #endif
170
171   // Remove defunct view managers from the map.
172   // It's essential to do this before "update( UF_All )" call!
173   QList<int> anObsoleteIds;
174   ViewManagerList anAllViewManagers = anApp->viewManagers();
175   ViewManagerList aHydroViewManagers; // view managers created inside the HYDRO module
176   ViewManagerMapIterator anIter( myViewManagerMap );
177   while( anIter.hasNext() ) {
178     int anId = anIter.next().key();
179     const ViewManagerInfo& anInfo = anIter.value();
180   
181     aHydroViewManagers << anInfo.first;
182
183     if ( !anAllViewManagers.contains( anInfo.first ) ) {
184       anObsoleteIds << anId;
185     }
186   }
187   foreach ( const int anId, anObsoleteIds ) {
188     myViewManagerMap.remove( anId );
189     myObjectStateMap.remove( anId );
190     myShapesMap.remove( anId );
191     myVTKPrsMap.remove( anId );
192   }
193   // Replace the default selector for all view managers.
194   // Add view managers created outside of HYDRO module to the map.
195   foreach ( SUIT_ViewManager* aViewManager, anAllViewManagers ) {
196     createSelector( aViewManager ); // replace the default selector
197     if ( !aHydroViewManagers.contains( aViewManager ) ) {
198       ViewManagerInfo anInfo( aViewManager, VMR_General );
199       myViewManagerMap.insert( ViewManagerId++, anInfo );
200     }
201   }
202
203   update( UF_All );
204
205   updateCommandsStatus();
206
207   HYDROGUI_Tool::setOCCActionShown( this, OCCViewer_ViewWindow::MaximizedId, false );
208
209   ViewManagerList anOCCViewManagers;
210   anApp->viewManagers( OCCViewer_Viewer::Type(), anOCCViewManagers );
211   foreach ( const SUIT_ViewManager* aViewManager, anOCCViewManagers ) {
212     connect( aViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
213              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
214     foreach( SUIT_ViewWindow* aViewWindow, aViewManager->getViews() ) {
215       OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( aViewWindow );
216       if ( aViewFrame && aViewFrame->getViewPort() ) {
217         aViewFrame->getViewPort()->installEventFilter( this );
218       }
219     }
220   }
221
222   // Load GEOM data
223   SalomeApp_Study* aStudy = 
224     dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() );
225   if ( aStudy ) {
226     SALOMEDS::Study_var aDSStudy = GeometryGUI::ClientStudyToStudy( aStudy->studyDS() );
227     GEOM::GEOM_Gen_var aGeomEngine = GeometryGUI::GetGeomGen();
228     if ( !aGeomEngine->_is_nil() && !aGeomEngine->_is_nil() ) {
229       SALOMEDS::StudyBuilder_var aStudyBuilder = aDSStudy->NewBuilder();
230       SALOMEDS::SComponent_wrap GEOM_var = aDSStudy->FindComponent( "GEOM" );
231       if( !GEOM_var->_is_nil() ) {
232         aStudyBuilder->LoadWith( GEOM_var, aGeomEngine );
233       }
234     }
235   }
236
237 //  SUIT_DataBrowser* ob = getApp()->objectBrowser();
238 //  SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( ob->model() );
239 //  treeModel->setAppropriate( SUIT_DataObject::VisibilityId, Qtx::Toggled );
240
241   return aRes;
242 }
243
244 bool HYDROGUI_Module::deactivateModule( SUIT_Study* theStudy )
245 {
246   /* Issues ## 68, 88.
247   ViewManagerMapIterator anIter( myViewManagerMap );
248   while( anIter.hasNext() )
249     if( SUIT_ViewManager* aViewManager = anIter.next().value().first )
250       getApp()->removeViewManager( aViewManager );
251   myViewManagerMap.clear();
252   */
253
254   ViewManagerList anOCCViewManagers;
255   getApp()->viewManagers( OCCViewer_Viewer::Type(), anOCCViewManagers );
256   foreach ( const SUIT_ViewManager* aViewManager, anOCCViewManagers ) {
257     disconnect( aViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
258                 this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
259   }
260
261   /* Issues ## 68, 88.
262   myObjectStateMap.clear();
263   myShapesMap.clear();
264   myVTKPrsMap.clear();
265   */
266
267   // clear the status bar
268   SUIT_Desktop* aDesktop = getApp()->desktop();
269   if ( aDesktop && aDesktop->statusBar() ) {
270     aDesktop->statusBar()->clearMessage();
271   }
272
273   // clear the data model's list of copying objects
274   HYDROGUI_DataModel::changeCopyingObjects( HYDROData_SequenceOfObjects() );
275
276   setMenuShown( false );
277   setToolShown( false );
278
279   getApp()->setEditEnabled( true ); // show SalomeApp copy/paste actions
280
281   HYDROGUI_Tool::setOCCActionShown( this, OCCViewer_ViewWindow::MaximizedId, true );
282
283   myActiveOperationMap.clear();
284   return LightApp_Module::deactivateModule( theStudy );
285 }
286
287 void HYDROGUI_Module::windows( QMap<int, int>& theMap ) const
288 {
289   theMap.clear();
290   theMap.insert( LightApp_Application::WT_LogWindow,     Qt::BottomDockWidgetArea );
291 #ifndef DISABLE_PYCONSOLE
292   theMap.insert( LightApp_Application::WT_PyConsole,     Qt::BottomDockWidgetArea );
293 #endif
294   theMap.insert( LightApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea   );
295 }
296
297 void HYDROGUI_Module::viewManagers( QStringList& theTypesList ) const
298 {
299   theTypesList << GraphicsView_Viewer::Type() << OCCViewer_Viewer::Type();
300 }
301
302 void HYDROGUI_Module::contextMenuPopup( const QString& theClient,
303                                         QMenu* theMenu,
304                                         QString& theTitle )
305 {
306   HYDROGUI_DataModel* aModel = getDataModel();
307
308   bool anIsObjectBrowser = theClient == getApp()->objectBrowser()->popupClientType();
309   bool anIsGraphicsView = theClient == GraphicsView_Viewer::Type();
310   bool anIsOCCView = theClient == OCCViewer_Viewer::Type();
311   bool anIsVTKView = theClient == SVTK_Viewer::Type();
312   if( !anIsObjectBrowser && !anIsGraphicsView && !anIsOCCView && !anIsVTKView )
313     return;
314
315   size_t anActiveViewId = HYDROGUI_Tool::GetActiveViewId( this );
316
317   bool anIsSelectedDataObjects = false;
318   bool anIsVisibleInSelection = false;
319   bool anIsHiddenInSelection = false;
320
321   bool anIsImage = false;
322   bool anIsImportedImage = false;
323   bool anIsImageHasRefs = false;
324   bool anIsFusedImage = false;
325   bool anIsCutImage = false;
326   bool anIsSplittedImage = false;
327   bool anIsMustObjectBeUpdated = false;
328   bool anIsPolyline = false;
329   bool anIsPolyline3D = false;
330   bool anIsProfile = false;
331   bool anIsValidProfile = false;
332   bool anAllAreProfiles = false;
333   bool anIsBathymetry = false;
334   bool anIsCalculation = false;
335   bool anIsImmersibleZone = false;
336   bool anIsVisualState = false;
337   bool anIsRegion = false;
338   bool anIsZone = false;
339   bool anIsObstacle = false;
340   bool anIsStricklerTable = false;
341   bool anIsLandCover = false;
342   bool anIsStream = false;
343   bool anIsChannel = false;
344   bool anIsDigue = false;
345   bool anIsDummyObject3D = false;
346   bool anIsGroup = false;
347   bool anIsObjectCanBeColored = false;
348   bool isRoot = false;
349   bool isStreamHasBottom = false;
350
351   SUIT_SelectionMgr* aSelectionMgr = getApp()->selectionMgr();
352   SUIT_DataOwnerPtrList anOwners;
353   aSelectionMgr->selected( anOwners );
354   if( anIsObjectBrowser && anOwners.size()==1 )
355   {
356     QString anEntry = anOwners[0]->keyString();
357     LightApp_Study* aStudy = dynamic_cast<LightApp_Study*>( getApp()->activeStudy() );
358     if( aStudy )
359       isRoot = aStudy->isComponent( anEntry );
360   }
361
362   // Check the selected GEOM objects (take into account the Object Browser only)
363   if ( anIsObjectBrowser ) {
364     QList<GEOM::shape_type> anObstacleTypes = 
365       HYDROGUI_ImportGeomObjectOp::getObstacleTypes();
366     QList<GEOM::shape_type> aPolylineTypes = 
367       HYDROGUI_ImportGeomObjectOp::getPolylineTypes();
368
369     bool isCanBeImportedAsObstacle = 
370       !HYDROGUI_Tool::GetSelectedGeomObjects( this, anObstacleTypes ).isEmpty();
371     bool isCanBeImportedAsPolyline = 
372       !HYDROGUI_Tool::GetSelectedGeomObjects( this, aPolylineTypes ).isEmpty();
373
374     // Add import as obstacle action
375     if ( isCanBeImportedAsObstacle ) {
376       theMenu->addAction( action( ImportGeomObjectAsObstacleId ) );
377     }
378     // Add import as polyline action
379     if ( isCanBeImportedAsPolyline ) {
380       theMenu->addAction( action( ImportGeomObjectAsPolylineId ) );
381     }
382     // Add separator
383     if ( isCanBeImportedAsObstacle || isCanBeImportedAsPolyline ) {
384       theMenu->addSeparator();
385     }
386   }
387
388   // check the selected data model objects
389   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( this );
390   int aNbOfSelectedProfiles = 0;
391   for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
392   {
393     Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
394     if( !anObject.IsNull() )
395     {
396       anIsSelectedDataObjects = true;
397
398       bool aVisibility = isObjectVisible( anActiveViewId, anObject );
399       anIsVisibleInSelection |= aVisibility;
400       anIsHiddenInSelection |= !aVisibility;
401
402       if ( anObject->CanBeUpdated() && anObject->IsMustBeUpdated() )
403       {
404         anIsMustObjectBeUpdated = true;
405       }
406
407       ObjectKind anObjectKind = anObject->GetKind();
408       if( anObjectKind == KIND_IMAGE )
409       {
410         anIsImage = true;
411         Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( anObject );
412         if( !anImage.IsNull() )
413         {
414           anIsImportedImage = anImage->HasLocalPoints();
415           anIsImageHasRefs = anImage->HasReferences();
416           if( HYDROData_OperationsFactory* aFactory = HYDROData_OperationsFactory::Factory() )
417           {
418             if( ImageComposer_Operator* anOperator = aFactory->Operator( anImage ) )
419             {
420               QString anOperatorName = anOperator->name();
421               if( anOperatorName == ImageComposer_FuseOperator::Type() )
422                 anIsFusedImage = true;
423               else if( anOperatorName == ImageComposer_CutOperator::Type() )
424                 anIsCutImage = true;
425               else if( anOperatorName == ImageComposer_CropOperator::Type() )
426                 anIsSplittedImage = true;
427             }
428           }
429         }
430       }
431       else if( anObjectKind == KIND_POLYLINEXY )
432         anIsPolyline = true;
433       else if( anObjectKind == KIND_POLYLINE )
434         anIsPolyline3D = true;
435       else if( anObjectKind == KIND_PROFILE )
436       {
437         anIsProfile = true;
438         aNbOfSelectedProfiles++;
439
440         Handle(HYDROData_Profile) aProfile = 
441           Handle(HYDROData_Profile)::DownCast( anObject );
442         if( !aProfile.IsNull() && aProfile->IsValid() ) {
443           anIsValidProfile = true;
444         }
445       }
446       else if( anObjectKind == KIND_CALCULATION )
447         anIsCalculation = true;
448       else if( anObjectKind == KIND_IMMERSIBLE_ZONE )
449         anIsImmersibleZone = true;
450       else if( anObjectKind == KIND_VISUAL_STATE )
451         anIsVisualState = true;
452       else if( anObjectKind == KIND_REGION )
453         anIsRegion = true;
454       else if( anObjectKind == KIND_ZONE )
455         anIsZone = true;
456       else if( anObjectKind == KIND_BATHYMETRY )
457         anIsBathymetry = true;
458       else if( anObjectKind == KIND_OBSTACLE )
459         anIsObstacle = true;
460       else if( anObjectKind == KIND_STRICKLER_TABLE )
461         anIsStricklerTable = true;
462       else if( anObjectKind == KIND_LAND_COVER )
463         anIsLandCover = true;
464       else if( anObjectKind == KIND_STREAM )
465       {
466         anIsStream = true;
467         Handle(HYDROData_Stream) aStream = 
468           Handle(HYDROData_Stream)::DownCast( anObject );
469         if ( !aStream.IsNull() )
470             isStreamHasBottom = !aStream->GetBottomPolyline().IsNull();
471       }
472       else if( anObjectKind == KIND_CHANNEL )
473         anIsChannel = true;
474       else if( anObjectKind == KIND_DIGUE )
475         anIsDigue = true;
476       else if( anObjectKind == KIND_DUMMY_3D )
477         anIsDummyObject3D = true;
478       else if( anObjectKind == KIND_SHAPES_GROUP || anObjectKind == KIND_SPLITTED_GROUP )
479         anIsGroup = true;
480     }
481
482     if ( !anIsObjectCanBeColored )
483       anIsObjectCanBeColored = HYDROGUI_SetColorOp::CanObjectBeColored( anObject, this );
484   }
485
486   // Check if all selected objects are profiles
487   anAllAreProfiles = ( aNbOfSelectedProfiles > 0 ) &&
488                      ( aNbOfSelectedProfiles == aSeq.Length() );
489
490   // check the selected partitions
491   if( !anIsSelectedDataObjects && anIsObjectBrowser )
492   {
493     ObjectKind aSelectedPartition = HYDROGUI_Tool::GetSelectedPartition( this );
494     if( aSelectedPartition != KIND_UNKNOWN )
495     {
496       switch( aSelectedPartition )
497       {
498         case KIND_IMAGE:
499           theMenu->addAction( action( ImportImageId ) );
500           break;
501         case KIND_BATHYMETRY:
502           theMenu->addAction( action( ImportBathymetryId ) );
503           break;
504         case KIND_ARTIFICIAL_OBJECT:
505           theMenu->addAction( action( CreateChannelId ) );
506           theMenu->addAction( action( CreateDigueId ) );
507           break;
508         case KIND_NATURAL_OBJECT:
509           theMenu->addAction( action( CreateImmersibleZoneId ) );
510           theMenu->addAction( action( CreateStreamId ) );
511           break;
512         case KIND_OBSTACLE:
513           theMenu->addAction( action( ImportObstacleFromFileId ) );
514           theMenu->addAction( action( CreateBoxId ) );
515           theMenu->addAction( action( CreateCylinderId ) );
516           break;
517         case KIND_STRICKLER_TABLE:
518           theMenu->addAction( action( ImportStricklerTableFromFileId ) );          
519           break;
520         case KIND_LAND_COVER:
521           theMenu->addAction( action( CreateLandCoverId ) );          
522           break;
523         case KIND_CALCULATION:
524           theMenu->addAction( action( CreateCalculationId ) );
525           break;
526         case KIND_POLYLINEXY:
527           theMenu->addAction( action( CreatePolylineId ) );
528           break;
529         case KIND_POLYLINE:
530           theMenu->addAction( action( CreatePolyline3DId ) );
531           break;
532         case KIND_PROFILE:
533           theMenu->addAction( action( CreateProfileId ) );
534           theMenu->addAction( action( ImportProfilesId ) );
535           theMenu->addAction( action( AllGeoreferencementId ) );
536           break;
537         case KIND_VISUAL_STATE:
538           theMenu->addAction( action( SaveVisualStateId ) );
539           break;
540       }
541       theMenu->addSeparator();
542     }
543   }
544
545   if( anIsSelectedDataObjects )
546   {
547     if ( anIsMustObjectBeUpdated )
548     {
549       theMenu->addAction( action( UpdateObjectId ) );
550       theMenu->addSeparator();
551     }
552     else
553     {
554       theMenu->addAction( action( ForcedUpdateObjectId ) );
555       theMenu->addSeparator();
556     }
557
558
559     if( aSeq.Length() == 1 )
560     {
561       if( anIsImage )
562       {
563         if( anIsImportedImage )
564           theMenu->addAction( action( EditImportedImageId ) );
565         else if( anIsImageHasRefs )
566         {
567           if( anIsFusedImage )
568             theMenu->addAction( action( EditFusedImageId ) );
569           else if( anIsCutImage )
570             theMenu->addAction( action( EditCutImageId ) );
571           else if( anIsSplittedImage )
572             theMenu->addAction( action( EditSplittedImageId ) );
573         }
574
575         //RKV: BUG#98: theMenu->addAction( action( ObserveImageId ) );
576         theMenu->addAction( action( ExportImageId ) );
577         theMenu->addSeparator();
578
579         if( anIsImageHasRefs )
580         {
581           theMenu->addAction( action( RemoveImageRefsId ) );
582           theMenu->addSeparator();
583         }
584
585         theMenu->addAction( action( FuseImagesId ) );
586         theMenu->addAction( action( CutImagesId ) );
587         theMenu->addAction( action( SplitImageId ) );
588         theMenu->addSeparator();
589         theMenu->addAction( action( RecognizeContoursId ) );
590         theMenu->addSeparator();
591       }
592       else if( anIsBathymetry )
593       {
594         theMenu->addAction( action( EditImportedBathymetryId ) );
595         theMenu->addAction( action( BathymetryBoundsId ) );
596         theMenu->addSeparator();
597       }
598       else if( anIsPolyline )
599       {
600         theMenu->addAction( action( EditPolylineId ) );
601         theMenu->addSeparator();
602       }
603       else if( anIsPolyline3D )
604       {
605         theMenu->addAction( action( EditPolyline3DId ) );
606         theMenu->addSeparator();
607       }
608       else if( anIsProfile )
609       {
610         theMenu->addAction( action( EditProfileId ) );
611         theMenu->addAction( action( SelectedGeoreferencementId ) );
612         theMenu->addSeparator();
613       }
614       else if( anIsCalculation )
615       {
616         theMenu->addAction( action( EditCalculationId ) );
617         theMenu->addAction( action( ExportCalculationId ) );
618         theMenu->addSeparator();
619       }
620       else if( anIsImmersibleZone )
621       {
622         theMenu->addAction( action( EditImmersibleZoneId ) );
623         theMenu->addSeparator();
624       }
625       else if( anIsStream )
626       {
627         theMenu->addAction( action( EditStreamId ) );
628         if ( action( RiverBottomContextId ) )
629         {
630             theMenu->addAction( action( RiverBottomContextId ) );
631             action( RiverBottomContextId )->setEnabled( !isStreamHasBottom );
632         }
633         theMenu->addAction( action( ProfileInterpolateId ) );
634         theMenu->addSeparator();
635       }
636       else if( anIsChannel )
637       {
638         theMenu->addAction( action( EditChannelId ) );
639         theMenu->addSeparator();
640       }
641       else if( anIsDigue )
642       {
643         theMenu->addAction( action( EditDigueId ) );
644         theMenu->addSeparator();
645       }
646       else if( anIsObstacle )
647       {
648         theMenu->addAction( action( TranslateObstacleId ) );
649         theMenu->addSeparator();
650       }
651       else if( anIsStricklerTable )
652       {
653         theMenu->addAction( action( EditStricklerTableId ) );
654         theMenu->addAction( action( ExportStricklerTableFromFileId ) );
655         theMenu->addAction( action( DuplicateStricklerTableId ) );
656         theMenu->addSeparator();
657
658         if ( !isLandCoversScalarMapModeOn( anActiveViewId ) && 
659              !getObjectShapes( anActiveViewId, KIND_LAND_COVER ).isEmpty() ) {
660           theMenu->addAction( action( LandCoverScalarMapModeOnId ) );
661           theMenu->addSeparator();
662         }
663       }
664       else if( anIsLandCover )
665       {
666         theMenu->addAction( action( EditLandCoverId ) );
667         theMenu->addSeparator();
668       }      
669       else if( anIsVisualState && anIsObjectBrowser )
670       {
671         theMenu->addAction( action( SaveVisualStateId ) );
672         theMenu->addAction( action( LoadVisualStateId ) );
673         theMenu->addSeparator();
674       }
675
676       // Add set color action for geometrical objects
677       if ( anIsObjectCanBeColored )
678       {
679         theMenu->addAction( action( SetColorId ) );
680         theMenu->addSeparator();
681       }
682     } else if ( anAllAreProfiles ) {
683       theMenu->addAction( action( SelectedGeoreferencementId ) );
684       theMenu->addSeparator();
685     }
686
687     if (anIsPolyline || anIsPolyline3D)
688       theMenu->addAction( action( ExportPolylineId ) );
689
690     // Add copy action
691     QAction* aCopyAction = action( CopyId );
692     if( aCopyAction && aCopyAction->isEnabled() ) {
693       theMenu->addAction( action( CopyId ) );
694       theMenu->addSeparator();
695     }
696
697     // Add delete action
698     if( !anIsDummyObject3D )
699       theMenu->addAction( action( DeleteId ) );
700
701     theMenu->addSeparator();
702
703     if( anIsImage || anIsPolyline || anIsPolyline3D || 
704         anIsImmersibleZone || anIsZone || anIsRegion ||
705         anIsBathymetry || anIsObstacle || anIsStream ||
706         anIsChannel || anIsDigue || anIsDummyObject3D ||
707         anIsValidProfile || anIsGroup || anIsLandCover )
708     {
709       if( anIsHiddenInSelection )
710         theMenu->addAction( action( ShowId ) );
711       theMenu->addAction( action( ShowOnlyId ) );
712       if( anIsVisibleInSelection )
713         theMenu->addAction( action( HideId ) );
714       theMenu->addSeparator();
715     }
716   }
717
718   if ( anIsOCCView )
719   {
720     SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
721     HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
722     if ( aPolylineOp && aPolylineOp->deleteEnabled() )
723       theMenu->addAction( action( DeleteId ) );
724
725     theMenu->addSeparator();
726     theMenu->addAction( action( SetZLevelId ) );
727     theMenu->addSeparator();
728
729     if ( isLandCoversScalarMapModeOn( anActiveViewId ) ) {
730       theMenu->addAction( action( LandCoverScalarMapModeOffId ) );
731       theMenu->addSeparator();
732     }
733   }
734
735   if( anIsObjectBrowser || anIsGraphicsView || anIsOCCView || anIsVTKView )
736   {
737     theMenu->addAction( action( ShowAllId ) );
738     theMenu->addAction( action( HideAllId ) );
739     theMenu->addSeparator();
740   }
741   
742   if ( anIsOCCView || anIsVTKView )
743   {
744     theMenu->addSeparator();
745     theMenu->addAction( action( CopyViewerPositionId ) );
746   }
747
748   if( isRoot )
749     theMenu->addAction( action( EditLocalCSId ) );
750
751   if( anIsObjectBrowser && anOwners.size()==1 )
752   {
753     if( aSeq.Size() > 0 )
754     {
755       Handle( HYDROData_Object ) anObject = Handle( HYDROData_Object )::DownCast( aSeq.First() );
756       if( !anObject.IsNull() )
757       {
758         theMenu->addSeparator();
759         theMenu->addAction( action( SubmersibleId ) );
760         action( SubmersibleId )->setCheckable( true );
761         action( SubmersibleId )->setChecked( anObject->IsSubmersible() );
762       }
763     }
764   }
765 }
766
767 void HYDROGUI_Module::createPreferences()
768 {
769   int genTab = addPreference( tr( "PREF_TAB_GENERAL" ) );
770   int CursorGroup = addPreference( tr( "PREF_GROUP_CURSOR" ), genTab );
771
772   int typeOfCursor = addPreference( tr( "PREF_TYPE_OF_CURSOR" ), CursorGroup,
773                                     LightApp_Preferences::Selector, "preferences", "type_of_cursor" );
774
775   // Set property cursor type
776   QList<QVariant> aCursorTypeIndicesList;
777   QList<QVariant> aCursorTypeIconsList;
778
779   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
780   for ( int i = CT_ArrowCursor; i < CT_User; i++ ) {
781     QString icoFile = QString( "ICON_CURSOR_%1" ).arg( i+1 );
782     QPixmap pixmap = resMgr->loadPixmap( "HYDRO", tr( qPrintable( icoFile ) ) );
783     aCursorTypeIndicesList << i;
784     aCursorTypeIconsList << pixmap;
785   }
786
787   setPreferenceProperty( typeOfCursor, "indexes", aCursorTypeIndicesList );
788   setPreferenceProperty( typeOfCursor, "icons",   aCursorTypeIconsList );
789
790   int viewerGroup = addPreference( tr( "PREF_GROUP_VIEWER" ), genTab );
791   addPreference( tr( "PREF_VIEWER_AUTO_FITALL" ), viewerGroup,
792                  LightApp_Preferences::Bool, "HYDRO", "auto_fit_all" );
793
794   int StricklerTableGroup = addPreference( tr( "PREF_GROUP_STRICKLER_TABLE" ), genTab );
795   int defaultStricklerCoef = addPreference( tr( "PREF_DEFAULT_STRICKLER_COEFFICIENT" ), StricklerTableGroup,
796                                             LightApp_Preferences::DblSpin, "preferences", "default_strickler_coefficient" );
797   setPreferenceProperty( defaultStricklerCoef, "precision", 2 );
798   setPreferenceProperty( defaultStricklerCoef, "min", 0.00 );
799   setPreferenceProperty( defaultStricklerCoef, "max", 1000000.00 );
800   setPreferenceProperty( defaultStricklerCoef, "step", 0.01 );
801 }
802
803 QCursor HYDROGUI_Module::getPrefEditCursor() const
804 {
805   int aCursorType = SUIT_Session::session()->resourceMgr()->integerValue("preferences", "type_of_cursor", (int)CT_CrossCursor );
806   if ( aCursorType >= Qt::BlankCursor)
807     aCursorType++;
808   QCursor aCursor = QCursor( Qt::CursorShape(aCursorType) );
809   return aCursor;
810 }
811
812 void HYDROGUI_Module::update( const int flags )
813 {
814   if ( !isUpdateEnabled() )
815     return;
816
817   QApplication::setOverrideCursor( Qt::WaitCursor );
818
819   // To prevent calling this method recursively
820   // from one of the methods called below
821   setUpdateEnabled( false );
822
823   // store selected objects
824   QStringList aSelectedEntries = storeSelection();
825
826   bool aDoFitAll = flags & UF_FitAll;
827   if ( aDoFitAll )
828   {
829     SUIT_ResourceMgr* aResMgr = getApp()->resourceMgr();
830     aDoFitAll = aResMgr->booleanValue( "HYDRO", "auto_fit_all", false );
831   }
832
833   if( ( flags & UF_Viewer ) )
834     updateViewer( getDisplayer(), flags & UF_GV_Init, flags & UF_GV_Forced, aDoFitAll ); 
835
836   if( ( flags & UF_OCCViewer ) )
837     updateViewer( getOCCDisplayer(), flags & UF_OCC_Init, flags & UF_OCC_Forced, aDoFitAll ); 
838
839   if( ( flags & UF_VTKViewer ) )
840     updateViewer( getVTKDisplayer(), flags & UF_VTK_Init, flags & UF_VTK_Forced, aDoFitAll ); 
841
842   if( ( flags & UF_Model ) && getDataModel() && getApp() )
843   {
844     getDataModel()->update( getStudyId() );
845
846     // Temporary workaround to prevent breaking
847     // the selection in the object browser.
848     // Note: processEvents() should be called after updateGV(),
849     // otherwise the application crashes from time to time.
850     //RKV: qApp->processEvents();
851     SUIT_ResourceMgr* aResMgr = getApp()->resourceMgr();
852     bool isResizeOnExpandItem = aResMgr->booleanValue( "ObjectBrowser", "resize_on_expand_item", false );
853     SUIT_DataBrowser* anObjectBrowser = getApp()->objectBrowser();
854     if ( isResizeOnExpandItem && anObjectBrowser ) {
855       anObjectBrowser->setResizeOnExpandItem( false ); // MZN: ISSUE #280 
856     }
857     getApp()->updateObjectBrowser( true );
858     if ( isResizeOnExpandItem && anObjectBrowser ) {
859       anObjectBrowser->setResizeOnExpandItem( true ); // MZN: ISSUE #280 
860     }
861   }
862
863   // Object browser is currently updated by using UF_Model flag
864   if( ( flags & UF_ObjBrowser ) && ((flags & UF_Model) == 0) && getApp() )
865     getApp()->updateObjectBrowser( true );
866
867   if( ( flags & UF_Controls ) && getApp() )
868     getApp()->updateActions();
869
870   // restore selected objects
871   restoreSelection( aSelectedEntries );
872
873   setUpdateEnabled( true );
874
875   QApplication::restoreOverrideCursor();
876 }
877
878 void HYDROGUI_Module::updateCommandsStatus()
879 {
880   LightApp_Module::updateCommandsStatus();
881
882   updateUndoRedoControls();
883
884   action( CopyId )->setEnabled( getDataModel()->canCopy() );
885   action( PasteId )->setEnabled( getDataModel()->canPaste() );
886 }
887
888 void HYDROGUI_Module::selectionChanged()
889 {
890   LightApp_Module::selectionChanged();
891   updateCommandsStatus();
892 }
893
894 HYDROGUI_DataModel* HYDROGUI_Module::getDataModel() const
895 {
896   return (HYDROGUI_DataModel*)dataModel();
897 }
898
899 HYDROGUI_Displayer* HYDROGUI_Module::getDisplayer() const
900 {
901   return myDisplayer;
902 }
903
904 HYDROGUI_OCCDisplayer* HYDROGUI_Module::getOCCDisplayer() const
905 {
906   return myOCCDisplayer;
907 }
908
909 HYDROGUI_VTKPrsDisplayer* HYDROGUI_Module::getVTKDisplayer() const
910 {
911   return myVTKDisplayer;
912 }
913
914 SUIT_ViewManager* HYDROGUI_Module::getViewManager( const int theId ) const
915 {
916   if( myViewManagerMap.contains( theId ) )
917   {
918     return myViewManagerMap[ theId ].first;
919   }
920   return NULL;
921 }
922
923 GraphicsView_Viewer* HYDROGUI_Module::getViewer( const int theId ) const
924 {
925   if( myViewManagerMap.contains( theId ) )
926   {
927     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
928     GraphicsView_ViewManager* aViewManager =
929       dynamic_cast<GraphicsView_ViewManager*>( anInfo.first );
930     if( aViewManager )
931       return aViewManager->getViewer();
932   }
933   return NULL;
934 }
935
936 OCCViewer_Viewer* HYDROGUI_Module::getOCCViewer( const int theId ) const
937 {
938   if( myViewManagerMap.contains( theId ) )
939   {
940     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
941     OCCViewer_ViewManager* aViewManager =
942       ::qobject_cast<OCCViewer_ViewManager*>( anInfo.first );
943     if( aViewManager )
944       return aViewManager->getOCCViewer();
945   }
946   return NULL;
947 }
948
949 SVTK_Viewer* HYDROGUI_Module::getVTKViewer( const int theId ) const
950 {
951   if( myViewManagerMap.contains( theId ) )
952   {
953     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
954     SVTK_ViewManager* aViewManager =
955       ::qobject_cast<SVTK_ViewManager*>( anInfo.first );
956     if( aViewManager )
957       return dynamic_cast<SVTK_Viewer*>( aViewManager->getViewModel() );
958   }
959   return NULL;
960 }
961
962 int HYDROGUI_Module::getViewManagerId( SUIT_ViewManager* theViewManager )
963 {
964   ViewManagerMapIterator anIter( myViewManagerMap );
965   while( anIter.hasNext() )
966   {
967     int anId = anIter.next().key();
968     const ViewManagerInfo& anInfo = anIter.value();
969     if( anInfo.first == theViewManager )
970       return anId;
971   }
972   return -1;
973 }
974
975 HYDROGUI_Module::ViewManagerRole HYDROGUI_Module::getViewManagerRole( SUIT_ViewManager* theViewManager )
976 {
977   int anId = getViewManagerId( theViewManager );
978   if( anId != -1 )
979   {
980     const ViewManagerInfo& anInfo = myViewManagerMap[ anId ];
981     return anInfo.second;
982   }
983   return VMR_Unknown;
984 }
985
986 void HYDROGUI_Module::setViewManagerRole( SUIT_ViewManager* theViewManager,
987                                           const ViewManagerRole theRole )
988 {
989   int anId = getViewManagerId( theViewManager );
990   if( anId != -1 )
991   {
992     ViewManagerInfo& anInfo = myViewManagerMap[ anId ];
993     anInfo.second = theRole;
994   }
995 }
996
997 bool HYDROGUI_Module::isObjectVisible( const int theViewId,
998                                        const Handle(HYDROData_Entity)& theObject ) const
999 {
1000   if( theObject.IsNull() )
1001     return false;
1002
1003   if( theViewId < 0 )
1004   {
1005     //search in all
1006     foreach( int aViewId, myObjectStateMap.keys() )
1007     {
1008       if( isObjectVisible( aViewId, theObject ) )
1009         return true;
1010     }
1011     return false;
1012   }
1013
1014   ViewId2Entry2ObjectStateMap::const_iterator anIter1 = myObjectStateMap.find( theViewId );
1015   if( anIter1 != myObjectStateMap.end() )
1016   {
1017     const Entry2ObjectStateMap& aEntry2ObjectStateMap = anIter1.value();
1018     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( theObject );
1019
1020     Entry2ObjectStateMap::const_iterator anIter2 = aEntry2ObjectStateMap.find( anEntry );
1021     if( anIter2 != aEntry2ObjectStateMap.end() )
1022     {
1023       const ObjectState& anObjectState = anIter2.value();
1024       return anObjectState.Visibility;
1025     }
1026   }
1027   return false;
1028 }
1029
1030 void HYDROGUI_Module::setObjectVisible( const int theViewId,
1031                                         const Handle(HYDROData_Entity)& theObject,
1032                                         const bool theState )
1033 {
1034   if( !theObject.IsNull() )
1035   {
1036     Entry2ObjectStateMap& aEntry2ObjectStateMap = myObjectStateMap[ theViewId ];
1037     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( theObject );
1038
1039     ObjectState& anObjectState = aEntry2ObjectStateMap[ anEntry ];
1040     anObjectState.Visibility = theState;
1041
1042     HYDROGUI_DataObject* hydroObject = getDataModel()->getDataObject( theObject );
1043     if ( hydroObject )
1044     {
1045         SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( getApp()->objectBrowser()->model() );
1046         QString id = hydroObject->text( hydroObject->customData( Qtx::IdType ).toInt() );
1047         Qtx::VisibilityState visState = treeModel->visibilityState( id );
1048         if ( visState != Qtx::UnpresentableState )
1049             treeModel->setVisibilityState( id, theState ? Qtx::ShownState : Qtx::HiddenState );
1050     }
1051
1052     if ( theObject->GetKind() == KIND_BATHYMETRY && theState ) {
1053       setLandCoversScalarMapModeOff( theViewId );
1054     } else if ( theObject->GetKind() == KIND_LAND_COVER && theState ) {
1055       getOCCDisplayer()->SetToUpdateColorScale();
1056     }
1057   }
1058 }
1059
1060 void HYDROGUI_Module::setIsToUpdate( const Handle(HYDROData_Entity)& theObject,
1061                                      const bool theState )
1062 {
1063   if( !theObject.IsNull() )
1064   {
1065     // Process OCC shapes
1066     ViewId2ListOfShapes::const_iterator aShapesMapIter( myShapesMap.begin() );
1067     while( aShapesMapIter != myShapesMap.end() )
1068     {
1069       const ListOfShapes& aShapesList = aShapesMapIter.value();
1070       foreach ( HYDROGUI_Shape* aShape, aShapesList )
1071       {
1072         if ( aShape && IsEqual( aShape->getObject(), theObject ) )
1073         {
1074           aShape->setIsToUpdate( theState );
1075         }
1076       }
1077       aShapesMapIter++;
1078     }
1079     // Process VTK shapes
1080     ViewId2ListOfVTKPrs::const_iterator aVTKPrsMapIter( myVTKPrsMap.begin() );
1081     while( aVTKPrsMapIter != myVTKPrsMap.end() )
1082     {
1083       const ListOfVTKPrs& aShapesList = aVTKPrsMapIter.value();
1084       foreach ( HYDROGUI_VTKPrs* aShape, aShapesList )
1085       {
1086         if ( aShape && IsEqual( aShape->getObject(), theObject ) )
1087         {
1088           aShape->setIsToUpdate( theState );
1089         }
1090       }
1091       aVTKPrsMapIter++;
1092     }
1093   }
1094 }
1095
1096 /////////////////// OCC SHAPES PROCESSING
1097 QList<HYDROGUI_Shape*> HYDROGUI_Module::getObjectShapes( const int  theViewId,
1098                                                          ObjectKind theKind ) const
1099 {
1100   QList<HYDROGUI_Shape*> aResult;
1101
1102   if ( myShapesMap.contains( theViewId ) )
1103   {
1104     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1105     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
1106     {
1107       if( aShape && aShape->getObject()->GetKind()==theKind )
1108         aResult.append( aShape );
1109     }
1110   }
1111   return aResult;
1112 }
1113
1114 HYDROGUI_Shape* HYDROGUI_Module::getObjectShape( const int                       theViewId,
1115                                                  const Handle(HYDROData_Entity)& theObject ) const
1116 {
1117   HYDROGUI_Shape* aResShape = NULL;
1118   if( theObject.IsNull() )
1119     return aResShape;
1120
1121   if ( myShapesMap.contains( theViewId ) )
1122   {
1123     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1124     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
1125     {
1126       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
1127         continue;
1128
1129       aResShape = aShape;
1130       break;
1131     }
1132   }
1133
1134   return aResShape;
1135 }
1136
1137 void HYDROGUI_Module::setObjectShape( const int                       theViewId,
1138                                       const Handle(HYDROData_Entity)& theObject,
1139                                       HYDROGUI_Shape*                 theShape )
1140 {
1141   if( theObject.IsNull() )
1142     return;
1143
1144   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
1145   aViewShapes.append( theShape );
1146 }
1147
1148 void HYDROGUI_Module::removeObjectShape( const int                       theViewId,
1149                                          const Handle(HYDROData_Entity)& theObject )
1150 {
1151   if ( !myShapesMap.contains( theViewId ) )
1152     return;
1153
1154   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
1155   Handle(HYDROData_Entity) anObject;
1156   for ( int i = 0; i < aViewShapes.length(); )
1157   {
1158     HYDROGUI_Shape* aShape = aViewShapes.at( i );
1159     anObject = aShape->getObject();
1160     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
1161     {
1162       delete aShape;
1163       aViewShapes.removeAt( i );
1164       continue;
1165     }
1166
1167     ++i;
1168   }
1169 }
1170
1171 void HYDROGUI_Module::removeViewShapes( const int theViewId )
1172 {
1173   if ( !myShapesMap.contains( theViewId ) )
1174     return;
1175
1176   const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1177   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1178   {
1179     HYDROGUI_Shape* aShape = aViewShapes.at( i );
1180     if ( aShape )
1181       delete aShape;
1182   }
1183
1184   myShapesMap.remove( theViewId );
1185 }
1186 /////////////////// END OF OCC SHAPES PROCESSING
1187
1188 /////////////////// VTKPrs PROCESSING
1189 HYDROGUI_VTKPrs* HYDROGUI_Module::getObjectVTKPrs( const int                       theViewId,
1190                                                  const Handle(HYDROData_Entity)& theObject ) const
1191 {
1192   HYDROGUI_VTKPrs* aResShape = NULL;
1193   if( theObject.IsNull() )
1194     return aResShape;
1195
1196   if ( myVTKPrsMap.contains( theViewId ) )
1197   {
1198     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1199     foreach ( HYDROGUI_VTKPrs* aShape, aViewShapes )
1200     {
1201       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
1202         continue;
1203
1204       aResShape = aShape;
1205       break;
1206     }
1207   }
1208
1209   return aResShape;
1210 }
1211
1212 void HYDROGUI_Module::setObjectVTKPrs( const int                       theViewId,
1213                                        const Handle(HYDROData_Entity)& theObject,
1214                                        HYDROGUI_VTKPrs*                 theShape )
1215 {
1216   if( theObject.IsNull() )
1217     return;
1218
1219   if( theShape && theShape->needScalarBar() )
1220   {
1221     // Compute the new global Z range from the added presentation and the old global Z range.
1222     double* aGlobalRange = getVTKDisplayer()->GetZRange( theViewId );
1223     double* aRange = theShape->getInternalZRange();
1224     bool anIsUpdate = false;
1225     if ( aRange[0] < aGlobalRange[0] )
1226     {
1227       aGlobalRange[0] = aRange[0];
1228       anIsUpdate = true;
1229     }
1230     if ( aRange[1] > aGlobalRange[1] )
1231     {
1232       aGlobalRange[1] = aRange[1];
1233       anIsUpdate = true;
1234     }
1235
1236     //if ( anIsUpdate )
1237     //{
1238       updateVTKZRange( theViewId, aGlobalRange );
1239     //}
1240   }
1241
1242   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1243   aViewShapes.append( theShape );
1244 }
1245
1246 void HYDROGUI_Module::removeObjectVTKPrs( const int      theViewId,
1247                                           const QString& theEntry )
1248 {
1249   if ( !myVTKPrsMap.contains( theViewId ) )
1250     return;
1251
1252   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1253   Handle(HYDROData_Entity) anObject;
1254   QString anEntryRef;
1255   for ( int i = 0; i < aViewShapes.length(); )
1256   {
1257     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1258     anObject = aShape->getObject();
1259     anEntryRef = HYDROGUI_DataObject::dataObjectEntry( anObject );
1260     if ( aShape && (!anObject.IsNull()) && ( anEntryRef == theEntry ) )
1261     {
1262       delete aShape;
1263       aViewShapes.removeAt( i );
1264       continue;
1265     }
1266
1267     ++i;
1268   }
1269
1270   // Invalidate global Z range
1271   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
1272   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
1273 }
1274
1275 void HYDROGUI_Module::removeObjectVTKPrs( const int                       theViewId,
1276                                           const Handle(HYDROData_Entity)& theObject )
1277 {
1278   if ( !myVTKPrsMap.contains( theViewId ) )
1279     return;
1280
1281   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1282   Handle(HYDROData_Entity) anObject;
1283   for ( int i = 0; i < aViewShapes.length(); )
1284   {
1285     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1286     anObject = aShape->getObject();
1287     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
1288     {
1289       delete aShape;
1290       aViewShapes.removeAt( i );
1291       continue;
1292     }
1293
1294     ++i;
1295   }
1296
1297   // Invalidate global Z range
1298   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
1299   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
1300 }
1301
1302 void HYDROGUI_Module::removeViewVTKPrs( const int theViewId )
1303 {
1304   if ( !myVTKPrsMap.contains( theViewId ) )
1305     return;
1306
1307   const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1308   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1309   {
1310     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1311     if ( aShape )
1312       delete aShape;
1313   }
1314
1315   myVTKPrsMap.remove( theViewId );
1316 }
1317
1318 void HYDROGUI_Module::updateVTKZRange( const int theViewId, double theRange[] )
1319 {
1320   if ( myVTKPrsMap.contains( theViewId ) )
1321   {
1322     // For the given viewer id update all VTK presentations ...
1323     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1324     HYDROGUI_VTKPrs* aShape;
1325     for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1326     {
1327       aShape = aViewShapes.at( i );
1328       if ( aShape && aShape->needScalarBar() )
1329       {
1330         aShape->setZRange( theRange );
1331       }
1332     }
1333   }
1334   // ... and update the global color legend scalar bar.
1335   getVTKDisplayer()->SetZRange( theViewId, theRange );
1336 }
1337 /////////////////// END OF VTKPrs PROCESSING
1338
1339 CAM_DataModel* HYDROGUI_Module::createDataModel()
1340 {
1341   return new HYDROGUI_DataModel( this );
1342 }
1343
1344 void HYDROGUI_Module::customEvent( QEvent* e )
1345 {
1346   int aType = e->type();
1347   if ( aType == NewViewEvent )
1348   {
1349     SALOME_CustomEvent* ce = ( SALOME_CustomEvent* )e;
1350     if( GraphicsView_ViewFrame* aViewFrame = ( GraphicsView_ViewFrame* )ce->data() )
1351     {
1352       if( GraphicsView_Viewer* aViewer = dynamic_cast<GraphicsView_Viewer*>( aViewFrame->getViewer() ) )
1353       {
1354         SUIT_ViewManager* aViewManager = aViewer->getViewManager();
1355         ViewManagerRole aRole = getViewManagerRole( aViewManager );
1356
1357         if( GraphicsView_ViewPort* aViewPort = aViewer->getActiveViewPort() )
1358         {
1359           if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
1360             aViewPort->scale( 1, -1 ); // invert the Y axis direction from down to up
1361
1362           aViewPort->setInteractionFlag( GraphicsView_ViewPort::TraceBoundingRect );
1363           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateContextMenu );
1364           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateSelection );
1365
1366           //ouv: temporarily commented
1367           //aViewPort->setViewLabelPosition( GraphicsView_ViewPort::VLP_BottomLeft, true );
1368         }
1369
1370         if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
1371           update( UF_Viewer );
1372
1373         aViewer->activateTransform( GraphicsView_Viewer::FitAll );
1374       }
1375     }
1376   }
1377 }
1378
1379 bool HYDROGUI_Module::eventFilter( QObject* theObj, QEvent* theEvent )
1380 {
1381   QEvent::Type aType = theEvent->type();
1382   if( theObj->inherits( "GraphicsView_ViewFrame" ) )
1383   {
1384     if( aType == QEvent::Show )
1385     {
1386       SALOME_CustomEvent* e = new SALOME_CustomEvent( NewViewEvent );
1387       e->setData( theObj );
1388       QApplication::postEvent( this, e );
1389       theObj->removeEventFilter( this );
1390     }
1391   }
1392   else if ( theObj->inherits( "OCCViewer_ViewPort" ) )
1393   {
1394     if( aType == QEvent::Leave )
1395     {
1396       SUIT_Desktop* aDesktop = getApp()->desktop();
1397       if ( aDesktop && aDesktop->statusBar() ) {
1398         aDesktop->statusBar()->clearMessage();
1399       }
1400     }
1401   }
1402   else if ( theObj->inherits( "SVTK_ViewWindow" ) )
1403   {
1404     if( aType == QEvent::Leave )
1405     {
1406       SUIT_Desktop* aDesktop = getApp()->desktop();
1407       if ( aDesktop && aDesktop->statusBar() ) {
1408         aDesktop->statusBar()->clearMessage();
1409       }
1410     }
1411   }
1412
1413   return LightApp_Module::eventFilter( theObj, theEvent );
1414 }
1415
1416 void HYDROGUI_Module::onViewManagerAdded( SUIT_ViewManager* theViewManager )
1417 {
1418   LightApp_Module::onViewManagerAdded( theViewManager );
1419
1420   if( theViewManager->getType() == GraphicsView_Viewer::Type() )
1421   { 
1422     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1423              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1424   }
1425   else if( theViewManager->getType() == OCCViewer_Viewer::Type() )
1426   {
1427     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1428              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1429     connect( theViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
1430              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1431   }
1432   else if( theViewManager->getType() == SVTK_Viewer::Type() )
1433   {
1434     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1435              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1436     connect( theViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
1437              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1438   }
1439
1440   createSelector( theViewManager ); // replace the default selector
1441
1442   ViewManagerInfo anInfo( theViewManager, VMR_General );
1443   myViewManagerMap.insert( ViewManagerId++, anInfo );
1444 }
1445
1446 void HYDROGUI_Module::onViewManagerRemoved( SUIT_ViewManager* theViewManager )
1447 {
1448   LightApp_Module::onViewManagerRemoved( theViewManager );
1449
1450   createSelector( theViewManager ); // replace the default selector
1451
1452   int anId = getViewManagerId( theViewManager );
1453   if( anId != -1 )
1454   {
1455     OCCViewer_ViewManager* anOCCViewManager =
1456       ::qobject_cast<OCCViewer_ViewManager*>( myViewManagerMap[ anId ].first );
1457     if ( anOCCViewManager )
1458     {
1459       OCCViewer_Viewer* anOCCViewer = anOCCViewManager->getOCCViewer();
1460       if ( anOCCViewer ) {
1461         int aViewerId = (size_t)anOCCViewer;
1462         removeViewShapes( aViewerId );
1463         setLandCoversScalarMapModeOff( aViewerId );
1464       }
1465     }
1466
1467     if ( getVTKDisplayer()->IsApplicable( theViewManager ) )
1468     {
1469       SVTK_Viewer* aVTKViewer = getVTKViewer( anId );
1470       if ( aVTKViewer )
1471       {
1472         getVTKDisplayer()->EraseScalarBar( anId, true );
1473         removeViewShapes( (size_t)aVTKViewer );
1474       }
1475     }
1476
1477     myViewManagerMap.remove( anId );
1478   }
1479 }
1480
1481 void HYDROGUI_Module::onViewCreated( SUIT_ViewWindow* theViewWindow )
1482 {
1483   if( theViewWindow && theViewWindow->inherits( "GraphicsView_ViewFrame" ) )
1484   {
1485     if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( theViewWindow ) )
1486     {
1487       aViewFrame->installEventFilter( this );
1488
1489       GraphicsView_ViewPort* aViewPort = aViewFrame->getViewPort();
1490
1491       connect( aViewPort, SIGNAL( vpMouseEvent( QGraphicsSceneMouseEvent* ) ),
1492                this, SLOT( onViewPortMouseEvent( QGraphicsSceneMouseEvent* ) ) );
1493     }
1494   }
1495   else if( theViewWindow && theViewWindow->inherits( "OCCViewer_ViewFrame" ) )
1496   {
1497     if( OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( theViewWindow ) )
1498     {
1499       aViewFrame->onTopView();
1500
1501       HYDROGUI_Tool::setOCCActionShown( aViewFrame, OCCViewer_ViewWindow::MaximizedId, false );
1502
1503       OCCViewer_ViewPort3d* aViewPort = aViewFrame->getViewPort();
1504       if ( aViewPort ) {
1505         aViewPort->installEventFilter( this );
1506       }
1507     }
1508   }
1509   else if( theViewWindow && theViewWindow->inherits( "SVTK_ViewWindow" ) )
1510   {
1511     if( SVTK_ViewWindow* aViewFrame = dynamic_cast<SVTK_ViewWindow*>( theViewWindow ) )
1512     {
1513       aViewFrame->installEventFilter( this );
1514     }
1515   }
1516 }
1517
1518 void HYDROGUI_Module::onViewPortMouseEvent( QGraphicsSceneMouseEvent* theEvent )
1519 {
1520   /* ouv: currently unused
1521   if( GraphicsView_ViewPort* aViewPort = qobject_cast<GraphicsView_ViewPort*>( sender() ) )
1522   {
1523     SUIT_ViewManager* aViewManager = 0;
1524
1525     QObject* aParent = aViewPort;
1526     while( aParent = aParent->parent() )
1527     {
1528       if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( aParent ) )
1529       {
1530         if( GraphicsView_Viewer* aViewer = aViewFrame->getViewer() )
1531         {
1532           aViewManager = aViewer->getViewManager();
1533           break;
1534         }
1535       }
1536     }
1537
1538     if( !aViewManager )
1539       return;
1540
1541     double aMouseX = theEvent->scenePos().x();
1542     double aMouseY = theEvent->scenePos().y();
1543
1544     ViewManagerRole aRole = getViewManagerRole( aViewManager );
1545     if( aRole == VMR_General )
1546     {
1547       int aXDeg = 0, aYDeg = 0;
1548       int aXMin = 0, aYMin = 0;
1549       double aXSec = 0, aYSec = 0;
1550       HYDROData_Lambert93::secToDMS( aMouseX, aXDeg, aXMin, aXSec );
1551       HYDROData_Lambert93::secToDMS( aMouseY, aYDeg, aYMin, aYSec );
1552
1553       QString aDegSymbol( QChar( 0x00B0 ) );
1554       QString aXStr = QString( "%1%2 %3' %4\"" ).arg( aXDeg ).arg( aDegSymbol ).arg( aXMin ).arg( aXSec );
1555       QString aYStr = QString( "%1%2 %3' %4\"" ).arg( aYDeg ).arg( aDegSymbol ).arg( aYMin ).arg( aYSec );
1556
1557       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( aXStr ).arg( aYStr ) );
1558     }
1559     else if( aRole == VMR_TransformImage )
1560       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( (int)aMouseX ).arg( (int)aMouseY ) );
1561   }
1562   */
1563 }
1564
1565 void HYDROGUI_Module::updateViewer( HYDROGUI_AbstractDisplayer* theDisplayer, 
1566                                     const bool theIsInit, 
1567                                     const bool theIsForced, 
1568                                     const bool theDoFitAll )
1569 {
1570   QList<int> aViewManagerIdList;
1571
1572   // currently, all views are updated
1573   ViewManagerMapIterator anIter( myViewManagerMap );
1574   while( anIter.hasNext() )
1575   { 
1576     SUIT_ViewManager* aViewManager = anIter.next().value().first;
1577
1578     if ( theDisplayer->IsApplicable( aViewManager ) )
1579     {
1580       int anId = anIter.key();
1581       aViewManagerIdList.append( anId );
1582     }
1583   }
1584
1585   QListIterator<int> anIdIter( aViewManagerIdList );
1586   while( anIdIter.hasNext() )
1587   {
1588     theDisplayer->UpdateAll( anIdIter.next(), theIsInit, theIsForced, theDoFitAll );
1589   }
1590 }
1591
1592 void HYDROGUI_Module::createSelector( SUIT_ViewManager* theViewManager )
1593 {
1594   if( !theViewManager )
1595     return;
1596
1597   LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr();
1598   if( !aSelectionMgr )
1599     return;
1600
1601   QString aViewType = theViewManager->getType();
1602   if( aViewType != GraphicsView_Viewer::Type() &&
1603       aViewType != OCCViewer_Viewer::Type())
1604     return;
1605
1606   QList<SUIT_Selector*> aSelectorList;
1607   aSelectionMgr->selectors( aViewType, aSelectorList );
1608
1609   // disable all alien selectors
1610   QList<SUIT_Selector*>::iterator anIter, anIterEnd = aSelectorList.end();
1611   for( anIter = aSelectorList.begin(); anIter != anIterEnd; anIter++ )
1612   {
1613     SUIT_Selector* aSelector = *anIter;
1614     if( aSelector && ( !dynamic_cast<HYDROGUI_GVSelector*>( aSelector ) &&
1615                        !dynamic_cast<SVTK_Selector*>( aSelector ) &&
1616                        !dynamic_cast<HYDROGUI_OCCSelector*>( aSelector ) ) )
1617       aSelector->setEnabled( false );
1618   }
1619
1620   if ( aViewType == GraphicsView_Viewer::Type() )
1621   {
1622     GraphicsView_ViewManager* aViewManager =
1623       ::qobject_cast<GraphicsView_ViewManager*>( theViewManager );
1624     if( aViewManager )
1625       new HYDROGUI_GVSelector( this, aViewManager->getViewer(), aSelectionMgr );
1626   }
1627   else if ( aViewType == OCCViewer_Viewer::Type() )
1628   {
1629     OCCViewer_ViewManager* aViewManager =
1630       ::qobject_cast<OCCViewer_ViewManager*>( theViewManager );
1631     if( aViewManager )
1632       new HYDROGUI_OCCSelector( this, aViewManager->getOCCViewer(), aSelectionMgr );
1633   }
1634 }
1635
1636 bool HYDROGUI_Module::setUpdateEnabled( const bool theState )
1637 {
1638   bool aPrevState = myIsUpdateEnabled;
1639   myIsUpdateEnabled = theState;
1640   return aPrevState;
1641 }
1642
1643 bool HYDROGUI_Module::isUpdateEnabled() const
1644 {
1645   return myIsUpdateEnabled;
1646 }
1647
1648 QStringList HYDROGUI_Module::storeSelection() const
1649 {
1650   QStringList anEntryList;
1651   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1652   {
1653     SUIT_DataOwnerPtrList aList( true );
1654     aSelectionMgr->selected( aList );
1655
1656     SUIT_DataOwnerPtrList::iterator anIter;
1657     for( anIter = aList.begin(); anIter != aList.end(); anIter++ )
1658     {
1659       const LightApp_DataOwner* anOwner = 
1660         dynamic_cast<const LightApp_DataOwner*>( (*anIter).operator->() );
1661       if( anOwner )
1662         anEntryList.append( anOwner->entry() );
1663     }
1664   }
1665   return anEntryList;
1666 }
1667
1668 void HYDROGUI_Module::restoreSelection( const QStringList& theEntryList )
1669 {
1670   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1671   {
1672     SUIT_DataOwnerPtrList aList( true );
1673     for( int anIndex = 0, aSize = theEntryList.size(); anIndex < aSize; anIndex++ )
1674       aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( theEntryList[ anIndex ] ) ) );
1675     aSelectionMgr->setSelected( aList );
1676   }
1677 }
1678
1679 void HYDROGUI_Module::onMouseMove( SUIT_ViewWindow* theViewWindow, QMouseEvent* )
1680 {
1681   double X, Y, Z;
1682   bool doShow = false;
1683   HYDROGUI_Displayer* aDisplayer = getDisplayer();
1684   if ( aDisplayer )
1685     aDisplayer->SaveCursorViewPosition( theViewWindow );
1686     doShow = aDisplayer->GetCursorViewCoordinates( theViewWindow, X, Y, Z );
1687
1688   if ( doShow )
1689   {
1690     // Show the coordinates in the status bar
1691     SUIT_Desktop* aDesktop = getApp()->desktop();
1692     if ( aDesktop && aDesktop->statusBar() )
1693     {
1694       gp_Pnt aWPnt( X, Y, Z );
1695       int aStudyId = application()->activeStudy()->id();
1696       HYDROData_Document::Document( aStudyId )->Transform( aWPnt, false );
1697       double WX = aWPnt.X(), WY = aWPnt.Y();
1698
1699       QString aXStr = HYDROGUI_Tool::GetCoordinateString( X, true );
1700       QString anYStr = HYDROGUI_Tool::GetCoordinateString( Y, true );
1701       QString aWXStr = HYDROGUI_Tool::GetCoordinateString( WX, true );
1702       QString aWYStr = HYDROGUI_Tool::GetCoordinateString( WY, true );
1703       QString aMsg = tr( "COORDINATES_INFO" );
1704       aMsg = aMsg.arg( aXStr ).arg( anYStr ).arg( aWXStr ).arg( aWYStr );
1705       aDesktop->statusBar()->showMessage( aMsg );
1706     }
1707   }
1708 }
1709
1710 /**
1711  * Returns stack of active operations;
1712  */
1713 QStack<HYDROGUI_Operation*>& HYDROGUI_Module::getActiveOperations()
1714 {
1715   return myActiveOperationMap;
1716 }
1717
1718 /**
1719  * Returns the module active operation. If the active operation is show/hide,
1720  * the method returns the previous operation if it is.
1721  */
1722 HYDROGUI_Operation* HYDROGUI_Module::activeOperation()
1723 {
1724   HYDROGUI_Operation* anOp = !myActiveOperationMap.empty() ? myActiveOperationMap.top() : 0;
1725
1726   if ( dynamic_cast<HYDROGUI_ShowHideOp*>( anOp ) )
1727   {
1728     QVectorIterator<HYDROGUI_Operation*> aVIt( myActiveOperationMap );
1729     aVIt.toBack();
1730     aVIt.previous(); // skip the top show/hide operation
1731     anOp = aVIt.hasPrevious() ? aVIt.previous() : 0;
1732   }
1733
1734   return anOp;
1735 }
1736
1737 /*!
1738  * \brief Virtual public slot
1739  *
1740  * This method is called after the object inserted into data view to update their visibility state
1741  * This is default implementation
1742  */
1743 void HYDROGUI_Module::onObjectClicked( SUIT_DataObject* theObject, int theColumn )
1744 {
1745   if ( !isActiveModule() )
1746       return;
1747
1748   HYDROGUI_DataObject* hydroObject = dynamic_cast<HYDROGUI_DataObject*>( theObject );
1749
1750   // change visibility of object
1751   if ( !hydroObject || theColumn != SUIT_DataObject::VisibilityId )
1752       return;
1753
1754   SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( getApp()->objectBrowser()->model() );
1755
1756   QString id = theObject->text( theObject->customData( Qtx::IdType ).toInt() );
1757   Qtx::VisibilityState visState = treeModel->visibilityState( id );
1758   if ( visState == Qtx::UnpresentableState )
1759       return;
1760
1761   visState = visState == Qtx::ShownState ? Qtx::HiddenState : Qtx::ShownState;
1762   treeModel->setVisibilityState( id, visState );
1763
1764   bool vis = visState == Qtx::ShownState;
1765   if ( vis == isObjectVisible( HYDROGUI_Tool::GetActiveViewId( this ), hydroObject->modelObject() ) )
1766       return;
1767
1768   setObjectVisible( HYDROGUI_Tool::GetActiveViewId( this ), hydroObject->modelObject(), vis );
1769
1770   update( UF_OCCViewer | ( visState == Qtx::ShownState ? UF_FitAll : 0 ) );
1771 }
1772
1773 Handle(HYDROData_StricklerTable) HYDROGUI_Module::getLandCoverColoringTable( const int theViewId ) const
1774 {
1775   Handle(HYDROData_StricklerTable) aTable;
1776
1777   if ( myLandCoverColoringMap.contains( theViewId ) ) {
1778     aTable = myLandCoverColoringMap.value( theViewId );
1779   }
1780
1781   return aTable;
1782 }
1783
1784 void HYDROGUI_Module::setLandCoverColoringTable( const int theViewId,
1785                                                  const Handle(HYDROData_StricklerTable)& theTable )
1786 {
1787   if ( !theTable.IsNull() ) {
1788     myLandCoverColoringMap.insert( theViewId, theTable );
1789   }
1790 }
1791
1792 void HYDROGUI_Module::setLandCoversScalarMapModeOff( const int theViewId )
1793 {
1794   myLandCoverColoringMap.remove( theViewId );
1795 }
1796
1797 bool HYDROGUI_Module::isLandCoversScalarMapModeOn( const int theViewId ) const
1798 {
1799   return myLandCoverColoringMap.contains( theViewId );
1800 }