VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkAppendSelection.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 /*---------------------------------------------------------------------------- 00016 Copyright (c) Sandia Corporation 00017 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details. 00018 ----------------------------------------------------------------------------*/ 00031 #ifndef __vtkAppendSelection_h 00032 #define __vtkAppendSelection_h 00033 00034 #include "vtkFiltersCoreModule.h" // For export macro 00035 #include "vtkSelectionAlgorithm.h" 00036 00037 class vtkSelection; 00038 00039 class VTKFILTERSCORE_EXPORT vtkAppendSelection : public vtkSelectionAlgorithm 00040 { 00041 public: 00042 static vtkAppendSelection *New(); 00043 00044 vtkTypeMacro(vtkAppendSelection,vtkSelectionAlgorithm); 00045 void PrintSelf(ostream& os, vtkIndent indent); 00046 00048 00052 vtkSetMacro(UserManagedInputs,int); 00053 vtkGetMacro(UserManagedInputs,int); 00054 vtkBooleanMacro(UserManagedInputs,int); 00056 00059 void AddInputData(vtkSelection *); 00060 00063 void RemoveInputData(vtkSelection *); 00064 00065 //BTX 00067 00068 vtkSelection *GetInput(int idx); 00069 vtkSelection *GetInput() { return this->GetInput( 0 ); }; 00070 //ETX 00072 00075 void SetNumberOfInputs(int num); 00076 00077 // Set Nth input, should only be used when UserManagedInputs is true. 00078 void SetInputConnectionByNumber(int num, vtkAlgorithmOutput *input); 00079 00081 00086 vtkSetMacro(AppendByUnion, int); 00087 vtkGetMacro(AppendByUnion, int); 00088 vtkBooleanMacro(AppendByUnion, int); 00090 00091 protected: 00092 vtkAppendSelection(); 00093 ~vtkAppendSelection(); 00094 00095 // Usual data generation method 00096 virtual int RequestData(vtkInformation *, 00097 vtkInformationVector **, vtkInformationVector *); 00098 virtual int FillInputPortInformation(int, vtkInformation *); 00099 00100 private: 00101 // hide the superclass' AddInput() from the user and the compiler 00102 void AddInputData(vtkDataObject *) 00103 { vtkErrorMacro( << "AddInput() must be called with a vtkSelection not a vtkDataObject."); }; 00104 00105 int UserManagedInputs; 00106 int AppendByUnion; 00107 private: 00108 vtkAppendSelection(const vtkAppendSelection&); // Not implemented. 00109 void operator=(const vtkAppendSelection&); // Not implemented. 00110 }; 00111 00112 #endif 00113 00114