Salome HOME
df69eefa11e79f7443f78d5f40aace0b839a6b48
[modules/paravis.git] / src / Plugins / ArrayRenamer / plugin / ArrayRenamerModule / vtkArrayRenamerFilter.h
1 // Copyright (C) 2014-2019  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
44 protected:
45   /// Constructor & destructor
46   vtkArrayRenamerFilter();
47   ~vtkArrayRenamerFilter() override;
48
49   int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
50
51 private:
52   vtkArrayRenamerFilter(const vtkArrayRenamerFilter&) = delete;
53   void operator=(const vtkArrayRenamerFilter&) = delete;
54
55   void FillListOfArrays(vtkDataObject*);
56
57   class vtkInternals;
58   friend class vtkInternals;
59   vtkInternals* Internals;
60 };
61
62 #endif // __ArrayRenamerFilter_h_