Salome HOME
Fix. Bug PAL8109 CRASH of "Salome" happens if to check "Free Borders" control at...
[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_Actor.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 SetStoreMapping(int theStoreMapping);
65   int GetStoreMapping(){ return myStoreMapping;}
66
67   virtual int GetNodeObjId(int theVtkID);
68   virtual float* GetNodeCoord(int theObjID);
69
70   virtual int GetElemObjId(int theVtkID);
71   virtual vtkCell* GetElemCell(int theObjID);
72
73   virtual void SetTransform(SALOME_Transform* theTransform); 
74   virtual unsigned long int GetMTime();
75
76   float GetShrinkFactor();
77   void  SetShrinkFactor(float value);
78
79   bool IsShrunkable() { return myIsShrinkable;}
80   bool IsShrunk() { return myIsShrunk;}
81   void SetShrink(); 
82   void UnShrink(); 
83
84   enum EReperesent { ePoint, eWireframe, eSurface, eInsideframe};
85   EReperesent GetRepresentation(){ return myRepresentation;}
86   void SetRepresentation(EReperesent theMode);
87
88   virtual void SetVisibility(int theMode);
89   virtual int GetVisibility();
90
91   SALOME_ExtractUnstructuredGrid* GetExtractUnstructuredGrid();
92   vtkUnstructuredGrid* GetUnstructuredGrid();
93
94   void SetControlMode(SMESH::Controls::FunctorPtr theFunctor,
95                       vtkScalarBarActor* theScalarBarActor,
96                       vtkLookupTable* theLookupTable);
97   void SetExtControlMode(SMESH::Controls::FunctorPtr theFunctor,
98                          SMESH_DeviceActor* theDeviceActor,
99                          vtkScalarBarActor* theScalarBarActor,
100                          vtkLookupTable* theLookupTable);
101   void SetExtControlMode(SMESH::Controls::FunctorPtr theFunctor,
102                          SMESH_DeviceActor* theDeviceActor);
103
104   bool IsHighlited() { return myIsHighlited;}
105   void SetHighlited(bool theIsHighlited);
106
107   virtual void Render(vtkRenderer *, vtkMapper *);
108
109  protected:
110   void Init(TVisualObjPtr theVisualObj, vtkImplicitBoolean* theImplicitBoolean);
111   void SetUnstructuredGrid(vtkUnstructuredGrid* theGrid);
112
113   vtkPolyDataMapper *myMapper;
114   TVisualObjPtr myVisualObj;
115
116   vtkProperty *myProperty;
117   EReperesent myRepresentation;
118
119   SMESH_ExtractGeometry* myExtractGeometry;
120
121   vtkMergeFilter* myMergeFilter;
122   SALOME_ExtractUnstructuredGrid* myExtractUnstructuredGrid;
123
124   bool myStoreMapping;
125   SALOME_GeometryFilter *myGeomFilter;
126   SALOME_TransformFilter *myTransformFilter;
127   std::vector<SALOME_PassThroughFilter*> myPassFilter;
128
129   vtkShrinkFilter* myShrinkFilter;
130   bool myIsShrinkable;
131   bool myIsShrunk;
132   
133   bool myIsHighlited;
134
135   float myPolygonOffsetFactor;
136   float myPolygonOffsetUnits;
137
138   void SetPolygonOffsetParameters(float factor, float units);
139   void GetPolygonOffsetParameters(float& factor, float& units){
140     factor = myPolygonOffsetFactor;
141     units = myPolygonOffsetUnits;
142   }
143
144   SMESH_DeviceActor();
145   ~SMESH_DeviceActor();
146   SMESH_DeviceActor(const SMESH_DeviceActor&);
147   void operator=(const SMESH_DeviceActor&);
148
149 };
150
151
152 #endif //SMESH_ACTOR_H