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