2018-11-06 17:44:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkFontMetrics_DEFINED
|
|
|
|
#define SkFontMetrics_DEFINED
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkScalar.h"
|
2018-11-06 17:44:54 +00:00
|
|
|
|
2019-08-15 16:05:37 +00:00
|
|
|
/** \class SkFontMetrics
|
|
|
|
The metrics of an SkFont.
|
|
|
|
The metric values are consistent with the Skia y-down coordinate system.
|
|
|
|
*/
|
2018-11-06 17:44:54 +00:00
|
|
|
struct SK_API SkFontMetrics {
|
|
|
|
|
2018-11-12 14:35:15 +00:00
|
|
|
/** \enum FontMetricsFlags
|
2019-08-15 16:05:37 +00:00
|
|
|
FontMetricsFlags indicate when certain metrics are valid;
|
|
|
|
the underline or strikeout metrics may be valid and zero.
|
2018-11-06 17:44:54 +00:00
|
|
|
Fonts with embedded bitmaps may not have valid underline or strikeout metrics.
|
|
|
|
*/
|
|
|
|
enum FontMetricsFlags {
|
|
|
|
kUnderlineThicknessIsValid_Flag = 1 << 0, //!< set if fUnderlineThickness is valid
|
|
|
|
kUnderlinePositionIsValid_Flag = 1 << 1, //!< set if fUnderlinePosition is valid
|
|
|
|
kStrikeoutThicknessIsValid_Flag = 1 << 2, //!< set if fStrikeoutThickness is valid
|
|
|
|
kStrikeoutPositionIsValid_Flag = 1 << 3, //!< set if fStrikeoutPosition is valid
|
|
|
|
};
|
|
|
|
|
2019-08-15 16:05:37 +00:00
|
|
|
uint32_t fFlags; //!< FontMetricsFlags indicating which metrics are valid
|
|
|
|
SkScalar fTop; //!< greatest extent above origin of any glyph bounding box, typically negative; deprecated with variable fonts
|
|
|
|
SkScalar fAscent; //!< distance to reserve above baseline, typically negative
|
|
|
|
SkScalar fDescent; //!< distance to reserve below baseline, typically positive
|
|
|
|
SkScalar fBottom; //!< greatest extent below origin of any glyph bounding box, typically positive; deprecated with variable fonts
|
|
|
|
SkScalar fLeading; //!< distance to add between lines, typically positive or zero
|
|
|
|
SkScalar fAvgCharWidth; //!< average character width, zero if unknown
|
|
|
|
SkScalar fMaxCharWidth; //!< maximum character width, zero if unknown
|
|
|
|
SkScalar fXMin; //!< greatest extent to left of origin of any glyph bounding box, typically negative; deprecated with variable fonts
|
|
|
|
SkScalar fXMax; //!< greatest extent to right of origin of any glyph bounding box, typically positive; deprecated with variable fonts
|
|
|
|
SkScalar fXHeight; //!< height of lower-case 'x', zero if unknown, typically negative
|
|
|
|
SkScalar fCapHeight; //!< height of an upper-case letter, zero if unknown, typically negative
|
2018-11-06 17:44:54 +00:00
|
|
|
SkScalar fUnderlineThickness; //!< underline thickness
|
2019-08-15 16:05:37 +00:00
|
|
|
SkScalar fUnderlinePosition; //!< distance from baseline to top of stroke, typically positive
|
2018-11-06 17:44:54 +00:00
|
|
|
SkScalar fStrikeoutThickness; //!< strikeout thickness
|
2019-08-15 16:05:37 +00:00
|
|
|
SkScalar fStrikeoutPosition; //!< distance from baseline to bottom of stroke, typically negative
|
2018-11-06 17:44:54 +00:00
|
|
|
|
2018-11-12 14:35:15 +00:00
|
|
|
/** Returns true if SkFontMetrics has a valid underline thickness, and sets
|
2018-11-06 17:44:54 +00:00
|
|
|
thickness to that value. If the underline thickness is not valid,
|
|
|
|
return false, and ignore thickness.
|
|
|
|
|
|
|
|
@param thickness storage for underline width
|
|
|
|
@return true if font specifies underline width
|
|
|
|
*/
|
|
|
|
bool hasUnderlineThickness(SkScalar* thickness) const {
|
|
|
|
if (SkToBool(fFlags & kUnderlineThicknessIsValid_Flag)) {
|
|
|
|
*thickness = fUnderlineThickness;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-12 14:35:15 +00:00
|
|
|
/** Returns true if SkFontMetrics has a valid underline position, and sets
|
2018-11-06 17:44:54 +00:00
|
|
|
position to that value. If the underline position is not valid,
|
|
|
|
return false, and ignore position.
|
|
|
|
|
|
|
|
@param position storage for underline position
|
|
|
|
@return true if font specifies underline position
|
|
|
|
*/
|
|
|
|
bool hasUnderlinePosition(SkScalar* position) const {
|
|
|
|
if (SkToBool(fFlags & kUnderlinePositionIsValid_Flag)) {
|
|
|
|
*position = fUnderlinePosition;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-12 14:35:15 +00:00
|
|
|
/** Returns true if SkFontMetrics has a valid strikeout thickness, and sets
|
2018-11-06 17:44:54 +00:00
|
|
|
thickness to that value. If the underline thickness is not valid,
|
|
|
|
return false, and ignore thickness.
|
|
|
|
|
|
|
|
@param thickness storage for strikeout width
|
|
|
|
@return true if font specifies strikeout width
|
|
|
|
*/
|
|
|
|
bool hasStrikeoutThickness(SkScalar* thickness) const {
|
|
|
|
if (SkToBool(fFlags & kStrikeoutThicknessIsValid_Flag)) {
|
|
|
|
*thickness = fStrikeoutThickness;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-11-12 14:35:15 +00:00
|
|
|
/** Returns true if SkFontMetrics has a valid strikeout position, and sets
|
2018-11-06 17:44:54 +00:00
|
|
|
position to that value. If the underline position is not valid,
|
|
|
|
return false, and ignore position.
|
|
|
|
|
|
|
|
@param position storage for strikeout position
|
|
|
|
@return true if font specifies strikeout position
|
|
|
|
*/
|
|
|
|
bool hasStrikeoutPosition(SkScalar* position) const {
|
|
|
|
if (SkToBool(fFlags & kStrikeoutPositionIsValid_Flag)) {
|
|
|
|
*position = fStrikeoutPosition;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|