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