| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
| 4 * Copyright (C) 2013 Google Inc. All rights reserved. | 4 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 | 52 |
| 53 void inheritFrom(const FontDescription&); | 53 void inheritFrom(const FontDescription&); |
| 54 void fromSystemFont(CSSValueID); | 54 void fromSystemFont(CSSValueID); |
| 55 | 55 |
| 56 void setFontFamilyInitial(); | 56 void setFontFamilyInitial(); |
| 57 void setFontFamilyInherit(const FontDescription&); | 57 void setFontFamilyInherit(const FontDescription&); |
| 58 void setFontFamilyValue(CSSValue*); | 58 void setFontFamilyValue(CSSValue*); |
| 59 | 59 |
| 60 void setFontSizeInitial(); | 60 void setFontSizeInitial(); |
| 61 void setFontSizeInherit(const FontDescription&); | 61 void setFontSizeInherit(const FontDescription&); |
| 62 void setFontSizeValue(CSSValue*, RenderStyle* parentStyle, const RenderStyle
* rootElementStyle); | 62 void setFontSizeValue(CSSValue*, RenderStyle* parentStyle); |
| 63 | 63 |
| 64 void setWeight(FontWeight); | 64 void setWeight(FontWeight); |
| 65 void setStretch(FontStretch); | 65 void setStretch(FontStretch); |
| 66 void setFeatureSettings(PassRefPtr<FontFeatureSettings>); | 66 void setFeatureSettings(PassRefPtr<FontFeatureSettings>); |
| 67 void setScript(const String& locale); | 67 void setScript(const String& locale); |
| 68 void setStyle(FontStyle); | 68 void setStyle(FontStyle); |
| 69 void setVariant(FontVariant); | 69 void setVariant(FontVariant); |
| 70 void setVariantLigatures(const FontDescription::VariantLigatures&); | 70 void setVariantLigatures(const FontDescription::VariantLigatures&); |
| 71 void setTextRendering(TextRenderingMode); | 71 void setTextRendering(TextRenderingMode); |
| 72 void setKerning(FontDescription::Kerning); | 72 void setKerning(FontDescription::Kerning); |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 // is changed, FontBuilder tracks the need to update | 122 // is changed, FontBuilder tracks the need to update |
| 123 // style->font() with this bool. | 123 // style->font() with this bool. |
| 124 bool m_fontDirty; | 124 bool m_fontDirty; |
| 125 | 125 |
| 126 friend class FontBuilderTest; | 126 friend class FontBuilderTest; |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 } | 129 } |
| 130 | 130 |
| 131 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_FONTBUILDER_H_ | 131 #endif // SKY_ENGINE_CORE_CSS_RESOLVER_FONTBUILDER_H_ |
| OLD | NEW |