]> SALOME platform Git repositories - modules/visu.git/blob - src/OBJECT/VISU_ScalarMapAct.h
Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/visu.git] / src / OBJECT / VISU_ScalarMapAct.h
1 // Copyright (C) 2007-2011  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 //  VISU OBJECT : interactive object for VISU entities implementation
24 //  File   : VISU_ScalarMapAct.h
25 //  Author : Laurent CORNABE with help of Nicolas REJNERI
26 //  Module : VISU
27 //  $Header$
28 //
29 #ifndef VISU_ScalarMapAct_HeaderFile
30 #define VISU_ScalarMapAct_HeaderFile
31
32 #include "VISU_OBJECT.h"
33 #include "VISU_DataSetActor.h"
34
35 namespace VTK
36 {
37   const MarkerType MT_POINT_SPRITE = MT_USER + 1;
38 }
39
40 class VISU_ScalarBarActor;
41 class VISU_PointsDeviceActor;
42
43 //----------------------------------------------------------------------------
44 class VISU_OBJECT_EXPORT VISU_ScalarMapAct : public VISU_DataSetActor 
45 {
46  public:
47   vtkTypeMacro(VISU_ScalarMapAct,VISU_DataSetActor);
48
49   static
50   VISU_ScalarMapAct* 
51   New();
52
53   ~VISU_ScalarMapAct();
54
55   //! Copies all properties from the given actor
56   virtual
57   void
58   DeepCopy(VISU_Actor *theActor);
59
60   virtual
61   void
62   ShallowCopyPL(VISU_PipeLine* thePipeLine);
63
64   //! Apply view transformation
65   virtual
66   void
67   SetTransform(VTKViewer_Transform* theTransform); 
68
69   virtual
70   vtkProperty* 
71   GetEdgeProperty(); 
72
73   virtual
74   void
75   SetShrinkable(bool theIsShrinkable);
76
77   virtual
78   void
79   SetShrinkFactor(vtkFloatingPointType theFactor = 0.8); 
80
81   virtual
82   void
83   SetShrink(); 
84
85   virtual
86   void
87   UnShrink(); 
88
89   virtual
90     EQuadratic2DRepresentation GetQuadratic2DRepresentation() const;
91   
92   virtual void 
93     SetQuadratic2DRepresentation( EQuadratic2DRepresentation theMode );
94
95   
96   virtual
97   void
98   SetFeatureEdgesAllowed(bool theIsFeatureEdgesAllowed);
99
100   virtual
101   void
102   SetFeatureEdgesEnabled(bool theIsFeatureEdgesEnabled);
103
104   virtual
105   void
106   SetFeatureEdgesAngle(vtkFloatingPointType theAngle = 30.0); 
107
108   virtual
109   void
110   SetFeatureEdgesFlags(bool theIsFeatureEdges,
111                        bool theIsBoundaryEdges,
112                        bool theIsManifoldEdges,
113                        bool theIsNonManifoldEdges);
114
115   virtual
116   void
117   SetFeatureEdgesColoring(bool theIsColoring);
118
119   virtual
120   void
121   SetOpacity(vtkFloatingPointType theValue);
122
123   virtual
124   vtkFloatingPointType
125   GetOpacity();
126
127   virtual
128   void
129   SetLineWidth(vtkFloatingPointType theLineWidth);
130
131   virtual
132   vtkFloatingPointType
133   GetLineWidth();
134
135   virtual
136   void
137   AddToRender(vtkRenderer* theRenderer); 
138
139   virtual
140   int
141   RenderOpaqueGeometry(vtkViewport *ren);
142
143   virtual
144   int
145 #if (VTK_XVERSION < 0x050100)
146   RenderTranslucentGeometry(vtkViewport *ren);
147 #else
148   RenderTranslucentPolygonalGeometry(vtkViewport *ren);
149
150   virtual
151   int
152   HasTranslucentPolygonalGeometry();
153 #endif
154
155   virtual
156   void
157   RemoveFromRender(vtkRenderer* theRenderer);
158
159   virtual
160   void
161   SetVisibility(int theMode);
162
163   virtual
164   int
165   GetBarVisibility();
166
167   virtual
168   vtkFloatingPointType 
169   Get0DElemSize();
170
171   virtual
172   VISU_ScalarBarActor* 
173   GetScalarBar();
174
175   virtual
176   void
177   SetBarVisibility(bool theMode);
178
179   virtual
180   void
181   SetRepresentation(int theMode);
182
183   virtual
184   void
185   SetShading(bool theOn = true);
186
187   virtual
188   bool
189   IsShading();
190
191   //! Gets memory size used by the instance (bytes).
192   virtual
193   unsigned long int
194   GetMemorySize();
195
196   virtual
197   void
198   SetMarkerStd( VTK::MarkerType, VTK::MarkerScale );
199
200   virtual
201   void
202   SetMarkerTexture( int, VTK::MarkerTexture );
203
204   virtual
205   void
206   Set0DElemSize(vtkFloatingPointType theValue);
207
208
209  protected:
210   VISU_ScalarMapAct();
211
212   virtual 
213   void
214   SetMapperInput(vtkDataSet* theDataSet);
215
216   bool myBarVisibility;
217   VISU_ScalarBarActor* myScalarBar;
218
219   VISU_PointsDeviceActor* myPointSpriteActor;
220   SVTK_DeviceActor*    myPointsActor;
221   SVTK_DeviceActor*    mySurfaceActor;
222   SVTK_DeviceActor*    myEdgeActor;
223
224   bool myIsPointSpriteMode;
225 };
226 //----------------------------------------------------------------------------
227
228
229 #endif