83787c55db
Here is some test code SkFontMgr* mgr = SkFontMgr::RefDefault(); for (int i = 0; i < mgr->countFamilies(); ++i) { SkString familyName; mgr->getFamilyName(i, &familyName); SkDebugf("%s\n", familyName.c_str()); SkFontStyleSet* styles = mgr->createStyleSet(i); for (int j = 0; j < styles->count(); ++j) { SkFontStyle fs; SkString styleName; styles->getStyle(j, &fs, &styleName); SkTypeface* face = styles->createTypeface(j); SkDebugf(" %s [%d %d] %x\n", styleName.c_str(), fs.weight(), fs.width(), face); } styles->unref(); } mgr->unref(); Review URL: https://codereview.chromium.org/13094005 git-svn-id: http://skia.googlecode.com/svn/trunk@8395 2bbb7eff-a529-9590-31e7-b0007b416f81
91 lines
3.0 KiB
C++
91 lines
3.0 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkFontMgr_DEFINED
|
|
#define SkFontMgr_DEFINED
|
|
|
|
#include "SkRefCnt.h"
|
|
#include "SkFontStyle.h"
|
|
|
|
class SkData;
|
|
class SkStream;
|
|
class SkString;
|
|
|
|
class SkFontStyleSet : public SkRefCnt {
|
|
public:
|
|
virtual int count() = 0;
|
|
virtual void getStyle(int index, SkFontStyle*, SkString* style) = 0;
|
|
virtual SkTypeface* createTypeface(int index) = 0;
|
|
};
|
|
|
|
class SkFontMgr : public SkRefCnt {
|
|
public:
|
|
int countFamilies();
|
|
void getFamilyName(int index, SkString* familyName);
|
|
SkFontStyleSet* createStyleSet(int index);
|
|
|
|
/**
|
|
* Find the closest matching typeface to the specified familyName and style
|
|
* and return a ref to it. The caller must call unref() on the returned
|
|
* object. Will never return NULL, as it will return the default font if
|
|
* no matching font is found.
|
|
*/
|
|
SkTypeface* matchFamilyStyle(const char familyName[], const SkFontStyle&);
|
|
|
|
SkTypeface* matchFaceStyle(const SkTypeface*, const SkFontStyle&);
|
|
|
|
/**
|
|
* Create a typeface for the specified data and TTC index (pass 0 for none)
|
|
* or NULL if the data is not recognized. The caller must call unref() on
|
|
* the returned object if it is not null.
|
|
*/
|
|
SkTypeface* createFromData(SkData*, int ttcIndex = 0);
|
|
|
|
/**
|
|
* Create a typeface for the specified stream and TTC index
|
|
* (pass 0 for none) or NULL if the stream is not recognized. The caller
|
|
* must call unref() on the returned object if it is not null.
|
|
*/
|
|
SkTypeface* createFromStream(SkStream*, int ttcIndex = 0);
|
|
|
|
/**
|
|
* Create a typeface for the specified fileName and TTC index
|
|
* (pass 0 for none) or NULL if the file is not found, or its contents are
|
|
* not recognized. The caller must call unref() on the returned object
|
|
* if it is not null.
|
|
*/
|
|
SkTypeface* createFromFile(const char path[], int ttcIndex = 0);
|
|
|
|
/**
|
|
* Return a ref to the default fontmgr. The caller must call unref() on
|
|
* the returned object.
|
|
*/
|
|
static SkFontMgr* RefDefault();
|
|
|
|
protected:
|
|
virtual int onCountFamilies() = 0;
|
|
virtual void onGetFamilyName(int index, SkString* familyName) = 0;
|
|
virtual SkFontStyleSet* onCreateStyleSet(int index) = 0;
|
|
|
|
virtual SkTypeface* onMatchFamilyStyle(const char familyName[],
|
|
const SkFontStyle&) = 0;
|
|
virtual SkTypeface* onMatchFaceStyle(const SkTypeface*,
|
|
const SkFontStyle&) = 0;
|
|
|
|
virtual SkTypeface* onCreateFromData(SkData*, int ttcIndex) = 0;
|
|
virtual SkTypeface* onCreateFromStream(SkStream*, int ttcIndex) = 0;
|
|
virtual SkTypeface* onCreateFromFile(const char path[], int ttcIndex) = 0;
|
|
|
|
private:
|
|
static SkFontMgr* Factory(); // implemented by porting layer
|
|
static SkMutex* Mutex(); // implemented by porting layer
|
|
|
|
typedef SkRefCnt INHERITED;
|
|
};
|
|
|
|
#endif
|