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