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