VTK
vtkHardwareSelectionPolyDataPainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkHardwareSelectionPolyDataPainter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
25 #ifndef __vtkHardwareSelectionPolyDataPainter_h
26 #define __vtkHardwareSelectionPolyDataPainter_h
27 
29 
32 {
33 public:
36  void PrintSelf(ostream& os, vtkIndent indent);
37 
39 
41  vtkSetMacro(EnableSelection, int);
42  vtkGetMacro(EnableSelection, int);
43  vtkBooleanMacro(EnableSelection, int);
45 
46 //BTX
47 protected:
50 
52 
54  virtual void RenderInternal(vtkRenderer* renderer, vtkActor* actor,
55  unsigned long typeflags, bool forceCompileOnly);
57 
58  void DrawCells(int mode, vtkCellArray *connectivity,
59  vtkIdType startCellId, vtkRenderer *renderer);
60 
63 private:
65  void operator=(const vtkHardwareSelectionPolyDataPainter&); // Not implemented.
66 //ETX
67 };
68 
69 #endif
70 
71