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