Salome HOME
Creat\Edit stream operation.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Module.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #include "HYDROGUI_Module.h"
24
25 #include "HYDROGUI.h"
26 #include "HYDROGUI_DataModel.h"
27 #include "HYDROGUI_Displayer.h"
28 #include "HYDROGUI_GVSelector.h"
29 #include "HYDROGUI_InputPanel.h"
30 #include "HYDROGUI_ObjSelector.h"
31 #include "HYDROGUI_OCCDisplayer.h"
32 #include "HYDROGUI_OCCSelector.h"
33 #include "HYDROGUI_Operations.h"
34 #include "HYDROGUI_PrsImage.h"
35 #include "HYDROGUI_Tool.h"
36 #include "HYDROGUI_UpdateFlags.h"
37 #include "HYDROGUI_Shape.h"
38 #include "HYDROGUI_VTKPrs.h"
39 #include "HYDROGUI_VTKPrsDisplayer.h"
40 #include "HYDROGUI_AbstractDisplayer.h"
41 #include "HYDROGUI_PolylineOp.h"
42
43 #include <HYDROData_Image.h>
44 #include <HYDROData_Profile.h>
45 #include <HYDROData_Lambert93.h>
46 #include <HYDROData_Tool.h>
47
48 #include <HYDROData_OperationsFactory.h>
49
50 #include <GraphicsView_ViewFrame.h>
51 #include <GraphicsView_ViewManager.h>
52 #include <GraphicsView_ViewPort.h>
53 #include <GraphicsView_Viewer.h>
54
55 #include <ImageComposer_CutOperator.h>
56 #include <ImageComposer_CropOperator.h>
57 #include <ImageComposer_FuseOperator.h>
58
59 #include <LightApp_Application.h>
60 #include <LightApp_DataOwner.h>
61 #include <LightApp_GVSelector.h>
62 #include <LightApp_SelectionMgr.h>
63 #include <LightApp_UpdateFlags.h>
64
65 #include <OCCViewer_ViewFrame.h>
66 #include <OCCViewer_ViewManager.h>
67 #include <OCCViewer_ViewModel.h>
68
69 #include <SALOME_Event.h>
70
71 #include <SUIT_DataBrowser.h>
72 #include <SUIT_Desktop.h>
73 #include <SUIT_Study.h>
74 #include <SUIT_ViewManager.h>
75
76 #include <SVTK_ViewManager.h>
77 #include <SVTK_ViewModel.h>
78 #include <SVTK_Selector.h>
79
80 #include <QAction>
81 #include <QApplication>
82 #include <QGraphicsSceneMouseEvent>
83 #include <QMenu>
84
85 static int ViewManagerId = 0;
86
87 extern "C" HYDRO_EXPORT CAM_Module* createModule()
88 {
89   return new HYDROGUI_Module();
90 }
91
92 extern "C" HYDRO_EXPORT char* getModuleVersion()
93 {
94   return (char*)HYDRO_VERSION;
95 }
96
97 HYDROGUI_Module::HYDROGUI_Module()
98 : LightApp_Module( "HYDRO" ),
99   myDisplayer( 0 ),
100   myOCCDisplayer( 0 ),
101   myIsUpdateEnabled( true )
102 {
103 }
104
105 HYDROGUI_Module::~HYDROGUI_Module()
106 {
107 }
108
109 int HYDROGUI_Module::getStudyId() const
110 {
111   LightApp_Application* anApp = getApp();
112   return anApp ? anApp->activeStudy()->id() : 0;
113 }
114
115 void HYDROGUI_Module::initialize( CAM_Application* theApp )
116 {
117   LightApp_Module::initialize( theApp );
118
119   createActions();
120   createUndoRedoActions();
121   createMenus();
122   createPopups();
123   createToolbars();
124
125   setMenuShown( false );
126   setToolShown( false );
127
128   myDisplayer = new HYDROGUI_Displayer( this );
129   myOCCDisplayer = new HYDROGUI_OCCDisplayer( this );
130   myVTKDisplayer = new HYDROGUI_VTKPrsDisplayer( this );
131 }
132
133 bool HYDROGUI_Module::activateModule( SUIT_Study* theStudy )
134 {
135   bool aRes = LightApp_Module::activateModule( theStudy );
136
137   LightApp_Application* anApp = getApp();
138   SUIT_Desktop* aDesktop = anApp->desktop();
139
140   getApp()->setEditEnabled( false ); // hide SalomeApp copy/paste actions
141
142   setMenuShown( true );
143   setToolShown( true );
144
145 #ifndef DISABLE_PYCONSOLE
146   aDesktop->tabifyDockWidget( HYDROGUI_Tool::WindowDock( anApp->getWindow( LightApp_Application::WT_PyConsole ) ), 
147                               HYDROGUI_Tool::WindowDock( anApp->getWindow( LightApp_Application::WT_LogWindow ) ) );
148 #endif
149
150   update( UF_All );
151
152   updateCommandsStatus();
153
154   connect( anApp, SIGNAL( operationFinished( const QString&, const QString&, const QStringList& ) ), 
155            this, SLOT( onExternalOperationFinished( const QString&, const QString&, const QStringList& ) ) );
156
157   HYDROGUI_Tool::setOCCActionShown( this, OCCViewer_ViewWindow::MaximizedId, false );
158
159   return aRes;
160 }
161
162 bool HYDROGUI_Module::deactivateModule( SUIT_Study* theStudy )
163 {
164   ViewManagerMapIterator anIter( myViewManagerMap );
165   while( anIter.hasNext() )
166     if( SUIT_ViewManager* aViewManager = anIter.next().value().first )
167       getApp()->removeViewManager( aViewManager );
168   myViewManagerMap.clear();
169
170   myObjectStateMap.clear();
171   myShapesMap.clear();
172   myVTKPrsMap.clear();
173
174   // clear the data model's list of copying objects
175   HYDROGUI_DataModel::changeCopyingObjects( HYDROData_SequenceOfObjects() );
176
177   setMenuShown( false );
178   setToolShown( false );
179
180   getApp()->setEditEnabled( true ); // show SalomeApp copy/paste actions
181
182   disconnect( getApp(), SIGNAL( operationFinished( const QString&, const QString&, const QStringList& ) ), 
183               this, SLOT( onExternalOperationFinished( const QString&, const QString&, const QStringList& ) ) );
184
185   HYDROGUI_Tool::setOCCActionShown( this, OCCViewer_ViewWindow::MaximizedId, true );
186
187   return LightApp_Module::deactivateModule( theStudy );
188 }
189
190 void HYDROGUI_Module::windows( QMap<int, int>& theMap ) const
191 {
192   theMap.clear();
193   theMap.insert( LightApp_Application::WT_LogWindow,     Qt::BottomDockWidgetArea );
194 #ifndef DISABLE_PYCONSOLE
195   theMap.insert( LightApp_Application::WT_PyConsole,     Qt::BottomDockWidgetArea );
196 #endif
197   theMap.insert( LightApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea   );
198 }
199
200 void HYDROGUI_Module::viewManagers( QStringList& theTypesList ) const
201 {
202   theTypesList << OCCViewer_Viewer::Type() << GraphicsView_Viewer::Type();
203 }
204
205 void HYDROGUI_Module::contextMenuPopup( const QString& theClient,
206                                         QMenu* theMenu,
207                                         QString& theTitle )
208 {
209   HYDROGUI_DataModel* aModel = getDataModel();
210
211   bool anIsObjectBrowser = theClient == getApp()->objectBrowser()->popupClientType();
212   bool anIsGraphicsView = theClient == GraphicsView_Viewer::Type();
213   bool anIsOCCView = theClient == OCCViewer_Viewer::Type();
214   bool anIsVTKView = theClient == SVTK_Viewer::Type();
215   if( !anIsObjectBrowser && !anIsGraphicsView && !anIsOCCView && !anIsVTKView )
216     return;
217
218   size_t anActiveViewId = HYDROGUI_Tool::GetActiveViewId( this );
219
220   bool anIsSelectedDataObjects = false;
221   bool anIsVisibleInSelection = false;
222   bool anIsHiddenInSelection = false;
223
224   bool anIsImage = false;
225   bool anIsImportedImage = false;
226   bool anIsImageHasRefs = false;
227   bool anIsFusedImage = false;
228   bool anIsCutImage = false;
229   bool anIsSplittedImage = false;
230   bool anIsMustBeUpdatedImage = false;
231   bool anIsPolyline = false;
232   bool anIsPolyline3D = false;
233   bool anIsProfile = false;
234   bool anIsValidProfile = false;
235   bool anAllAreProfiles = false;
236   bool anIsBathymetry = false;
237   bool anIsCalculation = false;
238   bool anIsImmersibleZone = false;
239   bool anIsVisualState = false;
240   bool anIsRegion = false;
241   bool anIsZone = false;
242   bool anIsObstacle = false;
243   bool anIsStream = false;
244   bool anIsGeomObject = false;
245
246   // check the selected GEOM objects
247   if ( !HYDROGUI_Tool::GetSelectedGeomObjects( this ).isEmpty() ) {
248     theMenu->addAction( action( ImportGeomObjectId ) );
249     theMenu->addSeparator();
250   }
251
252   // check the selected data model objects
253   HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( this );
254   int aNbOfSelectedProfiles = 0;
255   for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
256   {
257     Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
258     if( !anObject.IsNull() )
259     {
260       anIsSelectedDataObjects = true;
261
262       bool aVisibility = isObjectVisible( anActiveViewId, anObject );
263       anIsVisibleInSelection |= aVisibility;
264       anIsHiddenInSelection |= !aVisibility;
265
266       ObjectKind anObjectKind = anObject->GetKind();
267       if( anObjectKind == KIND_IMAGE )
268       {
269         anIsImage = true;
270         Handle(HYDROData_Image) anImage = Handle(HYDROData_Image)::DownCast( anObject );
271         if( !anImage.IsNull() )
272         {
273           anIsImportedImage = anImage->HasLocalPoints();
274           anIsImageHasRefs = anImage->HasReferences();
275           if( HYDROData_OperationsFactory* aFactory = HYDROData_OperationsFactory::Factory() )
276           {
277             if( ImageComposer_Operator* anOperator = aFactory->Operator( anImage ) )
278             {
279               QString anOperatorName = anOperator->name();
280               if( anOperatorName == ImageComposer_FuseOperator::Type() )
281                 anIsFusedImage = true;
282               else if( anOperatorName == ImageComposer_CutOperator::Type() )
283                 anIsCutImage = true;
284               else if( anOperatorName == ImageComposer_CropOperator::Type() )
285                 anIsSplittedImage = true;
286             }
287           }
288           if ( anImage->IsMustBeUpdated() )
289           {
290             anIsMustBeUpdatedImage = true;
291           }
292         }
293       }
294       else if( anObjectKind == KIND_POLYLINEXY )
295         anIsPolyline = true;
296       else if( anObjectKind == KIND_POLYLINE )
297         anIsPolyline3D = true;
298       else if( anObjectKind == KIND_PROFILE )
299       {
300         anIsProfile = true;
301         aNbOfSelectedProfiles++;
302
303         Handle(HYDROData_Profile) aProfile = 
304           Handle(HYDROData_Profile)::DownCast( anObject );
305         if( !aProfile.IsNull() && aProfile->IsValid() ) {
306           anIsValidProfile = true;
307         }
308       }
309       else if( anObjectKind == KIND_CALCULATION )
310         anIsCalculation = true;
311       else if( anObjectKind == KIND_IMMERSIBLE_ZONE )
312         anIsImmersibleZone = true;
313       else if( anObjectKind == KIND_VISUAL_STATE )
314         anIsVisualState = true;
315       else if( anObjectKind == KIND_REGION )
316         anIsRegion = true;
317       else if( anObjectKind == KIND_ZONE )
318         anIsZone = true;
319       else if( anObjectKind == KIND_BATHYMETRY )
320         anIsBathymetry = true;
321       else if( anObjectKind == KIND_OBSTACLE )
322         anIsObstacle = true;
323       else if( anObjectKind == KIND_STREAM )
324         anIsStream = true;
325     }
326
327     anIsGeomObject = HYDROData_Tool::IsGeometryObject( anObject );
328   }
329
330   // Check if all selected objects are profiles
331   anAllAreProfiles = ( aNbOfSelectedProfiles > 0 ) &&
332                      ( aNbOfSelectedProfiles == aSeq.Length() );
333
334   // check the selected partitions
335   if( !anIsSelectedDataObjects && anIsObjectBrowser )
336   {
337     ObjectKind aSelectedPartition = HYDROGUI_Tool::GetSelectedPartition( this );
338     if( aSelectedPartition != KIND_UNKNOWN )
339     {
340       switch( aSelectedPartition )
341       {
342         case KIND_IMAGE:
343           theMenu->addAction( action( ImportImageId ) );
344           break;
345         case KIND_POLYLINEXY:
346           theMenu->addAction( action( CreatePolylineId ) );
347           break;
348         case KIND_POLYLINE:
349           theMenu->addAction( action( CreatePolyline3DId ) );
350           break;
351         case KIND_PROFILE:
352           theMenu->addAction( action( CreateProfileId ) );
353           theMenu->addAction( action( ImportProfilesId ) );
354           theMenu->addAction( action( AllGeoreferencementId ) );
355           break;
356         case KIND_VISUAL_STATE:
357           theMenu->addAction( action( SaveVisualStateId ) );
358           break;
359         case KIND_BATHYMETRY:
360           theMenu->addAction( action( ImportBathymetryId ) );
361           break;
362         case KIND_CALCULATION:
363           theMenu->addAction( action( CreateCalculationId ) );
364           break;
365         case KIND_IMMERSIBLE_ZONE:
366           theMenu->addAction( action( CreateImmersibleZoneId ) );
367           break;
368         case KIND_OBSTACLE:
369           theMenu->addAction( action( ImportObstacleFromFileId ) );
370           theMenu->addAction( action( CreateBoxId ) );
371           theMenu->addAction( action( CreateCylinderId ) );
372           break;
373       }
374       theMenu->addSeparator();
375     }
376   }
377
378   if( anIsSelectedDataObjects )
379   {
380     if ( anIsMustBeUpdatedImage )
381     {
382       theMenu->addAction( action( UpdateImageId ) );
383       theMenu->addSeparator();
384     }
385
386     if( aSeq.Length() == 1 )
387     {
388       if( anIsImage )
389       {
390         if( anIsImportedImage )
391           theMenu->addAction( action( EditImportedImageId ) );
392         else if( anIsImageHasRefs )
393         {
394           if( anIsFusedImage )
395             theMenu->addAction( action( EditFusedImageId ) );
396           else if( anIsCutImage )
397             theMenu->addAction( action( EditCutImageId ) );
398           else if( anIsSplittedImage )
399             theMenu->addAction( action( EditSplittedImageId ) );
400         }
401
402         theMenu->addAction( action( ObserveImageId ) );
403         theMenu->addAction( action( ExportImageId ) );
404         theMenu->addSeparator();
405
406         if( anIsImageHasRefs )
407         {
408           theMenu->addAction( action( RemoveImageRefsId ) );
409           theMenu->addSeparator();
410         }
411
412         theMenu->addAction( action( FuseImagesId ) );
413         theMenu->addAction( action( CutImagesId ) );
414         theMenu->addAction( action( SplitImageId ) );
415         theMenu->addSeparator();
416       }
417       else if( anIsPolyline )
418       {
419         theMenu->addAction( action( EditPolylineId ) );
420         theMenu->addSeparator();
421       }
422       else if( anIsPolyline3D )
423       {
424         theMenu->addAction( action( EditPolyline3DId ) );
425         theMenu->addSeparator();
426       }
427       else if( anIsProfile )
428       {
429         theMenu->addAction( action( EditProfileId ) );
430         theMenu->addAction( action( SelectedGeoreferencementId ) );
431         theMenu->addSeparator();
432       }
433       else if( anIsCalculation )
434       {
435         theMenu->addAction( action( EditCalculationId ) );
436         theMenu->addAction( action( ExportCalculationId ) );
437         theMenu->addSeparator();
438       }
439       else if( anIsImmersibleZone )
440       {
441         theMenu->addAction( action( EditImmersibleZoneId ) );
442         theMenu->addSeparator();
443       }
444       else if( anIsStream )
445       {
446         theMenu->addAction( action( EditStreamId ) );
447         theMenu->addSeparator();
448       }
449       else if( anIsVisualState && anIsObjectBrowser )
450       {
451         theMenu->addAction( action( SaveVisualStateId ) );
452         theMenu->addAction( action( LoadVisualStateId ) );
453         theMenu->addSeparator();
454       }
455
456       // Add set color action for geometrical objects
457       if ( anIsGeomObject )
458       {
459         theMenu->addAction( action( SetColorId ) );
460         theMenu->addSeparator();
461       }
462     } else if ( anAllAreProfiles ) {
463       theMenu->addAction( action( SelectedGeoreferencementId ) );
464       theMenu->addSeparator();
465     }
466
467     theMenu->addAction( action( DeleteId ) );
468     theMenu->addSeparator();
469
470     if( anIsImage || anIsPolyline || anIsPolyline3D || anIsImmersibleZone || anIsZone || 
471         anIsRegion || anIsBathymetry || anIsObstacle || anIsStream || anIsValidProfile )
472     {
473       if( anIsHiddenInSelection )
474         theMenu->addAction( action( ShowId ) );
475       theMenu->addAction( action( ShowOnlyId ) );
476       if( anIsVisibleInSelection )
477         theMenu->addAction( action( HideId ) );
478       theMenu->addSeparator();
479     }
480   }
481
482   if ( anIsOCCView )
483   {
484     SUIT_Operation* anOp = application()->activeStudy()->activeOperation();
485     HYDROGUI_PolylineOp* aPolylineOp = dynamic_cast<HYDROGUI_PolylineOp*>( anOp );
486     if ( aPolylineOp && aPolylineOp->deleteEnabled() )
487       theMenu->addAction( action( DeleteId ) );
488   }
489
490   if( anIsObjectBrowser || anIsGraphicsView || anIsOCCView || anIsVTKView )
491   {
492     theMenu->addAction( action( ShowAllId ) );
493     theMenu->addAction( action( HideAllId ) );
494     theMenu->addSeparator();
495   }
496 }
497
498 void HYDROGUI_Module::update( const int flags )
499 {
500   if( !isUpdateEnabled() )
501     return;
502
503   QApplication::setOverrideCursor( Qt::WaitCursor );
504
505   // To prevent calling this method recursively
506   // from one of the methods called below
507   setUpdateEnabled( false );
508
509   // store selected objects
510   QStringList aSelectedEntries = storeSelection();
511
512   bool aDoFitAll = flags & UF_FitAll;
513   if( ( flags & UF_Viewer ) )
514     updateViewer( getDisplayer(), flags & UF_GV_Init, flags & UF_GV_Forced, aDoFitAll ); 
515
516   if( ( flags & UF_OCCViewer ) )
517     updateViewer( getOCCDisplayer(), flags & UF_OCC_Init, flags & UF_OCC_Forced, aDoFitAll ); 
518
519   if( ( flags & UF_VTKViewer ) )
520     updateViewer( getVTKDisplayer(), flags & UF_VTK_Init, flags & UF_VTK_Forced, aDoFitAll ); 
521
522   if( ( flags & UF_Model ) && getDataModel() && getApp() )
523   {
524     getDataModel()->update( getStudyId() );
525
526     // Temporary workaround to prevent breaking
527     // the selection in the object browser.
528     // Note: processEvents() should be called after updateGV(),
529     // otherwise the application crashes from time to time.
530     //RKV: qApp->processEvents(); 
531     getApp()->updateObjectBrowser( true );
532   }
533
534   // Object browser is currently updated by using UF_Model flag
535   if( ( flags & UF_ObjBrowser ) && ((flags & UF_Model) == 0) && getApp() )
536     getApp()->updateObjectBrowser( true );
537
538   if( ( flags & UF_Controls ) && getApp() )
539     getApp()->updateActions();
540
541   // restore selected objects
542   restoreSelection( aSelectedEntries );
543
544   setUpdateEnabled( true );
545
546   QApplication::restoreOverrideCursor();
547 }
548
549 void HYDROGUI_Module::updateCommandsStatus()
550 {
551   LightApp_Module::updateCommandsStatus();
552
553   updateUndoRedoControls();
554
555   action( CopyId )->setEnabled( getDataModel()->canCopy() );
556   action( PasteId )->setEnabled( getDataModel()->canPaste() );
557 }
558
559 void HYDROGUI_Module::selectionChanged()
560 {
561   LightApp_Module::selectionChanged();
562   updateCommandsStatus();
563 }
564
565 HYDROGUI_DataModel* HYDROGUI_Module::getDataModel() const
566 {
567   return (HYDROGUI_DataModel*)dataModel();
568 }
569
570 HYDROGUI_Displayer* HYDROGUI_Module::getDisplayer() const
571 {
572   return myDisplayer;
573 }
574
575 HYDROGUI_OCCDisplayer* HYDROGUI_Module::getOCCDisplayer() const
576 {
577   return myOCCDisplayer;
578 }
579
580 HYDROGUI_VTKPrsDisplayer* HYDROGUI_Module::getVTKDisplayer() const
581 {
582   return myVTKDisplayer;
583 }
584
585 SUIT_ViewManager* HYDROGUI_Module::getViewManager( const int theId ) const
586 {
587   if( myViewManagerMap.contains( theId ) )
588   {
589     return myViewManagerMap[ theId ].first;
590   }
591   return NULL;
592 }
593
594 GraphicsView_Viewer* HYDROGUI_Module::getViewer( const int theId ) const
595 {
596   if( myViewManagerMap.contains( theId ) )
597   {
598     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
599     GraphicsView_ViewManager* aViewManager =
600       dynamic_cast<GraphicsView_ViewManager*>( anInfo.first );
601     if( aViewManager )
602       return aViewManager->getViewer();
603   }
604   return NULL;
605 }
606
607 OCCViewer_Viewer* HYDROGUI_Module::getOCCViewer( const int theId ) const
608 {
609   if( myViewManagerMap.contains( theId ) )
610   {
611     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
612     OCCViewer_ViewManager* aViewManager =
613       ::qobject_cast<OCCViewer_ViewManager*>( anInfo.first );
614     if( aViewManager )
615       return aViewManager->getOCCViewer();
616   }
617   return NULL;
618 }
619
620 SVTK_Viewer* HYDROGUI_Module::getVTKViewer( const int theId ) const
621 {
622   if( myViewManagerMap.contains( theId ) )
623   {
624     ViewManagerInfo anInfo = myViewManagerMap[ theId ];
625     SVTK_ViewManager* aViewManager =
626       ::qobject_cast<SVTK_ViewManager*>( anInfo.first );
627     if( aViewManager )
628       return dynamic_cast<SVTK_Viewer*>( aViewManager->getViewModel() );
629   }
630   return NULL;
631 }
632
633 int HYDROGUI_Module::getViewManagerId( SUIT_ViewManager* theViewManager )
634 {
635   ViewManagerMapIterator anIter( myViewManagerMap );
636   while( anIter.hasNext() )
637   {
638     int anId = anIter.next().key();
639     const ViewManagerInfo& anInfo = anIter.value();
640     if( anInfo.first == theViewManager )
641       return anId;
642   }
643   return -1;
644 }
645
646 HYDROGUI_Module::ViewManagerRole HYDROGUI_Module::getViewManagerRole( SUIT_ViewManager* theViewManager )
647 {
648   int anId = getViewManagerId( theViewManager );
649   if( anId != -1 )
650   {
651     const ViewManagerInfo& anInfo = myViewManagerMap[ anId ];
652     return anInfo.second;
653   }
654   return VMR_Unknown;
655 }
656
657 void HYDROGUI_Module::setViewManagerRole( SUIT_ViewManager* theViewManager,
658                                           const ViewManagerRole theRole )
659 {
660   int anId = getViewManagerId( theViewManager );
661   if( anId != -1 )
662   {
663     ViewManagerInfo& anInfo = myViewManagerMap[ anId ];
664     anInfo.second = theRole;
665   }
666 }
667
668 bool HYDROGUI_Module::isObjectVisible( const int theViewId,
669                                        const Handle(HYDROData_Entity)& theObject ) const
670 {
671   if( theObject.IsNull() )
672     return false;
673
674   ViewId2Name2ObjectStateMap::const_iterator anIter1 = myObjectStateMap.find( theViewId );
675   if( anIter1 != myObjectStateMap.end() )
676   {
677     const Name2ObjectStateMap& aName2ObjectStateMap = anIter1.value();
678     Name2ObjectStateMap::const_iterator anIter2 = aName2ObjectStateMap.find( theObject->GetName());
679     if( anIter2 != aName2ObjectStateMap.end() )
680     {
681       const ObjectState& anObjectState = anIter2.value();
682       return anObjectState.Visibility;
683     }
684   }
685   return false;
686 }
687
688 void HYDROGUI_Module::setObjectVisible( const int theViewId,
689                                         const Handle(HYDROData_Entity)& theObject,
690                                         const bool theState )
691 {
692   if( !theObject.IsNull() )
693   {
694     Name2ObjectStateMap& aName2ObjectStateMap = myObjectStateMap[ theViewId ];
695     ObjectState& anObjectState = aName2ObjectStateMap[ theObject->GetName() ];
696     anObjectState.Visibility = theState;
697   }
698 }
699
700 /////////////////// OCC SHAPES PROCESSING
701 HYDROGUI_Shape* HYDROGUI_Module::getObjectShape( const int                       theViewId,
702                                                  const Handle(HYDROData_Entity)& theObject ) const
703 {
704   HYDROGUI_Shape* aResShape = NULL;
705   if( theObject.IsNull() )
706     return aResShape;
707
708   if ( myShapesMap.contains( theViewId ) )
709   {
710     const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
711     foreach ( HYDROGUI_Shape* aShape, aViewShapes )
712     {
713       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
714         continue;
715
716       aResShape = aShape;
717       break;
718     }
719   }
720
721   return aResShape;
722 }
723
724 void HYDROGUI_Module::setObjectShape( const int                       theViewId,
725                                       const Handle(HYDROData_Entity)& theObject,
726                                       HYDROGUI_Shape*                 theShape )
727 {
728   if( theObject.IsNull() )
729     return;
730
731   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
732   aViewShapes.append( theShape );
733 }
734
735 void HYDROGUI_Module::removeObjectShape( const int                       theViewId,
736                                          const Handle(HYDROData_Entity)& theObject )
737 {
738   if ( !myShapesMap.contains( theViewId ) )
739     return;
740
741   ListOfShapes& aViewShapes = myShapesMap[ theViewId ];
742   Handle(HYDROData_Entity) anObject;
743   for ( int i = 0; i < aViewShapes.length(); )
744   {
745     HYDROGUI_Shape* aShape = aViewShapes.at( i );
746     anObject = aShape->getObject();
747     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
748     {
749       delete aShape;
750       aViewShapes.removeAt( i );
751       continue;
752     }
753
754     ++i;
755   }
756 }
757
758 void HYDROGUI_Module::removeViewShapes( const int theViewId )
759 {
760   if ( !myShapesMap.contains( theViewId ) )
761     return;
762
763   const ListOfShapes& aViewShapes = myShapesMap.value( theViewId );
764   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
765   {
766     HYDROGUI_Shape* aShape = aViewShapes.at( i );
767     if ( aShape )
768       delete aShape;
769   }
770
771   myShapesMap.remove( theViewId );
772 }
773 /////////////////// END OF OCC SHAPES PROCESSING
774
775 /////////////////// VTKPrs PROCESSING
776 HYDROGUI_VTKPrs* HYDROGUI_Module::getObjectVTKPrs( const int                       theViewId,
777                                                  const Handle(HYDROData_Entity)& theObject ) const
778 {
779   HYDROGUI_VTKPrs* aResShape = NULL;
780   if( theObject.IsNull() )
781     return aResShape;
782
783   if ( myVTKPrsMap.contains( theViewId ) )
784   {
785     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
786     foreach ( HYDROGUI_VTKPrs* aShape, aViewShapes )
787     {
788       if ( !aShape || !IsEqual( aShape->getObject(), theObject ) )
789         continue;
790
791       aResShape = aShape;
792       break;
793     }
794   }
795
796   return aResShape;
797 }
798
799 void HYDROGUI_Module::setObjectVTKPrs( const int                       theViewId,
800                                        const Handle(HYDROData_Entity)& theObject,
801                                        HYDROGUI_VTKPrs*                 theShape )
802 {
803   if( theObject.IsNull() )
804     return;
805
806   // Compute the new global Z range from the added presentation and the old global Z range.
807   double* aGlobalRange = getVTKDisplayer()->GetZRange( theViewId );
808   double* aRange = theShape->getInternalZRange();
809   bool anIsUpdate = false;
810   if ( aRange[0] < aGlobalRange[0] )
811   {
812     aGlobalRange[0] = aRange[0];
813     anIsUpdate = true;
814   }
815   if ( aRange[1] > aGlobalRange[1] )
816   {
817     aGlobalRange[1] = aRange[1];
818     anIsUpdate = true;
819   }
820
821   //if ( anIsUpdate )
822   //{
823     updateVTKZRange( theViewId, aGlobalRange );
824   //}
825
826   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
827   aViewShapes.append( theShape );
828 }
829
830 void HYDROGUI_Module::removeObjectVTKPrs( const int                       theViewId,
831                                           const Handle(HYDROData_Entity)& theObject )
832 {
833   if ( !myVTKPrsMap.contains( theViewId ) )
834     return;
835
836   ListOfVTKPrs& aViewShapes = myVTKPrsMap[ theViewId ];
837   Handle(HYDROData_Entity) anObject;
838   for ( int i = 0; i < aViewShapes.length(); )
839   {
840     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
841     anObject = aShape->getObject();
842     if ( aShape && (!anObject.IsNull()) && IsEqual( anObject, theObject ) )
843     {
844       delete aShape;
845       aViewShapes.removeAt( i );
846       continue;
847     }
848
849     ++i;
850   }
851
852   // Invalidate global Z range
853   double anInvalidRange[2] = { HYDROGUI_VTKPrs::InvalidZValue(), HYDROGUI_VTKPrs::InvalidZValue() };
854   getVTKDisplayer()->SetZRange( theViewId, anInvalidRange );
855 }
856
857 void HYDROGUI_Module::removeViewVTKPrs( const int theViewId )
858 {
859   if ( !myVTKPrsMap.contains( theViewId ) )
860     return;
861
862   const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
863   for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
864   {
865     HYDROGUI_VTKPrs* aShape = aViewShapes.at( i );
866     if ( aShape )
867       delete aShape;
868   }
869
870   myVTKPrsMap.remove( theViewId );
871 }
872
873 void HYDROGUI_Module::updateVTKZRange( const int theViewId, double theRange[] )
874 {
875   if ( myVTKPrsMap.contains( theViewId ) )
876   {
877     // For the given viewer id update all VTK presentations ...
878     const ListOfVTKPrs& aViewShapes = myVTKPrsMap.value( theViewId );
879     HYDROGUI_VTKPrs* aShape;
880     for ( int i = 0, n = aViewShapes.length(); i < n; ++i )
881     {
882       aShape = aViewShapes.at( i );
883       if ( aShape )
884       {
885         aShape->setZRange( theRange );
886       }
887     }
888   }
889   // ... and update the global color legend scalar bar.
890   getVTKDisplayer()->SetZRange( theViewId, theRange );
891 }
892 /////////////////// END OF VTKPrs PROCESSING
893
894 CAM_DataModel* HYDROGUI_Module::createDataModel()
895 {
896   return new HYDROGUI_DataModel( this );
897 }
898
899 void HYDROGUI_Module::customEvent( QEvent* e )
900 {
901   int aType = e->type();
902   if ( aType == NewViewEvent )
903   {
904     SALOME_CustomEvent* ce = ( SALOME_CustomEvent* )e;
905     if( GraphicsView_ViewFrame* aViewFrame = ( GraphicsView_ViewFrame* )ce->data() )
906     {
907       if( GraphicsView_Viewer* aViewer = dynamic_cast<GraphicsView_Viewer*>( aViewFrame->getViewer() ) )
908       {
909         SUIT_ViewManager* aViewManager = aViewer->getViewManager();
910         ViewManagerRole aRole = getViewManagerRole( aViewManager );
911
912         if( GraphicsView_ViewPort* aViewPort = aViewer->getActiveViewPort() )
913         {
914           if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
915             aViewPort->scale( 1, -1 ); // invert the Y axis direction from down to up
916
917           aViewPort->setInteractionFlag( GraphicsView_ViewPort::TraceBoundingRect );
918           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateContextMenu );
919           aViewPort->setInteractionFlag( GraphicsView_ViewPort::ImmediateSelection );
920
921           //ouv: temporarily commented
922           //aViewPort->setViewLabelPosition( GraphicsView_ViewPort::VLP_BottomLeft, true );
923         }
924
925         if( aRole != VMR_TransformImage && aRole != VMR_ReferenceImage )
926           update( UF_Viewer );
927
928         aViewer->activateTransform( GraphicsView_Viewer::FitAll );
929       }
930     }
931   }
932 }
933
934 bool HYDROGUI_Module::eventFilter( QObject* theObj, QEvent* theEvent )
935 {
936   QEvent::Type aType = theEvent->type();
937   if( theObj->inherits( "GraphicsView_ViewFrame" ) )
938   {
939     if( aType == QEvent::Show )
940     {
941       SALOME_CustomEvent* e = new SALOME_CustomEvent( NewViewEvent );
942       e->setData( theObj );
943       QApplication::postEvent( this, e );
944       theObj->removeEventFilter( this );
945     }
946   }
947   return LightApp_Module::eventFilter( theObj, theEvent );
948 }
949
950 void HYDROGUI_Module::onViewManagerAdded( SUIT_ViewManager* theViewManager )
951 {
952   LightApp_Module::onViewManagerAdded( theViewManager );
953
954   if( theViewManager->getType() == GraphicsView_Viewer::Type() )
955   { 
956     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
957              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
958   }
959   else if( theViewManager->getType() == OCCViewer_Viewer::Type() )
960   {
961     connect( theViewManager, SIGNAL( viewCreated( SUIT_ViewWindow* ) ),
962              this, SLOT( onViewCreated( SUIT_ViewWindow* ) ) );
963   }
964
965   createSelector( theViewManager ); // replace the default selector
966
967   ViewManagerInfo anInfo( theViewManager, VMR_General );
968   myViewManagerMap.insert( ViewManagerId++, anInfo );
969 }
970
971 void HYDROGUI_Module::onViewManagerRemoved( SUIT_ViewManager* theViewManager )
972 {
973   LightApp_Module::onViewManagerRemoved( theViewManager );
974
975   createSelector( theViewManager ); // replace the default selector
976
977   int anId = getViewManagerId( theViewManager );
978   if( anId != -1 )
979   {
980     OCCViewer_ViewManager* anOCCViewManager =
981       ::qobject_cast<OCCViewer_ViewManager*>( myViewManagerMap[ anId ].first );
982     if ( anOCCViewManager )
983     {
984       OCCViewer_Viewer* anOCCViewer = anOCCViewManager->getOCCViewer();
985       if ( anOCCViewer )
986         removeViewShapes( (size_t)anOCCViewer );
987     }
988
989     if ( getVTKDisplayer()->IsApplicable( theViewManager ) )
990     {
991       SVTK_Viewer* aVTKViewer = getVTKViewer( anId );
992       if ( aVTKViewer )
993       {
994         getVTKDisplayer()->DeleteScalarBar( anId );
995         removeViewShapes( (size_t)aVTKViewer );
996       }
997     }
998
999     myViewManagerMap.remove( anId );
1000   }
1001 }
1002
1003 void HYDROGUI_Module::onViewCreated( SUIT_ViewWindow* theViewWindow )
1004 {
1005   if( theViewWindow && theViewWindow->inherits( "GraphicsView_ViewFrame" ) )
1006   {
1007     if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( theViewWindow ) )
1008     {
1009       aViewFrame->installEventFilter( this );
1010
1011       GraphicsView_ViewPort* aViewPort = aViewFrame->getViewPort();
1012
1013       connect( aViewPort, SIGNAL( vpMouseEvent( QGraphicsSceneMouseEvent* ) ),
1014                this, SLOT( onViewPortMouseEvent( QGraphicsSceneMouseEvent* ) ) );
1015     }
1016   }
1017   else if( theViewWindow && theViewWindow->inherits( "OCCViewer_ViewFrame" ) )
1018   {
1019     if( OCCViewer_ViewFrame* aViewFrame = dynamic_cast<OCCViewer_ViewFrame*>( theViewWindow ) )
1020     {
1021       aViewFrame->onTopView();
1022
1023       HYDROGUI_Tool::setOCCActionShown( aViewFrame, OCCViewer_ViewWindow::MaximizedId, false );
1024     }
1025   }
1026 }
1027
1028 void HYDROGUI_Module::onViewPortMouseEvent( QGraphicsSceneMouseEvent* theEvent )
1029 {
1030   /* ouv: currently unused
1031   if( GraphicsView_ViewPort* aViewPort = qobject_cast<GraphicsView_ViewPort*>( sender() ) )
1032   {
1033     SUIT_ViewManager* aViewManager = 0;
1034
1035     QObject* aParent = aViewPort;
1036     while( aParent = aParent->parent() )
1037     {
1038       if( GraphicsView_ViewFrame* aViewFrame = dynamic_cast<GraphicsView_ViewFrame*>( aParent ) )
1039       {
1040         if( GraphicsView_Viewer* aViewer = aViewFrame->getViewer() )
1041         {
1042           aViewManager = aViewer->getViewManager();
1043           break;
1044         }
1045       }
1046     }
1047
1048     if( !aViewManager )
1049       return;
1050
1051     double aMouseX = theEvent->scenePos().x();
1052     double aMouseY = theEvent->scenePos().y();
1053
1054     ViewManagerRole aRole = getViewManagerRole( aViewManager );
1055     if( aRole == VMR_General )
1056     {
1057       int aXDeg = 0, aYDeg = 0;
1058       int aXMin = 0, aYMin = 0;
1059       double aXSec = 0, aYSec = 0;
1060       HYDROData_Lambert93::secToDMS( aMouseX, aXDeg, aXMin, aXSec );
1061       HYDROData_Lambert93::secToDMS( aMouseY, aYDeg, aYMin, aYSec );
1062
1063       QString aDegSymbol( QChar( 0x00B0 ) );
1064       QString aXStr = QString( "%1%2 %3' %4\"" ).arg( aXDeg ).arg( aDegSymbol ).arg( aXMin ).arg( aXSec );
1065       QString aYStr = QString( "%1%2 %3' %4\"" ).arg( aYDeg ).arg( aDegSymbol ).arg( aYMin ).arg( aYSec );
1066
1067       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( aXStr ).arg( aYStr ) );
1068     }
1069     else if( aRole == VMR_TransformImage )
1070       aViewPort->setViewLabelText( QString( "X: %1\nY: %2" ).arg( (int)aMouseX ).arg( (int)aMouseY ) );
1071   }
1072   */
1073 }
1074
1075 void HYDROGUI_Module::updateViewer( HYDROGUI_AbstractDisplayer* theDisplayer, 
1076                                     const bool theIsInit, 
1077                                     const bool theIsForced, 
1078                                     const bool theDoFitAll )
1079 {
1080   QList<int> aViewManagerIdList;
1081
1082   // currently, all views are updated
1083   ViewManagerMapIterator anIter( myViewManagerMap );
1084   while( anIter.hasNext() )
1085   { 
1086     SUIT_ViewManager* aViewManager = anIter.next().value().first;
1087
1088     if ( theDisplayer->IsApplicable( aViewManager ) )
1089     {
1090       int anId = anIter.key();
1091       aViewManagerIdList.append( anId );
1092     }
1093   }
1094
1095   QListIterator<int> anIdIter( aViewManagerIdList );
1096   while( anIdIter.hasNext() )
1097   {
1098     theDisplayer->UpdateAll( anIdIter.next(), theIsInit, theIsForced, theDoFitAll );
1099   }
1100 }
1101
1102 void HYDROGUI_Module::createSelector( SUIT_ViewManager* theViewManager )
1103 {
1104   if( !theViewManager )
1105     return;
1106
1107   LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr();
1108   if( !aSelectionMgr )
1109     return;
1110
1111   QString aViewType = theViewManager->getType();
1112   if( aViewType != GraphicsView_Viewer::Type() &&
1113       aViewType != OCCViewer_Viewer::Type())
1114     return;
1115
1116   QList<SUIT_Selector*> aSelectorList;
1117   aSelectionMgr->selectors( aViewType, aSelectorList );
1118
1119   // disable all alien selectors
1120   QList<SUIT_Selector*>::iterator anIter, anIterEnd = aSelectorList.end();
1121   for( anIter = aSelectorList.begin(); anIter != anIterEnd; anIter++ )
1122   {
1123     SUIT_Selector* aSelector = *anIter;
1124     if( aSelector && ( !dynamic_cast<HYDROGUI_GVSelector*>( aSelector ) &&
1125                        !dynamic_cast<SVTK_Selector*>( aSelector ) &&
1126                        !dynamic_cast<HYDROGUI_OCCSelector*>( aSelector ) ) )
1127       aSelector->setEnabled( false );
1128   }
1129
1130   if ( aViewType == GraphicsView_Viewer::Type() )
1131   {
1132     GraphicsView_ViewManager* aViewManager =
1133       ::qobject_cast<GraphicsView_ViewManager*>( theViewManager );
1134     if( aViewManager )
1135       new HYDROGUI_GVSelector( this, aViewManager->getViewer(), aSelectionMgr );
1136   }
1137   else if ( aViewType == OCCViewer_Viewer::Type() )
1138   {
1139     OCCViewer_ViewManager* aViewManager =
1140       ::qobject_cast<OCCViewer_ViewManager*>( theViewManager );
1141     if( aViewManager )
1142       new HYDROGUI_OCCSelector( this, aViewManager->getOCCViewer(), aSelectionMgr );
1143   }
1144 }
1145
1146 bool HYDROGUI_Module::setUpdateEnabled( const bool theState )
1147 {
1148   bool aPrevState = myIsUpdateEnabled;
1149   myIsUpdateEnabled = theState;
1150   return aPrevState;
1151 }
1152
1153 bool HYDROGUI_Module::isUpdateEnabled() const
1154 {
1155   return myIsUpdateEnabled;
1156 }
1157
1158 QStringList HYDROGUI_Module::storeSelection() const
1159 {
1160   QStringList anEntryList;
1161   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1162   {
1163     SUIT_DataOwnerPtrList aList( true );
1164     aSelectionMgr->selected( aList );
1165
1166     SUIT_DataOwnerPtrList::iterator anIter;
1167     for( anIter = aList.begin(); anIter != aList.end(); anIter++ )
1168     {
1169       const LightApp_DataOwner* anOwner = 
1170         dynamic_cast<const LightApp_DataOwner*>( (*anIter).operator->() );
1171       if( anOwner )
1172         anEntryList.append( anOwner->entry() );
1173     }
1174   }
1175   return anEntryList;
1176 }
1177
1178 void HYDROGUI_Module::restoreSelection( const QStringList& theEntryList )
1179 {
1180   if( LightApp_SelectionMgr* aSelectionMgr = getApp()->selectionMgr() )
1181   {
1182     SUIT_DataOwnerPtrList aList( true );
1183     for( int anIndex = 0, aSize = theEntryList.size(); anIndex < aSize; anIndex++ )
1184       aList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( theEntryList[ anIndex ] ) ) );
1185     aSelectionMgr->setSelected( aList );
1186   }
1187 }