VTK  9.3.1
vtkTextRenderer.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
3 
37 #ifndef vtkTextRenderer_h
38 #define vtkTextRenderer_h
39 
40 #include "vtkObject.h"
41 #include "vtkRenderingCoreModule.h" // For export macro
42 #include "vtkTuple.h" // For metrics struct
43 #include "vtkVector.h" // For metrics struct
44 
45 VTK_ABI_NAMESPACE_BEGIN
46 class vtkImageData;
47 class vtkPath;
48 class vtkStdString;
49 class vtkTextProperty;
50 VTK_ABI_NAMESPACE_END
51 
52 namespace vtksys
53 {
54 class RegularExpression;
55 }
56 
57 VTK_ABI_NAMESPACE_BEGIN
58 
59 class VTKRENDERINGCORE_EXPORT vtkTextRendererCleanup
60 {
61 public:
64 
65 private:
66  vtkTextRendererCleanup(const vtkTextRendererCleanup& other) = delete;
67  vtkTextRendererCleanup& operator=(const vtkTextRendererCleanup& rhs) = delete;
68 };
69 
70 class VTKRENDERINGCORE_EXPORT vtkTextRenderer : public vtkObject
71 {
72 public:
73  struct Metrics
74  {
79  : BoundingBox(0)
80  , TopLeft(0)
81  , TopRight(0)
82  , BottomLeft(0)
83  , BottomRight(0)
84  , Ascent(0)
85  , Descent(0)
86  {
87  }
88 
95 
97 
106 
116  };
117 
118  vtkTypeMacro(vtkTextRenderer, vtkObject);
119  void PrintSelf(ostream& os, vtkIndent indent) override;
120 
130  static vtkTextRenderer* New();
131 
136  static vtkTextRenderer* GetInstance();
137 
143  enum Backend
144  {
145  Default = -1,
146  Detect = 0,
149 
150  UserBackend = 16
151  };
152 
154 
157  vtkSetMacro(DefaultBackend, int);
158  vtkGetMacro(DefaultBackend, int);
160 
162 
165  virtual int DetectBackend(const vtkStdString& str);
167 
171  virtual bool FreeTypeIsSupported() { return false; }
172  virtual bool MathTextIsSupported() { return false; }
173 
175 
183  vtkTextProperty* tprop, const vtkStdString& str, int bbox[4], int dpi, int backend = Default)
184  {
185  return this->GetBoundingBoxInternal(tprop, str, bbox, dpi, backend);
186  }
188 
190 
195  bool GetMetrics(vtkTextProperty* tprop, const vtkStdString& str, Metrics& metrics, int dpi,
196  int backend = Default)
197  {
198  return this->GetMetricsInternal(tprop, str, metrics, dpi, backend);
199  }
201 
203 
218  int textDims[2], int dpi, int backend = Default)
219  {
220  return this->RenderStringInternal(tprop, str, data, textDims, dpi, backend);
221  }
223 
225 
231  int GetConstrainedFontSize(const vtkStdString& str, vtkTextProperty* tprop, int targetWidth,
232  int targetHeight, int dpi, int backend = Default)
233  {
234  return this->GetConstrainedFontSizeInternal(
235  str, tprop, targetWidth, targetHeight, dpi, backend);
236  }
238 
240 
248  vtkTextProperty* tprop, const vtkStdString& str, vtkPath* path, int dpi, int backend = Default)
249  {
250  return this->StringToPathInternal(tprop, str, path, dpi, backend);
251  }
253 
260  void SetScaleToPowerOfTwo(bool scale) { this->SetScaleToPowerOfTwoInternal(scale); }
261 
263 
264 protected:
265  vtkTextRenderer();
266  ~vtkTextRenderer() override;
267 
269 
272  virtual bool GetBoundingBoxInternal(
273  vtkTextProperty* tprop, const vtkStdString& str, int bbox[4], int dpi, int backend) = 0;
274  virtual bool GetMetricsInternal(
275  vtkTextProperty* tprop, const vtkStdString& str, Metrics& metrics, int dpi, int backend) = 0;
276  virtual bool RenderStringInternal(vtkTextProperty* tprop, const vtkStdString& str,
277  vtkImageData* data, int textDims[2], int dpi, int backend) = 0;
278  virtual int GetConstrainedFontSizeInternal(const vtkStdString& str, vtkTextProperty* tprop,
279  int targetWidth, int targetHeight, int dpi, int backend) = 0;
280  virtual bool StringToPathInternal(
281  vtkTextProperty* tprop, const vtkStdString& str, vtkPath* path, int dpi, int backend) = 0;
282  virtual void SetScaleToPowerOfTwoInternal(bool scale) = 0;
284 
289  static void SetInstance(vtkTextRenderer* instance);
290 
292 
298 
299  vtksys::RegularExpression* MathTextRegExp;
300  vtksys::RegularExpression* MathTextRegExp2;
301  vtksys::RegularExpression* MathTextRegExpColumn;
302 
304 
307  virtual void CleanUpFreeTypeEscapes(vtkStdString& str);
309 
314 
315 private:
316  vtkTextRenderer(const vtkTextRenderer&) = delete;
317  void operator=(const vtkTextRenderer&) = delete;
318 };
319 
320 VTK_ABI_NAMESPACE_END
321 #endif // vtkTextRenderer_h
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:28
bool GetBoundingBox(vtkTextProperty *tprop, const vtkStdString &str, int bbox[4], int dpi, int backend=Default)
Given a text property and a string, get the bounding box {xmin, xmax, ymin, ymax} of the rendered str...
abstract base class for most VTK objects
Definition: vtkObject.h:51
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
concrete dataset representing a path defined by Bezier curves.
Definition: vtkPath.h:24
vtkVector2i TopRight
The corners of the rendered text (or background, if applicable), in pixels.
Backend
Available backends.
vtkVector2i Descent
Vectors representing the rotated ascent and descent of the text.
bool StringToPath(vtkTextProperty *tprop, const vtkStdString &str, vtkPath *path, int dpi, int backend=Default)
Given a text property and a string, this function populates the vtkPath path with the outline of the ...
vtkVector2i TopLeft
The corners of the rendered text (or background, if applicable), in pixels.
static vtkTextRendererCleanup Cleanup
The singleton instance and the singleton cleanup instance.
vtksys::RegularExpression * MathTextRegExp2
void SetScaleToPowerOfTwo(bool scale)
Set to true if the graphics implementation requires texture image dimensions to be a power of two...
int DefaultBackend
The backend to use when none is specified.
bool RenderString(vtkTextProperty *tprop, const vtkStdString &str, vtkImageData *data, int textDims[2], int dpi, int backend=Default)
Given a text property and a string, this function initializes the vtkImageData *data and renders it i...
vtkTuple< int, 4 > BoundingBox
The axis-aligned bounding box of the rendered text and background, in pixels.
a simple class to control print indentation
Definition: vtkIndent.h:28
virtual bool MathTextIsSupported()
topologically and geometrically regular array of data
Definition: vtkImageData.h:42
Some derived classes for the different vectors commonly used.
Definition: vtkVector.h:440
represent text properties.
virtual bool FreeTypeIsSupported()
Test for availability of various backends.
Metrics()
Construct a Metrics object with all members initialized to 0.
Interface for generating images and path data from string data, using multiple backends.
vtkVector2i Ascent
Vectors representing the rotated ascent and descent of the text.
bool GetMetrics(vtkTextProperty *tprop, const vtkStdString &str, Metrics &metrics, int dpi, int backend=Default)
Given a text property and a string, get some metrics for the rendered string.
vtkVector2i BottomLeft
The corners of the rendered text (or background, if applicable), in pixels.
vtksys::RegularExpression * MathTextRegExpColumn
int GetConstrainedFontSize(const vtkStdString &str, vtkTextProperty *tprop, int targetWidth, int targetHeight, int dpi, int backend=Default)
This function returns the font size (in points) and sets the size in tprop that is required to fit th...
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
vtksys::RegularExpression * MathTextRegExp
vtkVector2i BottomRight
The corners of the rendered text (or background, if applicable), in pixels.
static vtkTextRenderer * Instance
The singleton instance and the singleton cleanup instance.