VTK
vtkMathTextFreeTypeTextRenderer.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMathTextFreeTypeTextRenderer.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 =========================================================================*/
15 
31 #ifndef vtkMathTextFreeTypeTextRenderer_h
32 #define vtkMathTextFreeTypeTextRenderer_h
33 
34 #include "vtkRenderingFreeTypeModule.h" // For export macro
35 #include "vtkTextRenderer.h"
36 
37 class vtkFreeTypeTools;
39 
40 class VTKRENDERINGFREETYPE_EXPORT vtkMathTextFreeTypeTextRenderer :
41  public vtkTextRenderer
42 {
43 public:
45  void PrintSelf(ostream &os, vtkIndent indent) override;
46 
47  static vtkMathTextFreeTypeTextRenderer *New();
48 
50 
53  bool FreeTypeIsSupported() override;
54  bool MathTextIsSupported() override;
56 
57 protected:
59  ~vtkMathTextFreeTypeTextRenderer() override;
60 
62 
65  bool GetBoundingBoxInternal(vtkTextProperty *tprop, const vtkStdString &str,
66  int bbox[4], int dpi, int backend) override;
67  bool GetBoundingBoxInternal(vtkTextProperty *tprop,
68  const vtkUnicodeString &str,
69  int bbox[4], int dpi, int backend) override;
70  bool GetMetricsInternal(vtkTextProperty *tprop, const vtkStdString &str,
71  Metrics &metrics, int dpi, int backend) override;
72  bool GetMetricsInternal(vtkTextProperty *tprop, const vtkUnicodeString &str,
73  Metrics &metrics, int dpi, int backend) override;
74  bool RenderStringInternal(vtkTextProperty *tprop, const vtkStdString &str,
75  vtkImageData *data, int textDims[2], int dpi,
76  int backend) override;
77  bool RenderStringInternal(vtkTextProperty *tprop, const vtkUnicodeString &str,
78  vtkImageData *data, int textDims[2], int dpi,
79  int backend) override;
80  int GetConstrainedFontSizeInternal(const vtkStdString &str,
81  vtkTextProperty *tprop,
82  int targetWidth, int targetHeight, int dpi,
83  int backend) override;
84  int GetConstrainedFontSizeInternal(const vtkUnicodeString &str,
85  vtkTextProperty *tprop,
86  int targetWidth, int targetHeight, int dpi,
87  int backend) override;
88  bool StringToPathInternal(vtkTextProperty *tprop, const vtkStdString &str,
89  vtkPath *path, int dpi, int backend) override;
90  bool StringToPathInternal(vtkTextProperty *tprop, const vtkUnicodeString &str,
91  vtkPath *path, int dpi, int backend) override;
92  void SetScaleToPowerOfTwoInternal(bool scale) override;
94 
95 private:
96  vtkMathTextFreeTypeTextRenderer(const vtkMathTextFreeTypeTextRenderer &) = delete;
97  void operator=(const vtkMathTextFreeTypeTextRenderer &) = delete;
98 
99  vtkFreeTypeTools *FreeTypeTools;
100  vtkMathTextUtilities *MathTextUtilities;
101 };
102 
103 #endif //vtkMathTextFreeTypeTextRenderer_h
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:40
concrete dataset representing a path defined by Bezier curves.
Definition: vtkPath.h:35
Default implementation of vtkTextRenderer.
a simple class to control print indentation
Definition: vtkIndent.h:39
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
represent text properties.
Interface for generating images and path data from string data, using multiple backends.
Abstract interface to equation rendering.
FreeType library support.
String class that stores Unicode text.