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