Salome HOME
MAJ vers paraview 5.4
[modules/paravis.git] / src / Plugins / SimpleMode / IO / vtkSimpleMode.h
1 // Copyright (C) 2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (EDF R&D)
20
21 #ifndef vtkSimpleMode_h__
22 #define vtkSimpleMode_h__
23
24 #include "vtkPolyDataAlgorithm.h"
25
26 class vtkMutableDirectedGraph;
27
28 class VTK_EXPORT vtkSimpleMode : public vtkPolyDataAlgorithm
29 {
30 public:
31   static vtkSimpleMode* New();
32   vtkTypeMacro(vtkSimpleMode, vtkPolyDataAlgorithm)
33   void PrintSelf(ostream& os, vtkIndent indent);
34   void SetInputArrayToProcess(int idx, int port, int connection, int fieldAssociation, const char *name);
35   vtkGetMacro(Factor,double);
36   vtkSetClampMacro(Factor,double,0.,VTK_DOUBLE_MAX);
37   vtkGetMacro(AnimationTime,double);
38   vtkSetClampMacro(AnimationTime,double,0.,1.);
39 protected:
40   vtkSimpleMode();
41   ~vtkSimpleMode();
42
43   int RequestInformation(vtkInformation *request,
44       vtkInformationVector **inputVector, vtkInformationVector *outputVector);
45
46   int RequestData(vtkInformation *request, vtkInformationVector **inputVector,
47       vtkInformationVector *outputVector);
48 private:
49   vtkSimpleMode(const vtkSimpleMode&);
50   void operator=(const vtkSimpleMode&); // Not implemented.
51  private:
52   //BTX
53   //ETX
54   double Factor;
55   double AnimationTime;
56   class vtkSimpleModeInternal;
57   vtkSimpleModeInternal* Internal;
58 };
59
60 #endif