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