| 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 * |
| 11 * This library is distributed in the hope that it will be useful, | 11 * This library is distributed in the hope that it will be useful, |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 * Library General Public License for more details. | 14 * Library General Public License for more details. |
| 15 * | 15 * |
| 16 * You should have received a copy of the GNU Library General Public License | 16 * You should have received a copy of the GNU Library General Public License |
| 17 * along with this library; see the file COPYING.LIB. If not, write to | 17 * along with this library; see the file COPYING.LIB. If not, write to |
| 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 19 * Boston, MA 02110-1301, USA. | 19 * Boston, MA 02110-1301, USA. |
| 20 * | 20 * |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 #ifndef FontBuilder_h | 23 #ifndef FontBuilder_h |
| 24 #define FontBuilder_h | 24 #define FontBuilder_h |
| 25 | 25 |
| 26 #include "CSSValueKeywords.h" | 26 #include "CSSValueKeywords.h" |
| 27 | 27 |
| 28 #include "platform/fonts/FontDescription.h" | 28 #include "platform/fonts/FontDescription.h" |
| 29 #include "platform/heap/Handle.h" | |
| 30 #include "wtf/PassRefPtr.h" | 29 #include "wtf/PassRefPtr.h" |
| 31 | 30 |
| 32 namespace WebCore { | 31 namespace WebCore { |
| 33 | 32 |
| 34 class CSSValue; | 33 class CSSValue; |
| 35 class FontSelector; | 34 class FontSelector; |
| 36 class RenderStyle; | 35 class RenderStyle; |
| 37 | 36 |
| 38 class FontDescriptionChangeScope; | 37 class FontDescriptionChangeScope; |
| 39 | 38 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 void setFeatureSettingsValue(CSSValue*); | 71 void setFeatureSettingsValue(CSSValue*); |
| 73 | 72 |
| 74 void setScript(const String& locale); | 73 void setScript(const String& locale); |
| 75 void setStyle(FontStyle); | 74 void setStyle(FontStyle); |
| 76 void setVariant(FontVariant); | 75 void setVariant(FontVariant); |
| 77 void setTextRendering(TextRenderingMode); | 76 void setTextRendering(TextRenderingMode); |
| 78 void setKerning(FontDescription::Kerning); | 77 void setKerning(FontDescription::Kerning); |
| 79 void setFontSmoothing(FontSmoothingMode); | 78 void setFontSmoothing(FontSmoothingMode); |
| 80 | 79 |
| 81 // FIXME: These need to just vend a Font object eventually. | 80 // FIXME: These need to just vend a Font object eventually. |
| 82 void createFont(PassRefPtrWillBeRawPtr<FontSelector>, const RenderStyle* par
entStyle, RenderStyle*); | 81 void createFont(PassRefPtr<FontSelector>, const RenderStyle* parentStyle, Re
nderStyle*); |
| 83 // FIXME: This is nearly static, should either made fully static or decompos
ed into | 82 // FIXME: This is nearly static, should either made fully static or decompos
ed into |
| 84 // FontBuilder calls at the callsite. | 83 // FontBuilder calls at the callsite. |
| 85 void createFontForDocument(PassRefPtrWillBeRawPtr<FontSelector>, RenderStyle
*); | 84 void createFontForDocument(PassRefPtr<FontSelector>, RenderStyle*); |
| 86 | 85 |
| 87 bool fontSizeHasViewportUnits() { return m_fontSizehasViewportUnits; } | 86 bool fontSizeHasViewportUnits() { return m_fontSizehasViewportUnits; } |
| 88 | 87 |
| 89 // FIXME: These should not be necessary eventually. | 88 // FIXME: These should not be necessary eventually. |
| 90 void setFontDirty(bool fontDirty) { m_fontDirty = fontDirty; } | 89 void setFontDirty(bool fontDirty) { m_fontDirty = fontDirty; } |
| 91 // FIXME: This is only used by an ASSERT in StyleResolver. Remove? | 90 // FIXME: This is only used by an ASSERT in StyleResolver. Remove? |
| 92 bool fontDirty() const { return m_fontDirty; } | 91 bool fontDirty() const { return m_fontDirty; } |
| 93 | 92 |
| 94 static FontDescription::GenericFamilyType initialGenericFamily() { return Fo
ntDescription::NoFamily; } | 93 static FontDescription::GenericFamilyType initialGenericFamily() { return Fo
ntDescription::NoFamily; } |
| 95 static TextRenderingMode initialTextRendering() { return AutoTextRendering;
} | 94 static TextRenderingMode initialTextRendering() { return AutoTextRendering;
} |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 // is changed, FontBuilder tracks the need to update | 126 // is changed, FontBuilder tracks the need to update |
| 128 // style->font() with this bool. | 127 // style->font() with this bool. |
| 129 bool m_fontDirty; | 128 bool m_fontDirty; |
| 130 | 129 |
| 131 friend class FontBuilderTest; | 130 friend class FontBuilderTest; |
| 132 }; | 131 }; |
| 133 | 132 |
| 134 } | 133 } |
| 135 | 134 |
| 136 #endif | 135 #endif |
| OLD | NEW |