Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/gui.git] / src / VTKViewer / VTKViewer_ShrinkFilter.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA 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.
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 #ifndef VTKVIEWER_SHRINKFILTER_H
20 #define VTKVIEWER_SHRINKFILTER_H
21
22 #include "VTKViewer.h"
23
24 #include <vtkShrinkFilter.h>
25
26 #include <vector>
27
28 #ifdef WIN32
29 #pragma warning ( disable:4251 )
30 #endif
31
32 /*!Shrink cells composing an arbitrary data set.
33  *\warning It is possible to turn cells inside out or cause self intersection in special cases.
34  */
35 class VTKVIEWER_EXPORT VTKViewer_ShrinkFilter : public vtkShrinkFilter 
36 {
37 public:
38   /*!Create new instance of VTKViewer_ShrinkFilter.*/
39   static VTKViewer_ShrinkFilter *New();
40   vtkTypeRevisionMacro(VTKViewer_ShrinkFilter, vtkShrinkFilter);
41
42   void SetStoreMapping(int theStoreMapping);
43   /*!Gets store mapping flag.*/
44   int GetStoreMapping(){ return myStoreMapping;}
45
46   virtual vtkIdType GetNodeObjId(int theVtkID);
47   /*!Return element id by vtk id.*/
48   virtual vtkIdType GetElemObjId(int theVtkID) { return theVtkID;}
49
50 protected:
51   VTKViewer_ShrinkFilter();
52   ~VTKViewer_ShrinkFilter();
53   
54   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
55   /*!Not implemented.*/
56   void UnstructuredGridExecute();
57     
58 private:
59   int myStoreMapping;   
60   typedef std::vector<vtkIdType> TVectorId;
61   TVectorId myVTK2ObjIds;
62 };
63
64 #ifdef WIN32
65 #pragma warning ( default:4251 )
66 #endif
67
68 #endif