blob: 9445f7920ed7072516dd644ed4203efaa48a5547 [file] [log] [blame]
// Copyright 2019 Google LLC.
#include "include/core/SkColor.h"
#include "include/core/SkFontStyle.h"
#include "modules/skparagraph/include/TextStyle.h"
namespace skia {
namespace textlayout {
TextStyle::TextStyle() : fFontStyle() {
fFontFamilies.reserve(1);
fFontFamilies.emplace_back(DEFAULT_FONT_FAMILY);
fColor = SK_ColorWHITE;
fDecoration.fType = TextDecoration::kNoDecoration;
// Does not make sense to draw a transparent object, so we use it as a default
// value to indicate no decoration color was set.
fDecoration.fColor = SK_ColorTRANSPARENT;
fDecoration.fStyle = TextDecorationStyle::kSolid;
// TODO: switch back to kGaps when (if) switching flutter to skparagraph
fDecoration.fMode = TextDecorationMode::kThrough;
// Thickness is applied as a multiplier to the default thickness of the font.
fDecoration.fThicknessMultiplier = 1.0;
fFontSize = 14.0;
fLetterSpacing = 0.0;
fWordSpacing = 0.0;
fHeight = 1.0;
fHeightOverride = false;
fHasBackground = false;
fHasForeground = false;
fTextBaseline = TextBaseline::kAlphabetic;
fLocale = "";
fIsPlaceholder = false;
}
TextStyle:: TextStyle(const TextStyle& other, bool placeholder) {
fColor = other.fColor;
fFontSize = other.fFontSize;
fFontFamilies = other.fFontFamilies;
fDecoration = other.fDecoration;
fHasBackground = other.fHasBackground;
fHasForeground = other.fHasForeground;
fBackground = other.fBackground;
fForeground = other.fForeground;
fHeightOverride = other.fHeightOverride;
fIsPlaceholder = placeholder;
fFontFeatures = other.fFontFeatures;
}
bool TextStyle::equals(const TextStyle& other) const {
if (fIsPlaceholder || other.fIsPlaceholder) {
return false;
}
if (fColor != other.fColor) {
return false;
}
if (!(fDecoration == other.fDecoration)) {
return false;
}
if (!(fFontStyle == other.fFontStyle)) {
return false;
}
if (fFontFamilies != other.fFontFamilies) {
return false;
}
if (fLetterSpacing != other.fLetterSpacing) {
return false;
}
if (fWordSpacing != other.fWordSpacing) {
return false;
}
if (fHeight != other.fHeight) {
return false;
}
if (fFontSize != other.fFontSize) {
return false;
}
if (fLocale != other.fLocale) {
return false;
}
if (fHasForeground != other.fHasForeground || fForeground != other.fForeground) {
return false;
}
if (fHasBackground != other.fHasBackground || fBackground != other.fBackground) {
return false;
}
if (fTextShadows.size() != other.fTextShadows.size()) {
return false;
}
for (size_t i = 0; i < fTextShadows.size(); ++i) {
if (fTextShadows[i] != other.fTextShadows[i]) {
return false;
}
}
if (fFontFeatures.size() != other.fFontFeatures.size()) {
return false;
}
for (size_t i = 0; i < fFontFeatures.size(); ++i) {
if (!(fFontFeatures[i] == other.fFontFeatures[i])) {
return false;
}
}
return true;
}
bool TextStyle::equalsByFonts(const TextStyle& that) const {
return !fIsPlaceholder && !that.fIsPlaceholder &&
fFontStyle == that.fFontStyle &&
fFontFamilies == that.fFontFamilies &&
fFontFeatures == that.fFontFeatures &&
nearlyEqual(fLetterSpacing, that.fLetterSpacing) &&
nearlyEqual(fWordSpacing, that.fWordSpacing) &&
nearlyEqual(fHeight, that.fHeight) &&
nearlyEqual(fFontSize, that.fFontSize) &&
fLocale == that.fLocale;
}
bool TextStyle::matchOneAttribute(StyleType styleType, const TextStyle& other) const {
switch (styleType) {
case kForeground:
if (fHasForeground) {
return other.fHasForeground && fForeground == other.fForeground;
} else {
return !other.fHasForeground && fColor == other.fColor;
}
case kBackground:
return (fHasBackground == other.fHasBackground && fBackground == other.fBackground);
case kShadow:
if (fTextShadows.size() != other.fTextShadows.size()) {
return false;
}
for (int32_t i = 0; i < SkToInt(fTextShadows.size()); ++i) {
if (fTextShadows[i] != other.fTextShadows[i]) {
return false;
}
}
return true;
case kDecorations:
return this->fDecoration == other.fDecoration;
case kLetterSpacing:
return fLetterSpacing == other.fLetterSpacing;
case kWordSpacing:
return fWordSpacing == other.fWordSpacing;
case kAllAttributes:
return this->equals(other);
case kFont:
// TODO: should not we take typefaces in account?
return fFontStyle == other.fFontStyle &&
fLocale == other.fLocale &&
fFontFamilies == other.fFontFamilies &&
fFontSize == other.fFontSize &&
fHeight == other.fHeight;
default:
SkASSERT(false);
return false;
}
}
void TextStyle::getFontMetrics(SkFontMetrics* metrics) const {
SkFont font(fTypeface, fFontSize);
font.setEdging(SkFont::Edging::kAntiAlias);
font.setSubpixel(true);
font.setHinting(SkFontHinting::kSlight);
font.getMetrics(metrics);
if (fHeightOverride) {
auto multiplier = fHeight * fFontSize;
auto height = metrics->fDescent - metrics->fAscent + metrics->fLeading;
metrics->fAscent = (metrics->fAscent - metrics->fLeading / 2) * multiplier / height;
metrics->fDescent = (metrics->fDescent + metrics->fLeading / 2) * multiplier / height;
} else {
metrics->fAscent = (metrics->fAscent - metrics->fLeading / 2);
metrics->fDescent = (metrics->fDescent + metrics->fLeading / 2);
}
}
bool PlaceholderStyle::equals(const PlaceholderStyle& other) const {
return nearlyEqual(fWidth, other.fWidth) &&
nearlyEqual(fHeight, other.fHeight) &&
fAlignment == other.fAlignment &&
fBaseline == other.fBaseline &&
(fAlignment != PlaceholderAlignment::kBaseline ||
nearlyEqual(fBaselineOffset, other.fBaselineOffset));
}
} // namespace textlayout
} // namespace skia