Salome HOME
Initial version
[modules/gui.git] / src / SVTK / SVTK_Actor.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19
20 #ifndef SVTK_ACTOR_H
21 #define SVTK_ACTOR_H
22
23 #include <TColStd_IndexedMapOfInteger.hxx>
24
25 class vtkRenderer;
26 class vtkShrinkFilter;
27 class vtkDataSetMapper;
28 class vtkUnstructuredGrid;
29
30 #include "SVTK.h"
31 #include "SALOME_Actor.h"
32
33 class SVTK_EXPORT SVTK_Actor : public SALOME_Actor
34 {
35 public:
36   virtual ~SVTK_Actor();
37
38   static SVTK_Actor* New();
39
40   vtkTypeMacro(SVTK_Actor,SALOME_Actor);
41
42   void  SetShrinkFactor(float value);
43   virtual void SetShrink(); 
44   virtual void UnShrink(); 
45
46   void MapCells(SALOME_Actor* theMapActor, 
47                 const TColStd_IndexedMapOfInteger& theMapIndex);
48
49   void MapPoints(SALOME_Actor* theMapActor, 
50                  const TColStd_IndexedMapOfInteger& theMapIndex);
51
52   void MapEdge(SALOME_Actor* theMapActor, 
53                const TColStd_IndexedMapOfInteger& theMapIndex);
54
55  protected:
56   vtkUnstructuredGrid* myUnstructuredGrid;
57   vtkDataSetMapper* myMapper;
58
59   vtkRenderer* myRenderer;
60
61   vtkShrinkFilter* myShrinkFilter;
62   bool myIsShrinkable;
63   bool myIsShrunk;
64
65   SVTK_Actor();
66 };
67
68 #endif