VTK  9.3.1
vtkVectorText.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
29 #ifndef vtkVectorText_h
30 #define vtkVectorText_h
31 
32 #include "vtkPolyDataAlgorithm.h"
33 #include "vtkRenderingFreeTypeModule.h" // For export macro
34 
35 VTK_ABI_NAMESPACE_BEGIN
36 class VTKRENDERINGFREETYPE_EXPORT vtkVectorText : public vtkPolyDataAlgorithm
37 {
38 public:
39  static vtkVectorText* New();
41  void PrintSelf(ostream& os, vtkIndent indent) override;
42 
44 
47  vtkSetStringMacro(Text);
48  vtkGetStringMacro(Text);
50 
51 protected:
52  vtkVectorText();
53  ~vtkVectorText() override;
54 
56  char* Text;
57 
58 private:
59  vtkVectorText(const vtkVectorText&) = delete;
60  void operator=(const vtkVectorText&) = delete;
61 };
62 
63 VTK_ABI_NAMESPACE_END
64 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
static vtkPolyDataAlgorithm * New()
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:28
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
create polygonal text
Definition: vtkVectorText.h:36