blob: 4dde920085cb7da8dba2e860dba7d45550aab230 [file] [log] [blame]
reed@google.comc452d822013-03-25 18:44:17 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkFontMgr_DEFINED
9#define SkFontMgr_DEFINED
10
11#include "SkRefCnt.h"
12#include "SkFontStyle.h"
13
14class SkData;
bungeman5f213d92015-01-27 05:39:10 -080015class SkStreamAsset;
reed@google.comc452d822013-03-25 18:44:17 +000016class SkString;
reed@google.com0b983262013-04-11 18:27:26 +000017class SkTypeface;
reed@google.comc452d822013-03-25 18:44:17 +000018
reed@google.comaae71ba2013-04-10 13:10:40 +000019class SK_API SkFontStyleSet : public SkRefCnt {
reed@google.comc452d822013-03-25 18:44:17 +000020public:
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +000021 SK_DECLARE_INST_COUNT(SkFontStyleSet)
22
reed@google.com83787c52013-03-26 17:19:15 +000023 virtual int count() = 0;
24 virtual void getStyle(int index, SkFontStyle*, SkString* style) = 0;
25 virtual SkTypeface* createTypeface(int index) = 0;
reed@google.com964988f2013-03-29 14:57:22 +000026 virtual SkTypeface* matchStyle(const SkFontStyle& pattern) = 0;
27
28 static SkFontStyleSet* CreateEmpty();
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +000029
30private:
31 typedef SkRefCnt INHERITED;
reed@google.comc452d822013-03-25 18:44:17 +000032};
33
reed@google.com30ddd612013-07-30 17:47:39 +000034class SkTypeface;
35
reed@google.comaae71ba2013-04-10 13:10:40 +000036class SK_API SkFontMgr : public SkRefCnt {
reed@google.comc452d822013-03-25 18:44:17 +000037public:
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +000038 SK_DECLARE_INST_COUNT(SkFontMgr)
39
commit-bot@chromium.org967dee32014-02-04 22:35:01 +000040 int countFamilies() const;
41 void getFamilyName(int index, SkString* familyName) const;
42 SkFontStyleSet* createStyleSet(int index) const;
reed@google.comc452d822013-03-25 18:44:17 +000043
bungeman@google.com9fc5c682013-11-12 15:25:29 +000044 /**
45 * The caller must call unref() on the returned object.
46 * Never returns NULL; will return an empty set if the name is not found.
bungeman@google.com72cf4fc2014-03-21 22:48:32 +000047 *
48 * It is possible that this will return a style set not accessible from
49 * createStyleSet(int) due to hidden or auto-activated fonts.
bungeman@google.com9fc5c682013-11-12 15:25:29 +000050 */
commit-bot@chromium.org967dee32014-02-04 22:35:01 +000051 SkFontStyleSet* matchFamily(const char familyName[]) const;
reed@google.com964988f2013-03-29 14:57:22 +000052
reed@google.comc452d822013-03-25 18:44:17 +000053 /**
54 * Find the closest matching typeface to the specified familyName and style
55 * and return a ref to it. The caller must call unref() on the returned
56 * object. Will never return NULL, as it will return the default font if
57 * no matching font is found.
bungeman@google.com72cf4fc2014-03-21 22:48:32 +000058 *
59 * It is possible that this will return a style set not accessible from
60 * createStyleSet(int) or matchFamily(const char[]) due to hidden or
61 * auto-activated fonts.
reed@google.comc452d822013-03-25 18:44:17 +000062 */
commit-bot@chromium.org967dee32014-02-04 22:35:01 +000063 SkTypeface* matchFamilyStyle(const char familyName[], const SkFontStyle&) const;
reed@google.comc452d822013-03-25 18:44:17 +000064
bungeman@google.com72cf4fc2014-03-21 22:48:32 +000065 /**
66 * Use the system fallback to find a typeface for the given character.
bungemanc20386e2014-10-23 07:08:05 -070067 * Note that bcp47 is a combination of ISO 639, 15924, and 3166-1 codes,
bungeman@google.com72cf4fc2014-03-21 22:48:32 +000068 * so it is fine to just pass a ISO 639 here.
69 *
70 * Will return NULL if no family can be found for the character
71 * in the system fallback.
bungemanc20386e2014-10-23 07:08:05 -070072 *
73 * bcp47[0] is the least significant fallback, bcp47[bcp47Count-1] is the
74 * most significant. If no specified bcp47 codes match, any font with the
75 * requested character will be matched.
bungeman@google.com72cf4fc2014-03-21 22:48:32 +000076 */
77 SkTypeface* matchFamilyStyleCharacter(const char familyName[], const SkFontStyle&,
bungemanc20386e2014-10-23 07:08:05 -070078 const char* bcp47[], int bcp47Count,
79 SkUnichar character) const;
bungeman@google.com72cf4fc2014-03-21 22:48:32 +000080
commit-bot@chromium.org967dee32014-02-04 22:35:01 +000081 SkTypeface* matchFaceStyle(const SkTypeface*, const SkFontStyle&) const;
reed@google.com95625db2013-03-25 20:44:02 +000082
reed@google.comc452d822013-03-25 18:44:17 +000083 /**
84 * Create a typeface for the specified data and TTC index (pass 0 for none)
85 * or NULL if the data is not recognized. The caller must call unref() on
86 * the returned object if it is not null.
87 */
commit-bot@chromium.org967dee32014-02-04 22:35:01 +000088 SkTypeface* createFromData(SkData*, int ttcIndex = 0) const;
reed@google.comc452d822013-03-25 18:44:17 +000089
90 /**
91 * Create a typeface for the specified stream and TTC index
92 * (pass 0 for none) or NULL if the stream is not recognized. The caller
93 * must call unref() on the returned object if it is not null.
94 */
bungeman5f213d92015-01-27 05:39:10 -080095 SkTypeface* createFromStream(SkStreamAsset*, int ttcIndex = 0) const;
reed@google.comc452d822013-03-25 18:44:17 +000096
97 /**
98 * Create a typeface for the specified fileName and TTC index
99 * (pass 0 for none) or NULL if the file is not found, or its contents are
100 * not recognized. The caller must call unref() on the returned object
101 * if it is not null.
102 */
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000103 SkTypeface* createFromFile(const char path[], int ttcIndex = 0) const;
reed@google.comc452d822013-03-25 18:44:17 +0000104
reed@google.com30ddd612013-07-30 17:47:39 +0000105 SkTypeface* legacyCreateTypeface(const char familyName[],
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000106 unsigned typefaceStyleBits) const;
reed@google.com30ddd612013-07-30 17:47:39 +0000107
reed@google.com95625db2013-03-25 20:44:02 +0000108 /**
109 * Return a ref to the default fontmgr. The caller must call unref() on
110 * the returned object.
111 */
112 static SkFontMgr* RefDefault();
113
114protected:
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000115 virtual int onCountFamilies() const = 0;
116 virtual void onGetFamilyName(int index, SkString* familyName) const = 0;
117 virtual SkFontStyleSet* onCreateStyleSet(int index)const = 0;
reed@google.com95625db2013-03-25 20:44:02 +0000118
bungeman@google.com9fc5c682013-11-12 15:25:29 +0000119 /** May return NULL if the name is not found. */
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000120 virtual SkFontStyleSet* onMatchFamily(const char familyName[]) const = 0;
reed@google.com964988f2013-03-29 14:57:22 +0000121
reed@google.com95625db2013-03-25 20:44:02 +0000122 virtual SkTypeface* onMatchFamilyStyle(const char familyName[],
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000123 const SkFontStyle&) const = 0;
bungeman@google.com72cf4fc2014-03-21 22:48:32 +0000124 virtual SkTypeface* onMatchFamilyStyleCharacter(const char familyName[], const SkFontStyle&,
bungemanc20386e2014-10-23 07:08:05 -0700125 const char* bcp47[], int bcp47Count,
djsollen33068c12014-11-14 10:52:53 -0800126 SkUnichar character) const = 0;
reed@google.com95625db2013-03-25 20:44:02 +0000127 virtual SkTypeface* onMatchFaceStyle(const SkTypeface*,
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000128 const SkFontStyle&) const = 0;
reed@google.com95625db2013-03-25 20:44:02 +0000129
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000130 virtual SkTypeface* onCreateFromData(SkData*, int ttcIndex) const = 0;
bungeman5f213d92015-01-27 05:39:10 -0800131 virtual SkTypeface* onCreateFromStream(SkStreamAsset*, int ttcIndex) const = 0;
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000132 virtual SkTypeface* onCreateFromFile(const char path[], int ttcIndex) const = 0;
bungeman@google.comfb1663a2013-10-24 22:32:43 +0000133
bungeman@google.comfb1663a2013-10-24 22:32:43 +0000134 virtual SkTypeface* onLegacyCreateTypeface(const char familyName[],
commit-bot@chromium.org967dee32014-02-04 22:35:01 +0000135 unsigned styleBits) const = 0;
reed@google.comc452d822013-03-25 18:44:17 +0000136private:
reed@google.com95625db2013-03-25 20:44:02 +0000137 static SkFontMgr* Factory(); // implemented by porting layer
mtklein148ec592014-10-13 13:17:56 -0700138 friend SkFontMgr* sk_fontmgr_create_default();
skia.committer@gmail.come60ed082013-03-26 07:01:04 +0000139
reed@google.comc452d822013-03-25 18:44:17 +0000140 typedef SkRefCnt INHERITED;
141};
142
143#endif