| * 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 SkFontStyle_DEFINED |
| #define SkFontStyle_DEFINED |
| class SK_API SkFontStyle { |
| kExtraLight_Weight = 200, |
| kUltraCondensed_Width = 1, |
| kExtraCondensed_Width = 2, |
| kSemiCondensed_Width = 4, |
| kExtraExpanded_Width = 8, |
| SkFontStyle(int weight, int width, Slant); |
| bool operator==(const SkFontStyle& rhs) const { |
| return fUnion.fU32 == rhs.fUnion.fU32; |
| int weight() const { return fUnion.fR.fWeight; } |
| int width() const { return fUnion.fR.fWidth; } |
| Slant slant() const { return (Slant)fUnion.fR.fSlant; } |
| return kItalic_Slant == fUnion.fR.fSlant; |
| uint16_t fWeight; // 100 .. 900 |
| uint8_t fWidth; // 1 .. 9 |
| uint8_t fSlant; // 0 .. 2 |