Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / VTKViewer / VTKViewer_AppendFilter.h
1 //  Copyright (C) 2007-2008  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 #ifndef VTKVIEWER_APPENDFILTER_H
23 #define VTKVIEWER_APPENDFILTER_H
24
25 #include "VTKViewer.h"
26
27 #include <vtkAppendFilter.h>
28 #include <vtkSmartPointer.h>
29
30 #include <vector>
31 #include <map>
32
33 class vtkPointSet;
34
35 #ifdef WIN32
36 #pragma warning ( disable:4251 )
37 #endif
38
39 /*! \brief This class used same as vtkAppendFilter. See documentation on VTK for more information.
40  */
41 class VTKVIEWER_EXPORT VTKViewer_AppendFilter : public vtkAppendFilter 
42 {
43 public:
44   /*! \fn static VTKViewer_AppendFilter *New()
45    */
46   static VTKViewer_AppendFilter *New();
47   
48   /*! \fn vtkTypeRevisionMacro(VTKViewer_AppendFilter, vtkAppendFilter)
49    *  \brief VTK type revision macros.
50    */
51   vtkTypeRevisionMacro(VTKViewer_AppendFilter, vtkAppendFilter);
52
53   void SetDoMappingFlag(const bool theFlag);
54
55   bool DoMappingFlag() const;
56
57   void
58   SetSharedPointsDataSet(vtkPointSet* thePointsDataSet);
59
60   vtkPointSet*
61   GetSharedPointsDataSet();
62
63   vtkIdType
64   GetPointOutputID(vtkIdType theInputID,
65                    vtkIdType theInputDataSetID);
66
67   vtkIdType
68   GetCellOutputID(vtkIdType theInputID,
69                   vtkIdType theInputDataSetID);
70
71   void 
72   GetPointInputID(vtkIdType theOutputID,
73                  vtkIdType& theInputID,
74                  vtkIdType& theStartID,
75                  vtkIdType& theInputDataSetID);
76
77   void
78   GetCellInputID(vtkIdType theOutputID,
79                  vtkIdType& theInputID,
80                  vtkIdType& theStartID,
81                  vtkIdType& theInputDataSetID);
82
83   typedef std::vector<vtkIdType> TVectorIds;
84
85 protected:
86   /*! \fn VTKViewer_AppendFilter();
87    * \brief Constructor
88    */
89   VTKViewer_AppendFilter();
90   /*! \fn ~VTKViewer_AppendFilter();
91    * \brief Destructor.
92    */
93   ~VTKViewer_AppendFilter();
94
95   // Usual data generation method
96   virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
97
98   virtual int FillInputPortInformation(int port, vtkInformation *info);
99   
100   void DoMapping();
101
102   void Reset();
103
104   int MakeOutput(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
105
106   bool myDoMappingFlag;
107   TVectorIds myNodeRanges;
108   TVectorIds myCellRanges;
109   vtkSmartPointer<vtkPointSet> mySharedPointsDataSet;
110 };
111
112 #ifdef WIN32
113 #pragma warning ( default:4251 )
114 #endif
115
116 #endif