1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH OBJECT : interactive object for SMESH visualization
24 // File : SMESH_ActorDef.h
25 // Author : Nicolas REJNERI
28 #ifndef SMESH_ACTORDEF_H
29 #define SMESH_ACTORDEF_H
31 #include "SMESH_Actor.h"
32 #include "SMESH_Object.h"
34 #include <vtkSmartPointer.h>
37 class TVTKSmartPtr: public vtkSmartPointer<T>
41 TVTKSmartPtr(T* r, bool theIsOwner = false): vtkSmartPointer<T>(r) {
45 TVTKSmartPtr& operator()(T* r, bool theIsOwner = false){
46 vtkSmartPointer<T>::operator=(r);
51 TVTKSmartPtr& operator=(T* r){ vtkSmartPointer<T>::operator=(r); return *this;}
52 T* Get() const { return this->GetPointer();}
57 class vtkShrinkFilter;
58 class vtkPolyDataMapper;
59 class vtkUnstructuredGrid;
66 class vtkImplicitBoolean;
69 class SMESH_DeviceActor;
70 class SMESH_NodeLabelActor;
71 class SMESH_CellLabelActor;
72 class SMESH_ScalarBarActor;
74 #ifndef DISABLE_PLOT2DVIEWER
75 class SPlot2d_Histogram;
79 class SMESH_ActorDef : public SMESH_Actor
81 friend class SMESH_VisualObj;
82 friend class SMESH_Actor;
85 vtkTypeMacro(SMESH_ActorDef,SMESH_Actor);
87 virtual void Delete();
89 virtual void ReleaseGraphicsResources(vtkWindow *renWin);
90 virtual int RenderOpaqueGeometry(vtkViewport *viewport);
91 virtual int RenderTranslucentGeometry(vtkViewport *viewport);
92 virtual void Render(vtkRenderer *ren);
94 virtual void AddToRender(vtkRenderer* theRenderer);
95 virtual void RemoveFromRender(vtkRenderer* theRenderer);
97 virtual bool hasHighlight() { return true; }
98 virtual void highlight(bool theHighlight);
99 virtual void SetPreSelected(bool thePreselect = false);
101 virtual bool IsInfinitive();
103 virtual void SetOpacity(double theValue);
104 virtual double GetOpacity();
106 virtual void SetSufaceColor(double r,double g,double b, int delta );
107 virtual void GetSufaceColor(double& r,double& g,double& b, int& delta);
109 virtual void SetVolumeColor(double r,double g,double b, int delta );
110 virtual void GetVolumeColor(double& r,double& g,double& b, int& delta);
112 virtual void SetEdgeColor(double r,double g,double b);
113 virtual void GetEdgeColor(double& r,double& g,double& b);
115 virtual void SetOutlineColor(double r,double g,double b);
116 virtual void GetOutlineColor(double& r,double& g,double& b);
119 virtual void SetNodeColor(double r,double g,double b);
120 virtual void GetNodeColor(double& r,double& g,double& b);
122 virtual void Set0DColor(double r,double g,double b);
123 virtual void Get0DColor(double& r,double& g,double& b);
125 virtual void SetBallColor(double r,double g,double b);
126 virtual void GetBallColor(double& r,double& g,double& b);
128 virtual void SetHighlightColor(double r,double g,double b);
129 virtual void GetHighlightColor(double& r,double& g,double& b);
131 virtual void SetPreHighlightColor(double r,double g,double b);
132 virtual void GetPreHighlightColor(double& r,double& g,double& b);
134 virtual double GetLineWidth();
135 virtual void SetLineWidth(double theVal);
137 virtual double GetOutlineWidth();
138 virtual void SetOutlineWidth(double theVal);
140 virtual void Set0DSize(double size);
141 virtual double Get0DSize();
143 virtual void SetBallSize(double size);
144 virtual double GetBallSize();
146 virtual int GetNodeObjId(int theVtkID);
147 virtual double* GetNodeCoord(int theObjID);
149 virtual int GetElemObjId(int theVtkID);
150 virtual vtkCell* GetElemCell(int theObjID);
152 virtual int GetObjDimension( const int theObjId );
154 virtual void SetVisibility(int theMode);
155 void SetVisibility(int theMode, bool theIsUpdateRepersentation);
157 virtual void SetRepresentation(int theMode);
159 virtual unsigned int GetEntityMode() const { return myEntityMode;}
160 virtual void SetEntityMode(unsigned int theMode);
162 virtual void SetPointRepresentation(bool theIsPointsVisible);
163 virtual bool GetPointRepresentation();
165 virtual double* GetBounds();
166 virtual void SetTransform(VTKViewer_Transform* theTransform);
168 virtual vtkUnstructuredGrid* GetUnstructuredGrid();
169 virtual vtkDataSet* GetInput();
170 virtual vtkMapper* GetMapper();
172 virtual double GetShrinkFactor();
173 virtual void SetShrinkFactor(double theValue);
175 virtual bool IsShrunkable() { return myIsShrinkable;}
176 virtual bool IsShrunk() { return myIsShrunk;}
177 virtual void SetShrink();
178 virtual void UnShrink();
180 virtual void SetPointsLabeled(bool theIsPointsLabeled);
181 virtual bool GetPointsLabeled();
183 virtual void SetPointsFontProperties( SMESH::LabelFont family, int size,
184 bool bold, bool italic, bool shadow,
185 double r, double g, double b );
186 virtual void SetCellsFontProperties( SMESH::LabelFont family, int size,
187 bool bold, bool italic, bool shadow,
188 double r, double g, double b );
190 virtual void SetCellsLabeled(bool theIsCellsLabeled);
191 virtual bool GetCellsLabeled();
193 virtual void SetFacesOriented(bool theIsFacesOriented);
194 virtual bool GetFacesOriented();
196 virtual void SetFacesOrientationColor(double r,double g,double b);
197 virtual void GetFacesOrientationColor(double& r,double& g,double& b);
199 virtual void SetFacesOrientationScale(double theScale);
200 virtual double GetFacesOrientationScale();
202 virtual void SetFacesOrientation3DVectors(bool theState);
203 virtual bool GetFacesOrientation3DVectors();
205 virtual void SetControlMode(eControl theMode);
206 virtual eControl GetControlMode(){ return myControlMode;}
207 virtual SMESH::Controls::FunctorPtr GetFunctor() { return myFunctor; }
209 virtual SMESH_ScalarBarActor* GetScalarBarActor(){ return myScalarBarActor;}
211 virtual void RemoveAllClippingPlanes();
212 virtual vtkIdType GetNumberOfClippingPlanes();
213 virtual vtkPlane* GetClippingPlane(vtkIdType theID);
214 virtual vtkIdType AddClippingPlane(vtkPlane* thePlane);
216 virtual TVisualObjPtr GetObject() { return myVisualObj;}
218 virtual void SetControlsPrecision( const long p ) { myControlsPrecision = p; }
219 virtual long GetControlsPrecision() const { return myControlsPrecision; }
221 virtual void UpdateScalarBar();
222 virtual void UpdateDistribution();
224 #ifndef DISABLE_PLOT2DVIEWER
225 virtual SPlot2d_Histogram* GetPlot2Histogram() { return my2dHistogram; }
226 virtual SPlot2d_Histogram* UpdatePlot2Histogram();
230 virtual void SetQuadratic2DRepresentation(EQuadratic2DRepresentation);
231 virtual EQuadratic2DRepresentation GetQuadratic2DRepresentation();
233 virtual void SetMarkerStd( VTK::MarkerType, VTK::MarkerScale );
234 virtual void SetMarkerTexture( int, VTK::MarkerTexture );
237 void SetControlMode(eControl theMode, bool theCheckEntityMode);
238 void SetImplicitFunctionUsed(bool theIsImplicitFunctionUsed);
239 bool IsImplicitFunctionUsed() const;
241 TVisualObjPtr myVisualObj;
242 vtkTimeStamp* myTimeStamp;
244 SMESH_ScalarBarActor* myScalarBarActor;
245 vtkLookupTable* myLookupTable;
247 vtkProperty* mySurfaceProp;
248 vtkProperty* myBackSurfaceProp;
249 vtkProperty* myNormalVProp;
250 vtkProperty* myReversedVProp;
251 vtkProperty* myEdgeProp;
252 vtkProperty* myNodeProp;
254 SMESH_DeviceActor* myBaseActor;
255 SMESH_NodeLabelActor* myNodeActor;
256 SMESH_DeviceActor* myPickableActor;
258 vtkProperty* myHighlightProp;
259 vtkProperty* myOutLineProp;
260 vtkProperty* myPreselectProp;
262 vtkProperty* myBallHighlightProp;
263 vtkProperty* myBallPreselectProp;
265 SMESH_DeviceActor* myHighlitableActor;
267 eControl myControlMode;
268 SMESH::Controls::FunctorPtr myFunctor;
269 vtkProperty* my2DExtProp;
270 vtkProperty* my3DExtProp;
271 SMESH_CellLabelActor* my2DActor;
272 SMESH_DeviceActor* my2DExtActor;
273 SMESH_CellLabelActor* my3DActor;
274 SMESH_DeviceActor* my3DExtActor;
275 SMESH_DeviceActor* myControlActor;
277 vtkProperty* myNodeExtProp;
278 SMESH_DeviceActor* myNodeExtActor;
280 vtkProperty* my1DProp;
281 SMESH_CellLabelActor* my1DActor;
282 vtkProperty* my1DExtProp;
283 SMESH_DeviceActor* my1DExtActor;
285 vtkProperty* my0DProp;
286 SMESH_CellLabelActor* my0DActor;
287 vtkProperty* myBallProp;
288 SMESH_CellLabelActor* myBallActor;
289 vtkProperty* my0DExtProp;
290 SMESH_DeviceActor* my0DExtActor;
292 unsigned int myEntityMode;
293 unsigned int myEntityState;
294 unsigned int myEntityModeCache;
295 bool myIsEntityModeCache;
296 bool myIsPointsVisible;
301 vtkImplicitBoolean* myImplicitBoolean;
302 typedef TVTKSmartPtr<vtkPlane> TPlanePtr;
303 typedef std::vector<TPlanePtr> TCippingPlaneCont;
304 TCippingPlaneCont myCippingPlaneCont;
305 long myControlsPrecision;
307 #ifndef DISABLE_PLOT2DVIEWER
308 SPlot2d_Histogram* my2dHistogram;
311 bool myIsFacesOriented;
313 int myDeltaBrightness;
314 int myDeltaVBrightness;
316 VTK::MarkerTexture myMarkerTexture;
321 bool Init(TVisualObjPtr theVisualObj,
322 const char* theEntry,
326 void SetIsShrunkable(bool theShrunkable);
327 void UpdateHighlight();
331 // hide the two parameter Render() method from the user and the compiler.
332 virtual void Render(vtkRenderer *, vtkMapper *) {};
333 virtual void ShallowCopy(vtkProp *prop);
334 virtual void SetMapper(vtkMapper *);
335 static SMESH_ActorDef* New();
338 SMESH_ActorDef(const SMESH_ActorDef&);
339 void operator=(const SMESH_ActorDef&);
343 #endif //SMESH_ACTORDEF_H