Salome HOME
refs #740 (p.1 + p.2)
[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         QString id = hydroObject->text( hydroObject->customData( Qtx::IdType ).toInt() );
1093         Qtx::VisibilityState visState = treeModel->visibilityState( id );
1094         if ( visState != Qtx::UnpresentableState )
1095             treeModel->setVisibilityState( id, theState ? Qtx::ShownState : Qtx::HiddenState );
1096     }
1097
1098     if ( theObject->GetKind() == KIND_BATHYMETRY && theState ) {
1099       setLandCoversScalarMapModeOff( theViewId );
1100     } else if ( theObject->GetKind() == KIND_LAND_COVER_MAP && theState ) {
1101       getOCCDisplayer()->SetToUpdateColorScale();
1102     }
1103   }
1104 }
1105
1106 void HYDROGUI_Module::setIsToUpdate( const Handle(HYDROData_Entity)& theObject,
1107                                      const bool theState )
1108 {
1109   if( !theObject.IsNull() )
1110   {
1111     // Process OCC shapes
1112     ViewId2ListOfShapes::const_iterator aShapesMapIter( myShapesMap.begin() );
1113     while( aShapesMapIter != myShapesMap.end() )
1114     {
1115       const ListOfShapes& aShapesList = aShapesMapIter.value();
1116       foreach ( HYDROGUI_Shape* aShape, aShapesList )
1117       {
1118         if ( aShape && IsEqual( aShape->getObject(), theObject ) )
1119         {
1120           aShape->setIsToUpdate( theState );
1121         }
1122       }
1123       aShapesMapIter++;
1124     }
1125     // Process VTK shapes
1126     ViewId2ListOfVTKPrs::const_iterator aVTKPrsMapIter( myVTKPrsMap.begin() );
1127     while( aVTKPrsMapIter != myVTKPrsMap.end() )
1128     {
1129       const ListOfVTKPrs& aShapesList = aVTKPrsMapIter.value();
1130       foreach ( HYDROGUI_VTKPrs* aShape, aShapesList )
1131       {
1132         if ( aShape && IsEqual( aShape->getObject(), theObject ) )
1133         {
1134           aShape->setIsToUpdate( theState );
1135         }
1136       }
1137       aVTKPrsMapIter++;
1138     }
1139   }
1140 }
1141
1142 /////////////////// OCC SHAPES PROCESSING
1143 QList<HYDROGUI_Shape*> HYDROGUI_Module::getObjectShapes( const int  theViewId,
1144                                                          ObjectKind theKind ) const
1145 {
1146   QList<HYDROGUI_Shape*> aResult;
1147
1148   if ( myShapesMap.contains( theViewId ) )
1149   {
1150     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1151     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
1152     {
1153       if( aShape && aShape->getObject()->GetKind()==theKind )
1154         aResult.append( aShape );
1155     }
1156   }
1157   return aResult;
1158 }
1159
1160 HYDROGUI_Shape* HYDROGUI_Module::getObjectShape( const int                       theViewId,
1161                                                  const Handle(HYDROData_Entity)& theObject ) const
1162 {
1163   HYDROGUI_Shape* aResShape = NULL;
1164   if( theObject.IsNull() )
1165     return aResShape;
1166
1167   if ( myShapesMap.contains( theViewId ) )
1168   {
1169     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1170     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
1171     {
1172       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
1173         continue;
1174
1175       aResShape = aShape;
1176       break;
1177     }
1178   }
1179
1180   return aResShape;
1181 }
1182
1183 void HYDROGUI_Module::setObjectShape( const int                       theViewId,
1184                                       const Handle(HYDROData_Entity)& theObject,
1185                                       HYDROGUI_Shape*                 theShape )
1186 {
1187   if( theObject.IsNull() )
1188     return;
1189
1190   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
1191   aViewShapes.append( theShape );
1192 }
1193
1194 void HYDROGUI_Module::removeObjectShape( const int                       theViewId,
1195                                          const Handle(HYDROData_Entity)& theObject )
1196 {
1197   if ( !myShapesMap.contains( theViewId ) )
1198     return;
1199
1200   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
1201   Handle(HYDROData_Entity) anObject;
1202   for ( int i = 0; i < aViewShapes.length(); )
1203   {
1204     HYDROGUI_Shape* aShape = aViewShapes.at( i );
1205     anObject = aShape->getObject();
1206     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
1207     {
1208       delete aShape;
1209       aViewShapes.removeAt( i );
1210       continue;
1211     }
1212
1213     ++i;
1214   }
1215 }
1216
1217 void HYDROGUI_Module::removeViewShapes( const int theViewId )
1218 {
1219   if ( !myShapesMap.contains( theViewId ) )
1220     return;
1221
1222   const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1223   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1224   {
1225     HYDROGUI_Shape* aShape = aViewShapes.at( i );
1226     if ( aShape )
1227       delete aShape;
1228   }
1229
1230   myShapesMap.remove( theViewId );
1231 }
1232 /////////////////// END OF OCC SHAPES PROCESSING
1233
1234 /////////////////// VTKPrs PROCESSING
1235 HYDROGUI_VTKPrs* HYDROGUI_Module::getObjectVTKPrs( const int                       theViewId,
1236                                                  const Handle(HYDROData_Entity)& theObject ) const
1237 {
1238   HYDROGUI_VTKPrs* aResShape = NULL;
1239   if( theObject.IsNull() )
1240     return aResShape;
1241
1242   if ( myVTKPrsMap.contains( theViewId ) )
1243   {
1244     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1245     foreach ( HYDROGUI_VTKPrs* aShape, aViewShapes )
1246     {
1247       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
1248         continue;
1249
1250       aResShape = aShape;
1251       break;
1252     }
1253   }
1254
1255   return aResShape;
1256 }
1257
1258 void HYDROGUI_Module::setObjectVTKPrs( const int                       theViewId,
1259                                        const Handle(HYDROData_Entity)& theObject,
1260                                        HYDROGUI_VTKPrs*                 theShape )
1261 {
1262   if( theObject.IsNull() )
1263     return;
1264
1265   if( theShape && theShape->needScalarBar() )
1266   {
1267     // Compute the new global Z range from the added presentation and the old global Z range.
1268     double* aGlobalRange = getVTKDisplayer()->GetZRange( theViewId );
1269     double* aRange = theShape->getInternalZRange();
1270     bool anIsUpdate = false;
1271     if ( aRange[0] < aGlobalRange[0] )
1272     {
1273       aGlobalRange[0] = aRange[0];
1274       anIsUpdate = true;
1275     }
1276     if ( aRange[1] > aGlobalRange[1] )
1277     {
1278       aGlobalRange[1] = aRange[1];
1279       anIsUpdate = true;
1280     }
1281
1282     //if ( anIsUpdate )
1283     //{
1284       updateVTKZRange( theViewId, aGlobalRange );
1285     //}
1286   }
1287
1288   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1289   aViewShapes.append( theShape );
1290 }
1291
1292 void HYDROGUI_Module::removeObjectVTKPrs( const int      theViewId,
1293                                           const QString& theEntry )
1294 {
1295   if ( !myVTKPrsMap.contains( theViewId ) )
1296     return;
1297
1298   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1299   Handle(HYDROData_Entity) anObject;
1300   QString anEntryRef;
1301   for ( int i = 0; i < aViewShapes.length(); )
1302   {
1303     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1304     anObject = aShape->getObject();
1305     anEntryRef = HYDROGUI_DataObject::dataObjectEntry( anObject );
1306     if ( aShape && (!anObject.IsNull()) && ( anEntryRef == theEntry ) )
1307     {
1308       delete aShape;
1309       aViewShapes.removeAt( i );
1310       continue;
1311     }
1312
1313     ++i;
1314   }
1315
1316   // Invalidate global Z range
1317   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
1318   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
1319 }
1320
1321 void HYDROGUI_Module::removeObjectVTKPrs( const int                       theViewId,
1322                                           const Handle(HYDROData_Entity)& theObject )
1323 {
1324   if ( !myVTKPrsMap.contains( theViewId ) )
1325     return;
1326
1327   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1328   Handle(HYDROData_Entity) anObject;
1329   for ( int i = 0; i < aViewShapes.length(); )
1330   {
1331     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1332     anObject = aShape->getObject();
1333     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
1334     {
1335       delete aShape;
1336       aViewShapes.removeAt( i );
1337       continue;
1338     }
1339
1340     ++i;
1341   }
1342
1343   // Invalidate global Z range
1344   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
1345   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
1346 }
1347
1348 void HYDROGUI_Module::removeViewVTKPrs( const int theViewId )
1349 {
1350   if ( !myVTKPrsMap.contains( theViewId ) )
1351     return;
1352
1353   const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1354   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1355   {
1356     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1357     if ( aShape )
1358       delete aShape;
1359   }
1360
1361   myVTKPrsMap.remove( theViewId );
1362 }
1363
1364 void HYDROGUI_Module::updateVTKZRange( const int theViewId, double theRange[] )
1365 {
1366   if ( myVTKPrsMap.contains( theViewId ) )
1367   {
1368     // For the given viewer id update all VTK presentations ...
1369     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1370     HYDROGUI_VTKPrs* aShape;
1371     for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1372     {
1373       aShape = aViewShapes.at( i );
1374       if ( aShape && aShape->needScalarBar() )
1375       {
1376         aShape->setZRange( theRange );
1377       }
1378     }
1379   }
1380   // ... and update the global color legend scalar bar.
1381   getVTKDisplayer()->SetZRange( theViewId, theRange );
1382 }
1383 /////////////////// END OF VTKPrs PROCESSING
1384
1385 void HYDROGUI_Module::clearCache()
1386 {
1387     myObjectStateMap.clear();
1388 }
1389
1390 CAM_DataModel* HYDROGUI_Module::createDataModel()
1391 {
1392   return new HYDROGUI_DataModel( this );
1393 }
1394
1395 void HYDROGUI_Module::customEvent( QEvent* e )
1396 {
1397   int aType = e->type();
1398   if ( aType == NewViewEvent )
1399   {
1400     SALOME_CustomEvent* ce = ( SALOME_CustomEvent* )e;
1401     if( GraphicsView_ViewFrame* aViewFrame = ( GraphicsView_ViewFrame* )ce->data() )
1402     {
1403       if( GraphicsView_Viewer* aViewer = dynamic_cast<GraphicsView_Viewer*>( aViewFrame->getViewer() ) )
1404       {
1405         SUIT_ViewManager* aViewManager = aViewer->getViewManager();
1406         ViewManagerRole aRole = getViewManagerRole( aViewManager );
1407
1408         if( GraphicsView_ViewPort* aViewPort = aViewer->getActiveViewPort() )
1409         {
1410           if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
1411             aViewPort->scale( 1, -1 ); // invert the Y axis direction from down to up
1412
1413           aViewPort->setInteractionFlag( GraphicsView_ViewPort::TraceBoundingRect );
1414           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateContextMenu );
1415           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateSelection );
1416
1417           //ouv: temporarily commented
1418           //aViewPort->setViewLabelPosition( GraphicsView_ViewPort::VLP_BottomLeft, true );
1419         }
1420
1421         if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
1422           update( UF_Viewer );
1423
1424         aViewer->activateTransform( GraphicsView_Viewer::FitAll );
1425       }
1426     }
1427   }
1428 }
1429
1430 bool HYDROGUI_Module::eventFilter( QObject* theObj, QEvent* theEvent )
1431 {
1432   QEvent::Type aType = theEvent->type();
1433   if( theObj->inherits( "GraphicsView_ViewFrame" ) )
1434   {
1435     if( aType == QEvent::Show )
1436     {
1437       SALOME_CustomEvent* e = new SALOME_CustomEvent( NewViewEvent );
1438       e->setData( theObj );
1439       QApplication::postEvent( this, e );
1440       theObj->removeEventFilter( this );
1441     }
1442   }
1443   else if ( theObj->inherits( "OCCViewer_ViewPort" ) )
1444   {
1445     if( aType == QEvent::Leave )
1446     {
1447       SUIT_Desktop* aDesktop = getApp()->desktop();
1448       if ( aDesktop && aDesktop->statusBar() ) {
1449         aDesktop->statusBar()->clearMessage();
1450       }
1451     }
1452   }
1453   else if ( theObj->inherits( "SVTK_ViewWindow" ) )
1454   {
1455     if( aType == QEvent::Leave )
1456     {
1457       SUIT_Desktop* aDesktop = getApp()->desktop();
1458       if ( aDesktop && aDesktop->statusBar() ) {
1459         aDesktop->statusBar()->clearMessage();
1460       }
1461     }
1462   }
1463
1464   return LightApp_Module::eventFilter( theObj, theEvent );
1465 }
1466
1467 void HYDROGUI_Module::onViewManagerAdded( SUIT_ViewManager* theViewManager )
1468 {
1469   LightApp_Module::onViewManagerAdded( theViewManager );
1470
1471   if( theViewManager->getType() == GraphicsView_Viewer::Type() )
1472   { 
1473     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1474              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1475   }
1476   else if( theViewManager->getType() == OCCViewer_Viewer::Type() )
1477   {
1478     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1479              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1480     connect( theViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
1481              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1482   }
1483   else if( theViewManager->getType() == SVTK_Viewer::Type() )
1484   {
1485     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1486              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1487     connect( theViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
1488              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1489   }
1490
1491   createSelector( theViewManager ); // replace the default selector
1492
1493   ViewManagerInfo anInfo( theViewManager, VMR_General );
1494   myViewManagerMap.insert( ViewManagerId++, anInfo );
1495 }
1496
1497 void HYDROGUI_Module::onViewManagerRemoved( SUIT_ViewManager* theViewManager )
1498 {
1499   LightApp_Module::onViewManagerRemoved( theViewManager );
1500
1501   createSelector( theViewManager ); // replace the default selector
1502
1503   int anId = getViewManagerId( theViewManager );
1504   if( anId != -1 )
1505   {
1506     OCCViewer_ViewManager* anOCCViewManager =
1507       ::qobject_cast<OCCViewer_ViewManager*>( myViewManagerMap[ anId ].first );
1508     if ( anOCCViewManager )
1509     {
1510       OCCViewer_Viewer* anOCCViewer = anOCCViewManager->getOCCViewer();
1511       if ( anOCCViewer ) {
1512         int aViewerId = (size_t)anOCCViewer;
1513         removeViewShapes( aViewerId );
1514         setLandCoversScalarMapModeOff( aViewerId );
1515       }
1516     }
1517
1518     if ( getVTKDisplayer()->IsApplicable( theViewManager ) )
1519     {
1520       SVTK_Viewer* aVTKViewer = getVTKViewer( anId );
1521       if ( aVTKViewer )
1522       {
1523         getVTKDisplayer()->EraseScalarBar( anId, true );
1524         removeViewShapes( (size_t)aVTKViewer );
1525       }
1526     }
1527
1528     myViewManagerMap.remove( anId );
1529   }
1530 }
1531
1532 void HYDROGUI_Module::onViewCreated( SUIT_ViewWindow* theViewWindow )
1533 {
1534   if( theViewWindow && theViewWindow->inherits( "GraphicsView_ViewFrame" ) )
1535   {
1536     if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( theViewWindow ) )
1537     {
1538       aViewFrame->installEventFilter( this );
1539
1540       GraphicsView_ViewPort* aViewPort = aViewFrame->getViewPort();
1541
1542       connect( aViewPort, SIGNAL( vpMouseEvent( QGraphicsSceneMouseEvent* ) ),
1543                this, SLOT( onViewPortMouseEvent( QGraphicsSceneMouseEvent* ) ) );
1544     }
1545   }
1546   else if( theViewWindow && theViewWindow->inherits( "OCCViewer_ViewFrame" ) )
1547   {
1548     if( OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( theViewWindow ) )
1549     {
1550       aViewFrame->onTopView();
1551
1552       HYDROGUI_Tool::setOCCActionShown( aViewFrame, OCCViewer_ViewWindow::MaximizedId, false );
1553
1554       OCCViewer_ViewPort3d* aViewPort = aViewFrame->getViewPort();
1555       if ( aViewPort ) {
1556         aViewPort->installEventFilter( this );
1557       }
1558     }
1559   }
1560   else if( theViewWindow && theViewWindow->inherits( "SVTK_ViewWindow" ) )
1561   {
1562     if( SVTK_ViewWindow* aViewFrame = dynamic_cast<SVTK_ViewWindow*>( theViewWindow ) )
1563     {
1564       aViewFrame->installEventFilter( this );
1565     }
1566   }
1567 }
1568
1569 void HYDROGUI_Module::onViewPortMouseEvent( QGraphicsSceneMouseEvent* theEvent )
1570 {
1571   /* ouv: currently unused
1572   if( GraphicsView_ViewPort* aViewPort = qobject_cast<GraphicsView_ViewPort*>( sender() ) )
1573   {
1574     SUIT_ViewManager* aViewManager = 0;
1575
1576     QObject* aParent = aViewPort;
1577     while( aParent = aParent->parent() )
1578     {
1579       if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( aParent ) )
1580       {
1581         if( GraphicsView_Viewer* aViewer = aViewFrame->getViewer() )
1582         {
1583           aViewManager = aViewer->getViewManager();
1584           break;
1585         }
1586       }
1587     }
1588
1589     if( !aViewManager )
1590       return;
1591
1592     double aMouseX = theEvent->scenePos().x();
1593     double aMouseY = theEvent->scenePos().y();
1594
1595     ViewManagerRole aRole = getViewManagerRole( aViewManager );
1596     if( aRole == VMR_General )
1597     {
1598       int aXDeg = 0, aYDeg = 0;
1599       int aXMin = 0, aYMin = 0;
1600       double aXSec = 0, aYSec = 0;
1601       HYDROData_Lambert93::secToDMS( aMouseX, aXDeg, aXMin, aXSec );
1602       HYDROData_Lambert93::secToDMS( aMouseY, aYDeg, aYMin, aYSec );
1603
1604       QString aDegSymbol( QChar( 0x00B0 ) );
1605       QString aXStr = QString( "%1%2 %3' %4\"" ).arg( aXDeg ).arg( aDegSymbol ).arg( aXMin ).arg( aXSec );
1606       QString aYStr = QString( "%1%2 %3' %4\"" ).arg( aYDeg ).arg( aDegSymbol ).arg( aYMin ).arg( aYSec );
1607
1608       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( aXStr ).arg( aYStr ) );
1609     }
1610     else if( aRole == VMR_TransformImage )
1611       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( (int)aMouseX ).arg( (int)aMouseY ) );
1612   }
1613   */
1614 }
1615
1616 void HYDROGUI_Module::updateViewer( HYDROGUI_AbstractDisplayer* theDisplayer, 
1617                                     const bool theIsInit, 
1618                                     const bool theIsForced, 
1619                                     const bool theDoFitAll )
1620 {
1621   QList<int> aViewManagerIdList;
1622
1623   // currently, all views are updated
1624   ViewManagerMapIterator anIter( myViewManagerMap );
1625   while( anIter.hasNext() )
1626   { 
1627     SUIT_ViewManager* aViewManager = anIter.next().value().first;
1628
1629     if ( theDisplayer->IsApplicable( aViewManager ) )
1630     {
1631       int anId = anIter.key();
1632       aViewManagerIdList.append( anId );
1633     }
1634   }
1635
1636   QListIterator<int> anIdIter( aViewManagerIdList );
1637   while( anIdIter.hasNext() )
1638   {
1639     theDisplayer->UpdateAll( anIdIter.next(), theIsInit, theIsForced, theDoFitAll );
1640   }
1641 }
1642
1643 void HYDROGUI_Module::createSelector( SUIT_ViewManager* theViewManager )
1644 {
1645   if( !theViewManager )
1646     return;
1647
1648   LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr();
1649   if( !aSelectionMgr )
1650     return;
1651
1652   QString aViewType = theViewManager->getType();
1653   if( aViewType != GraphicsView_Viewer::Type() &&
1654       aViewType != OCCViewer_Viewer::Type())
1655     return;
1656
1657   QList<SUIT_Selector*> aSelectorList;
1658   aSelectionMgr->selectors( aViewType, aSelectorList );
1659
1660   // disable all alien selectors
1661   QList<SUIT_Selector*>::iterator anIter, anIterEnd = aSelectorList.end();
1662   for( anIter = aSelectorList.begin(); anIter != anIterEnd; anIter++ )
1663   {
1664     SUIT_Selector* aSelector = *anIter;
1665     if( aSelector && ( !dynamic_cast<HYDROGUI_GVSelector*>( aSelector ) &&
1666                        !dynamic_cast<SVTK_Selector*>( aSelector ) &&
1667                        !dynamic_cast<HYDROGUI_OCCSelector*>( aSelector ) ) )
1668       aSelector->setEnabled( false );
1669   }
1670
1671   if ( aViewType == GraphicsView_Viewer::Type() )
1672   {
1673     GraphicsView_ViewManager* aViewManager =
1674       ::qobject_cast<GraphicsView_ViewManager*>( theViewManager );
1675     if( aViewManager )
1676       new HYDROGUI_GVSelector( this, aViewManager->getViewer(), aSelectionMgr );
1677   }
1678   else if ( aViewType == OCCViewer_Viewer::Type() )
1679   {
1680     OCCViewer_ViewManager* aViewManager =
1681       ::qobject_cast<OCCViewer_ViewManager*>( theViewManager );
1682     if( aViewManager )
1683       new HYDROGUI_OCCSelector( this, aViewManager->getOCCViewer(), aSelectionMgr );
1684   }
1685 }
1686
1687 bool HYDROGUI_Module::setUpdateEnabled( const bool theState )
1688 {
1689   bool aPrevState = myIsUpdateEnabled;
1690   myIsUpdateEnabled = theState;
1691   return aPrevState;
1692 }
1693
1694 bool HYDROGUI_Module::isUpdateEnabled() const
1695 {
1696   return myIsUpdateEnabled;
1697 }
1698
1699 QStringList HYDROGUI_Module::storeSelection() const
1700 {
1701   QStringList anEntryList;
1702   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1703   {
1704     SUIT_DataOwnerPtrList aList( true );
1705     aSelectionMgr->selected( aList );
1706
1707     SUIT_DataOwnerPtrList::iterator anIter;
1708     for( anIter = aList.begin(); anIter != aList.end(); anIter++ )
1709     {
1710       const LightApp_DataOwner* anOwner = 
1711         dynamic_cast<const LightApp_DataOwner*>( (*anIter).operator->() );
1712       if( anOwner )
1713         anEntryList.append( anOwner->entry() );
1714     }
1715   }
1716   return anEntryList;
1717 }
1718
1719 void HYDROGUI_Module::restoreSelection( const QStringList& theEntryList )
1720 {
1721   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1722   {
1723     SUIT_DataOwnerPtrList aList( true );
1724     for( int anIndex = 0, aSize = theEntryList.size(); anIndex < aSize; anIndex++ )
1725       aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( theEntryList[ anIndex ] ) ) );
1726     aSelectionMgr->setSelected( aList );
1727   }
1728 }
1729
1730 void HYDROGUI_Module::onMouseMove( SUIT_ViewWindow* theViewWindow, QMouseEvent* )
1731 {
1732   double X, Y, Z;
1733   bool doShow = false;
1734   HYDROGUI_Displayer* aDisplayer = getDisplayer();
1735   if ( aDisplayer )
1736     aDisplayer->SaveCursorViewPosition( theViewWindow );
1737     doShow = aDisplayer->GetCursorViewCoordinates( theViewWindow, X, Y, Z );
1738
1739   if ( doShow )
1740   {
1741     // Show the coordinates in the status bar
1742     SUIT_Desktop* aDesktop = getApp()->desktop();
1743     if ( aDesktop && aDesktop->statusBar() )
1744     {
1745       gp_Pnt aWPnt( X, Y, Z );
1746       int aStudyId = application()->activeStudy()->id();
1747       HYDROData_Document::Document( aStudyId )->Transform( aWPnt, false );
1748       double WX = aWPnt.X(), WY = aWPnt.Y();
1749
1750       QString aXStr = HYDROGUI_Tool::GetCoordinateString( X, true );
1751       QString anYStr = HYDROGUI_Tool::GetCoordinateString( Y, true );
1752       QString aWXStr = HYDROGUI_Tool::GetCoordinateString( WX, true );
1753       QString aWYStr = HYDROGUI_Tool::GetCoordinateString( WY, true );
1754       QString aMsg = tr( "COORDINATES_INFO" );
1755       aMsg = aMsg.arg( aXStr ).arg( anYStr ).arg( aWXStr ).arg( aWYStr );
1756       aDesktop->statusBar()->showMessage( aMsg );
1757     }
1758   }
1759 }
1760
1761 /**
1762  * Returns stack of active operations;
1763  */
1764 QStack<HYDROGUI_Operation*>& HYDROGUI_Module::getActiveOperations()
1765 {
1766   return myActiveOperationMap;
1767 }
1768
1769 /**
1770  * Returns the module active operation. If the active operation is show/hide,
1771  * the method returns the previous operation if it is.
1772  */
1773 HYDROGUI_Operation* HYDROGUI_Module::activeOperation()
1774 {
1775   HYDROGUI_Operation* anOp = !myActiveOperationMap.empty() ? myActiveOperationMap.top() : 0;
1776
1777   if ( dynamic_cast<HYDROGUI_ShowHideOp*>( anOp ) )
1778   {
1779     QVectorIterator<HYDROGUI_Operation*> aVIt( myActiveOperationMap );
1780     aVIt.toBack();
1781     aVIt.previous(); // skip the top show/hide operation
1782     anOp = aVIt.hasPrevious() ? aVIt.previous() : 0;
1783   }
1784
1785   return anOp;
1786 }
1787
1788 /*!
1789  * \brief Virtual public slot
1790  *
1791  * This method is called after the object inserted into data view to update their visibility state
1792  * This is default implementation
1793  */
1794 void HYDROGUI_Module::onObjectClicked( SUIT_DataObject* theObject, int theColumn )
1795 {
1796   if ( !isActiveModule() )
1797       return;
1798
1799   HYDROGUI_DataObject* hydroObject = dynamic_cast<HYDROGUI_DataObject*>( theObject );
1800
1801   // change visibility of object
1802   if ( !hydroObject || theColumn != SUIT_DataObject::VisibilityId )
1803       return;
1804
1805   SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( getApp()->objectBrowser()->model() );
1806
1807   QString id = theObject->text( theObject->customData( Qtx::IdType ).toInt() );
1808   Qtx::VisibilityState visState = treeModel->visibilityState( id );
1809   if ( visState == Qtx::UnpresentableState )
1810       return;
1811
1812   visState = visState == Qtx::ShownState ? Qtx::HiddenState : Qtx::ShownState;
1813   treeModel->setVisibilityState( id, visState );
1814
1815   bool vis = visState == Qtx::ShownState;
1816   if ( vis == isObjectVisible( HYDROGUI_Tool::GetActiveViewId( this ), hydroObject->modelObject() ) )
1817       return;
1818
1819   setObjectVisible( HYDROGUI_Tool::GetActiveViewId( this ), hydroObject->modelObject(), vis );
1820
1821   update( UF_OCCViewer | ( visState == Qtx::ShownState ? UF_FitAll : 0 ) );
1822 }
1823
1824 Handle(HYDROData_StricklerTable) HYDROGUI_Module::getLandCoverColoringTable( const int theViewId ) const
1825 {
1826   Handle(HYDROData_StricklerTable) aTable;
1827
1828   if ( myLandCoverColoringMap.contains( theViewId ) ) {
1829     aTable = myLandCoverColoringMap.value( theViewId );
1830   }
1831
1832   return aTable;
1833 }
1834
1835 void HYDROGUI_Module::setLandCoverColoringTable( const int theViewId,
1836                                                  const Handle(HYDROData_StricklerTable)& theTable )
1837 {
1838   if ( !theTable.IsNull() ) {
1839     myLandCoverColoringMap.insert( theViewId, theTable );
1840   }
1841 }
1842
1843 void HYDROGUI_Module::setLandCoversScalarMapModeOff( const int theViewId )
1844 {
1845   myLandCoverColoringMap.remove( theViewId );
1846 }
1847
1848 bool HYDROGUI_Module::isLandCoversScalarMapModeOn( const int theViewId ) const
1849 {
1850   return myLandCoverColoringMap.contains( theViewId );
1851 }
1852
1853 void HYDROGUI_Module::setObjectRemoved( const Handle(HYDROData_Entity)& theObject )
1854 {
1855   if ( theObject.IsNull() || !theObject->IsRemoved() ) {
1856     return;
1857   }
1858
1859   if ( theObject->GetKind() == KIND_STRICKLER_TABLE ) {
1860     Handle(HYDROData_StricklerTable) aTable = 
1861       Handle(HYDROData_StricklerTable)::DownCast( theObject );
1862     QList<int> aViewIds;
1863     QMutableMapIterator<int, Handle(HYDROData_StricklerTable)> anIter( myLandCoverColoringMap );
1864     while ( anIter.hasNext() ) {
1865       if ( HYDROGUI_DataObject::dataObjectEntry( anIter.next().value() ) == 
1866            HYDROGUI_DataObject::dataObjectEntry( aTable ) ) {
1867         anIter.remove();
1868       }
1869     }
1870   }
1871 }