Salome HOME
e3b9e5755d9e9c1698caa40dee31b93f35d80761
[modules/paravis.git] / src / Plugins / ArrayRenamer / vtkArrayRenamerFilter.h
1 // Copyright (C) 2014-2016  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 : Roman NIKOLAEV
20
21 #ifndef __ArrayRenamerFilter_h_
22 #define __ArrayRenamerFilter_h_
23
24 #include <vtkDataSetAlgorithm.h>
25
26 /**
27  * Description of class:
28  * Class allows to rename data arrays and array's components.
29 */
30 class VTK_EXPORT vtkArrayRenamerFilter : public vtkDataSetAlgorithm
31 {
32 public:
33   /// Returns pointer on a new instance of the class
34   static vtkArrayRenamerFilter* New();
35
36   vtkTypeMacro( vtkArrayRenamerFilter, vtkDataSetAlgorithm );
37   
38   void SetArrayInfo( const char* originarrayname, const char* newarrayname, bool copy );
39   void ClearArrayInfo();
40
41   void SetComponentInfo( const char* arrayname, const int compid, const char* newarrayname );
42   void ClearComponentsInfo();
43 protected:
44   /// Constructor & destructor
45   vtkArrayRenamerFilter();
46   virtual ~vtkArrayRenamerFilter();
47
48   virtual int RequestData( vtkInformation *,
49                            vtkInformationVector **,
50                            vtkInformationVector * );
51 private:
52   vtkArrayRenamerFilter( const vtkArrayRenamerFilter & ); // Not implemented yet
53   void operator=( const vtkArrayRenamerFilter & ); // Not implemented yet
54
55   void FillListOfArrays( vtkDataObject* );
56
57   class vtkInternals;
58   friend class vtkInternals;
59   vtkInternals* Internals;
60   
61 };
62
63 #endif // __ArrayRenamerFilter_h_