VTK  9.6.20260615
vtkTextWidget.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
130
131#ifndef vtkTextWidget_h
132#define vtkTextWidget_h
133
134#include "vtkBorderWidget.h"
135#include "vtkInteractionWidgetsModule.h" // For export macro
136
137VTK_ABI_NAMESPACE_BEGIN
139class vtkTextActor;
140
141class VTKINTERACTIONWIDGETS_EXPORT vtkTextWidget : public vtkBorderWidget
142{
143public:
148
150
154 void PrintSelf(ostream& os, vtkIndent indent) override;
156
163
165
171 void SetTextActor(vtkTextActor* textActor);
174
179
180protected:
182 ~vtkTextWidget() override;
183
184private:
185 vtkTextWidget(const vtkTextWidget&) = delete;
186 void operator=(const vtkTextWidget&) = delete;
187};
188
189VTK_ABI_NAMESPACE_END
190#endif
a simple class to control print indentation
Definition vtkIndent.h:108
An actor that displays text.
represent text for vtkTextWidget
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.