| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the internal font implementation. | 2 * This file is part of the internal font implementation. |
| 3 * | 3 * |
| 4 * Copyright (C) 2006, 2008, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2006, 2008, 2010 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2007-2008 Torch Mobile, Inc. | 5 * Copyright (C) 2007-2008 Torch Mobile, Inc. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 const SimpleFontData* getCompositeFontReferenceFontData(NSFont *key) const; | 160 const SimpleFontData* getCompositeFontReferenceFontData(NSFont *key) const; |
| 161 NSFont* getNSFont() const { return m_platformData.font(); } | 161 NSFont* getNSFont() const { return m_platformData.font(); } |
| 162 #endif | 162 #endif |
| 163 | 163 |
| 164 #if OS(MACOSX) | 164 #if OS(MACOSX) |
| 165 CFDictionaryRef getCFStringAttributes(TypesettingFeatures, FontOrientation)
const; | 165 CFDictionaryRef getCFStringAttributes(TypesettingFeatures, FontOrientation)
const; |
| 166 #endif | 166 #endif |
| 167 | 167 |
| 168 bool canRenderCombiningCharacterSequence(const UChar*, size_t) const; | 168 bool canRenderCombiningCharacterSequence(const UChar*, size_t) const; |
| 169 | 169 |
| 170 bool applyTransforms(GlyphBufferGlyph*, GlyphBufferAdvance*, size_t, Typeset
tingFeatures) const | |
| 171 { | |
| 172 return false; | |
| 173 } | |
| 174 | |
| 175 PassRefPtr<CustomFontData> customFontData() const { return m_customFontData;
} | 170 PassRefPtr<CustomFontData> customFontData() const { return m_customFontData;
} |
| 176 | 171 |
| 177 // Implemented by the platform. | 172 // Implemented by the platform. |
| 178 virtual bool fillGlyphPage(GlyphPage* pageToFill, unsigned offset, unsigned
length, UChar* buffer, unsigned bufferLength) const; | 173 virtual bool fillGlyphPage(GlyphPage* pageToFill, unsigned offset, unsigned
length, UChar* buffer, unsigned bufferLength) const; |
| 179 | 174 |
| 180 protected: | 175 protected: |
| 181 SimpleFontData(const FontPlatformData&, PassRefPtr<CustomFontData> customDat
a, bool isTextOrientationFallback = false); | 176 SimpleFontData(const FontPlatformData&, PassRefPtr<CustomFontData> customDat
a, bool isTextOrientationFallback = false); |
| 182 | 177 |
| 183 SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool s
yntheticBold, bool syntheticItalic); | 178 SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool s
yntheticBold, bool syntheticItalic); |
| 184 | 179 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 #endif | 289 #endif |
| 295 else | 290 else |
| 296 width = platformWidthForGlyph(glyph); | 291 width = platformWidthForGlyph(glyph); |
| 297 | 292 |
| 298 m_glyphToWidthMap.setMetricsForGlyph(glyph, width); | 293 m_glyphToWidthMap.setMetricsForGlyph(glyph, width); |
| 299 return width; | 294 return width; |
| 300 } | 295 } |
| 301 | 296 |
| 302 } // namespace WebCore | 297 } // namespace WebCore |
| 303 #endif // SimpleFontData_h | 298 #endif // SimpleFontData_h |
| OLD | NEW |