blob: 799b95b565c4917ffc9e369d44e9318c67788a48 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001/*
2 * Copyright 2009 The Android Open Source Project
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
reed@google.com1a64a542013-03-12 15:41:18 +00008#include "SkFontLCDConfig.h"
agl@chromium.org309485b2009-07-21 17:41:32 +00009
reed@google.com1a64a542013-03-12 15:41:18 +000010static SkFontLCDConfig::LCDOrientation gLCDOrientation = SkFontLCDConfig::kHorizontal_LCDOrientation;
11static SkFontLCDConfig::LCDOrder gLCDOrder = SkFontLCDConfig::kRGB_LCDOrder;
agl@chromium.org309485b2009-07-21 17:41:32 +000012
reed@google.com1a64a542013-03-12 15:41:18 +000013SkFontLCDConfig::LCDOrientation SkFontLCDConfig::GetSubpixelOrientation() {
agl@chromium.org309485b2009-07-21 17:41:32 +000014 return gLCDOrientation;
15}
16
reed@google.com1a64a542013-03-12 15:41:18 +000017void SkFontLCDConfig::SetSubpixelOrientation(LCDOrientation orientation) {
agl@chromium.org309485b2009-07-21 17:41:32 +000018 gLCDOrientation = orientation;
19}
20
reed@google.com1a64a542013-03-12 15:41:18 +000021SkFontLCDConfig::LCDOrder SkFontLCDConfig::GetSubpixelOrder() {
agl@chromium.org309485b2009-07-21 17:41:32 +000022 return gLCDOrder;
23}
24
reed@google.com1a64a542013-03-12 15:41:18 +000025void SkFontLCDConfig::SetSubpixelOrder(LCDOrder order) {
agl@chromium.org309485b2009-07-21 17:41:32 +000026 gLCDOrder = order;
27}
reed@google.com1a64a542013-03-12 15:41:18 +000028
29///////////////////////////////////////////////////////////////////////////////
30// Legacy wrappers : remove from SkFontHost when webkit switches to new API
31
32#include "SkFontHost.h"
33
34SkFontHost::LCDOrientation SkFontHost::GetSubpixelOrientation() {
35 return (SkFontHost::LCDOrientation)SkFontLCDConfig::GetSubpixelOrientation();
36}
37
38void SkFontHost::SetSubpixelOrientation(LCDOrientation orientation) {
39 SkFontLCDConfig::SetSubpixelOrientation((SkFontLCDConfig::LCDOrientation)orientation);
40}
41
42SkFontHost::LCDOrder SkFontHost::GetSubpixelOrder() {
43 return (SkFontHost::LCDOrder)SkFontLCDConfig::GetSubpixelOrder();
44}
45
46void SkFontHost::SetSubpixelOrder(LCDOrder order) {
47 SkFontLCDConfig::SetSubpixelOrder((SkFontLCDConfig::LCDOrder)order);
48}
reed@google.com83787c52013-03-26 17:19:15 +000049
50///////////////////////////////////////////////////////////////////////////////
51///////////////////////////////////////////////////////////////////////////////
52
reed@google.com964988f2013-03-29 14:57:22 +000053#include "SkFontStyle.h"
54
55SkFontStyle::SkFontStyle() {
56 fUnion.fU32 = 0;
57 fUnion.fR.fWeight = kNormal_Weight;
58 fUnion.fR.fWidth = kNormal_Width;
59 fUnion.fR.fSlant = kUpright_Slant;
60}
61
62SkFontStyle::SkFontStyle(int weight, int width, Slant slant) {
63 fUnion.fU32 = 0;
64 fUnion.fR.fWeight = SkPin32(weight, kThin_Weight, kBlack_Weight);
65 fUnion.fR.fWidth = SkPin32(width, kUltraCondensed_Width, kUltaExpanded_Width);
66 fUnion.fR.fSlant = SkPin32(slant, kUpright_Slant, kItalic_Slant);
67}
68
reed@google.com83787c52013-03-26 17:19:15 +000069#include "SkFontMgr.h"
70
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +000071SK_DEFINE_INST_COUNT(SkFontStyleSet)
72
reed@google.com964988f2013-03-29 14:57:22 +000073class SkEmptyFontStyleSet : public SkFontStyleSet {
74public:
75 virtual int count() SK_OVERRIDE { return 0; }
76 virtual void getStyle(int, SkFontStyle*, SkString*) SK_OVERRIDE {
77 SkASSERT(!"SkFontStyleSet::getStyle called on empty set");
78 }
79 virtual SkTypeface* createTypeface(int index) SK_OVERRIDE {
80 SkASSERT(!"SkFontStyleSet::createTypeface called on empty set");
81 return NULL;
82 }
83 virtual SkTypeface* matchStyle(const SkFontStyle&) SK_OVERRIDE {
84 return NULL;
85 }
86};
87
88SkFontStyleSet* SkFontStyleSet::CreateEmpty() {
89 return SkNEW(SkEmptyFontStyleSet);
90}
91
92///////////////////////////////////////////////////////////////////////////////
93
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +000094SK_DEFINE_INST_COUNT(SkFontMgr)
95
reed@google.comdb235092013-03-27 20:12:59 +000096class SkEmptyFontMgr : public SkFontMgr {
97protected:
98 virtual int onCountFamilies() SK_OVERRIDE {
99 return 0;
100 }
101 virtual void onGetFamilyName(int index, SkString* familyName) SK_OVERRIDE {
102 SkASSERT(!"onGetFamilyName called with bad index");
103 }
104 virtual SkFontStyleSet* onCreateStyleSet(int index) SK_OVERRIDE {
105 SkASSERT(!"onCreateStyleSet called with bad index");
106 return NULL;
107 }
reed@google.com964988f2013-03-29 14:57:22 +0000108 virtual SkFontStyleSet* onMatchFamily(const char[]) SK_OVERRIDE {
109 return SkFontStyleSet::CreateEmpty();
110 }
111
reed@google.comdb235092013-03-27 20:12:59 +0000112 virtual SkTypeface* onMatchFamilyStyle(const char[],
113 const SkFontStyle&) SK_OVERRIDE {
114 return NULL;
115 }
116 virtual SkTypeface* onMatchFaceStyle(const SkTypeface*,
117 const SkFontStyle&) SK_OVERRIDE {
118 return NULL;
119 }
120 virtual SkTypeface* onCreateFromData(SkData*, int) SK_OVERRIDE {
121 return NULL;
122 }
123 virtual SkTypeface* onCreateFromStream(SkStream*, int) SK_OVERRIDE {
124 return NULL;
125 }
126 virtual SkTypeface* onCreateFromFile(const char[], int) SK_OVERRIDE {
127 return NULL;
128 }
129};
130
reed@google.comc1ccda32013-04-19 14:28:54 +0000131static SkFontStyleSet* emptyOnNull(SkFontStyleSet* fsset) {
132 if (NULL == fsset) {
133 fsset = SkFontStyleSet::CreateEmpty();
134 }
135 return fsset;
136}
137
reed@google.com83787c52013-03-26 17:19:15 +0000138int SkFontMgr::countFamilies() {
139 return this->onCountFamilies();
140}
141
142void SkFontMgr::getFamilyName(int index, SkString* familyName) {
143 this->onGetFamilyName(index, familyName);
144}
145
146SkFontStyleSet* SkFontMgr::createStyleSet(int index) {
reed@google.comc1ccda32013-04-19 14:28:54 +0000147 return emptyOnNull(this->onCreateStyleSet(index));
reed@google.com83787c52013-03-26 17:19:15 +0000148}
149
reed@google.com964988f2013-03-29 14:57:22 +0000150SkFontStyleSet* SkFontMgr::matchFamily(const char familyName[]) {
reed@google.comc1ccda32013-04-19 14:28:54 +0000151 return emptyOnNull(this->onMatchFamily(familyName));
reed@google.com964988f2013-03-29 14:57:22 +0000152}
153
reed@google.com83787c52013-03-26 17:19:15 +0000154SkTypeface* SkFontMgr::matchFamilyStyle(const char familyName[],
155 const SkFontStyle& fs) {
156 return this->onMatchFamilyStyle(familyName, fs);
157}
158
skia.committer@gmail.com37cbc7f2013-03-27 07:01:04 +0000159SkTypeface* SkFontMgr::matchFaceStyle(const SkTypeface* face,
reed@google.com83787c52013-03-26 17:19:15 +0000160 const SkFontStyle& fs) {
reed@google.com919e9c32013-03-26 19:29:55 +0000161 return this->onMatchFaceStyle(face, fs);
reed@google.com83787c52013-03-26 17:19:15 +0000162}
163
164SkTypeface* SkFontMgr::createFromData(SkData* data, int ttcIndex) {
reed@google.comb6bd24d2013-07-31 18:49:33 +0000165 if (NULL == data) {
166 return NULL;
167 }
reed@google.com83787c52013-03-26 17:19:15 +0000168 return this->onCreateFromData(data, ttcIndex);
169}
170
171SkTypeface* SkFontMgr::createFromStream(SkStream* stream, int ttcIndex) {
reed@google.comb6bd24d2013-07-31 18:49:33 +0000172 if (NULL == stream) {
173 return NULL;
174 }
reed@google.com83787c52013-03-26 17:19:15 +0000175 return this->onCreateFromStream(stream, ttcIndex);
176}
177
178SkTypeface* SkFontMgr::createFromFile(const char path[], int ttcIndex) {
reed@google.comb6bd24d2013-07-31 18:49:33 +0000179 if (NULL == path) {
180 return NULL;
181 }
reed@google.com83787c52013-03-26 17:19:15 +0000182 return this->onCreateFromFile(path, ttcIndex);
183}
184
reed@google.com30ddd612013-07-30 17:47:39 +0000185SkTypeface* SkFontMgr::legacyCreateTypeface(const char familyName[],
186 unsigned styleBits) {
187 return this->onLegacyCreateTypeface(familyName, styleBits);
188}
189
190SkTypeface* SkFontMgr::onLegacyCreateTypeface(const char familyName[],
191 unsigned styleBits) {
192 SkASSERT(!"unimplemented");
193 return NULL;
194}
195
reed@google.com83787c52013-03-26 17:19:15 +0000196SkFontMgr* SkFontMgr::RefDefault() {
197 static SkFontMgr* gFM;
198 if (NULL == gFM) {
199 gFM = SkFontMgr::Factory();
reed@google.comdb235092013-03-27 20:12:59 +0000200 // we never want to return NULL
201 if (NULL == gFM) {
202 gFM = SkNEW(SkEmptyFontMgr);
203 }
reed@google.com83787c52013-03-26 17:19:15 +0000204 }
205 return SkRef(gFM);
206}
reed@google.com30ddd612013-07-30 17:47:39 +0000207
208//////////////////////////////////////////////////////////////////////////
209
210#ifdef SK_FONTHOST_USES_FONTMGR
211
212#if 0
213static SkFontStyle TypefaceStyleBitsToFontStyle(SkTypeface::Style styleBits) {
214 SkFontStyle::Weight weight = (styleBits & SkTypeface::kBold) ?
215 SkFontStyle::kBold_Weight :
216 SkFontStyle::kNormal_Weight;
217 SkFontStyle::Width width = SkFontStyle::kNormal_Width;
218 SkFontStyle::Slant slant = (styleBits & SkTypeface::kItalic) ?
219 SkFontStyle::kUpright_Slant :
220 SkFontStyle::kItalic_Slant;
221 return SkFontStyle(weight, width, slant);
222}
223#endif
224
225SkTypeface* SkFontHost::CreateTypeface(const SkTypeface* familyFace,
226 const char familyName[],
227 SkTypeface::Style style) {
228 if (familyFace) {
229 return familyFace->refMatchingStyle(style);
230 } else {
231 SkAutoTUnref<SkFontMgr> fm(SkFontMgr::RefDefault());
232 return fm->legacyCreateTypeface(familyName, style);
233 }
234}
235
236SkTypeface* SkFontHost::CreateTypefaceFromFile(const char path[]) {
237 SkAutoTUnref<SkFontMgr> fm(SkFontMgr::RefDefault());
238 return fm->createFromFile(path);
239}
240
241SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) {
242 SkAutoTUnref<SkFontMgr> fm(SkFontMgr::RefDefault());
243 return fm->createFromStream(stream);
244}
245
246#endif