Salome HOME
refs #568: use ordered list view with selection synchronized with object browser...
[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     if (anIsPolyline || anIsPolyline3D)
679       theMenu->addAction( action( ExportPolylineId ) );
680
681     // Add copy action
682     QAction* aCopyAction = action( CopyId );
683     if( aCopyAction && aCopyAction->isEnabled() ) {
684       theMenu->addAction( action( CopyId ) );
685       theMenu->addSeparator();
686     }
687
688     // Add delete action
689     if( !anIsDummyObject3D )
690       theMenu->addAction( action( DeleteId ) );
691
692     theMenu->addSeparator();
693
694     if( anIsImage || anIsPolyline || anIsPolyline3D || 
695         anIsImmersibleZone || anIsZone || anIsRegion ||
696         anIsBathymetry || anIsObstacle || anIsStream ||
697         anIsChannel || anIsDigue || anIsDummyObject3D ||
698         anIsValidProfile || anIsGroup || anIsLandCover )
699     {
700       if( anIsHiddenInSelection )
701         theMenu->addAction( action( ShowId ) );
702       theMenu->addAction( action( ShowOnlyId ) );
703       if( anIsVisibleInSelection )
704         theMenu->addAction( action( HideId ) );
705       theMenu->addSeparator();
706     }
707   }
708
709   if ( anIsOCCView )
710   {
711     SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
712     HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
713     if ( aPolylineOp && aPolylineOp->deleteEnabled() )
714       theMenu->addAction( action( DeleteId ) );
715
716     theMenu->addSeparator();
717     theMenu->addAction( action( SetZLevelId ) );
718     theMenu->addSeparator();
719   }
720
721   if( anIsObjectBrowser || anIsGraphicsView || anIsOCCView || anIsVTKView )
722   {
723     theMenu->addAction( action( ShowAllId ) );
724     theMenu->addAction( action( HideAllId ) );
725     theMenu->addSeparator();
726   }
727   
728   if ( anIsOCCView || anIsVTKView )
729   {
730     theMenu->addSeparator();
731     theMenu->addAction( action( CopyViewerPositionId ) );
732   }
733
734   if( isRoot )
735     theMenu->addAction( action( EditLocalCSId ) );
736
737   if( anIsObjectBrowser && anOwners.size()==1 )
738   {
739     if( aSeq.Size() > 0 )
740     {
741       Handle( HYDROData_Object ) anObject = Handle( HYDROData_Object )::DownCast( aSeq.First() );
742       if( !anObject.IsNull() )
743       {
744         theMenu->addSeparator();
745         theMenu->addAction( action( SubmersibleId ) );
746         action( SubmersibleId )->setCheckable( true );
747         action( SubmersibleId )->setChecked( anObject->IsSubmersible() );
748       }
749     }
750   }
751 }
752
753 void HYDROGUI_Module::createPreferences()
754 {
755   int genTab = addPreference( tr( "PREF_TAB_GENERAL" ) );
756   int CursorGroup = addPreference( tr( "PREF_GROUP_CURSOR" ), genTab );
757
758   int typeOfCursor = addPreference( tr( "PREF_TYPE_OF_CURSOR" ), CursorGroup,
759                                     LightApp_Preferences::Selector, "preferences", "type_of_cursor" );
760
761   // Set property cursor type
762   QList<QVariant> aCursorTypeIndicesList;
763   QList<QVariant> aCursorTypeIconsList;
764
765   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
766   for ( int i = CT_ArrowCursor; i < CT_User; i++ ) {
767     QString icoFile = QString( "ICON_CURSOR_%1" ).arg( i+1 );
768     QPixmap pixmap = resMgr->loadPixmap( "HYDRO", tr( qPrintable( icoFile ) ) );
769     aCursorTypeIndicesList << i;
770     aCursorTypeIconsList << pixmap;
771   }
772
773   setPreferenceProperty( typeOfCursor, "indexes", aCursorTypeIndicesList );
774   setPreferenceProperty( typeOfCursor, "icons",   aCursorTypeIconsList );
775
776   int viewerGroup = addPreference( tr( "PREF_GROUP_VIEWER" ), genTab );
777   addPreference( tr( "PREF_VIEWER_AUTO_FITALL" ), viewerGroup,
778                  LightApp_Preferences::Bool, "HYDRO", "auto_fit_all" );
779
780   int StricklerTableGroup = addPreference( tr( "PREF_GROUP_STRICKLER_TABLE" ), genTab );
781   int defaultStricklerCoef = addPreference( tr( "PREF_DEFAULT_STRICKLER_COEFFICIENT" ), StricklerTableGroup,
782                                             LightApp_Preferences::DblSpin, "HYDRO", "default_strickler_coefficient" );
783   setPreferenceProperty( defaultStricklerCoef, "precision", 2 );
784   setPreferenceProperty( defaultStricklerCoef, "min", 0.00 );
785   setPreferenceProperty( defaultStricklerCoef, "max", 1000000.00 );
786   setPreferenceProperty( defaultStricklerCoef, "step", 0.01 );
787 }
788
789 QCursor HYDROGUI_Module::getPrefEditCursor() const
790 {
791   int aCursorType = SUIT_Session::session()->resourceMgr()->integerValue("preferences", "type_of_cursor", (int)CT_CrossCursor );
792   if ( aCursorType >= Qt::BlankCursor)
793     aCursorType++;
794   QCursor aCursor = QCursor( Qt::CursorShape(aCursorType) );
795   return aCursor;
796 }
797
798 void HYDROGUI_Module::update( const int flags )
799 {
800   if ( !isUpdateEnabled() )
801     return;
802
803   QApplication::setOverrideCursor( Qt::WaitCursor );
804
805   // To prevent calling this method recursively
806   // from one of the methods called below
807   setUpdateEnabled( false );
808
809   // store selected objects
810   QStringList aSelectedEntries = storeSelection();
811
812   bool aDoFitAll = flags & UF_FitAll;
813   if ( aDoFitAll )
814   {
815     SUIT_ResourceMgr* aResMgr = getApp()->resourceMgr();
816     aDoFitAll = aResMgr->booleanValue( "HYDRO", "auto_fit_all", false );
817   }
818
819   if( ( flags & UF_Viewer ) )
820     updateViewer( getDisplayer(), flags & UF_GV_Init, flags & UF_GV_Forced, aDoFitAll ); 
821
822   if( ( flags & UF_OCCViewer ) )
823     updateViewer( getOCCDisplayer(), flags & UF_OCC_Init, flags & UF_OCC_Forced, aDoFitAll ); 
824
825   if( ( flags & UF_VTKViewer ) )
826     updateViewer( getVTKDisplayer(), flags & UF_VTK_Init, flags & UF_VTK_Forced, aDoFitAll ); 
827
828   if( ( flags & UF_Model ) && getDataModel() && getApp() )
829   {
830     getDataModel()->update( getStudyId() );
831
832     // Temporary workaround to prevent breaking
833     // the selection in the object browser.
834     // Note: processEvents() should be called after updateGV(),
835     // otherwise the application crashes from time to time.
836     //RKV: qApp->processEvents();
837     SUIT_ResourceMgr* aResMgr = getApp()->resourceMgr();
838     bool isResizeOnExpandItem = aResMgr->booleanValue( "ObjectBrowser", "resize_on_expand_item", false );
839     SUIT_DataBrowser* anObjectBrowser = getApp()->objectBrowser();
840     if ( isResizeOnExpandItem && anObjectBrowser ) {
841       anObjectBrowser->setResizeOnExpandItem( false ); // MZN: ISSUE #280 
842     }
843     getApp()->updateObjectBrowser( true );
844     if ( isResizeOnExpandItem && anObjectBrowser ) {
845       anObjectBrowser->setResizeOnExpandItem( true ); // MZN: ISSUE #280 
846     }
847   }
848
849   // Object browser is currently updated by using UF_Model flag
850   if( ( flags & UF_ObjBrowser ) && ((flags & UF_Model) == 0) && getApp() )
851     getApp()->updateObjectBrowser( true );
852
853   if( ( flags & UF_Controls ) && getApp() )
854     getApp()->updateActions();
855
856   // restore selected objects
857   restoreSelection( aSelectedEntries );
858
859   setUpdateEnabled( true );
860
861   QApplication::restoreOverrideCursor();
862 }
863
864 void HYDROGUI_Module::updateCommandsStatus()
865 {
866   LightApp_Module::updateCommandsStatus();
867
868   updateUndoRedoControls();
869
870   action( CopyId )->setEnabled( getDataModel()->canCopy() );
871   action( PasteId )->setEnabled( getDataModel()->canPaste() );
872 }
873
874 void HYDROGUI_Module::selectionChanged()
875 {
876   LightApp_Module::selectionChanged();
877   updateCommandsStatus();
878 }
879
880 HYDROGUI_DataModel* HYDROGUI_Module::getDataModel() const
881 {
882   return (HYDROGUI_DataModel*)dataModel();
883 }
884
885 HYDROGUI_Displayer* HYDROGUI_Module::getDisplayer() const
886 {
887   return myDisplayer;
888 }
889
890 HYDROGUI_OCCDisplayer* HYDROGUI_Module::getOCCDisplayer() const
891 {
892   return myOCCDisplayer;
893 }
894
895 HYDROGUI_VTKPrsDisplayer* HYDROGUI_Module::getVTKDisplayer() const
896 {
897   return myVTKDisplayer;
898 }
899
900 SUIT_ViewManager* HYDROGUI_Module::getViewManager( const int theId ) const
901 {
902   if( myViewManagerMap.contains( theId ) )
903   {
904     return myViewManagerMap[ theId ].first;
905   }
906   return NULL;
907 }
908
909 GraphicsView_Viewer* HYDROGUI_Module::getViewer( const int theId ) const
910 {
911   if( myViewManagerMap.contains( theId ) )
912   {
913     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
914     GraphicsView_ViewManager* aViewManager =
915       dynamic_cast<GraphicsView_ViewManager*>( anInfo.first );
916     if( aViewManager )
917       return aViewManager->getViewer();
918   }
919   return NULL;
920 }
921
922 OCCViewer_Viewer* HYDROGUI_Module::getOCCViewer( const int theId ) const
923 {
924   if( myViewManagerMap.contains( theId ) )
925   {
926     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
927     OCCViewer_ViewManager* aViewManager =
928       ::qobject_cast<OCCViewer_ViewManager*>( anInfo.first );
929     if( aViewManager )
930       return aViewManager->getOCCViewer();
931   }
932   return NULL;
933 }
934
935 SVTK_Viewer* HYDROGUI_Module::getVTKViewer( const int theId ) const
936 {
937   if( myViewManagerMap.contains( theId ) )
938   {
939     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
940     SVTK_ViewManager* aViewManager =
941       ::qobject_cast<SVTK_ViewManager*>( anInfo.first );
942     if( aViewManager )
943       return dynamic_cast<SVTK_Viewer*>( aViewManager->getViewModel() );
944   }
945   return NULL;
946 }
947
948 int HYDROGUI_Module::getViewManagerId( SUIT_ViewManager* theViewManager )
949 {
950   ViewManagerMapIterator anIter( myViewManagerMap );
951   while( anIter.hasNext() )
952   {
953     int anId = anIter.next().key();
954     const ViewManagerInfo& anInfo = anIter.value();
955     if( anInfo.first == theViewManager )
956       return anId;
957   }
958   return -1;
959 }
960
961 HYDROGUI_Module::ViewManagerRole HYDROGUI_Module::getViewManagerRole( SUIT_ViewManager* theViewManager )
962 {
963   int anId = getViewManagerId( theViewManager );
964   if( anId != -1 )
965   {
966     const ViewManagerInfo& anInfo = myViewManagerMap[ anId ];
967     return anInfo.second;
968   }
969   return VMR_Unknown;
970 }
971
972 void HYDROGUI_Module::setViewManagerRole( SUIT_ViewManager* theViewManager,
973                                           const ViewManagerRole theRole )
974 {
975   int anId = getViewManagerId( theViewManager );
976   if( anId != -1 )
977   {
978     ViewManagerInfo& anInfo = myViewManagerMap[ anId ];
979     anInfo.second = theRole;
980   }
981 }
982
983 bool HYDROGUI_Module::isObjectVisible( const int theViewId,
984                                        const Handle(HYDROData_Entity)& theObject ) const
985 {
986   if( theObject.IsNull() )
987     return false;
988
989   if( theViewId < 0 )
990   {
991     //search in all
992     foreach( int aViewId, myObjectStateMap.keys() )
993     {
994       if( isObjectVisible( aViewId, theObject ) )
995         return true;
996     }
997     return false;
998   }
999
1000   ViewId2Entry2ObjectStateMap::const_iterator anIter1 = myObjectStateMap.find( theViewId );
1001   if( anIter1 != myObjectStateMap.end() )
1002   {
1003     const Entry2ObjectStateMap& aEntry2ObjectStateMap = anIter1.value();
1004     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( theObject );
1005
1006     Entry2ObjectStateMap::const_iterator anIter2 = aEntry2ObjectStateMap.find( anEntry );
1007     if( anIter2 != aEntry2ObjectStateMap.end() )
1008     {
1009       const ObjectState& anObjectState = anIter2.value();
1010       return anObjectState.Visibility;
1011     }
1012   }
1013   return false;
1014 }
1015
1016 void HYDROGUI_Module::setObjectVisible( const int theViewId,
1017                                         const Handle(HYDROData_Entity)& theObject,
1018                                         const bool theState )
1019 {
1020   if( !theObject.IsNull() )
1021   {
1022     Entry2ObjectStateMap& aEntry2ObjectStateMap = myObjectStateMap[ theViewId ];
1023     QString anEntry = HYDROGUI_DataObject::dataObjectEntry( theObject );
1024
1025     ObjectState& anObjectState = aEntry2ObjectStateMap[ anEntry ];
1026     anObjectState.Visibility = theState;
1027
1028     HYDROGUI_DataObject* hydroObject = getDataModel()->getDataObject( theObject );
1029     if ( hydroObject )
1030     {
1031         SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( getApp()->objectBrowser()->model() );
1032         QString id = hydroObject->text( hydroObject->customData( Qtx::IdType ).toInt() );
1033         Qtx::VisibilityState visState = treeModel->visibilityState( id );
1034         if ( visState != Qtx::UnpresentableState )
1035             treeModel->setVisibilityState( id, theState ? Qtx::ShownState : Qtx::HiddenState );
1036     }
1037   }
1038 }
1039
1040 void HYDROGUI_Module::setIsToUpdate( const Handle(HYDROData_Entity)& theObject,
1041                                      const bool theState )
1042 {
1043   if( !theObject.IsNull() )
1044   {
1045     // Process OCC shapes
1046     ViewId2ListOfShapes::const_iterator aShapesMapIter( myShapesMap.begin() );
1047     while( aShapesMapIter != myShapesMap.end() )
1048     {
1049       const ListOfShapes& aShapesList = aShapesMapIter.value();
1050       foreach ( HYDROGUI_Shape* aShape, aShapesList )
1051       {
1052         if ( aShape && IsEqual( aShape->getObject(), theObject ) )
1053         {
1054           aShape->setIsToUpdate( theState );
1055         }
1056       }
1057       aShapesMapIter++;
1058     }
1059     // Process VTK shapes
1060     ViewId2ListOfVTKPrs::const_iterator aVTKPrsMapIter( myVTKPrsMap.begin() );
1061     while( aVTKPrsMapIter != myVTKPrsMap.end() )
1062     {
1063       const ListOfVTKPrs& aShapesList = aVTKPrsMapIter.value();
1064       foreach ( HYDROGUI_VTKPrs* aShape, aShapesList )
1065       {
1066         if ( aShape && IsEqual( aShape->getObject(), theObject ) )
1067         {
1068           aShape->setIsToUpdate( theState );
1069         }
1070       }
1071       aVTKPrsMapIter++;
1072     }
1073   }
1074 }
1075
1076 /////////////////// OCC SHAPES PROCESSING
1077 QList<HYDROGUI_Shape*> HYDROGUI_Module::getObjectShapes( const int  theViewId,
1078                                                          ObjectKind theKind ) const
1079 {
1080   QList<HYDROGUI_Shape*> aResult;
1081
1082   if ( myShapesMap.contains( theViewId ) )
1083   {
1084     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1085     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
1086     {
1087       if( aShape && aShape->getObject()->GetKind()==theKind )
1088         aResult.append( aShape );
1089     }
1090   }
1091   return aResult;
1092 }
1093
1094 HYDROGUI_Shape* HYDROGUI_Module::getObjectShape( const int                       theViewId,
1095                                                  const Handle(HYDROData_Entity)& theObject ) const
1096 {
1097   HYDROGUI_Shape* aResShape = NULL;
1098   if( theObject.IsNull() )
1099     return aResShape;
1100
1101   if ( myShapesMap.contains( theViewId ) )
1102   {
1103     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1104     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
1105     {
1106       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
1107         continue;
1108
1109       aResShape = aShape;
1110       break;
1111     }
1112   }
1113
1114   return aResShape;
1115 }
1116
1117 void HYDROGUI_Module::setObjectShape( const int                       theViewId,
1118                                       const Handle(HYDROData_Entity)& theObject,
1119                                       HYDROGUI_Shape*                 theShape )
1120 {
1121   if( theObject.IsNull() )
1122     return;
1123
1124   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
1125   aViewShapes.append( theShape );
1126 }
1127
1128 void HYDROGUI_Module::removeObjectShape( const int                       theViewId,
1129                                          const Handle(HYDROData_Entity)& theObject )
1130 {
1131   if ( !myShapesMap.contains( theViewId ) )
1132     return;
1133
1134   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
1135   Handle(HYDROData_Entity) anObject;
1136   for ( int i = 0; i < aViewShapes.length(); )
1137   {
1138     HYDROGUI_Shape* aShape = aViewShapes.at( i );
1139     anObject = aShape->getObject();
1140     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
1141     {
1142       delete aShape;
1143       aViewShapes.removeAt( i );
1144       continue;
1145     }
1146
1147     ++i;
1148   }
1149 }
1150
1151 void HYDROGUI_Module::removeViewShapes( const int theViewId )
1152 {
1153   if ( !myShapesMap.contains( theViewId ) )
1154     return;
1155
1156   const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
1157   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1158   {
1159     HYDROGUI_Shape* aShape = aViewShapes.at( i );
1160     if ( aShape )
1161       delete aShape;
1162   }
1163
1164   myShapesMap.remove( theViewId );
1165 }
1166 /////////////////// END OF OCC SHAPES PROCESSING
1167
1168 /////////////////// VTKPrs PROCESSING
1169 HYDROGUI_VTKPrs* HYDROGUI_Module::getObjectVTKPrs( const int                       theViewId,
1170                                                  const Handle(HYDROData_Entity)& theObject ) const
1171 {
1172   HYDROGUI_VTKPrs* aResShape = NULL;
1173   if( theObject.IsNull() )
1174     return aResShape;
1175
1176   if ( myVTKPrsMap.contains( theViewId ) )
1177   {
1178     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1179     foreach ( HYDROGUI_VTKPrs* aShape, aViewShapes )
1180     {
1181       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
1182         continue;
1183
1184       aResShape = aShape;
1185       break;
1186     }
1187   }
1188
1189   return aResShape;
1190 }
1191
1192 void HYDROGUI_Module::setObjectVTKPrs( const int                       theViewId,
1193                                        const Handle(HYDROData_Entity)& theObject,
1194                                        HYDROGUI_VTKPrs*                 theShape )
1195 {
1196   if( theObject.IsNull() )
1197     return;
1198
1199   if( theShape && theShape->needScalarBar() )
1200   {
1201     // Compute the new global Z range from the added presentation and the old global Z range.
1202     double* aGlobalRange = getVTKDisplayer()->GetZRange( theViewId );
1203     double* aRange = theShape->getInternalZRange();
1204     bool anIsUpdate = false;
1205     if ( aRange[0] < aGlobalRange[0] )
1206     {
1207       aGlobalRange[0] = aRange[0];
1208       anIsUpdate = true;
1209     }
1210     if ( aRange[1] > aGlobalRange[1] )
1211     {
1212       aGlobalRange[1] = aRange[1];
1213       anIsUpdate = true;
1214     }
1215
1216     //if ( anIsUpdate )
1217     //{
1218       updateVTKZRange( theViewId, aGlobalRange );
1219     //}
1220   }
1221
1222   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1223   aViewShapes.append( theShape );
1224 }
1225
1226 void HYDROGUI_Module::removeObjectVTKPrs( const int      theViewId,
1227                                           const QString& theEntry )
1228 {
1229   if ( !myVTKPrsMap.contains( theViewId ) )
1230     return;
1231
1232   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1233   Handle(HYDROData_Entity) anObject;
1234   QString anEntryRef;
1235   for ( int i = 0; i < aViewShapes.length(); )
1236   {
1237     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1238     anObject = aShape->getObject();
1239     anEntryRef = HYDROGUI_DataObject::dataObjectEntry( anObject );
1240     if ( aShape && (!anObject.IsNull()) && ( anEntryRef == theEntry ) )
1241     {
1242       delete aShape;
1243       aViewShapes.removeAt( i );
1244       continue;
1245     }
1246
1247     ++i;
1248   }
1249
1250   // Invalidate global Z range
1251   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
1252   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
1253 }
1254
1255 void HYDROGUI_Module::removeObjectVTKPrs( const int                       theViewId,
1256                                           const Handle(HYDROData_Entity)& theObject )
1257 {
1258   if ( !myVTKPrsMap.contains( theViewId ) )
1259     return;
1260
1261   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
1262   Handle(HYDROData_Entity) anObject;
1263   for ( int i = 0; i < aViewShapes.length(); )
1264   {
1265     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1266     anObject = aShape->getObject();
1267     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
1268     {
1269       delete aShape;
1270       aViewShapes.removeAt( i );
1271       continue;
1272     }
1273
1274     ++i;
1275   }
1276
1277   // Invalidate global Z range
1278   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
1279   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
1280 }
1281
1282 void HYDROGUI_Module::removeViewVTKPrs( const int theViewId )
1283 {
1284   if ( !myVTKPrsMap.contains( theViewId ) )
1285     return;
1286
1287   const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1288   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1289   {
1290     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
1291     if ( aShape )
1292       delete aShape;
1293   }
1294
1295   myVTKPrsMap.remove( theViewId );
1296 }
1297
1298 void HYDROGUI_Module::updateVTKZRange( const int theViewId, double theRange[] )
1299 {
1300   if ( myVTKPrsMap.contains( theViewId ) )
1301   {
1302     // For the given viewer id update all VTK presentations ...
1303     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
1304     HYDROGUI_VTKPrs* aShape;
1305     for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
1306     {
1307       aShape = aViewShapes.at( i );
1308       if ( aShape && aShape->needScalarBar() )
1309       {
1310         aShape->setZRange( theRange );
1311       }
1312     }
1313   }
1314   // ... and update the global color legend scalar bar.
1315   getVTKDisplayer()->SetZRange( theViewId, theRange );
1316 }
1317 /////////////////// END OF VTKPrs PROCESSING
1318
1319 CAM_DataModel* HYDROGUI_Module::createDataModel()
1320 {
1321   return new HYDROGUI_DataModel( this );
1322 }
1323
1324 void HYDROGUI_Module::customEvent( QEvent* e )
1325 {
1326   int aType = e->type();
1327   if ( aType == NewViewEvent )
1328   {
1329     SALOME_CustomEvent* ce = ( SALOME_CustomEvent* )e;
1330     if( GraphicsView_ViewFrame* aViewFrame = ( GraphicsView_ViewFrame* )ce->data() )
1331     {
1332       if( GraphicsView_Viewer* aViewer = dynamic_cast<GraphicsView_Viewer*>( aViewFrame->getViewer() ) )
1333       {
1334         SUIT_ViewManager* aViewManager = aViewer->getViewManager();
1335         ViewManagerRole aRole = getViewManagerRole( aViewManager );
1336
1337         if( GraphicsView_ViewPort* aViewPort = aViewer->getActiveViewPort() )
1338         {
1339           if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
1340             aViewPort->scale( 1, -1 ); // invert the Y axis direction from down to up
1341
1342           aViewPort->setInteractionFlag( GraphicsView_ViewPort::TraceBoundingRect );
1343           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateContextMenu );
1344           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateSelection );
1345
1346           //ouv: temporarily commented
1347           //aViewPort->setViewLabelPosition( GraphicsView_ViewPort::VLP_BottomLeft, true );
1348         }
1349
1350         if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
1351           update( UF_Viewer );
1352
1353         aViewer->activateTransform( GraphicsView_Viewer::FitAll );
1354       }
1355     }
1356   }
1357 }
1358
1359 bool HYDROGUI_Module::eventFilter( QObject* theObj, QEvent* theEvent )
1360 {
1361   QEvent::Type aType = theEvent->type();
1362   if( theObj->inherits( "GraphicsView_ViewFrame" ) )
1363   {
1364     if( aType == QEvent::Show )
1365     {
1366       SALOME_CustomEvent* e = new SALOME_CustomEvent( NewViewEvent );
1367       e->setData( theObj );
1368       QApplication::postEvent( this, e );
1369       theObj->removeEventFilter( this );
1370     }
1371   }
1372   else if ( theObj->inherits( "OCCViewer_ViewPort" ) )
1373   {
1374     if( aType == QEvent::Leave )
1375     {
1376       SUIT_Desktop* aDesktop = getApp()->desktop();
1377       if ( aDesktop && aDesktop->statusBar() ) {
1378         aDesktop->statusBar()->clearMessage();
1379       }
1380     }
1381   }
1382   else if ( theObj->inherits( "SVTK_ViewWindow" ) )
1383   {
1384     if( aType == QEvent::Leave )
1385     {
1386       SUIT_Desktop* aDesktop = getApp()->desktop();
1387       if ( aDesktop && aDesktop->statusBar() ) {
1388         aDesktop->statusBar()->clearMessage();
1389       }
1390     }
1391   }
1392
1393   return LightApp_Module::eventFilter( theObj, theEvent );
1394 }
1395
1396 void HYDROGUI_Module::onViewManagerAdded( SUIT_ViewManager* theViewManager )
1397 {
1398   LightApp_Module::onViewManagerAdded( theViewManager );
1399
1400   if( theViewManager->getType() == GraphicsView_Viewer::Type() )
1401   { 
1402     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1403              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1404   }
1405   else if( theViewManager->getType() == OCCViewer_Viewer::Type() )
1406   {
1407     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1408              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1409     connect( theViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
1410              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1411   }
1412   else if( theViewManager->getType() == SVTK_Viewer::Type() )
1413   {
1414     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
1415              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
1416     connect( theViewManager, SIGNAL( mouseMove( SUIT_ViewWindow*, QMouseEvent* ) ),
1417              this, SLOT( onMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1418   }
1419
1420   createSelector( theViewManager ); // replace the default selector
1421
1422   ViewManagerInfo anInfo( theViewManager, VMR_General );
1423   myViewManagerMap.insert( ViewManagerId++, anInfo );
1424 }
1425
1426 void HYDROGUI_Module::onViewManagerRemoved( SUIT_ViewManager* theViewManager )
1427 {
1428   LightApp_Module::onViewManagerRemoved( theViewManager );
1429
1430   createSelector( theViewManager ); // replace the default selector
1431
1432   int anId = getViewManagerId( theViewManager );
1433   if( anId != -1 )
1434   {
1435     OCCViewer_ViewManager* anOCCViewManager =
1436       ::qobject_cast<OCCViewer_ViewManager*>( myViewManagerMap[ anId ].first );
1437     if ( anOCCViewManager )
1438     {
1439       OCCViewer_Viewer* anOCCViewer = anOCCViewManager->getOCCViewer();
1440       if ( anOCCViewer )
1441         removeViewShapes( (size_t)anOCCViewer );
1442     }
1443
1444     if ( getVTKDisplayer()->IsApplicable( theViewManager ) )
1445     {
1446       SVTK_Viewer* aVTKViewer = getVTKViewer( anId );
1447       if ( aVTKViewer )
1448       {
1449         getVTKDisplayer()->EraseScalarBar( anId, true );
1450         removeViewShapes( (size_t)aVTKViewer );
1451       }
1452     }
1453
1454     myViewManagerMap.remove( anId );
1455   }
1456 }
1457
1458 void HYDROGUI_Module::onViewCreated( SUIT_ViewWindow* theViewWindow )
1459 {
1460   if( theViewWindow && theViewWindow->inherits( "GraphicsView_ViewFrame" ) )
1461   {
1462     if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( theViewWindow ) )
1463     {
1464       aViewFrame->installEventFilter( this );
1465
1466       GraphicsView_ViewPort* aViewPort = aViewFrame->getViewPort();
1467
1468       connect( aViewPort, SIGNAL( vpMouseEvent( QGraphicsSceneMouseEvent* ) ),
1469                this, SLOT( onViewPortMouseEvent( QGraphicsSceneMouseEvent* ) ) );
1470     }
1471   }
1472   else if( theViewWindow && theViewWindow->inherits( "OCCViewer_ViewFrame" ) )
1473   {
1474     if( OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( theViewWindow ) )
1475     {
1476       aViewFrame->onTopView();
1477
1478       HYDROGUI_Tool::setOCCActionShown( aViewFrame, OCCViewer_ViewWindow::MaximizedId, false );
1479
1480       OCCViewer_ViewPort3d* aViewPort = aViewFrame->getViewPort();
1481       if ( aViewPort ) {
1482         aViewPort->installEventFilter( this );
1483       }
1484     }
1485   }
1486   else if( theViewWindow && theViewWindow->inherits( "SVTK_ViewWindow" ) )
1487   {
1488     if( SVTK_ViewWindow* aViewFrame = dynamic_cast<SVTK_ViewWindow*>( theViewWindow ) )
1489     {
1490       aViewFrame->installEventFilter( this );
1491     }
1492   }
1493 }
1494
1495 void HYDROGUI_Module::onViewPortMouseEvent( QGraphicsSceneMouseEvent* theEvent )
1496 {
1497   /* ouv: currently unused
1498   if( GraphicsView_ViewPort* aViewPort = qobject_cast<GraphicsView_ViewPort*>( sender() ) )
1499   {
1500     SUIT_ViewManager* aViewManager = 0;
1501
1502     QObject* aParent = aViewPort;
1503     while( aParent = aParent->parent() )
1504     {
1505       if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( aParent ) )
1506       {
1507         if( GraphicsView_Viewer* aViewer = aViewFrame->getViewer() )
1508         {
1509           aViewManager = aViewer->getViewManager();
1510           break;
1511         }
1512       }
1513     }
1514
1515     if( !aViewManager )
1516       return;
1517
1518     double aMouseX = theEvent->scenePos().x();
1519     double aMouseY = theEvent->scenePos().y();
1520
1521     ViewManagerRole aRole = getViewManagerRole( aViewManager );
1522     if( aRole == VMR_General )
1523     {
1524       int aXDeg = 0, aYDeg = 0;
1525       int aXMin = 0, aYMin = 0;
1526       double aXSec = 0, aYSec = 0;
1527       HYDROData_Lambert93::secToDMS( aMouseX, aXDeg, aXMin, aXSec );
1528       HYDROData_Lambert93::secToDMS( aMouseY, aYDeg, aYMin, aYSec );
1529
1530       QString aDegSymbol( QChar( 0x00B0 ) );
1531       QString aXStr = QString( "%1%2 %3' %4\"" ).arg( aXDeg ).arg( aDegSymbol ).arg( aXMin ).arg( aXSec );
1532       QString aYStr = QString( "%1%2 %3' %4\"" ).arg( aYDeg ).arg( aDegSymbol ).arg( aYMin ).arg( aYSec );
1533
1534       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( aXStr ).arg( aYStr ) );
1535     }
1536     else if( aRole == VMR_TransformImage )
1537       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( (int)aMouseX ).arg( (int)aMouseY ) );
1538   }
1539   */
1540 }
1541
1542 void HYDROGUI_Module::updateViewer( HYDROGUI_AbstractDisplayer* theDisplayer, 
1543                                     const bool theIsInit, 
1544                                     const bool theIsForced, 
1545                                     const bool theDoFitAll )
1546 {
1547   QList<int> aViewManagerIdList;
1548
1549   // currently, all views are updated
1550   ViewManagerMapIterator anIter( myViewManagerMap );
1551   while( anIter.hasNext() )
1552   { 
1553     SUIT_ViewManager* aViewManager = anIter.next().value().first;
1554
1555     if ( theDisplayer->IsApplicable( aViewManager ) )
1556     {
1557       int anId = anIter.key();
1558       aViewManagerIdList.append( anId );
1559     }
1560   }
1561
1562   QListIterator<int> anIdIter( aViewManagerIdList );
1563   while( anIdIter.hasNext() )
1564   {
1565     theDisplayer->UpdateAll( anIdIter.next(), theIsInit, theIsForced, theDoFitAll );
1566   }
1567 }
1568
1569 void HYDROGUI_Module::createSelector( SUIT_ViewManager* theViewManager )
1570 {
1571   if( !theViewManager )
1572     return;
1573
1574   LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr();
1575   if( !aSelectionMgr )
1576     return;
1577
1578   QString aViewType = theViewManager->getType();
1579   if( aViewType != GraphicsView_Viewer::Type() &&
1580       aViewType != OCCViewer_Viewer::Type())
1581     return;
1582
1583   QList<SUIT_Selector*> aSelectorList;
1584   aSelectionMgr->selectors( aViewType, aSelectorList );
1585
1586   // disable all alien selectors
1587   QList<SUIT_Selector*>::iterator anIter, anIterEnd = aSelectorList.end();
1588   for( anIter = aSelectorList.begin(); anIter != anIterEnd; anIter++ )
1589   {
1590     SUIT_Selector* aSelector = *anIter;
1591     if( aSelector && ( !dynamic_cast<HYDROGUI_GVSelector*>( aSelector ) &&
1592                        !dynamic_cast<SVTK_Selector*>( aSelector ) &&
1593                        !dynamic_cast<HYDROGUI_OCCSelector*>( aSelector ) ) )
1594       aSelector->setEnabled( false );
1595   }
1596
1597   if ( aViewType == GraphicsView_Viewer::Type() )
1598   {
1599     GraphicsView_ViewManager* aViewManager =
1600       ::qobject_cast<GraphicsView_ViewManager*>( theViewManager );
1601     if( aViewManager )
1602       new HYDROGUI_GVSelector( this, aViewManager->getViewer(), aSelectionMgr );
1603   }
1604   else if ( aViewType == OCCViewer_Viewer::Type() )
1605   {
1606     OCCViewer_ViewManager* aViewManager =
1607       ::qobject_cast<OCCViewer_ViewManager*>( theViewManager );
1608     if( aViewManager )
1609       new HYDROGUI_OCCSelector( this, aViewManager->getOCCViewer(), aSelectionMgr );
1610   }
1611 }
1612
1613 bool HYDROGUI_Module::setUpdateEnabled( const bool theState )
1614 {
1615   bool aPrevState = myIsUpdateEnabled;
1616   myIsUpdateEnabled = theState;
1617   return aPrevState;
1618 }
1619
1620 bool HYDROGUI_Module::isUpdateEnabled() const
1621 {
1622   return myIsUpdateEnabled;
1623 }
1624
1625 QStringList HYDROGUI_Module::storeSelection() const
1626 {
1627   QStringList anEntryList;
1628   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1629   {
1630     SUIT_DataOwnerPtrList aList( true );
1631     aSelectionMgr->selected( aList );
1632
1633     SUIT_DataOwnerPtrList::iterator anIter;
1634     for( anIter = aList.begin(); anIter != aList.end(); anIter++ )
1635     {
1636       const LightApp_DataOwner* anOwner = 
1637         dynamic_cast<const LightApp_DataOwner*>( (*anIter).operator->() );
1638       if( anOwner )
1639         anEntryList.append( anOwner->entry() );
1640     }
1641   }
1642   return anEntryList;
1643 }
1644
1645 void HYDROGUI_Module::restoreSelection( const QStringList& theEntryList )
1646 {
1647   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1648   {
1649     SUIT_DataOwnerPtrList aList( true );
1650     for( int anIndex = 0, aSize = theEntryList.size(); anIndex < aSize; anIndex++ )
1651       aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( theEntryList[ anIndex ] ) ) );
1652     aSelectionMgr->setSelected( aList );
1653   }
1654 }
1655
1656 void HYDROGUI_Module::onMouseMove( SUIT_ViewWindow* theViewWindow, QMouseEvent* )
1657 {
1658   double X, Y, Z;
1659   bool doShow = false;
1660   HYDROGUI_Displayer* aDisplayer = getDisplayer();
1661   if ( aDisplayer )
1662     aDisplayer->SaveCursorViewPosition( theViewWindow );
1663     doShow = aDisplayer->GetCursorViewCoordinates( theViewWindow, X, Y, Z );
1664
1665   if ( doShow )
1666   {
1667     // Show the coordinates in the status bar
1668     SUIT_Desktop* aDesktop = getApp()->desktop();
1669     if ( aDesktop && aDesktop->statusBar() )
1670     {
1671       gp_Pnt aWPnt( X, Y, Z );
1672       int aStudyId = application()->activeStudy()->id();
1673       HYDROData_Document::Document( aStudyId )->Transform( aWPnt, false );
1674       double WX = aWPnt.X(), WY = aWPnt.Y();
1675
1676       QString aXStr = HYDROGUI_Tool::GetCoordinateString( X, true );
1677       QString anYStr = HYDROGUI_Tool::GetCoordinateString( Y, true );
1678       QString aWXStr = HYDROGUI_Tool::GetCoordinateString( WX, true );
1679       QString aWYStr = HYDROGUI_Tool::GetCoordinateString( WY, true );
1680       QString aMsg = tr( "COORDINATES_INFO" );
1681       aMsg = aMsg.arg( aXStr ).arg( anYStr ).arg( aWXStr ).arg( aWYStr );
1682       aDesktop->statusBar()->showMessage( aMsg );
1683     }
1684   }
1685 }
1686
1687 /**
1688  * Returns stack of active operations;
1689  */
1690 QStack<HYDROGUI_Operation*>& HYDROGUI_Module::getActiveOperations()
1691 {
1692   return myActiveOperationMap;
1693 }
1694
1695 /**
1696  * Returns the module active operation. If the active operation is show/hide,
1697  * the method returns the previous operation if it is.
1698  */
1699 HYDROGUI_Operation* HYDROGUI_Module::activeOperation()
1700 {
1701   HYDROGUI_Operation* anOp = !myActiveOperationMap.empty() ? myActiveOperationMap.top() : 0;
1702
1703   if ( dynamic_cast<HYDROGUI_ShowHideOp*>( anOp ) )
1704   {
1705     QVectorIterator<HYDROGUI_Operation*> aVIt( myActiveOperationMap );
1706     aVIt.toBack();
1707     aVIt.previous(); // skip the top show/hide operation
1708     anOp = aVIt.hasPrevious() ? aVIt.previous() : 0;
1709   }
1710
1711   return anOp;
1712 }
1713
1714 /*!
1715  * \brief Virtual public slot
1716  *
1717  * This method is called after the object inserted into data view to update their visibility state
1718  * This is default implementation
1719  */
1720 void HYDROGUI_Module::onObjectClicked( SUIT_DataObject* theObject, int theColumn )
1721 {
1722   if ( !isActiveModule() )
1723       return;
1724
1725   HYDROGUI_DataObject* hydroObject = dynamic_cast<HYDROGUI_DataObject*>( theObject );
1726
1727   // change visibility of object
1728   if ( !hydroObject || theColumn != SUIT_DataObject::VisibilityId )
1729       return;
1730
1731   SUIT_AbstractModel* treeModel = dynamic_cast<SUIT_AbstractModel*>( getApp()->objectBrowser()->model() );
1732
1733   QString id = theObject->text( theObject->customData( Qtx::IdType ).toInt() );
1734   Qtx::VisibilityState visState = treeModel->visibilityState( id );
1735   if ( visState == Qtx::UnpresentableState )
1736       return;
1737
1738   visState = visState == Qtx::ShownState ? Qtx::HiddenState : Qtx::ShownState;
1739   treeModel->setVisibilityState( id, visState );
1740
1741   bool vis = visState == Qtx::ShownState;
1742   if ( vis == isObjectVisible( HYDROGUI_Tool::GetActiveViewId( this ), hydroObject->modelObject() ) )
1743       return;
1744
1745   setObjectVisible( HYDROGUI_Tool::GetActiveViewId( this ), hydroObject->modelObject(), vis );
1746
1747   update( UF_OCCViewer | ( visState == Qtx::ShownState ? UF_FitAll : 0 ) );
1748 }