VTK
vtkDisplayListPainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDisplayListPainter.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 =========================================================================*/
20 #ifndef __vtkDisplayListPainter_h
21 #define __vtkDisplayListPainter_h
22 
23 #include "vtkPainter.h"
24 
26 
28 {
29 public:
30  static vtkDisplayListPainter* New();
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
39  static vtkInformationIntegerKey* IMMEDIATE_MODE_RENDERING();
40 
44  virtual double GetTimeToDraw();
45 
46 protected:
49 
52  virtual void ProcessInformation(vtkInformation*);
53 
54 
55  // These methods set the ivars. These are purposefully protected.
56  // The only means to affect them should be using information object.
57  vtkSetMacro(ImmediateModeRendering,int);
58 
60 
61 private:
62  vtkDisplayListPainter(const vtkDisplayListPainter&); // Not implemented.
63  void operator=(const vtkDisplayListPainter&); // Not implemented.
64 };
65 
66 #endif
virtual double GetTimeToDraw()
Store vtkAlgorithm input/output information.
virtual void ProcessInformation(vtkInformation *)
Definition: vtkPainter.h:201
a simple class to control print indentation
Definition: vtkIndent.h:37
Key for integer values in vtkInformation.
abstract superclass for painter that builds/uses display lists.
#define VTK_RENDERING_EXPORT
Abstract class for drawing poly data.
Definition: vtkPainter.h:62
static vtkObject * New()
virtual void PrintSelf(ostream &os, vtkIndent indent)