VTK  9.2.6
vtkTextWidget.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkTextWidget.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=========================================================================*/
43#ifndef vtkTextWidget_h
44#define vtkTextWidget_h
45
47class vtkTextActor;
48
49#include "vtkBorderWidget.h"
50#include "vtkInteractionWidgetsModule.h" // For export macro
51
52class VTKINTERACTIONWIDGETS_EXPORT vtkTextWidget : public vtkBorderWidget
53{
54public:
58 static vtkTextWidget* New();
59
61
65 void PrintSelf(ostream& os, vtkIndent indent) override;
67
74
76
82 void SetTextActor(vtkTextActor* textActor);
85
90
91protected:
93 ~vtkTextWidget() override;
94
95private:
96 vtkTextWidget(const vtkTextWidget&) = delete;
97 void operator=(const vtkTextWidget&) = delete;
98};
99
100#endif
place a border around a 2D rectangular region
a simple class to control print indentation
Definition vtkIndent.h:49
An actor that displays text.
represent text for vtkTextWidget
widget for placing text on overlay plane
void PrintSelf(ostream &os, vtkIndent indent) override
Standard VTK methods.
~vtkTextWidget() override
vtkTextActor * GetTextActor()
Specify a vtkTextActor to manage.
static vtkTextWidget * New()
Instantiate class.
void SetTextActor(vtkTextActor *textActor)
Specify a vtkTextActor to manage.
void SetRepresentation(vtkTextRepresentation *r)
Specify an instance of vtkWidgetRepresentation used to represent this widget in the scene.
void CreateDefaultRepresentation() override
Create the default widget representation if one is not set.