VTK  9.1.0
vtkOpenGLTextActor.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOpenGLTextActor.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 vtkOpenGLTextActor_h
22#define vtkOpenGLTextActor_h
23
24#include "vtkRenderingOpenGL2Module.h" // For export macro
25#include "vtkTextActor.h"
26
28
29class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLTextActor : public vtkTextActor
30{
31public:
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35
36 int RenderOverlay(vtkViewport* viewport) override;
37
38protected:
41
43
44private:
46 void operator=(const vtkOpenGLTextActor&) = delete;
47};
48
49#endif // vtkOpenGLTextActor_h
a simple class to control print indentation
Definition: vtkIndent.h:113
Access GL2PS functionality.
vtkTextActor override.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkOpenGLTextActor * New()
~vtkOpenGLTextActor() override
int RenderGL2PS(vtkViewport *viewport, vtkOpenGLGL2PSHelper *gl2ps)
int RenderOverlay(vtkViewport *viewport) override
WARNING: INTERNAL METHOD - NOT INTENDED FOR GENERAL USE DO NOT USE THIS METHOD OUTSIDE OF THE RENDERI...
An actor that displays text.
Definition: vtkTextActor.h:160
abstract specification for Viewports
Definition: vtkViewport.h:47