1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include "HYDROGUI_OCCDisplayer.h"
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_Tool.h"
28 #include "HYDROGUI_Shape.h"
30 #include <AIS_InteractiveContext.hxx>
31 #include <AIS_ListIteratorOfListOfInteractive.hxx>
32 #include <AIS_ListOfInteractive.hxx>
34 #include <OCCViewer_ViewManager.h>
35 #include <OCCViewer_ViewModel.h>
36 #include <OCCViewer_ViewWindow.h>
38 HYDROGUI_OCCDisplayer::HYDROGUI_OCCDisplayer( HYDROGUI_Module* theModule )
39 : HYDROGUI_AbstractDisplayer( theModule )
43 HYDROGUI_OCCDisplayer::~HYDROGUI_OCCDisplayer()
47 void HYDROGUI_OCCDisplayer::SetToUpdate( const HYDROData_SequenceOfObjects& theObjs,
48 const int theViewerId )
50 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
54 for ( int i = 1, n = theObjs.Length(); i <= n; i++ )
56 Handle(HYDROData_Entity) anObj = theObjs.Value( i );
60 HYDROGUI_Shape* anObjShape = module()->getObjectShape( (size_t)aViewer, anObj );
64 anObjShape->setIsToUpdate( true );
68 void HYDROGUI_OCCDisplayer::EraseAll( const int theViewerId )
70 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
74 module()->removeViewShapes( (size_t)aViewer );
77 void HYDROGUI_OCCDisplayer::Erase( const HYDROData_SequenceOfObjects& theObjs,
78 const int theViewerId )
80 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
84 for ( int i = 1, n = theObjs.Length(); i <= n; i++ )
86 Handle(HYDROData_Entity) anObj = theObjs.Value( i );
90 module()->removeObjectShape( (size_t)aViewer, anObj );
94 HYDROGUI_Shape* HYDROGUI_OCCDisplayer::createShape( const int theViewerId,
95 const Handle(AIS_InteractiveContext)& theContext,
96 const Handle(HYDROData_Entity)& theObject )
98 HYDROGUI_Shape* aResShape = NULL;
99 if ( theContext.IsNull() || theObject.IsNull() )
102 ObjectKind anObjectKind = theObject->GetKind();
103 if ( anObjectKind != KIND_IMAGE &&
104 anObjectKind != KIND_POLYLINEXY &&
105 anObjectKind != KIND_IMMERSIBLE_ZONE &&
106 anObjectKind != KIND_REGION &&
107 anObjectKind != KIND_ZONE &&
108 anObjectKind != KIND_OBSTACLE &&
109 anObjectKind != KIND_PROFILE &&
110 anObjectKind != KIND_STREAM &&
111 anObjectKind != KIND_CHANNEL )
114 aResShape = new HYDROGUI_Shape( theContext, theObject );
115 module()->setObjectShape( theViewerId, theObject, aResShape );
120 void HYDROGUI_OCCDisplayer::Display( const HYDROData_SequenceOfObjects& theObjs,
121 const int theViewerId,
122 const bool theIsForced,
123 const bool theDoFitAll )
125 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
129 Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
133 for ( int i = 1, n = theObjs.Length(); i <= n; i++ )
135 Handle(HYDROData_Entity) anObj = theObjs.Value( i );
136 if ( anObj.IsNull() || anObj->IsRemoved() )
139 HYDROGUI_Shape* anObjShape = module()->getObjectShape( (size_t)aViewer, anObj );
141 if ( !anObjShape || anObjShape->getIsToUpdate() || theIsForced )
144 anObjShape = createShape( (size_t)aViewer, aCtx, anObj );
147 anObjShape->update( false );
152 bool anIsVisible = module()->isObjectVisible( (size_t)aViewer, anObj );
153 anObjShape->setVisible( anIsVisible, false );
159 OCCViewer_ViewManager* aViewManager
160 = ::qobject_cast<OCCViewer_ViewManager*>( aViewer->getViewManager() );
163 OCCViewer_ViewWindow* aViewWindow =
164 ::qobject_cast<OCCViewer_ViewWindow*>( aViewManager->getActiveView() );
167 aViewWindow->onFitAll();
173 void HYDROGUI_OCCDisplayer::purgeObjects( const int theViewerId )
175 OCCViewer_Viewer* aViewer = module()->getOCCViewer( theViewerId );
179 Handle(AIS_InteractiveContext) aCtx = aViewer->getAISContext();
183 AIS_ListOfInteractive aDisplayedObjects;
184 aCtx->DisplayedObjects( aDisplayedObjects );
186 AIS_ListIteratorOfListOfInteractive aListIter( aDisplayedObjects );
187 for ( ; aListIter.More(); aListIter.Next() )
189 Handle(AIS_InteractiveObject) aPrsObj = aListIter.Value();
190 if ( aPrsObj.IsNull() )
193 Handle(HYDROData_Entity) anOwnerObj =
194 Handle(HYDROData_Entity)::DownCast( aPrsObj->GetOwner() );
195 if ( !anOwnerObj.IsNull() && anOwnerObj->IsRemoved() )
196 module()->removeObjectShape( (size_t)aViewer, anOwnerObj );
200 QString HYDROGUI_OCCDisplayer::GetType() const
202 return OCCViewer_Viewer::Type();