Salome HOME
Fix of transparency on Mandriva2010: it didn't worked because of the returned 'testRe...
[modules/geom.git] / src / OBJECT / GEOM_Actor.h
1 //  Copyright (C) 2007-2010  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
23 //  GEOM OBJECT : interactive object for Geometry entities visualization
24 //  File   : GEOM_Actor.h
25 //  Author : Christophe ATTANASIO
26 //  Module : GEOM
27 //  $Header$
28 //
29 #ifndef GEOM_ACTOR_H
30 #define GEOM_ACTOR_H
31
32 #include "GEOM_OBJECT_defs.hxx"
33 #include "GEOM_SmartPtr.h"
34
35 #include <SALOME_Actor.h>
36
37 #include <TopoDS_Shape.hxx>
38 #include <vtkSmartPointer.h>
39
40 class vtkCamera;
41
42 class GEOM_VertexSource;
43 typedef GEOM_SmartPtr<GEOM_VertexSource> PVertexSource;
44
45 class GEOM_EdgeSource;
46 typedef GEOM_SmartPtr<GEOM_EdgeSource> PEdgeSource;
47
48 class GEOM_WireframeFace;
49 typedef GEOM_SmartPtr<GEOM_WireframeFace> PWFaceSource;
50
51 class GEOM_ShadingFace;
52 typedef GEOM_SmartPtr<GEOM_ShadingFace> PSFaceSource;
53
54 class vtkRenderer;
55
56 class vtkAppendPolyData;
57 typedef GEOM_SmartPtr<vtkAppendPolyData> PAppendFilter;
58
59 class GEOM_OBJECT_EXPORT GEOM_Actor: public SALOME_Actor
60 {
61 public:
62   vtkTypeMacro(GEOM_Actor,SALOME_Actor);
63   static GEOM_Actor* New();
64
65   void SetShape(const TopoDS_Shape& theShape,
66                 float theDeflection,
67                 bool theIsRelative,
68                 bool theIsVector = false);
69
70   void SetDeflection(float theDeflection, bool theIsRelative);
71   float GetDeflection() const{ return myDeflection;}
72   bool GetIsRelative() const{ return myIsRelative;}
73
74   void AddToRender(vtkRenderer* theRenderer);
75   void RemoveFromRender(vtkRenderer* theRenderer);
76
77   enum EDisplayMode{ eWireframe, eShading};
78
79 /*   void SetDisplayMode(EDisplayMode theMode);  */
80 /*   EDisplayMode GetDisplayMode() const { return myDisplayMode;}  */
81
82   void SetSelected(bool theIsSelected);
83   bool IsSelected() const { return myIsSelected;}
84
85   // OLD METHODS
86   // Properties
87   void SetHighlightProperty(vtkProperty* Prop);
88   void SetWireframeProperty(vtkProperty* Prop);
89   void SetShadingProperty(vtkProperty* Prop);
90
91   void setDeflection(double adef);
92   virtual void setDisplayMode(int thenewmode);
93
94   // Description:
95   // This causes the actor to be rendered. It, in turn, will render the actor's
96   // property and then mapper.
97   virtual void Render(vtkRenderer *, vtkMapper *);
98   // Description:
99   // Release any graphics resources that are being consumed by this actor.
100   // The parameter window could be used to determine which graphic
101   // resources to release.
102   void ReleaseGraphicsResources(vtkWindow *);
103   const TopoDS_Shape& getTopo();
104   void setInputShape(const TopoDS_Shape& ashape, double adef1,
105                      int imode, bool isVector = false);
106   double getDeflection();
107   double isVector();
108
109   // SubShape
110   void SubShapeOn();
111   void SubShapeOff();
112
113   // Highlight
114   virtual void highlight(bool theHighlight);
115   virtual bool hasHighlight() { return true; }
116
117   void ShallowCopy(vtkProp *prop);
118
119   // Opacity
120   void SetOpacity(vtkFloatingPointType opa);
121   vtkFloatingPointType GetOpacity();
122
123   // Color
124   void SetColor(vtkFloatingPointType r,vtkFloatingPointType g,vtkFloatingPointType b);
125   void GetColor(vtkFloatingPointType& r,vtkFloatingPointType& g,vtkFloatingPointType& b);
126
127   virtual bool IsInfinitive();
128
129   // overloaded functions
130   //! To map current selection to VTK representation
131   virtual
132   void
133   Highlight(bool theHighlight);
134
135   //----------------------------------------------------------------------------
136   //! To process prehighlight (called from #SVTK_InteractorStyle)
137   virtual
138   bool
139   PreHighlight(vtkInteractorStyle* theInteractorStyle,
140                SVTK_SelectionEvent* theSelectionEvent,
141                bool theIsHighlight);
142
143   //! To process highlight (called from #SVTK_InteractorStyle)
144   virtual
145   bool
146   Highlight(vtkInteractorStyle* theInteractorStyle,
147             SVTK_SelectionEvent* theSelectionEvent,
148             bool theIsHighlight);
149
150   //! Visibility management
151   virtual
152   void
153   SetVisibility( int );
154
155   //! IsoLines management
156   // theNb[0] - number of U lines
157   // theNb[1] - number of V lines
158   virtual
159   void
160   SetNbIsos(const int theNb[2]);
161
162   virtual
163   void
164   GetNbIsos(int &theNbU,int &theNbV);
165   
166   //! Vector mode management
167   virtual
168   void
169   SetVectorMode(const bool theMode);
170
171   virtual
172   bool
173   GetVectorMode();
174
175 protected:
176   void SetModified();
177
178   void GetMatrix(vtkCamera* theCam, vtkMatrix4x4 *result);
179
180   GEOM_Actor();
181   ~GEOM_Actor();
182
183 private:
184   TopoDS_Shape myShape;
185   int myNbIsos[2];
186   bool isOnlyVertex;
187
188   float myDeflection;
189   bool myIsRelative;
190   bool myIsForced;
191
192   //  EDisplayMode myDisplayMode;
193   bool myIsSelected;
194   bool myVectorMode;
195
196   PDeviceActor myVertexActor;
197   PVertexSource myVertexSource;
198
199   PDeviceActor myIsolatedEdgeActor;
200   PEdgeSource myIsolatedEdgeSource;
201
202   PDeviceActor myOneFaceEdgeActor;
203   PEdgeSource myOneFaceEdgeSource;
204
205   PDeviceActor mySharedEdgeActor;
206   PEdgeSource mySharedEdgeSource;
207
208   PDeviceActor myWireframeFaceActor;
209   PWFaceSource myWireframeFaceSource;
210
211   PDeviceActor myShadingFaceActor;
212   PSFaceSource myShadingFaceSource;
213
214   PDeviceActor myHighlightActor;
215   vtkSmartPointer<vtkProperty>  myHighlightProp;
216   vtkSmartPointer<vtkProperty>  myPreHighlightProp;
217   vtkSmartPointer<vtkProperty>  myShadingFaceProp;
218
219   PAppendFilter myAppendFilter;
220   PPolyDataMapper myPolyDataMapper;
221
222   virtual void SetMapper(vtkMapper*);
223
224   GEOM_Actor(const GEOM_Actor&);
225   void operator=(const GEOM_Actor&);
226 };
227
228 #endif //GEOM_ACTOR_H