Salome HOME
ptv, do not send mouse release event just after mouse double click
[modules/gui.git] / src / VTKViewer / VTKViewer_PassThroughFilter.cxx
1 //  SALOME FILTER : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SALOME_PassThroughFilter.cxx
25 //  Author : Laurent CORNABE with help of Nicolas REJNERI
26 //  Module : SALOME
27
28
29 #include "VTKViewer_PassThroughFilter.h"
30
31 #include <vtkCellData.h>
32 #include <vtkDataSet.h>
33 #include <vtkObjectFactory.h>
34 #include <vtkPointData.h>
35
36 vtkCxxRevisionMacro(VTKViewer_PassThroughFilter, "$Revision$");
37 vtkStandardNewMacro(VTKViewer_PassThroughFilter);
38
39 /*! \class VTKViewer_PassThroughFilter
40  * Passive filter take a dataset as input and create a dataset as output.\n
41  * The form of the input geometry is not changed in these filters, \n
42  * only the point attributes (e.g. scalars, vectors, etc.). 
43  */
44
45 /*!Execute method.Output calculation.*/
46 void VTKViewer_PassThroughFilter::Execute()
47 {
48   vtkDataSet *input = static_cast<vtkDataSet*>(this->GetInput());
49   vtkDataSet *output = static_cast<vtkDataSet*>(this->GetOutput());
50
51   // This has to be here because it initialized all field datas.
52   output->CopyStructure( input );
53   
54   //! Pass all. (data object's field data is passed by the
55   //! superclass after this method)
56   output->GetPointData()->PassData( input->GetPointData() );
57   output->GetCellData()->PassData( input->GetCellData() );
58
59 }
60
61 /*!Methods invoked by print to print information about the object including superclasses.\n
62  * Typically not called by the user (use Print() instead) but used in the hierarchical \n
63  * print process to combine the output of several classes. 
64  *\param os - output stream.
65  */
66 void VTKViewer_PassThroughFilter::PrintSelf(ostream& os, vtkIndent indent)
67 {
68   this->Superclass::PrintSelf(os,indent);
69 }