Salome HOME
7ad06ddf59ad5ec8247cf26cedd1adc11ab3b9b0
[modules/visu.git] / src / PIPELINE / VISU_ScalarMapPL.hxx
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_ScalarMapPL.hxx
25 // Author:  Alexey PETROV
26 // Module : VISU
27 //
28 #ifndef VISU_ScalarMapPL_HeaderFile
29 #define VISU_ScalarMapPL_HeaderFile
30
31 #include "VISUPipeline.hxx"
32 #include "VISU_MergedPL.hxx"
33 #include "VISU_ColoredPL.hxx"
34 #include "VISU_UnstructuredGridPL.hxx"
35
36 class VISU_DataSetMapperHolder;
37 class VISU_ElnoAssembleFilter;
38 class VISU_AppendFilter;
39 class VISU_MergeFilter;
40
41
42 //----------------------------------------------------------------------------
43 class VISU_PIPELINE_EXPORT VISU_ScalarMapPL : public VISU_MergedPL,
44                                               public VISU_ColoredPL,
45                                               public VISU_UnstructuredGridPL
46 {
47 public:
48   vtkTypeMacro(VISU_ScalarMapPL, VISU_ColoredPL);
49
50   static 
51   VISU_ScalarMapPL* 
52   New();
53
54   virtual
55   unsigned long int 
56   GetMTime();
57
58   //----------------------------------------------------------------------------
59   virtual
60   void
61   Update();
62
63   virtual
64   void
65   SetSourceGeometry();
66
67   virtual
68   int
69   AddGeometry(vtkDataSet* theGeometry, const VISU::TName& theGeomName);
70
71   virtual
72   vtkDataSet*
73   GetGeometry(int theGeomNumber, VISU::TName& theGeomName);
74
75   virtual
76   int
77   GetNumberOfGeometry();
78
79   bool 
80   IsExternalGeometryUsed();
81
82   virtual
83   void
84   ClearGeometry();
85
86   virtual
87   void
88   GetSourceRange(vtkFloatingPointType theRange[2]);
89
90   virtual
91   void
92   SetGaussMetric(VISU::TGaussMetric theGaussMetric);
93   
94   virtual
95   VISU::TGaussMetric
96   GetGaussMetric();
97
98   //----------------------------------------------------------------------------
99   virtual 
100   vtkPointSet* 
101   GetMergedInput();
102
103 protected:
104   //----------------------------------------------------------------------------
105   VISU_ScalarMapPL();
106   
107   virtual
108   ~VISU_ScalarMapPL();
109
110   virtual
111   void
112   OnCreateMapperHolder();
113
114   virtual
115   vtkDataSet* 
116   InsertCustomPL();
117
118   virtual
119   void
120   Build();
121
122   virtual
123   void
124   DoShallowCopy(VISU_PipeLine *thePipeLine,
125                 bool theIsCopyInput);
126
127   void
128   SetElnoDisassembleState( bool theIsShrunk );
129
130 private:
131   VISU_ScalarMapPL(const VISU_ScalarMapPL&);  // Not implemented.
132   void operator=(const VISU_ScalarMapPL&);  // Not implemented.
133
134   vtkSmartPointer< VISU_ElnoAssembleFilter > myElnoAssembleFilter;
135   vtkSmartPointer< VISU_AppendFilter > myAppendFilter;
136   vtkSmartPointer< VISU_MergeFilter > myMergeFilter;
137 };
138   
139 #endif