VTK
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkVectorText.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVectorText.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 =========================================================================*/
40 #ifndef __vtkVectorText_h
41 #define __vtkVectorText_h
42 
43 #include "vtkRenderingFreeTypeModule.h" // For export macro
44 #include "vtkPolyDataAlgorithm.h"
45 
46 class VTKRENDERINGFREETYPE_EXPORT vtkVectorText : public vtkPolyDataAlgorithm
47 {
48 public:
49  static vtkVectorText *New();
50  vtkTypeMacro(vtkVectorText,vtkPolyDataAlgorithm);
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54 
55  vtkSetStringMacro(Text);
56  vtkGetStringMacro(Text);
58 
59 protected:
60  vtkVectorText();
61  ~vtkVectorText();
62 
63  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
64  char *Text;
65 
66 private:
67  vtkVectorText(const vtkVectorText&); // Not implemented.
68  void operator=(const vtkVectorText&); // Not implemented.
69 };
70 
71 #endif
create polygonal text
Definition: vtkVectorText.h:46