VTK
vtkFontConfigFreeTypeTools.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkFontConfigFreeTypeTools.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
34#ifndef vtkFontConfigFreeTypeTools_h
35#define vtkFontConfigFreeTypeTools_h
36
37#include "vtkRenderingFreeTypeFontConfigModule.h" // For export macro
38#include "vtkFreeTypeTools.h"
39
40class VTKRENDERINGFREETYPEFONTCONFIG_EXPORT vtkFontConfigFreeTypeTools:
41 public vtkFreeTypeTools
42{
43public:
45 virtual void PrintSelf(ostream &os, vtkIndent indent);
46
54
60 static bool LookupFaceFontConfig(vtkTextProperty *tprop, FT_Library lib,
61 FT_Face *face);
62
63protected:
66
70 FT_Error CreateFTCManager();
71
72private:
73 vtkFontConfigFreeTypeTools(const vtkFontConfigFreeTypeTools &) VTK_DELETE_FUNCTION;
74 void operator=(const vtkFontConfigFreeTypeTools &) VTK_DELETE_FUNCTION;
75};
76
77#endif //vtkFontConfigFreeTypeTools_h
Subclass of vtkFreeTypeTools that uses system installed fonts.
static bool LookupFaceFontConfig(vtkTextProperty *tprop, FT_Library lib, FT_Face *face)
Modified version of vtkFreeTypeTools::LookupFace that locates FontConfig faces.
static vtkFontConfigFreeTypeTools * New()
Creates a new object of this type, but it is not preferred to use this method directly.
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
FT_Error CreateFTCManager()
Reimplemented from Superclass to use the FontConfig face lookup callback.
FreeType library support.
a simple class to control print indentation
Definition: vtkIndent.h:40
represent text properties.