1 /* 2 * Copyright (C) 2003, 2006, 2008, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2008 Holger Hans Peter Freyther 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Library General Public 7 * License as published by the Free Software Foundation; either 8 * version 2 of the License, or (at your option) any later version. 9 * 10 * This library is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * Library General Public License for more details. 14 * 15 * You should have received a copy of the GNU Library General Public License 16 * along with this library; see the file COPYING.LIB. If not, write to 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * Boston, MA 02110-1301, USA. 19 * 20 */ 21 22 #ifndef WidthIterator_h 23 #define WidthIterator_h 24 25 #include "platform/PlatformExport.h" 26 #include "platform/fonts/Font.h" 27 #include "platform/fonts/SVGGlyph.h" 28 #include "platform/text/TextRun.h" 29 #include "wtf/HashSet.h" 30 #include "wtf/unicode/Unicode.h" 31 #include "wtf/Vector.h" 32 33 namespace WebCore { 34 35 class Font; 36 class GlyphBuffer; 37 class SimpleFontData; 38 class TextRun; 39 struct GlyphData; 40 41 struct PLATFORM_EXPORT WidthIterator { 42 WTF_MAKE_FAST_ALLOCATED; 43 public: 44 WidthIterator(const Font*, const TextRun&, HashSet<const SimpleFontData*>* fallbackFonts = 0, bool accountForGlyphBounds = false, bool forTextEmphasis = false); 45 46 unsigned advance(int to, GlyphBuffer*); 47 bool advanceOneCharacter(float& width, GlyphBuffer&); 48 maxGlyphBoundingBoxYWidthIterator49 float maxGlyphBoundingBoxY() const { ASSERT(m_accountForGlyphBounds); return m_maxGlyphBoundingBoxY; } minGlyphBoundingBoxYWidthIterator50 float minGlyphBoundingBoxY() const { ASSERT(m_accountForGlyphBounds); return m_minGlyphBoundingBoxY; } firstGlyphOverflowWidthIterator51 float firstGlyphOverflow() const { ASSERT(m_accountForGlyphBounds); return m_firstGlyphOverflow; } lastGlyphOverflowWidthIterator52 float lastGlyphOverflow() const { ASSERT(m_accountForGlyphBounds); return m_lastGlyphOverflow; } 53 runWidthIterator54 const TextRun& run() const { return m_run; } runWidthSoFarWidthIterator55 float runWidthSoFar() const { return m_runWidthSoFar; } 56 57 #if ENABLE(SVG_FONTS) arabicFormsWidthIterator58 Vector<SVGGlyph::ArabicForm>& arabicForms() { return m_arabicForms; } 59 #endif 60 supportsTypesettingFeaturesWidthIterator61 static bool supportsTypesettingFeatures(const Font& font) 62 { 63 64 return !font.fontDescription().typesettingFeatures(); 65 } 66 67 const Font* m_font; 68 69 const TextRun& m_run; 70 71 unsigned m_currentCharacter; 72 float m_runWidthSoFar; 73 float m_expansion; 74 float m_expansionPerOpportunity; 75 bool m_isAfterExpansion; 76 float m_finalRoundingWidth; 77 78 #if ENABLE(SVG_FONTS) 79 Vector<SVGGlyph::ArabicForm> m_arabicForms; 80 #endif 81 82 private: 83 GlyphData glyphDataForCharacter(UChar32, bool mirror, int currentCharacter, unsigned& advanceLength); 84 template <typename TextIterator> 85 inline unsigned advanceInternal(TextIterator&, GlyphBuffer*); 86 shouldApplyFontTransformsWidthIterator87 bool shouldApplyFontTransforms() const { return m_run.length() > 1 && (m_typesettingFeatures & (Kerning | Ligatures)); } 88 89 TypesettingFeatures m_typesettingFeatures; 90 HashSet<const SimpleFontData*>* m_fallbackFonts; 91 bool m_accountForGlyphBounds; 92 float m_maxGlyphBoundingBoxY; 93 float m_minGlyphBoundingBoxY; 94 float m_firstGlyphOverflow; 95 float m_lastGlyphOverflow; 96 bool m_forTextEmphasis; 97 }; 98 99 } 100 101 #endif 102