Salome HOME
96dd92ce659141b586f6e19870e5225e89e485bf
[modules/smesh.git] / src / OBJECT / SMESH_DeviceActor.h
1 //  SMESH OBJECT : interactive object for SMESH visualization
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_DeviceActor.h
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef SMESH_DEVICE_ACTOR_H
30 #define SMESH_DEVICE_ACTOR_H
31
32 #include "SALOME_GeometryFilter.h"
33 #include "SMESH_Controls.hxx"
34 #include "SMESH_Object.h"
35
36 #include <vtkLODActor.h>
37 #include <vtkSmartPointer.h>
38
39 class vtkCell;
40 class vtkProperty;
41 class vtkMergeFilter;
42 class vtkShrinkFilter;
43 class vtkPolyDataMapper;
44 class vtkUnstructuredGrid;
45 class vtkScalarBarActor;
46 class vtkLookupTable;
47 class vtkImplicitBoolean;
48
49 class SALOME_Transform;
50 class SALOME_TransformFilter;
51 class SALOME_PassThroughFilter;
52 class SALOME_ExtractUnstructuredGrid;
53
54 class SMESH_ExtractGeometry;
55
56
57 class SMESH_DeviceActor: public vtkLODActor{
58   friend class SMESH_ActorDef;
59
60  public:
61   vtkTypeMacro(SMESH_DeviceActor,vtkLODActor);
62   static SMESH_DeviceActor* New();
63
64   void SetStoreClippingMapping(bool theStoreMapping);
65   void SetStoreGemetryMapping(bool theStoreMapping);
66   void SetStoreIDMapping(bool theStoreMapping);
67
68   virtual int GetNodeObjId(int theVtkID);
69   virtual float* GetNodeCoord(int theObjID);
70
71   virtual int GetElemObjId(int theVtkID);
72   virtual vtkCell* GetElemCell(int theObjID);
73
74   virtual void SetTransform(SALOME_Transform* theTransform); 
75   virtual unsigned long int GetMTime();
76
77   float GetShrinkFactor();
78   void  SetShrinkFactor(float value);
79
80   bool IsShrunkable() { return myIsShrinkable;}
81   bool IsShrunk() { return myIsShrunk;}
82   void SetShrink(); 
83   void UnShrink(); 
84
85   enum EReperesent { ePoint, eWireframe, eSurface, eInsideframe};
86   EReperesent GetRepresentation(){ return myRepresentation;}
87   void SetRepresentation(EReperesent theMode);
88
89   virtual void SetVisibility(int theMode);
90   virtual int GetVisibility();
91
92   SALOME_ExtractUnstructuredGrid* GetExtractUnstructuredGrid();
93   vtkUnstructuredGrid* GetUnstructuredGrid();
94
95   void SetControlMode(SMESH::Controls::FunctorPtr theFunctor,
96                       vtkScalarBarActor* theScalarBarActor,
97                       vtkLookupTable* theLookupTable);
98   void SetExtControlMode(SMESH::Controls::FunctorPtr theFunctor,
99                          vtkScalarBarActor* theScalarBarActor,
100                          vtkLookupTable* theLookupTable);
101   void SetExtControlMode(SMESH::Controls::FunctorPtr theFunctor);
102
103   bool IsHighlited() { return myIsHighlited;}
104   void SetHighlited(bool theIsHighlited);
105
106   virtual void Render(vtkRenderer *, vtkMapper *);
107
108   void SetImplicitFunctionUsed(bool theIsImplicitFunctionUsed);
109   bool IsImplicitFunctionUsed() const{ return myIsImplicitFunctionUsed;}
110
111  protected:
112   void Init(TVisualObjPtr theVisualObj, vtkImplicitBoolean* theImplicitBoolean);
113   void SetUnstructuredGrid(vtkUnstructuredGrid* theGrid);
114
115   vtkPolyDataMapper *myMapper;
116   TVisualObjPtr myVisualObj;
117
118   vtkProperty *myProperty;
119   EReperesent myRepresentation;
120
121   SMESH_ExtractGeometry* myExtractGeometry;
122   bool myIsImplicitFunctionUsed;
123
124   vtkMergeFilter* myMergeFilter;
125   SALOME_ExtractUnstructuredGrid* myExtractUnstructuredGrid;
126
127   bool myStoreClippingMapping;
128   SALOME_GeometryFilter *myGeomFilter;
129   SALOME_TransformFilter *myTransformFilter;
130   std::vector<SALOME_PassThroughFilter*> myPassFilter;
131
132   vtkShrinkFilter* myShrinkFilter;
133   bool myIsShrinkable;
134   bool myIsShrunk;
135   
136   bool myIsHighlited;
137
138   float myPolygonOffsetFactor;
139   float myPolygonOffsetUnits;
140
141   void SetPolygonOffsetParameters(float factor, float units);
142   void GetPolygonOffsetParameters(float& factor, float& units){
143     factor = myPolygonOffsetFactor;
144     units = myPolygonOffsetUnits;
145   }
146
147   SMESH_DeviceActor();
148   ~SMESH_DeviceActor();
149   SMESH_DeviceActor(const SMESH_DeviceActor&);
150   void operator=(const SMESH_DeviceActor&);
151
152 };
153
154
155 #endif //SMESH_DEVICE_ACTOR_H