VTK
vtkOpenGLTextMapper.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOpenGLTextMapper.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=========================================================================*/
15
21#ifndef vtkOpenGLTextMapper_h
22#define vtkOpenGLTextMapper_h
23
24#include "vtkRenderingOpenGL2Module.h" // For export macro
25#include "vtkTextMapper.h"
26
28
29class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLTextMapper: public vtkTextMapper
30{
31public:
34 virtual void PrintSelf(ostream &os, vtkIndent indent);
35
36 void RenderOverlay(vtkViewport *vp, vtkActor2D *act);
37
38protected:
41
42 void RenderGL2PS(vtkViewport *vp, vtkActor2D *act,
44
45private:
46 vtkOpenGLTextMapper(const vtkOpenGLTextMapper&) VTK_DELETE_FUNCTION;
47 void operator=(const vtkOpenGLTextMapper&) VTK_DELETE_FUNCTION;
48};
49
50#endif // vtkOpenGLTextMapper_h
a actor that draws 2D data
Definition: vtkActor2D.h:46
a simple class to control print indentation
Definition: vtkIndent.h:40
Helper functionality for GL2PS exporting.
vtkTextMapper override for OpenGL2.
static vtkOpenGLTextMapper * New()
2D text annotation
Definition: vtkTextMapper.h:54
abstract specification for Viewports
Definition: vtkViewport.h:48