aboutsummaryrefslogtreecommitdiffstats
path: root/dm/DMFontMgr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dm/DMFontMgr.cpp')
-rw-r--r--dm/DMFontMgr.cpp43
1 files changed, 27 insertions, 16 deletions
diff --git a/dm/DMFontMgr.cpp b/dm/DMFontMgr.cpp
index 51ee6122d0..d275c412c7 100644
--- a/dm/DMFontMgr.cpp
+++ b/dm/DMFontMgr.cpp
@@ -17,10 +17,18 @@ namespace DM {
"Toy Liberation Mono",
};
- FontStyleSet::FontStyleSet(int familyIndex) : fFamilyName(kFamilyNames[familyIndex]) {}
+ FontStyleSet::FontStyleSet(int familyIndex) {
+ using sk_tool_utils::create_portable_typeface;
+ const char* familyName = kFamilyNames[familyIndex];
+
+ fTypefaces[0] = create_portable_typeface(familyName, SkFontStyle::Normal());
+ fTypefaces[1] = create_portable_typeface(familyName, SkFontStyle::Bold());
+ fTypefaces[2] = create_portable_typeface(familyName, SkFontStyle::Italic());
+ fTypefaces[3] = create_portable_typeface(familyName, SkFontStyle::BoldItalic());
+ }
- // Each font family has 4 styles: Normal, Bold, Italic, BoldItalic.
int FontStyleSet::count() { return 4; }
+
void FontStyleSet::getStyle(int index, SkFontStyle* style, SkString* name) {
switch (index) {
default:
@@ -39,27 +47,30 @@ namespace DM {
}
}
- SkTypeface* FontStyleSet::matchStyle(const SkFontStyle& style) {
- return this->matchStyleCSS3(style);
- }
-
SkTypeface* FontStyleSet::createTypeface(int index) {
- SkFontStyle style;
- this->getStyle(index, &style, nullptr);
+ return SkRef(fTypefaces[index].get());
+ }
- return sk_tool_utils::create_portable_typeface(fFamilyName, style).release();
+ SkTypeface* FontStyleSet::matchStyle(const SkFontStyle& pattern) {
+ return this->matchStyleCSS3(pattern);
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ //
- int FontMgr::onCountFamilies() const { return SK_ARRAY_COUNT(kFamilyNames); }
+ FontMgr::FontMgr() {
+ fFamilies[0] = sk_make_sp<FontStyleSet>(0);
+ fFamilies[1] = sk_make_sp<FontStyleSet>(1);
+ fFamilies[2] = sk_make_sp<FontStyleSet>(2);
+ }
+
+ int FontMgr::onCountFamilies() const { return SK_ARRAY_COUNT(fFamilies); }
void FontMgr::onGetFamilyName(int index, SkString* familyName) const {
*familyName = kFamilyNames[index];
}
SkFontStyleSet* FontMgr::onCreateStyleSet(int index) const {
- return new FontStyleSet(index);
+ return SkRef(fFamilies[index].get());
}
SkFontStyleSet* FontMgr::onMatchFamily(const char familyName[]) const {
@@ -96,25 +107,25 @@ namespace DM {
}
sk_sp<SkTypeface> FontMgr::onMakeFromData(sk_sp<SkData>, int ttcIndex) const {
- return sk_sp<SkTypeface>(this->matchFamilyStyle("Sans", SkFontStyle::Normal()));
+ return nullptr;
}
sk_sp<SkTypeface> FontMgr::onMakeFromStreamIndex(std::unique_ptr<SkStreamAsset>,
int ttcIndex) const {
- return sk_sp<SkTypeface>(this->matchFamilyStyle("Sans", SkFontStyle::Normal()));
+ return nullptr;
}
sk_sp<SkTypeface> FontMgr::onMakeFromStreamArgs(std::unique_ptr<SkStreamAsset>,
const SkFontArguments&) const {
- return sk_sp<SkTypeface>(this->matchFamilyStyle("Sans", SkFontStyle::Normal()));
+ return nullptr;
}
sk_sp<SkTypeface> FontMgr::onMakeFromFontData(std::unique_ptr<SkFontData>) const {
- return sk_sp<SkTypeface>(this->matchFamilyStyle("Sans", SkFontStyle::Normal()));
+ return nullptr;
}
sk_sp<SkTypeface> FontMgr::onMakeFromFile(const char path[], int ttcIndex) const {
- return sk_sp<SkTypeface>(this->matchFamilyStyle("Sans", SkFontStyle::Normal()));
+ return nullptr;
}
sk_sp<SkTypeface> FontMgr::onLegacyMakeTypeface(const char familyName[],