1 // Copyright (C) 2014-2015 EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 // Lesser General Public License for more details.
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #ifndef HYDROGUI_VTK_PRS_SHAPE_H
20 #define HYDROGUI_VTK_PRS_SHAPE_H
22 #include "HYDROGUI_VTKPrs.h"
24 #include <HYDROData_Entity.h>
26 #include <vtkScalarsToColors.h>
27 #include <vtkWeakPointer.h>
29 #include <vtkPolyDataMapper.h>
31 #include <TopoDS_Face.hxx>
32 #include <TopoDS_Wire.hxx>
33 #include <TopoDS_Compound.hxx>
41 Class : HYDROGUI_VTKPrsShape
42 Description : Presentation for HYDRO object on the base of OCC shape
44 class HYDROGUI_VTKPrsShape : public HYDROGUI_VTKPrs
47 HYDROGUI_VTKPrsShape( const Handle(HYDROData_Entity)& theObject );
48 virtual ~HYDROGUI_VTKPrsShape();
50 virtual void compute();
52 //! Get the range of colored
53 void setLookupTable( vtkScalarsToColors* theTable ) { myLookupTable = theTable; }
56 virtual vtkMapper* mapper() { return myMapper.GetPointer(); }
60 virtual void setWire( const TopoDS_Wire& theWire,
61 const bool theToDisplay = true,
62 const bool theIsUpdateViewer = true );
64 virtual void setFaces( const TopoDS_Compound& theWires,
65 const bool theToDisplay = true,
66 const bool theIsUpdateViewer = true );
68 virtual void setFace( const TopoDS_Wire& theWire,
69 const bool theToDisplay = true,
70 const bool theIsUpdateViewer = true );
72 virtual void setFace( const TopoDS_Face& theFace,
73 const bool theToDisplay = true,
74 const bool theIsUpdateViewer = true );
76 virtual void setShape( const TopoDS_Shape& theShape,
77 const bool theToDisplay = true,
78 const bool theIsUpdateViewer = true );
80 vtkWeakPointer< vtkScalarsToColors > myLookupTable;
81 vtkNew< vtkPolyDataMapper > myMapper;
82 TopoDS_Shape myTopoShape;