d7a4bea20a
This reverts commit 5cd242b4fc
.
Reason for revert: breaking google3
Original change's description:
> rm legacy flags for hinting enum
>
> Bug: skia:
> Change-Id: I56ad33fa30aa8cec8a60cd70d4e4767defb923ca
> Reviewed-on: https://skia-review.googlesource.com/c/170105
> Reviewed-by: Mike Reed <reed@google.com>
> Commit-Queue: Mike Reed <reed@google.com>
TBR=reed@google.com
Change-Id: Iffa9b20d77455b4554aae132268af8a0cf252496
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: skia:
Reviewed-on: https://skia-review.googlesource.com/c/170270
Reviewed-by: Mike Reed <reed@google.com>
Commit-Queue: Mike Reed <reed@google.com>
155 lines
5.4 KiB
C++
155 lines
5.4 KiB
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkFont_DEFINED
|
|
#define SkFont_DEFINED
|
|
|
|
#include "SkFontTypes.h"
|
|
#include "SkScalar.h"
|
|
#include "SkTypeface.h"
|
|
|
|
class SkPaint;
|
|
|
|
class SK_API SkFont {
|
|
public:
|
|
enum Flags {
|
|
/**
|
|
* Use the system's automatic hinting mechanism to hint the typeface.
|
|
*/
|
|
kForceAutoHinting_Flag = 1 << 0,
|
|
|
|
/**
|
|
* If the typeface contains explicit bitmaps for hinting, use them.
|
|
* If both bytecode and auto hints are also specified, attempt to use the bitmaps first;
|
|
* if that fails (e.g. there are no bitmaps), then attempt to bytecode or autohint.
|
|
*/
|
|
kEmbeddedBitmaps_Flag = 1 << 1,
|
|
|
|
kSubpixel_Flag = 1 << 2,
|
|
kLinearMetrics_Flag = 1 << 3,
|
|
kEmbolden_Flag = 1 << 4,
|
|
|
|
kDEPRECATED_Antialias_Flag = 1 << 5,
|
|
kDEPRECATED_LCDRender_Flag = 1 << 6,
|
|
};
|
|
|
|
enum Hinting : uint8_t {
|
|
kNo_Hinting = 0, //!< glyph outlines unchanged
|
|
kSlight_Hinting = 1, //!< minimal modification to improve constrast
|
|
kNormal_Hinting = 2, //!< glyph outlines modified to improve constrast
|
|
kFull_Hinting = 3, //!< modifies glyph outlines for maximum constrast
|
|
};
|
|
|
|
SkFont();
|
|
SkFont(sk_sp<SkTypeface>, SkScalar size, uint32_t flags);
|
|
SkFont(sk_sp<SkTypeface>, SkScalar size, SkScalar scaleX, SkScalar skewX, uint32_t flags);
|
|
|
|
bool isForceAutoHinting() const { return SkToBool(fFlags & kForceAutoHinting_Flag); }
|
|
bool isEmbeddedBitmaps() const { return SkToBool(fFlags & kEmbeddedBitmaps_Flag); }
|
|
bool isSubpixel() const { return SkToBool(fFlags & kSubpixel_Flag); }
|
|
bool isLinearMetrics() const { return SkToBool(fFlags & kLinearMetrics_Flag); }
|
|
bool isEmbolden() const { return SkToBool(fFlags & kEmbolden_Flag); }
|
|
|
|
bool DEPRECATED_isAntiAlias() const { return SkToBool(fFlags & kDEPRECATED_Antialias_Flag); }
|
|
bool DEPRECATED_isLCDRender() const { return SkToBool(fFlags & kDEPRECATED_LCDRender_Flag); }
|
|
|
|
void setForceAutoHinting(bool);
|
|
void setEmbeddedBitmaps(bool);
|
|
void setSubpixel(bool);
|
|
void setLinearMetrics(bool);
|
|
void setEmbolden(bool);
|
|
|
|
void DEPRECATED_setAntiAlias(bool);
|
|
void DEPRECATED_setLCDRender(bool);
|
|
|
|
void setHinting(SkFontHinting);
|
|
|
|
#ifdef SK_SUPPORT_LEGACY_NESTED_HINTINGENUM
|
|
Hinting getHinting() const { return (Hinting)fHinting; }
|
|
void setHinting(Hinting hinting) {
|
|
this->setHinting((SkFontHinting)hinting);
|
|
}
|
|
#else
|
|
SkFontHinting getHinting() const { return (SkFontHinting)fHinting; }
|
|
#endif
|
|
|
|
/**
|
|
* Return a font with the same attributes of this font, but with the specified size.
|
|
* If size is not supported (e.g. <= 0 or non-finite) NULL will be returned.
|
|
*/
|
|
SkFont makeWithSize(SkScalar size) const;
|
|
|
|
/**
|
|
* Return a font with the same attributes of this font, but with the flags.
|
|
*/
|
|
SkFont makeWithFlags(uint32_t newFlags) const;
|
|
|
|
SkTypeface* getTypeface() const { return fTypeface.get(); }
|
|
SkScalar getSize() const { return fSize; }
|
|
SkScalar getScaleX() const { return fScaleX; }
|
|
SkScalar getSkewX() const { return fSkewX; }
|
|
uint32_t getFlags() const { return fFlags; }
|
|
|
|
sk_sp<SkTypeface> refTypeface() const { return fTypeface; }
|
|
|
|
void setTypeface(sk_sp<SkTypeface> tf) { fTypeface = tf; }
|
|
void setSize(SkScalar);
|
|
void setScaleX(SkScalar);
|
|
void setSkewX(SkScalar);
|
|
void setFlags(uint32_t);
|
|
|
|
/** Converts text into glyph indices.
|
|
Returns the number of glyph indices represented by text.
|
|
SkTextEncoding specifies how text represents characters or glyphs.
|
|
glyphs may be nullptr, to compute the glyph count.
|
|
|
|
Does not check text for valid character codes or valid glyph indices.
|
|
|
|
If byteLength equals zero, returns zero.
|
|
If byteLength includes a partial character, the partial character is ignored.
|
|
|
|
If SkTextEncoding is kUTF8_TextEncoding and text contains an invalid UTF-8 sequence,
|
|
zero is returned.
|
|
|
|
If maxGlyphCount is not sufficient to store all the glyphs, no glyphs are copied
|
|
(but the total glyph count is returned for subsequent buffer reallocation).
|
|
|
|
@param text character storage encoded with SkPaint::TextEncoding
|
|
@param byteLength length of character storage in bytes
|
|
@param glyphs storage for glyph indices; may be nullptr
|
|
@param maxGlyphCount storage capacity
|
|
@return number of glyphs represented by text of length byteLength
|
|
*/
|
|
int textToGlyphs(const void* text, size_t byteLength, SkTextEncoding,
|
|
SkGlyphID glyphs[], int maxGlyphCount) const;
|
|
|
|
uint16_t unicharToGlyph(SkUnichar uni) const {
|
|
return fTypeface->unicharToGlyph(uni);
|
|
}
|
|
|
|
int countText(const void* text, size_t byteLength, SkTextEncoding encoding) {
|
|
return this->textToGlyphs(text, byteLength, encoding, nullptr, 0);
|
|
}
|
|
|
|
SkScalar measureText(const void* text, size_t byteLength, SkTextEncoding) const;
|
|
|
|
void LEGACY_applyToPaint(SkPaint*) const;
|
|
static SkFont LEGACY_ExtractFromPaint(const SkPaint&);
|
|
|
|
private:
|
|
static constexpr unsigned kAllFlags = 0x07F;
|
|
|
|
sk_sp<SkTypeface> fTypeface;
|
|
SkScalar fSize;
|
|
SkScalar fScaleX;
|
|
SkScalar fSkewX;
|
|
uint8_t fFlags;
|
|
uint8_t fHinting;
|
|
};
|
|
|
|
#endif
|