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