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