1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
|
/*
* Copyright (C) Research In Motion Limited 2010-2011. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef FontMetrics_h
#define FontMetrics_h
#include "FontBaseline.h"
#include <wtf/Markable.h>
#include <wtf/MathExtras.h>
namespace WebCore {
class FontMetrics {
public:
static constexpr unsigned defaultUnitsPerEm = 1000;
struct MarkableTraits {
constexpr static bool isEmptyValue(float value)
{
return value != value;
}
constexpr static float emptyValue()
{
return std::numeric_limits<float>::quiet_NaN();
}
};
unsigned unitsPerEm() const { return m_unitsPerEm; }
void setUnitsPerEm(unsigned unitsPerEm) { m_unitsPerEm = unitsPerEm; }
float height(FontBaseline baselineType = AlphabeticBaseline) const
{
return ascent(baselineType) + descent(baselineType);
}
int intHeight(FontBaseline baselineType = AlphabeticBaseline) const
{
return intAscent(baselineType) + intDescent(baselineType);
}
float ascent(FontBaseline baselineType = AlphabeticBaseline) const
{
if (baselineType == AlphabeticBaseline)
return m_ascent.value_or(0.f);
return height() / 2;
}
int intAscent(FontBaseline baselineType = AlphabeticBaseline) const
{
if (baselineType == AlphabeticBaseline)
return m_intAscent;
return intHeight() - intHeight() / 2;
}
void setAscent(float ascent)
{
m_ascent = ascent;
m_intAscent = std::max(static_cast<int>(lroundf(ascent)), 0);
}
float descent(FontBaseline baselineType = AlphabeticBaseline) const
{
if (baselineType == AlphabeticBaseline)
return m_descent.value_or(0.f);
return height() / 2;
}
int intDescent(FontBaseline baselineType = AlphabeticBaseline) const
{
if (baselineType == AlphabeticBaseline)
return m_intDescent;
return intHeight() / 2;
}
void setDescent(float descent)
{
m_descent = descent;
m_intDescent = lroundf(descent);
}
float lineGap() const { return m_lineGap.value_or(0.f); }
int intLineGap() const { return m_intLineGap; }
void setLineGap(float lineGap)
{
m_lineGap = lineGap;
m_intLineGap = lroundf(lineGap);
}
float lineSpacing() const { return m_lineSpacing.value_or(0.f); }
int intLineSpacing() const { return m_intLineSpacing; }
void setLineSpacing(float lineSpacing)
{
m_lineSpacing = lineSpacing;
m_intLineSpacing = lroundf(lineSpacing);
}
Markable<float, FontMetrics::MarkableTraits> xHeight() const { return m_xHeight; }
void setXHeight(float xHeight) { m_xHeight = xHeight; }
Markable<float, FontMetrics::MarkableTraits> capHeight() const { return m_capHeight; }
int intCapHeight() const { return m_intCapHeight; }
void setCapHeight(float capHeight)
{
m_capHeight = capHeight;
m_intCapHeight = lroundf(capHeight);
}
Markable<float, FontMetrics::MarkableTraits> zeroWidth() const { return m_zeroWidth; }
void setZeroWidth(float zeroWidth) { m_zeroWidth = zeroWidth; }
Markable<float, FontMetrics::MarkableTraits> ideogramWidth() const { return m_ideogramWidth; }
void setIdeogramWidth(float ideogramWidth) { m_ideogramWidth = ideogramWidth; }
Markable<float, FontMetrics::MarkableTraits> underlinePosition() const { return m_underlinePosition; }
void setUnderlinePosition(float underlinePosition) { m_underlinePosition = underlinePosition; }
Markable<float, FontMetrics::MarkableTraits> underlineThickness() const { return m_underlineThickness; }
void setUnderlineThickness(float underlineThickness) { m_underlineThickness = underlineThickness; }
bool hasIdenticalAscentDescentAndLineGap(const FontMetrics& other) const
{
return intAscent() == other.intAscent()
&& intDescent() == other.intDescent()
&& intLineGap() == other.intLineGap();
}
private:
friend class Font;
void reset()
{
m_unitsPerEm = defaultUnitsPerEm;
m_ascent = { };
m_capHeight = { };
m_descent = { };
m_ideogramWidth = { };
m_lineGap = { };
m_lineSpacing = { };
m_underlinePosition = { };
m_underlineThickness = { };
m_xHeight = { };
m_zeroWidth = { };
m_intAscent = 0;
m_intDescent = 0;
m_intLineGap = 0;
m_intLineSpacing = 0;
m_intCapHeight = 0;
}
unsigned m_unitsPerEm { defaultUnitsPerEm };
Markable<float, FontMetrics::MarkableTraits> m_ascent;
Markable<float, FontMetrics::MarkableTraits> m_capHeight;
Markable<float, FontMetrics::MarkableTraits> m_descent;
Markable<float, FontMetrics::MarkableTraits> m_ideogramWidth;
Markable<float, FontMetrics::MarkableTraits> m_lineGap;
Markable<float, FontMetrics::MarkableTraits> m_lineSpacing;
Markable<float, FontMetrics::MarkableTraits> m_underlinePosition;
Markable<float, FontMetrics::MarkableTraits> m_underlineThickness;
Markable<float, FontMetrics::MarkableTraits> m_xHeight;
Markable<float, FontMetrics::MarkableTraits> m_zeroWidth;
// Integer variants of certain metrics are cached for HTML rendering performance.
int m_intAscent { 0 };
int m_intDescent { 0 };
int m_intLineGap { 0 };
int m_intLineSpacing { 0 };
int m_intCapHeight { 0 };
};
static inline float scaleEmToUnits(float x, unsigned unitsPerEm)
{
return unitsPerEm ? x / unitsPerEm : x;
}
} // namespace WebCore
#endif // FontMetrics_h
|