KiCad PCB EDA Suite
Loading...
Searching...
No Matches
font_metrics.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KICAD, a free EDA CAD application.
3 *
4 * Copyright (C) 2021 Ola Rinta-Koski
5 * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef FONT_METRICS_H_
26#define FONT_METRICS_H_
27
28#include <gal/gal.h>
29
30namespace KIFONT
31{
32
34{
35public:
40 double GetOverbarVerticalPosition( double aGlyphHeight ) const
41 {
42 return aGlyphHeight * m_OverbarHeight;
43 }
44
49 double GetUnderlineVerticalPosition( double aGlyphHeight ) const
50 {
51 return aGlyphHeight * m_UnderlineOffset;
52 }
53
54 double GetInterline( double aFontHeight ) const
55 {
56 return aFontHeight * m_InterlinePitch;
57 }
58
59 static const METRICS& Default();
60
61public:
62 double m_InterlinePitch = 1.68;
63 double m_OverbarHeight = 1.23;
64 double m_UnderlineOffset = -0.16;
65};
66
67} // namespace KIFONT
68
69#endif // FONT_METRICS_H_
double GetUnderlineVerticalPosition(double aGlyphHeight) const
Compute the vertical position of an underline.
double m_OverbarHeight
double m_UnderlineOffset
double m_InterlinePitch
double GetOverbarVerticalPosition(double aGlyphHeight) const
Compute the vertical position of an overbar.
double GetInterline(double aFontHeight) const
#define GAL_API
Definition gal.h:28