Main MRPT website > C++ reference for MRPT 1.9.9
opengl_fonts.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | http://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6  | See: http://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See details in http://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #ifndef mrpt_opengl_fonts_H
11 #define mrpt_opengl_fonts_H
12 
13 #include <mrpt/utils/TColor.h>
14 #include <mrpt/utils/compiler_fixes.h> // disable warnings
15 #include <string>
16 
17 namespace mrpt
18 {
19 namespace opengl
20 {
21 /** Existing fonts for 2D texts in mrpt::opengl methods.
22  * \sa mrpt::opengl::CWxGLCanvasBase::renderTextBitmap
23  * \ingroup mrpt_opengl_grp
24  */
26 {
33 };
34 
35 /** Different style for vectorized font rendering \sa T2DTextData */
37 {
38  FILL = 0, ///< renders glyphs as filled polygons
39  OUTLINE = 1, ///< renders glyphs as outlines with GL_LINES
40  NICE = 2 ///< renders glyphs filled with antialiased outlines
41 };
42 
43 /** A description of a bitmapped or vectorized text font.
44  * (Vectorized fonts are recommended for new code).
45  *
46  * \sa mrpt::opengl::gl_utils::glSetFont(),
47  * mrpt::opengl::gl_utils::glDrawText()
48  */
50 {
52  : draw_shadow(false),
54  vfont_name("sans"),
55  vfont_scale(10),
56  vfont_style(),
57  vfont_spacing(1.5),
58  vfont_kerning(0.1)
59  {
60  }
61 
63 
66 
67  /** @name Bitmapped font params
68  @{ */
70  /** @} */
71 
72  /** @name Vectorized font params - Applicable only if
73  font==MRPT_GLUT_BITMAP_NONE
74  @{ */
75  /** Vectorized font name ("sans","mono","serif") */
77  /** Size of characters */
78  double vfont_scale;
79  /** (default: NICE) See TOpenGLFontStyle. */
81  /** (default: 1.5) Refer to mrpt::opengl::gl_utils::glDrawText */
82  double vfont_spacing;
83  /** (default: 0.1) Refer to mrpt::opengl::gl_utils::glDrawText */
84  double vfont_kerning;
85  /** @} */
86 };
87 
88 /** An auxiliary struct for holding a list of text messages in some mrpt::opengl
89  * & mrpt::gui classes
90  * The font can be either a bitmapped or a vectorized font.
91  * \sa mrpt::opengl::CTextMessageCapable
92  * \ingroup mrpt_opengl_grp
93  */
94 struct T2DTextData : public TFontParams
95 {
96  T2DTextData() : x(0), y(0) {}
98  double x, y;
99 };
100 }
101 }
102 
103 #endif
mrpt::opengl::TOpenGLFont font
Definition: opengl_fonts.h:69
mrpt::utils::TColorf shadow_color
Definition: opengl_fonts.h:65
A description of a bitmapped or vectorized text font.
Definition: opengl_fonts.h:49
renders glyphs as outlines with GL_LINES
Definition: opengl_fonts.h:39
std::string vfont_name
Vectorized font name ("sans","mono","serif")
Definition: opengl_fonts.h:76
TOpenGLFont
Existing fonts for 2D texts in mrpt::opengl methods.
Definition: opengl_fonts.h:25
TOpenGLFontStyle
Different style for vectorized font rendering.
Definition: opengl_fonts.h:36
double vfont_kerning
(default: 0.1) Refer to mrpt::opengl::gl_utils::glDrawText
Definition: opengl_fonts.h:84
An auxiliary struct for holding a list of text messages in some mrpt::opengl & mrpt::gui classes The ...
Definition: opengl_fonts.h:94
GLsizei const GLchar ** string
Definition: glext.h:4101
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
mrpt::utils::TColorf color
Definition: opengl_fonts.h:62
double vfont_spacing
(default: 1.5) Refer to mrpt::opengl::gl_utils::glDrawText
Definition: opengl_fonts.h:82
renders glyphs filled with antialiased outlines
Definition: opengl_fonts.h:40
A RGB color - floats in the range [0,1].
Definition: TColor.h:78
GLenum GLint GLint y
Definition: glext.h:3538
GLenum GLint x
Definition: glext.h:3538
renders glyphs as filled polygons
Definition: opengl_fonts.h:38
double vfont_scale
Size of characters.
Definition: opengl_fonts.h:78
TOpenGLFontStyle vfont_style
(default: NICE) See TOpenGLFontStyle.
Definition: opengl_fonts.h:80



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019