VTK
dox/Rendering/Core/vtkHardwareSelectionPolyDataPainter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkHardwareSelectionPolyDataPainter.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 =========================================================================*/
00025 #ifndef __vtkHardwareSelectionPolyDataPainter_h
00026 #define __vtkHardwareSelectionPolyDataPainter_h
00027 
00028 #include "vtkRenderingCoreModule.h" // For export macro
00029 #include "vtkStandardPolyDataPainter.h"
00030 
00031 class VTKRENDERINGCORE_EXPORT vtkHardwareSelectionPolyDataPainter :
00032   public vtkStandardPolyDataPainter
00033 {
00034 public:
00035   static vtkHardwareSelectionPolyDataPainter* New();
00036   vtkTypeMacro(vtkHardwareSelectionPolyDataPainter, vtkStandardPolyDataPainter);
00037   void PrintSelf(ostream& os, vtkIndent indent);
00038 
00040 
00042   vtkSetMacro(EnableSelection, int);
00043   vtkGetMacro(EnableSelection, int);
00044   vtkBooleanMacro(EnableSelection, int);
00046 
00048 
00053   vtkSetStringMacro(PointIdArrayName);
00054   vtkGetStringMacro(PointIdArrayName);
00055   vtkSetStringMacro(CellIdArrayName);
00056   vtkGetStringMacro(CellIdArrayName);
00058 
00060 
00063   vtkSetStringMacro(ProcessIdArrayName);
00064   vtkGetStringMacro(ProcessIdArrayName);
00066 
00068 
00075   vtkSetStringMacro(CompositeIdArrayName);
00076   vtkGetStringMacro(CompositeIdArrayName);
00078 
00079 //BTX
00080 protected:
00081   vtkHardwareSelectionPolyDataPainter();
00082   ~vtkHardwareSelectionPolyDataPainter();
00083 
00085 
00087   virtual void RenderInternal(vtkRenderer* renderer, vtkActor* actor,
00088     unsigned long typeflags, bool forceCompileOnly);
00090 
00091   void DrawCells(int mode, vtkCellArray *connectivity,
00092     vtkIdType startCellId, vtkRenderer *renderer);
00093 
00094   int EnableSelection;
00095   vtkIdType TotalCells;
00096   char* PointIdArrayName;
00097   char* CellIdArrayName;
00098   char* ProcessIdArrayName;
00099   char* CompositeIdArrayName;
00100 
00101 private:
00102   vtkHardwareSelectionPolyDataPainter(const vtkHardwareSelectionPolyDataPainter&); // Not implemented.
00103   void operator=(const vtkHardwareSelectionPolyDataPainter&); // Not implemented.
00104 //ETX
00105 };
00106 
00107 #endif
00108 
00109