reed@android.com | dc3381f | 2010-02-11 16:05:15 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | fd03db0 | 2011-07-28 14:24:55 +0000 | [diff] [blame] | 2 | * Copyright 2009 Google Inc. |
reed@android.com | dc3381f | 2010-02-11 16:05:15 +0000 | [diff] [blame] | 3 | * |
epoger@google.com | fd03db0 | 2011-07-28 14:24:55 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@android.com | dc3381f | 2010-02-11 16:05:15 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef SkHarfBuzzFont_DEFINED |
| 9 | #define SkHarfBuzzFont_DEFINED |
| 10 | |
| 11 | extern "C" { |
| 12 | #include "harfbuzz-shaper.h" |
| 13 | //#include "harfbuzz-unicode.h" |
| 14 | } |
| 15 | |
| 16 | #include "SkTypes.h" |
| 17 | |
| 18 | class SkPaint; |
| 19 | class SkTypeface; |
| 20 | |
| 21 | class SkHarfBuzzFont { |
| 22 | public: |
| 23 | /** The subclass returns the typeface for this font, or NULL |
| 24 | */ |
| 25 | virtual SkTypeface* getTypeface() const = 0; |
| 26 | /** The subclass sets the text related attributes of the paint. |
| 27 | e.g. textSize, typeface, textSkewX, etc. |
| 28 | All of the attributes that could effect how the text is measured. |
| 29 | Color information (e.g. color, xfermode, shader, etc.) are not required. |
| 30 | */ |
| 31 | virtual void setupPaint(SkPaint*) const = 0; |
| 32 | |
| 33 | /** Implementation of HB_GetFontTableFunc, using SkHarfBuzzFont* as |
| 34 | the first parameter. |
| 35 | */ |
| 36 | static HB_Error GetFontTableFunc(void* skharfbuzzfont, const HB_Tag tag, |
| 37 | HB_Byte* buffer, HB_UInt* len); |
| 38 | |
| 39 | static const HB_FontClass& GetFontClass(); |
| 40 | }; |
| 41 | |
| 42 | #endif |