mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
First integration of a new PV3D viewer.
This commit is contained in:
parent
ddba456747
commit
e06f87b076
@ -112,7 +112,7 @@ IF(SALOME_BUILD_GUI)
|
|||||||
IF(EXISTS ${GUI_ROOT_DIR})
|
IF(EXISTS ${GUI_ROOT_DIR})
|
||||||
FIND_PACKAGE(SalomeGUI)
|
FIND_PACKAGE(SalomeGUI)
|
||||||
SALOME_GUI_WITH_CORBA() #check whether GUI built with CORBA
|
SALOME_GUI_WITH_CORBA() #check whether GUI built with CORBA
|
||||||
SALOME_GUI_MODE(SALOME_USE_OCCVIEWER SALOME_USE_VTKVIEWER SALOME_USE_SALOMEOBJECT
|
SALOME_GUI_MODE(SALOME_USE_OCCVIEWER SALOME_USE_VTKVIEWER SALOME_USE_PV3DVIEWER SALOME_USE_SALOMEOBJECT
|
||||||
OPTIONAL SALOME_USE_PLOT2DVIEWER SALOME_USE_GRAPHICSVIEW SALOME_USE_PYCONSOLE)
|
OPTIONAL SALOME_USE_PLOT2DVIEWER SALOME_USE_GRAPHICSVIEW SALOME_USE_PYCONSOLE)
|
||||||
ADD_DEFINITIONS(${GUI_DEFINITIONS})
|
ADD_DEFINITIONS(${GUI_DEFINITIONS})
|
||||||
INCLUDE_DIRECTORIES(${GUI_INCLUDE_DIRS})
|
INCLUDE_DIRECTORIES(${GUI_INCLUDE_DIRS})
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
#include <GEOM_AISTrihedron.hxx>
|
#include <GEOM_AISTrihedron.hxx>
|
||||||
#include <GEOM_VTKTrihedron.hxx>
|
#include <GEOM_VTKTrihedron.hxx>
|
||||||
#include <GEOM_VTKPropertyMaterial.hxx>
|
#include <GEOM_VTKPropertyMaterial.hxx>
|
||||||
|
#include <GEOM_PainterPolyDataMapper.h>
|
||||||
|
|
||||||
#include <GEOMGUI_DimensionProperty.h>
|
#include <GEOMGUI_DimensionProperty.h>
|
||||||
#include <GEOMGUI_AnnotationAttrs.h>
|
#include <GEOMGUI_AnnotationAttrs.h>
|
||||||
@ -77,10 +78,31 @@
|
|||||||
#include <SVTK_Prs.h>
|
#include <SVTK_Prs.h>
|
||||||
#include <SVTK_ViewModel.h>
|
#include <SVTK_ViewModel.h>
|
||||||
|
|
||||||
|
#include <SPV3D_Prs.h>
|
||||||
|
#include <SPV3D_ViewModel.h>
|
||||||
|
|
||||||
#include <OCCViewer_ViewWindow.h>
|
#include <OCCViewer_ViewWindow.h>
|
||||||
#include <OCCViewer_ViewPort3d.h>
|
#include <OCCViewer_ViewPort3d.h>
|
||||||
#include <OCCViewer_Utilities.h>
|
#include <OCCViewer_Utilities.h>
|
||||||
|
|
||||||
|
#include <BRepBndLib.hxx>
|
||||||
|
#include <pqActiveObjects.h>
|
||||||
|
#include <pqApplicationCore.h>
|
||||||
|
#include <pqObjectBuilder.h>
|
||||||
|
#include <vtkSMPropertyHelper.h>
|
||||||
|
#include <vtkSMProxy.h>
|
||||||
|
#include <vtkSMParaViewPipelineControllerWithRendering.h>
|
||||||
|
#include <vtkNamedColors.h>
|
||||||
|
#include <vtkPoints.h>
|
||||||
|
#include <vtkCamera.h>
|
||||||
|
#include <vtkCellArray.h>
|
||||||
|
#include <vtkFloatArray.h>
|
||||||
|
#include <vtkPointData.h>
|
||||||
|
#include <vtkPolyData.h>
|
||||||
|
#include <vtkRenderer.h>
|
||||||
|
#include <vtkRenderWindow.h>
|
||||||
|
#include <vtkRenderWindowInteractor.h>
|
||||||
|
|
||||||
// OCCT Includes
|
// OCCT Includes
|
||||||
#include <AIS_Dimension.hxx>
|
#include <AIS_Dimension.hxx>
|
||||||
#include <AIS_LengthDimension.hxx>
|
#include <AIS_LengthDimension.hxx>
|
||||||
@ -126,6 +148,11 @@
|
|||||||
|
|
||||||
#include <TColStd_HArray1OfByte.hxx>
|
#include <TColStd_HArray1OfByte.hxx>
|
||||||
|
|
||||||
|
#include "vtkSMSourceProxy.h"
|
||||||
|
#include "pqServerManagerModel.h"
|
||||||
|
#include "vtkPVTrivialProducer.h"
|
||||||
|
#include "vtkSMViewProxy.h"
|
||||||
|
|
||||||
#if OCC_VERSION_LARGE >= 0x070400ff
|
#if OCC_VERSION_LARGE >= 0x070400ff
|
||||||
#include <Image_SupportedFormats.hxx>
|
#include <Image_SupportedFormats.hxx>
|
||||||
#endif
|
#endif
|
||||||
@ -1688,6 +1715,44 @@ void GEOM_Displayer::Update( SALOME_VTKPrs* prs )
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=================================================================
|
||||||
|
/*!
|
||||||
|
* GEOM_Displayer::Update
|
||||||
|
* Update PV3D presentation
|
||||||
|
* [ Reimplemented from SALOME_Displayer ]
|
||||||
|
*/
|
||||||
|
//=================================================================
|
||||||
|
void GEOM_Displayer::Update( SALOME_PV3DPrs* prs )
|
||||||
|
{
|
||||||
|
SPV3D_Prs* pv3dPrs = dynamic_cast<SPV3D_Prs*>( prs );
|
||||||
|
|
||||||
|
SalomeApp_Study* study = getStudy();
|
||||||
|
|
||||||
|
if ( !pv3dPrs || myShape.IsNull() || !study )
|
||||||
|
return;
|
||||||
|
|
||||||
|
if ( myType == GEOM_MARKER && myShape.ShapeType() == TopAbs_FACE )
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// specific processing for local coordinate system presentation
|
||||||
|
//
|
||||||
|
// NYI - Update(PV3DPrs) for the local coordinate system
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//
|
||||||
|
// processing for usual geometry presentation
|
||||||
|
//
|
||||||
|
{
|
||||||
|
pv3dPrs->SetName( myNameInObjBrowser );
|
||||||
|
GEOM_Actor *actor = GEOM_Actor::New();
|
||||||
|
updateActorProperties( actor, true );
|
||||||
|
pv3dPrs->FillUsingActor( actor );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//=================================================================
|
//=================================================================
|
||||||
/*!
|
/*!
|
||||||
* GEOM_Displayer::BuildPrs
|
* GEOM_Displayer::BuildPrs
|
||||||
@ -1783,6 +1848,7 @@ SALOME_Prs* GEOM_Displayer::buildPresentation( const QString& entry,
|
|||||||
GEOM::GEOM_BaseObject_var GeomBaseObject = GEOM::GEOM_BaseObject::_narrow( object );
|
GEOM::GEOM_BaseObject_var GeomBaseObject = GEOM::GEOM_BaseObject::_narrow( object );
|
||||||
if ( !GeomBaseObject->_is_nil() )
|
if ( !GeomBaseObject->_is_nil() )
|
||||||
{
|
{
|
||||||
|
myNameInObjBrowser = getName( GeomBaseObject );
|
||||||
myType = GeomBaseObject->GetType();
|
myType = GeomBaseObject->GetType();
|
||||||
|
|
||||||
// downcast to GEOM object
|
// downcast to GEOM object
|
||||||
@ -2381,11 +2447,15 @@ bool GEOM_Displayer::canBeDisplayed( const QString& entry, const QString& viewer
|
|||||||
{
|
{
|
||||||
_PTR(SObject) anObj = getStudy()->studyDS()->FindObjectID( (const char*)entry.toUtf8() );
|
_PTR(SObject) anObj = getStudy()->studyDS()->FindObjectID( (const char*)entry.toUtf8() );
|
||||||
//if ( ! GeometryGUI::IsInGeomComponent( anObj )) return false;
|
//if ( ! GeometryGUI::IsInGeomComponent( anObj )) return false;
|
||||||
GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(anObj)); // enable displaying of GEOM objects
|
CORBA::Object_var anOrbObj = GeometryGUI::ClientSObjectToObject(anObj);
|
||||||
GEOM::GEOM_FieldStep_var aFieldStepObj = GEOM::GEOM_FieldStep::_narrow(GeometryGUI::ClientSObjectToObject(anObj)); // enable displaying of GEOM field steps
|
bool isCorbaObj = (!CORBA::is_nil(anOrbObj));
|
||||||
GEOM::GEOM_Gen_var aCompObj = GEOM::GEOM_Gen::_narrow(GeometryGUI::ClientSObjectToObject(anObj)); // enable displaying of whole GEOM component
|
GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(anOrbObj); // enable displaying of GEOM objects
|
||||||
return ( !CORBA::is_nil( aGeomObj ) || !CORBA::is_nil( aFieldStepObj ) || !CORBA::is_nil( aCompObj ) ) &&
|
GEOM::GEOM_FieldStep_var aFieldStepObj = GEOM::GEOM_FieldStep::_narrow(anOrbObj); // enable displaying of GEOM field steps
|
||||||
(viewer_type == SOCC_Viewer::Type() || viewer_type == SVTK_Viewer::Type());
|
GEOM::GEOM_Gen_var aCompObj = GEOM::GEOM_Gen::_narrow(anOrbObj); // enable displaying of whole GEOM component
|
||||||
|
bool isGeomObj = (!CORBA::is_nil( aGeomObj ) || !CORBA::is_nil( aFieldStepObj ) || !CORBA::is_nil( aCompObj ));
|
||||||
|
bool ret = ( isGeomObj ) &&
|
||||||
|
(viewer_type == SOCC_Viewer::Type() || viewer_type == SVTK_Viewer::Type() || viewer_type == SPV3D_ViewModel::Type());
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
int GEOM_Displayer::SetDisplayMode( const int theMode )
|
int GEOM_Displayer::SetDisplayMode( const int theMode )
|
||||||
|
@ -38,6 +38,7 @@ class SALOME_View;
|
|||||||
class SALOME_Prs;
|
class SALOME_Prs;
|
||||||
class SALOME_OCCPrs;
|
class SALOME_OCCPrs;
|
||||||
class SALOME_VTKPrs;
|
class SALOME_VTKPrs;
|
||||||
|
class SALOME_PV3DPrs;
|
||||||
class SALOME_OCCViewType;
|
class SALOME_OCCViewType;
|
||||||
|
|
||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
@ -187,6 +188,7 @@ public:
|
|||||||
/* Reimplemented from SALOME_Displayer */
|
/* Reimplemented from SALOME_Displayer */
|
||||||
virtual void Update( SALOME_OCCPrs* );
|
virtual void Update( SALOME_OCCPrs* );
|
||||||
virtual void Update( SALOME_VTKPrs* );
|
virtual void Update( SALOME_VTKPrs* );
|
||||||
|
virtual void Update( SALOME_PV3DPrs* );
|
||||||
virtual void BeforeDisplay( SALOME_View*, const SALOME_OCCPrs* );
|
virtual void BeforeDisplay( SALOME_View*, const SALOME_OCCPrs* );
|
||||||
virtual void AfterDisplay ( SALOME_View*, const SALOME_OCCPrs* );
|
virtual void AfterDisplay ( SALOME_View*, const SALOME_OCCPrs* );
|
||||||
virtual void BeforeErase ( SALOME_View*, const SALOME_OCCPrs* );
|
virtual void BeforeErase ( SALOME_View*, const SALOME_OCCPrs* );
|
||||||
@ -282,6 +284,7 @@ protected:
|
|||||||
TCollection_AsciiString myFieldStepName;
|
TCollection_AsciiString myFieldStepName;
|
||||||
double myFieldStepRangeMin;
|
double myFieldStepRangeMin;
|
||||||
double myFieldStepRangeMax;
|
double myFieldStepRangeMax;
|
||||||
|
std::string myNameInObjBrowser;
|
||||||
std::string myName;
|
std::string myName;
|
||||||
std::string myTexture;
|
std::string myTexture;
|
||||||
int myType;
|
int myType;
|
||||||
|
@ -60,6 +60,10 @@
|
|||||||
#include <OCCViewer_ViewModel.h>
|
#include <OCCViewer_ViewModel.h>
|
||||||
#include <OCCViewer_ViewManager.h>
|
#include <OCCViewer_ViewManager.h>
|
||||||
|
|
||||||
|
#include <PV3DViewer_ViewWindow.h>
|
||||||
|
#include <PV3DViewer_ViewModel.h>
|
||||||
|
#include <PV3DViewer_ViewManager.h>
|
||||||
|
|
||||||
#include <SOCC_ViewModel.h>
|
#include <SOCC_ViewModel.h>
|
||||||
#include <SOCC_ViewWindow.h>
|
#include <SOCC_ViewWindow.h>
|
||||||
|
|
||||||
@ -372,6 +376,7 @@ void GeometryGUI::ActiveWorkingPlane()
|
|||||||
SUIT_ViewWindow* window = application()->desktop()->activeWindow();
|
SUIT_ViewWindow* window = application()->desktop()->activeWindow();
|
||||||
bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
|
||||||
bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
|
||||||
|
bool ViewPV3D = ( window && window->getViewManager()->getType() == PV3DViewer_ViewModel::Type() );
|
||||||
|
|
||||||
if ( ViewOCC ) {
|
if ( ViewOCC ) {
|
||||||
OCCViewer_ViewWindow* vw = dynamic_cast<OCCViewer_ViewWindow*>( window );
|
OCCViewer_ViewWindow* vw = dynamic_cast<OCCViewer_ViewWindow*>( window );
|
||||||
@ -395,6 +400,11 @@ void GeometryGUI::ActiveWorkingPlane()
|
|||||||
vw->onFitAll();
|
vw->onFitAll();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if ( ViewPV3D ) {
|
||||||
|
PV3DViewer_ViewWindow* vw = dynamic_cast<PV3DViewer_ViewWindow*>( window );
|
||||||
|
if ( vw ) {
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
@ -2097,6 +2107,7 @@ void GeometryGUI::windows( QMap<int, int>& mappa ) const
|
|||||||
void GeometryGUI::viewManagers( QStringList& lst ) const
|
void GeometryGUI::viewManagers( QStringList& lst ) const
|
||||||
{
|
{
|
||||||
lst.append( OCCViewer_Viewer::Type() );
|
lst.append( OCCViewer_Viewer::Type() );
|
||||||
|
//lst.append( PV3DViewer_ViewModel::Type() );
|
||||||
}
|
}
|
||||||
|
|
||||||
void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
|
void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
|
||||||
|
Loading…
Reference in New Issue
Block a user