Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/visu.git] / src / OBJECT / VISU_DataSetActor.h
1 //  Copyright (C) 2007-2008  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 //  VISU OBJECT : interactive object for VISU entities implementation
23 //  File   : 
24 //  Author : 
25 //  Module : VISU
26 //
27 #ifndef VISU_DATASETACTOR_H
28 #define VISU_DATASETACTOR_H
29
30 #include "VISU_OBJECT.h"
31 #include "VISU_Actor.h"
32
33 class vtkDataSetMapper;
34 class SALOME_ExtractGeometry;
35 class SALOME_ExtractPolyDataGeometry;
36 class vtkImplicitBoolean;
37 class vtkImplicitFunctionCollection;
38
39 //----------------------------------------------------------------------------
40 class VISU_OBJECT_EXPORT VISU_DataSetActor : public VISU_Actor
41 {
42  public:
43   vtkTypeMacro(VISU_DataSetActor,VISU_Actor);
44
45   static 
46   VISU_DataSetActor* 
47   New();
48
49   virtual
50   void
51   ShallowCopyPL(VISU_PipeLine* thePipeLine);
52
53   virtual 
54   vtkDataSetMapper* 
55   GetDataSetMapper();
56
57   //----------------------------------------------------------------------------
58   virtual void RemoveAllClippingPlanes();
59
60   virtual vtkIdType GetNumberOfClippingPlanes();
61
62   virtual bool AddClippingPlane(vtkPlane* thePlane);
63
64   virtual vtkPlane* GetClippingPlane(vtkIdType theID);
65
66   virtual vtkImplicitFunctionCollection* GetClippingPlanes();
67
68   //----------------------------------------------------------------------------
69  protected:
70   VISU_DataSetActor();
71
72   virtual
73   ~VISU_DataSetActor();
74  
75   virtual 
76   void
77   SetMapperInput(vtkDataSet* theDataSet);
78
79   //----------------------------------------------------------------------------
80   vtkSmartPointer<vtkDataSetMapper> myMapper;
81   vtkSmartPointer<SALOME_ExtractGeometry> myExtractor;
82   vtkSmartPointer<SALOME_ExtractPolyDataGeometry> myPolyDataExtractor;
83   vtkSmartPointer<vtkImplicitBoolean> myFunction;
84 };
85
86 #endif //VISU_DATASETACTOR_H