Salome HOME
Copyright update 2022
[modules/gui.git] / src / SVTK / SVTK_Actor.h
1 // Copyright (C) 2007-2022  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, or (at your option) any later version.
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
23 #ifndef SVTK_ACTOR_H
24 #define SVTK_ACTOR_H
25
26 #include "SVTK_Selector.h"
27 #include <TColStd_IndexedMapOfInteger.hxx>
28
29 class vtkRenderer;
30 class vtkShrinkFilter;
31 class vtkDataSetMapper;
32 class vtkUnstructuredGrid;
33
34 #include "SVTK.h"
35 #include "SVTK_DeviceActor.h"
36 #include "SVTK_Hash.h"
37 #include <vtkSmartPointer.h>
38
39 class SALOME_Actor;
40
41 #ifdef WIN32
42 #pragma warning ( disable:4251 )
43 #endif
44
45 //! This class used for internal SVTK package purpose (highlight and prehighlight)
46 class SVTK_EXPORT SVTK_Actor : public SVTK_DeviceActor
47 {
48 public:
49   static SVTK_Actor* New();
50
51   vtkTypeMacro(SVTK_Actor,SVTK_DeviceActor)
52
53   //! Initialiaze the instance completely
54   virtual void
55   Initialize();
56
57   //! Allows to set an external source 
58   void
59   SetSource(vtkUnstructuredGrid* theUnstructuredGrid);
60
61   //! Get its internal data set
62   vtkUnstructuredGrid*
63   GetSource();
64
65   virtual void
66   AddToRender(vtkRenderer* theRenderer);
67
68   virtual void
69   RemoveFromRender(vtkRenderer* theRenderer);
70
71
72   //! Allow to recostruct selected cells from source SALOME_Actor and map of subindexes
73   virtual void
74   MapCells(SALOME_Actor* theMapActor, 
75            const SVTK_TIndexedMapOfVtkId& theMapIndex);
76
77   //! Allow to recostruct selected points from source SALOME_Actor and map of subindexes
78   virtual void 
79   MapPoints(SALOME_Actor* theMapActor, 
80             const SVTK_TIndexedMapOfVtkId& theMapIndex);
81
82   //! Allow to recostruct selected edges from source SALOME_Actor and map of subindexes
83   virtual void 
84   MapEdge(SALOME_Actor* theMapActor, 
85           const SVTK_TIndexedMapOfVtkId& theMapIndex);
86
87 //! Allow to recostruct selected edges from source SALOME_Actor and map of subindexes using corner node ids
88   virtual void 
89   MapEdge(SALOME_Actor* theMapActor, 
90           const SVTK_IndexedMapOfVtkIds& theMapCompositeIndex);
91   
92
93   const SVTK_TIndexedMapOfVtkId&
94   GetMapIndex() const;
95
96   const SVTK_IndexedMapOfVtkIds&
97   GetMapCompositeIndex() const;
98
99  protected:
100   SVTK_TIndexedMapOfVtkId        myMapIndex;
101   SVTK_IndexedMapOfVtkIds        myMapCompositeIndex;
102
103   vtkSmartPointer<vtkUnstructuredGrid> myUnstructuredGrid;
104
105   SVTK_Actor();
106   virtual
107   ~SVTK_Actor();
108 };
109
110 #ifdef WIN32
111 #pragma warning ( default:4251 )
112 #endif
113
114 #endif