Changeset 28298 in webkit
- Timestamp:
- Dec 1, 2007, 8:28:57 AM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 1 deleted
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r28275 r28298 1 2007-12-01 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Darin Adler. 4 5 - fold FontStyle into TextRun 6 7 * WebCore.xcodeproj/project.pbxproj: 8 * platform/graphics/Font.cpp: 9 (WebCore::WidthIterator::WidthIterator): 10 (WebCore::WidthIterator::advance): 11 (WebCore::Font::width): 12 (WebCore::Font::drawSimpleText): 13 (WebCore::Font::drawGlyphBuffer): 14 (WebCore::Font::drawText): 15 (WebCore::Font::floatWidth): 16 (WebCore::Font::floatWidthForSimpleText): 17 (WebCore::Font::selectionRectForText): 18 (WebCore::Font::selectionRectForSimpleText): 19 (WebCore::Font::offsetForPosition): 20 (WebCore::Font::offsetForPositionForSimpleText): 21 * platform/graphics/Font.h: 22 (WebCore::TextRun::TextRun): 23 (WebCore::TextRun::setText): 24 (WebCore::TextRun::allowTabs): 25 (WebCore::TextRun::xPos): 26 (WebCore::TextRun::padding): 27 (WebCore::TextRun::rtl): 28 (WebCore::TextRun::ltr): 29 (WebCore::TextRun::directionalOverride): 30 (WebCore::TextRun::applyRunRounding): 31 (WebCore::TextRun::applyWordRounding): 32 (WebCore::TextRun::spacingDisabled): 33 (WebCore::TextRun::disableSpacing): 34 (WebCore::TextRun::disableRoundingHacks): 35 (WebCore::TextRun::setRTL): 36 (WebCore::TextRun::setDirectionalOverride): 37 * platform/graphics/FontStyle.h: Removed. 38 * platform/graphics/GraphicsContext.cpp: 39 (WebCore::GraphicsContext::drawText): 40 (WebCore::GraphicsContext::drawBidiText): 41 (WebCore::GraphicsContext::drawHighlightForText): 42 * platform/graphics/GraphicsContext.h: 43 * platform/graphics/StringTruncator.cpp: 44 (WebCore::stringWidth): 45 * platform/graphics/gtk/FontGtk.cpp: 46 (WebCore::Font::drawComplexText): 47 (WebCore::Font::floatWidthForComplexText): 48 (WebCore::Font::offsetForPositionForComplexText): 49 (WebCore::Font::selectionRectForComplexText): 50 * platform/graphics/mac/FontMac.mm: 51 (WebCore::ATSULayoutParameters::ATSULayoutParameters): 52 (WebCore::addDirectionalOverride): 53 (WebCore::overrideLayoutOperation): 54 (WebCore::ATSULayoutParameters::initialize): 55 (WebCore::Font::selectionRectForComplexText): 56 (WebCore::Font::drawComplexText): 57 (WebCore::Font::floatWidthForComplexText): 58 (WebCore::Font::offsetForPositionForComplexText): 59 * platform/graphics/qt/FontQt.cpp: 60 (WebCore::generateComponents): 61 (WebCore::Font::drawText): 62 (WebCore::Font::width): 63 (WebCore::Font::offsetForPosition): 64 (WebCore::cursorToX): 65 (WebCore::Font::selectionRectForText): 66 * platform/graphics/win/FontWin.cpp: 67 (WebCore::Font::selectionRectForComplexText): 68 (WebCore::Font::drawComplexText): 69 (WebCore::Font::floatWidthForComplexText): 70 (WebCore::Font::offsetForPositionForComplexText): 71 * platform/graphics/wx/FontWx.cpp: 72 (WebCore::Font::selectionRectForComplexText): 73 (WebCore::Font::drawComplexText): 74 (WebCore::Font::floatWidthForComplexText): 75 (WebCore::Font::offsetForPositionForComplexText): 76 * platform/mac/WebCoreTextRenderer.mm: 77 (WebCoreDrawTextAtPoint): 78 (WebCoreTextFloatWidth): 79 * platform/win/PopupMenuWin.cpp: 80 (WebCore::PopupMenu::paint): 81 * platform/win/UniscribeController.cpp: 82 (WebCore::UniscribeController::UniscribeController): 83 (WebCore::UniscribeController::offsetForPosition): 84 (WebCore::UniscribeController::advance): 85 (WebCore::UniscribeController::itemizeShapeAndPlace): 86 (WebCore::UniscribeController::resetControlAndState): 87 (WebCore::UniscribeController::shapeAndPlaceItem): 88 * platform/win/UniscribeController.h: 89 * platform/win/WebCoreTextRenderer.cpp: 90 (WebCore::doDrawTextAtPoint): 91 * rendering/EllipsisBox.cpp: 92 (WebCore::EllipsisBox::paint): 93 * rendering/InlineTextBox.cpp: 94 (WebCore::InlineTextBox::selectionRect): 95 (WebCore::InlineTextBox::paint): 96 (WebCore::InlineTextBox::paintSelection): 97 (WebCore::InlineTextBox::paintCompositionBackground): 98 (WebCore::InlineTextBox::paintSpellingOrGrammarMarker): 99 (WebCore::InlineTextBox::paintTextMatchMarker): 100 (WebCore::InlineTextBox::offsetForPosition): 101 (WebCore::InlineTextBox::positionForOffset): 102 * rendering/RenderFileUploadControl.cpp: 103 (WebCore::RenderFileUploadControl::paintObject): 104 (WebCore::RenderFileUploadControl::calcPrefWidths): 105 * rendering/RenderImage.cpp: 106 * rendering/RenderListBox.cpp: 107 (WebCore::RenderListBox::updateFromElement): 108 (WebCore::RenderListBox::paintItemForeground): 109 * rendering/RenderMenuList.cpp: 110 (WebCore::RenderMenuList::updateOptionsWidth): 111 * rendering/RenderText.cpp: 112 (WebCore::RenderText::widthFromCache): 113 (WebCore::RenderText::calcPrefWidths): 114 (WebCore::RenderText::width): 115 * rendering/RenderText.h: 116 (WebCore::RenderText::allowTabs): 117 * rendering/RenderTextControl.cpp: 118 (WebCore::RenderTextControl::calcPrefWidths): 119 * rendering/SVGInlineTextBox.cpp: 120 (WebCore::SVGInlineTextBox::calculateGlyphWidth): 121 (WebCore::SVGInlineTextBox::paintCharacters): 122 (WebCore::SVGInlineTextBox::paintSelection): 123 * rendering/SVGRootInlineBox.cpp: 124 (WebCore::SVGRootInlineBoxPaintWalker::chunkPortionCallback): 125 (WebCore::cummulatedWidthOfInlineBoxCharacterRange): 126 (WebCore::svgTextRunForInlineTextBox): 127 * rendering/SVGRootInlineBox.h: 128 1 129 2007-12-01 Adam Treat <treat@kde.org> 2 130 -
trunk/WebCore/WebCore.xcodeproj/project.pbxproj
r28260 r28298 2972 2972 B24055660B5BE640002A28C0 /* DOMSVGElementInstanceListInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = B24055640B5BE640002A28C0 /* DOMSVGElementInstanceListInternal.h */; }; 2973 2973 B25DFAAF0B2E2929000E6510 /* JSSVGMatrixCustom.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B25DFAAE0B2E2929000E6510 /* JSSVGMatrixCustom.cpp */; }; 2974 B25E96BE0D00975100CFD296 /* FontStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B25E96BD0D00975100CFD296 /* FontStyle.h */; settings = {ATTRIBUTES = (Private, ); }; };2975 2974 B26554EA0B80D74900A50EC3 /* RenderSVGTextPath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B26554E80B80D74900A50EC3 /* RenderSVGTextPath.cpp */; }; 2976 2975 B26554EB0B80D74900A50EC3 /* RenderSVGTextPath.h in Headers */ = {isa = PBXBuildFile; fileRef = B26554E90B80D74900A50EC3 /* RenderSVGTextPath.h */; }; … … 6961 6960 B24055640B5BE640002A28C0 /* DOMSVGElementInstanceListInternal.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = DOMSVGElementInstanceListInternal.h; sourceTree = "<group>"; }; 6962 6961 B25DFAAE0B2E2929000E6510 /* JSSVGMatrixCustom.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = JSSVGMatrixCustom.cpp; sourceTree = "<group>"; }; 6963 B25E96BD0D00975100CFD296 /* FontStyle.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = FontStyle.h; sourceTree = "<group>"; };6964 6962 B26554E80B80D74900A50EC3 /* RenderSVGTextPath.cpp */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.cpp.cpp; path = RenderSVGTextPath.cpp; sourceTree = "<group>"; }; 6965 6963 B26554E90B80D74900A50EC3 /* RenderSVGTextPath.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = RenderSVGTextPath.h; sourceTree = "<group>"; }; … … 11008 11006 isa = PBXGroup; 11009 11007 children = ( 11010 B25E96BD0D00975100CFD296 /* FontStyle.h */,11011 11008 B23540F00D00782E002382FA /* StringTruncator.cpp */, 11012 11009 B23540F10D00782E002382FA /* StringTruncator.h */, … … 13924 13921 B2C3DA700D006CD600EF6F26 /* GlyphWidthMap.h in Headers */, 13925 13922 B23540F30D00782E002382FA /* StringTruncator.h in Headers */, 13926 B25E96BE0D00975100CFD296 /* FontStyle.h in Headers */,13927 13923 B2AFFC7E0D00A5C10030074D /* FontCustomPlatformData.h in Headers */, 13928 13924 B2AFFC810D00A5C10030074D /* FontPlatformData.h in Headers */, -
trunk/WebCore/platform/graphics/Font.cpp
r28234 r28298 33 33 #include "IntPoint.h" 34 34 #include "GlyphBuffer.h" 35 #include "FontStyle.h"36 35 #include <wtf/unicode/Unicode.h> 37 36 #include <wtf/MathExtras.h> … … 63 62 64 63 struct WidthIterator { 65 WidthIterator(const Font* font, const TextRun& run , const FontStyle& style);64 WidthIterator(const Font* font, const TextRun& run); 66 65 67 66 void advance(int to, GlyphBuffer* glyphBuffer = 0); … … 73 72 int m_end; 74 73 75 const FontStyle& m_style;76 77 74 unsigned m_currentCharacter; 78 75 float m_runWidthSoFar; … … 85 82 }; 86 83 87 WidthIterator::WidthIterator(const Font* font, const TextRun& run , const FontStyle& style)84 WidthIterator::WidthIterator(const Font* font, const TextRun& run) 88 85 : m_font(font) 89 86 , m_run(run) 90 87 , m_end(run.length()) 91 , m_style(style)92 88 , m_currentCharacter(0) 93 89 , m_runWidthSoFar(0) … … 96 92 // If the padding is non-zero, count the number of spaces in the run 97 93 // and divide that by the padding for per space addition. 98 m_padding = m_ style.padding();94 m_padding = m_run.padding(); 99 95 if (!m_padding) 100 96 m_padPerSpace = 0; … … 108 104 m_padPerSpace = 0; 109 105 else 110 m_padPerSpace = ceilf(m_ style.padding() / numSpaces);106 m_padPerSpace = ceilf(m_run.padding() / numSpaces); 111 107 } 112 108 } … … 120 116 const UChar* cp = m_run.data(currentCharacter); 121 117 122 bool rtl = m_ style.rtl();118 bool rtl = m_run.rtl(); 123 119 bool hasExtraSpacing = m_font->letterSpacing() || m_font->wordSpacing() || m_padding; 124 120 … … 164 160 // Now that we have a glyph and font data, get its width. 165 161 float width; 166 if (c == '\t' && m_ style.allowTabs()) {162 if (c == '\t' && m_run.allowTabs()) { 167 163 float tabWidth = m_font->tabWidth(); 168 width = tabWidth - fmodf(m_ style.xPos() + runWidthSoFar, tabWidth);164 width = tabWidth - fmodf(m_run.xPos() + runWidthSoFar, tabWidth); 169 165 } else { 170 166 width = fontData->widthForGlyph(glyph); … … 173 169 // Second, in fixed-pitch fonts we ensure that all characters that 174 170 // match the width of the space character have the same width as the space character. 175 if (width == fontData->m_spaceWidth && (fontData->m_treatAsFixedPitch || glyph == fontData->m_spaceGlyph) && m_ style.applyWordRounding())171 if (width == fontData->m_spaceWidth && (fontData->m_treatAsFixedPitch || glyph == fontData->m_spaceGlyph) && m_run.applyWordRounding()) 176 172 width = fontData->m_adjustedSpaceWidth; 177 173 } 178 174 179 if (hasExtraSpacing && !m_ style.spacingDisabled()) {175 if (hasExtraSpacing && !m_run.spacingDisabled()) { 180 176 // Account for letter-spacing. 181 177 if (width && m_font->letterSpacing()) … … 216 212 // Force characters that are used to determine word boundaries for the rounding hack 217 213 // to be integer width, so following words will start on an integer boundary. 218 if (m_ style.applyWordRounding() && Font::isRoundingHackCharacter(c))214 if (m_run.applyWordRounding() && Font::isRoundingHackCharacter(c)) 219 215 width = ceilf(width); 220 216 221 217 // Check to see if the next character is a "rounding hack character", if so, adjust 222 218 // width so that the total run width will be on an integer boundary. 223 if ((m_ style.applyWordRounding() && currentCharacter < m_run.length() && Font::isRoundingHackCharacter(*cp))224 || (m_ style.applyRunRounding() && currentCharacter >= m_end)) {219 if ((m_run.applyWordRounding() && currentCharacter < m_run.length() && Font::isRoundingHackCharacter(*cp)) 220 || (m_run.applyRunRounding() && currentCharacter >= m_end)) { 225 221 float totalWidth = runWidthSoFar + width; 226 222 width += ceilf(totalWidth) - totalWidth; … … 511 507 int Font::width(const TextRun& run) const 512 508 { 513 return width(run, FontStyle()); 514 } 515 516 int Font::width(const TextRun& run, const FontStyle& style) const 517 { 518 return lroundf(floatWidth(run, style)); 509 return lroundf(floatWidth(run)); 519 510 } 520 511 … … 619 610 } 620 611 621 void Font::drawSimpleText(GraphicsContext* context, const TextRun& run, const F ontStyle& style, const FloatPoint& point, int from, int to) const612 void Font::drawSimpleText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const 622 613 { 623 614 // This glyph buffer holds our glyphs+advances+font data for each glyph. … … 625 616 626 617 float startX = point.x(); 627 WidthIterator it(this, run , style);618 WidthIterator it(this, run); 628 619 it.advance(from); 629 620 float beforeWidth = it.m_runWidthSoFar; … … 636 627 float afterWidth = it.m_runWidthSoFar; 637 628 638 if ( style.rtl()) {629 if (run.rtl()) { 639 630 float finalRoundingWidth = it.m_finalRoundingWidth; 640 631 it.advance(run.length()); … … 644 635 645 636 // Swap the order of the glyphs if right-to-left. 646 if ( style.rtl())637 if (run.rtl()) 647 638 for (int i = 0, end = glyphBuffer.size() - 1; i < glyphBuffer.size() / 2; ++i, --end) 648 639 glyphBuffer.swap(i, end); … … 651 642 // all the advances up to the first glyph. 652 643 FloatPoint startPoint(startX, point.y()); 653 drawGlyphBuffer(context, glyphBuffer, run, st yle, startPoint);644 drawGlyphBuffer(context, glyphBuffer, run, startPoint); 654 645 } 655 646 656 647 void Font::drawGlyphBuffer(GraphicsContext* context, const GlyphBuffer& glyphBuffer, 657 const TextRun& run, const F ontStyle& style, const FloatPoint& point) const648 const TextRun& run, const FloatPoint& point) const 658 649 { 659 650 // Draw each contiguous run of glyphs that use the same font data. … … 680 671 } 681 672 682 void Font::drawText(GraphicsContext* context, const TextRun& run, const F ontStyle& style, const FloatPoint& point, int from, int to) const673 void Font::drawText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, int from, int to) const 683 674 { 684 675 // Don't draw anything while we are using custom fonts that are in the process of loading. … … 688 679 to = (to == -1 ? run.length() : to); 689 680 if (canUseGlyphCache(run)) 690 drawSimpleText(context, run, style,point, from, to);681 drawSimpleText(context, run, point, from, to); 691 682 else 692 drawComplexText(context, run, style,point, from, to);693 } 694 695 float Font::floatWidth(const TextRun& run , const FontStyle& style) const683 drawComplexText(context, run, point, from, to); 684 } 685 686 float Font::floatWidth(const TextRun& run) const 696 687 { 697 688 if (canUseGlyphCache(run)) 698 return floatWidthForSimpleText(run, style,0);699 return floatWidthForComplexText(run , style);700 } 701 702 float Font::floatWidthForSimpleText(const TextRun& run, const FontStyle& style,GlyphBuffer* glyphBuffer) const703 { 704 WidthIterator it(this, run , style);689 return floatWidthForSimpleText(run, 0); 690 return floatWidthForComplexText(run); 691 } 692 693 float Font::floatWidthForSimpleText(const TextRun& run, GlyphBuffer* glyphBuffer) const 694 { 695 WidthIterator it(this, run); 705 696 it.advance(run.length(), glyphBuffer); 706 697 return it.m_runWidthSoFar; 707 698 } 708 699 709 FloatRect Font::selectionRectForText(const TextRun& run, const FontStyle& style, constIntPoint& point, int h, int from, int to) const700 FloatRect Font::selectionRectForText(const TextRun& run, const IntPoint& point, int h, int from, int to) const 710 701 { 711 702 to = (to == -1 ? run.length() : to); 712 703 if (canUseGlyphCache(run)) 713 return selectionRectForSimpleText(run, style,point, h, from, to);714 return selectionRectForComplexText(run, style,point, h, from, to);715 } 716 717 FloatRect Font::selectionRectForSimpleText(const TextRun& run, const FontStyle& style, constIntPoint& point, int h, int from, int to) const718 { 719 WidthIterator it(this, run , style);704 return selectionRectForSimpleText(run, point, h, from, to); 705 return selectionRectForComplexText(run, point, h, from, to); 706 } 707 708 FloatRect Font::selectionRectForSimpleText(const TextRun& run, const IntPoint& point, int h, int from, int to) const 709 { 710 WidthIterator it(this, run); 720 711 it.advance(from); 721 712 float beforeWidth = it.m_runWidthSoFar; … … 724 715 725 716 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning 726 if ( style.rtl()) {717 if (run.rtl()) { 727 718 it.advance(run.length()); 728 719 float totalWidth = it.m_runWidthSoFar; … … 733 724 } 734 725 735 int Font::offsetForPosition(const TextRun& run, const FontStyle& style,int x, bool includePartialGlyphs) const726 int Font::offsetForPosition(const TextRun& run, int x, bool includePartialGlyphs) const 736 727 { 737 728 if (canUseGlyphCache(run)) 738 return offsetForPositionForSimpleText(run, style,x, includePartialGlyphs);739 return offsetForPositionForComplexText(run, style,x, includePartialGlyphs);740 } 741 742 int Font::offsetForPositionForSimpleText(const TextRun& run, const FontStyle& style,int x, bool includePartialGlyphs) const729 return offsetForPositionForSimpleText(run, x, includePartialGlyphs); 730 return offsetForPositionForComplexText(run, x, includePartialGlyphs); 731 } 732 733 int Font::offsetForPositionForSimpleText(const TextRun& run, int x, bool includePartialGlyphs) const 743 734 { 744 735 float delta = (float)x; 745 736 746 WidthIterator it(this, run , style);737 WidthIterator it(this, run); 747 738 GlyphBuffer localGlyphBuffer; 748 739 unsigned offset; 749 if ( style.rtl()) {750 delta -= floatWidthForSimpleText(run, style,0);740 if (run.rtl()) { 741 delta -= floatWidthForSimpleText(run, 0); 751 742 while (1) { 752 743 offset = it.m_currentCharacter; -
trunk/WebCore/platform/graphics/Font.h
r28234 r28298 47 47 class GraphicsContext; 48 48 class IntPoint; 49 class FontStyle;50 49 51 50 struct GlyphData; … … 53 52 class TextRun { 54 53 public: 55 TextRun(const UChar* c, int len) 56 :m_characters(c), m_len(len) 57 {} 58 59 TextRun(const String& s) 60 :m_characters(s.characters()), m_len(s.length()) 61 {} 54 TextRun(const UChar* c, int len, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false, 55 bool applyRunRounding = true, bool applyWordRounding = true) 56 : m_characters(c) 57 , m_len(len) 58 , m_allowTabs(allowTabs) 59 , m_xpos(xpos) 60 , m_padding(padding) 61 , m_rtl(rtl) 62 , m_directionalOverride(directionalOverride) 63 , m_applyRunRounding(applyRunRounding) 64 , m_applyWordRounding(applyWordRounding) 65 , m_disableSpacing(false) 66 { 67 } 68 69 TextRun(const String& s, bool allowTabs = false, int xpos = 0, int padding = 0, bool rtl = false, bool directionalOverride = false, 70 bool applyRunRounding = true, bool applyWordRounding = true) 71 : m_characters(s.characters()) 72 , m_len(s.length()) 73 , m_allowTabs(allowTabs) 74 , m_xpos(xpos) 75 , m_padding(padding) 76 , m_rtl(rtl) 77 , m_directionalOverride(directionalOverride) 78 , m_applyRunRounding(applyRunRounding) 79 , m_applyWordRounding(applyWordRounding) 80 , m_disableSpacing(false) 81 { 82 } 62 83 63 84 const UChar operator[](int i) const { return m_characters[i]; } … … 66 87 const UChar* characters() const { return m_characters; } 67 88 int length() const { return m_len; } 68 89 90 void setText(const UChar* c, int len) { m_characters = c; m_len = len; } 91 92 bool allowTabs() const { return m_allowTabs; } 93 int xPos() const { return m_xpos; } 94 int padding() const { return m_padding; } 95 bool rtl() const { return m_rtl; } 96 bool ltr() const { return !m_rtl; } 97 bool directionalOverride() const { return m_directionalOverride; } 98 bool applyRunRounding() const { return m_applyRunRounding; } 99 bool applyWordRounding() const { return m_applyWordRounding; } 100 bool spacingDisabled() const { return m_disableSpacing; } 101 102 void disableSpacing() { m_disableSpacing = true; } 103 void disableRoundingHacks() { m_applyRunRounding = m_applyWordRounding = false; } 104 void setRTL(bool b) { m_rtl = b; } 105 void setDirectionalOverride(bool override) { m_directionalOverride = override; } 106 69 107 private: 70 108 const UChar* m_characters; 71 109 int m_len; 110 111 bool m_allowTabs; 112 int m_xpos; 113 int m_padding; 114 bool m_rtl; 115 bool m_directionalOverride; 116 bool m_applyRunRounding; 117 bool m_applyWordRounding; 118 bool m_disableSpacing; 72 119 }; 73 120 … … 96 143 void update(PassRefPtr<FontSelector>) const; 97 144 98 void drawText(GraphicsContext*, const TextRun&, const FontStyle&, const FloatPoint&, int from = 0, int to = -1) const; 99 100 int width(const TextRun&, const FontStyle&) const; 145 void drawText(GraphicsContext*, const TextRun&, const FloatPoint&, int from = 0, int to = -1) const; 146 101 147 int width(const TextRun&) const; 102 float floatWidth(const TextRun&, const FontStyle&) const;103 148 float floatWidth(const TextRun&) const; 104 149 105 int offsetForPosition(const TextRun&, const FontStyle&,int position, bool includePartialGlyphs) const;106 FloatRect selectionRectForText(const TextRun&, const FontStyle&, constIntPoint&, int h, int from = 0, int to = -1) const;150 int offsetForPosition(const TextRun&, int position, bool includePartialGlyphs) const; 151 FloatRect selectionRectForText(const TextRun&, const IntPoint&, int h, int from = 0, int to = -1) const; 107 152 108 153 bool isSmallCaps() const { return m_fontDescription.smallCaps(); } … … 151 196 private: 152 197 bool canUseGlyphCache(const TextRun&) const; 153 void drawSimpleText(GraphicsContext*, const TextRun&, const F ontStyle&, const FloatPoint&, int from, int to) const;198 void drawSimpleText(GraphicsContext*, const TextRun&, const FloatPoint&, int from, int to) const; 154 199 void drawGlyphs(GraphicsContext*, const FontData*, const GlyphBuffer&, int from, int to, const FloatPoint&) const; 155 void drawGlyphBuffer(GraphicsContext*, const GlyphBuffer&, const TextRun&, const F ontStyle&, const FloatPoint&) const;156 void drawComplexText(GraphicsContext*, const TextRun&, const F ontStyle&, const FloatPoint&, int from, int to) const;157 float floatWidthForSimpleText(const TextRun&, const FontStyle&,GlyphBuffer*) const;158 float floatWidthForComplexText(const TextRun& , const FontStyle&) const;159 int offsetForPositionForSimpleText(const TextRun&, const FontStyle&,int position, bool includePartialGlyphs) const;160 int offsetForPositionForComplexText(const TextRun&, const FontStyle&,int position, bool includePartialGlyphs) const;161 FloatRect selectionRectForSimpleText(const TextRun&, const FontStyle&, constIntPoint&, int h, int from, int to) const;162 FloatRect selectionRectForComplexText(const TextRun&, const FontStyle&, constIntPoint&, int h, int from, int to) const;200 void drawGlyphBuffer(GraphicsContext*, const GlyphBuffer&, const TextRun&, const FloatPoint&) const; 201 void drawComplexText(GraphicsContext*, const TextRun&, const FloatPoint&, int from, int to) const; 202 float floatWidthForSimpleText(const TextRun&, GlyphBuffer*) const; 203 float floatWidthForComplexText(const TextRun&) const; 204 int offsetForPositionForSimpleText(const TextRun&, int position, bool includePartialGlyphs) const; 205 int offsetForPositionForComplexText(const TextRun&, int position, bool includePartialGlyphs) const; 206 FloatRect selectionRectForSimpleText(const TextRun&, const IntPoint&, int h, int from, int to) const; 207 FloatRect selectionRectForComplexText(const TextRun&, const IntPoint&, int h, int from, int to) const; 163 208 #endif 164 209 friend struct WidthIterator; -
trunk/WebCore/platform/graphics/GraphicsContext.cpp
r28234 r28298 29 29 #include "BidiResolver.h" 30 30 #include "Font.h" 31 #include "FontStyle.h"32 31 33 32 using namespace std; … … 244 243 void GraphicsContext::drawText(const TextRun& run, const IntPoint& point, int from, int to) 245 244 { 246 drawText(run, point, FontStyle(), from, to); 247 } 248 249 void GraphicsContext::drawText(const TextRun& run, const IntPoint& point, const FontStyle& style, int from, int to) 250 { 251 if (paintingDisabled()) 252 return; 253 254 font().drawText(this, run, style, point, from, to); 255 } 256 257 void GraphicsContext::drawBidiText(const TextRun& run, const IntPoint& point, const FontStyle& style) 245 if (paintingDisabled()) 246 return; 247 248 font().drawText(this, run, point, from, to); 249 } 250 251 void GraphicsContext::drawBidiText(const TextRun& run, const IntPoint& point) 258 252 { 259 253 if (paintingDisabled()) … … 261 255 262 256 BidiResolver<TextRunIterator, BidiCharacterRun> bidiResolver; 263 WTF::Unicode::Direction paragraphDirection = style.ltr() ? WTF::Unicode::LeftToRight : WTF::Unicode::RightToLeft;264 265 bidiResolver.setStatus(BidiStatus(paragraphDirection, paragraphDirection, paragraphDirection, new BidiContext( style.ltr() ? 0 : 1, paragraphDirection, style.directionalOverride())));257 WTF::Unicode::Direction paragraphDirection = run.ltr() ? WTF::Unicode::LeftToRight : WTF::Unicode::RightToLeft; 258 259 bidiResolver.setStatus(BidiStatus(paragraphDirection, paragraphDirection, paragraphDirection, new BidiContext(run.ltr() ? 0 : 1, paragraphDirection, run.directionalOverride()))); 266 260 267 261 bidiResolver.createBidiRunsForLine(TextRunIterator(&run, 0), TextRunIterator(&run, run.length())); … … 273 267 BidiCharacterRun* bidiRun = bidiResolver.firstRun(); 274 268 while (bidiRun) { 275 FontStyle subrunStyle(style); 276 subrunStyle.setRTL(bidiRun->level() % 2);277 subrun Style.setDirectionalOverride(bidiRun->dirOverride(false));278 279 TextRun subrun(run.data(bidiRun->start()), bidiRun->stop() - bidiRun->start());280 281 font().drawText(this, subrun, subrunStyle,currPoint);269 270 TextRun subrun = run; 271 subrun.setText(run.data(bidiRun->start()), bidiRun->stop() - bidiRun->start()); 272 subrun.setRTL(bidiRun->level() % 2); 273 subrun.setDirectionalOverride(bidiRun->dirOverride(false)); 274 275 font().drawText(this, subrun, currPoint); 282 276 283 277 bidiRun = bidiRun->next(); 284 278 // FIXME: Have Font::drawText return the width of what it drew so that we don't have to re-measure here. 285 279 if (bidiRun) 286 currPoint.move(font().floatWidth(subrun , subrunStyle), 0.f);280 currPoint.move(font().floatWidth(subrun), 0.f); 287 281 } 288 282 … … 290 284 } 291 285 292 void GraphicsContext::drawHighlightForText(const TextRun& run, const IntPoint& point, int h, const FontStyle& style, constColor& backgroundColor, int from, int to)293 { 294 if (paintingDisabled()) 295 return; 296 297 fillRect(font().selectionRectForText(run, style,point, h, from, to), backgroundColor);286 void GraphicsContext::drawHighlightForText(const TextRun& run, const IntPoint& point, int h, const Color& backgroundColor, int from, int to) 287 { 288 if (paintingDisabled()) 289 return; 290 291 fillRect(font().selectionRectForText(run, point, h, from, to), backgroundColor); 298 292 } 299 293 -
trunk/WebCore/platform/graphics/GraphicsContext.h
r28234 r28298 87 87 class Path; 88 88 class TextRun; 89 class FontStyle;90 89 91 90 // These bits can be ORed together for a total of 8 possible text drawing modes. … … 174 173 175 174 void drawText(const TextRun&, const IntPoint&, int from = 0, int to = -1); 176 void drawText(const TextRun&, const IntPoint&, const FontStyle&, int from = 0, int to = -1); 177 void drawBidiText(const TextRun&, const IntPoint&, const FontStyle&); 178 void drawHighlightForText(const TextRun&, const IntPoint&, int h, const FontStyle&, const Color& backgroundColor, int from = 0, int to = -1); 175 void drawBidiText(const TextRun&, const IntPoint&); 176 void drawHighlightForText(const TextRun&, const IntPoint&, int h, const Color& backgroundColor, int from = 0, int to = -1); 179 177 180 178 FloatRect roundToDevicePixels(const FloatRect&); -
trunk/WebCore/platform/graphics/StringTruncator.cpp
r28234 r28298 34 34 #include "FontPlatformData.h" 35 35 #include "TextBreakIterator.h" 36 #include "FontStyle.h"37 36 #include <wtf/Assertions.h> 38 37 #include <wtf/Vector.h> … … 97 96 { 98 97 TextRun run(characters, length); 99 FontStyle style;100 98 if (disableRoundingHacks) 101 style.disableRoundingHacks();102 return renderer.floatWidth(run , style);99 run.disableRoundingHacks(); 100 return renderer.floatWidth(run); 103 101 } 104 102 -
trunk/WebCore/platform/graphics/gtk/FontGtk.cpp
r28251 r28298 62 62 } 63 63 64 void Font::drawComplexText(GraphicsContext*, const TextRun&, const F ontStyle&, const FloatPoint&, int from, int to) const64 void Font::drawComplexText(GraphicsContext*, const TextRun&, const FloatPoint&, int from, int to) const 65 65 { 66 66 notImplemented(); 67 67 } 68 68 69 float Font::floatWidthForComplexText(const TextRun& , const FontStyle&) const69 float Font::floatWidthForComplexText(const TextRun&) const 70 70 { 71 71 notImplemented(); … … 73 73 } 74 74 75 int Font::offsetForPositionForComplexText(const TextRun&, const FontStyle&,int, bool) const75 int Font::offsetForPositionForComplexText(const TextRun&, int, bool) const 76 76 { 77 77 notImplemented(); … … 79 79 } 80 80 81 FloatRect Font::selectionRectForComplexText(const TextRun&, const FontStyle&, constIntPoint&, int, int, int) const81 FloatRect Font::selectionRectForComplexText(const TextRun&, const IntPoint&, int, int, int) const 82 82 { 83 83 notImplemented(); -
trunk/WebCore/platform/graphics/mac/FontMac.mm
r28251 r28298 35 35 #import "IntRect.h" 36 36 #import "Logging.h" 37 #import "FontStyle.h"38 37 #import "WebCoreSystemInterface.h" 39 38 #import "WebCoreTextRenderer.h" … … 58 57 struct ATSULayoutParameters 59 58 { 60 ATSULayoutParameters(const TextRun& run , const FontStyle& style)59 ATSULayoutParameters(const TextRun& run) 61 60 : m_run(run) 62 , m_style(style)63 61 , m_font(0) 64 62 , m_fonts(0) … … 72 70 73 71 const TextRun& m_run; 74 const FontStyle& m_style;75 72 76 73 const Font* m_font; … … 93 90 charactersWithOverride[run.length() + 1] = popDirectionalFormatting; 94 91 95 return TextRun(charactersWithOverride, run.length() + 2); 92 TextRun result = run; 93 result.setText(charactersWithOverride, run.length() + 2); 94 return result; 96 95 } 97 96 … … 157 156 ATSLayoutRecord *layoutRecords; 158 157 159 if (params->m_ style.applyWordRounding()) {158 if (params->m_run.applyWordRounding()) { 160 159 status = ATSUDirectGetLayoutDataArrayPtrFromLineRef(iLineRef, kATSUDirectDataLayoutRecordATSLayoutRecordCurrent, true, (void **)&layoutRecords, &count); 161 160 if (status != noErr) { … … 177 176 Fixed syntheticBoldOffset = 0; 178 177 ATSGlyphRef spaceGlyph = 0; 179 bool hasExtraSpacing = params->m_font->letterSpacing() || params->m_font->wordSpacing() | params->m_ style.padding();180 float padding = params->m_ style.padding();178 bool hasExtraSpacing = params->m_font->letterSpacing() || params->m_font->wordSpacing() | params->m_run.padding(); 179 float padding = params->m_run.padding(); 181 180 // In the CoreGraphics code path, the rounding hack is applied in logical order. 182 181 // Here it is applied in visual left-to-right order, which may be better. … … 214 213 width +=params->m_font->letterSpacing(); 215 214 if (Font::treatAsSpace(nextCh)) { 216 if (params->m_ style.padding()) {215 if (params->m_run.padding()) { 217 216 if (padding < params->m_padPerSpace) { 218 217 width += padding; … … 237 236 width = ceilf(width); 238 237 lastAdjustedPos = lastAdjustedPos + width; 239 if (Font::isRoundingHackCharacter(nextCh) && (!isLastChar || params->m_ style.applyRunRounding())){240 if (params->m_ style.ltr())238 if (Font::isRoundingHackCharacter(nextCh) && (!isLastChar || params->m_run.applyRunRounding())){ 239 if (params->m_run.ltr()) 241 240 lastAdjustedPos = ceilf(lastAdjustedPos); 242 241 else { … … 353 352 354 353 ATSLineLayoutOptions lineLayoutOptions = kATSLineKeepSpacesOutOfMargin | kATSLineHasNoHangers; 355 Boolean rtl = m_ style.rtl();354 Boolean rtl = m_run.rtl(); 356 355 overrideSpecifier.operationSelector = kATSULayoutOperationPostLayoutAdjustment; 357 356 overrideSpecifier.overrideUPP = overrideLayoutOperation; … … 360 359 ATSUAttributeValuePtr values[] = { &cgContext, &lineLayoutOptions, &rtl, &overrideSpecifier }; 361 360 362 status = ATSUSetLayoutControls(layout, (m_ style.applyWordRounding() ? 4 : 3), tags, sizes, values);361 status = ATSUSetLayoutControls(layout, (m_run.applyWordRounding() ? 4 : 3), tags, sizes, values); 363 362 if (status != noErr) 364 363 LOG_ERROR("ATSUSetLayoutControls failed(%d)", status); … … 417 416 shapeArabic(m_run.characters(), m_charBuffer, runLength, i); 418 417 } 419 if (m_ style.rtl() && !r->m_ATSUMirrors) {418 if (m_run.rtl() && !r->m_ATSUMirrors) { 420 419 UChar mirroredChar = u_charMirror(m_run[i]); 421 420 if (mirroredChar != m_run[i]) { … … 456 455 substituteOffset += substituteLength; 457 456 } 458 if (m_ style.padding()) {457 if (m_run.padding()) { 459 458 float numSpaces = 0; 460 459 unsigned k; … … 466 465 m_padPerSpace = 0; 467 466 else 468 m_padPerSpace = ceilf(m_ style.padding() / numSpaces);467 m_padPerSpace = ceilf(m_run.padding() / numSpaces); 469 468 } else 470 469 m_padPerSpace = 0; … … 478 477 } 479 478 480 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FontStyle& style, constIntPoint& point, int h, int from, int to) const479 FloatRect Font::selectionRectForComplexText(const TextRun& run, const IntPoint& point, int h, int from, int to) const 481 480 { 482 TextRun adjustedRun = style.directionalOverride() ? addDirectionalOverride(run, style.rtl()) : run;483 if ( style.directionalOverride()) {481 TextRun adjustedRun = run.directionalOverride() ? addDirectionalOverride(run, run.rtl()) : run; 482 if (run.directionalOverride()) { 484 483 from++; 485 484 to++; 486 485 } 487 486 488 ATSULayoutParameters params(adjustedRun , style);487 ATSULayoutParameters params(adjustedRun); 489 488 params.initialize(this); 490 489 … … 504 503 FloatRect rect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h); 505 504 506 if ( style.directionalOverride())505 if (run.directionalOverride()) 507 506 delete []adjustedRun.characters(); 508 507 … … 510 509 } 511 510 512 void Font::drawComplexText(GraphicsContext* graphicsContext, const TextRun& run, const F ontStyle& style, const FloatPoint& point, int from, int to) const511 void Font::drawComplexText(GraphicsContext* graphicsContext, const TextRun& run, const FloatPoint& point, int from, int to) const 513 512 { 514 513 OSStatus status; 515 514 516 515 int drawPortionLength = to - from; 517 TextRun adjustedRun = style.directionalOverride() ? addDirectionalOverride(run, style.rtl()) : run;518 if ( style.directionalOverride())516 TextRun adjustedRun = run.directionalOverride() ? addDirectionalOverride(run, run.rtl()) : run; 517 if (run.directionalOverride()) 519 518 from++; 520 519 521 ATSULayoutParameters params(TextRun(adjustedRun.characters(), adjustedRun.length()) , style);520 ATSULayoutParameters params(TextRun(adjustedRun.characters(), adjustedRun.length())); 522 521 params.initialize(this, graphicsContext); 523 522 … … 541 540 disposeATSULayoutParameters(¶ms); 542 541 543 if ( style.directionalOverride())542 if (run.directionalOverride()) 544 543 delete []adjustedRun.characters(); 545 544 } 546 545 547 float Font::floatWidthForComplexText(const TextRun& run , const FontStyle& style) const546 float Font::floatWidthForComplexText(const TextRun& run) const 548 547 { 549 548 if (run.length() == 0) 550 549 return 0; 551 550 552 ATSULayoutParameters params(run , style);551 ATSULayoutParameters params(run); 553 552 params.initialize(this); 554 553 … … 569 568 } 570 569 571 int Font::offsetForPositionForComplexText(const TextRun& run, const FontStyle& style,int x, bool includePartialGlyphs) const572 { 573 TextRun adjustedRun = style.directionalOverride() ? addDirectionalOverride(run, style.rtl()) : run;574 575 ATSULayoutParameters params(adjustedRun , style);570 int Font::offsetForPositionForComplexText(const TextRun& run, int x, bool includePartialGlyphs) const 571 { 572 TextRun adjustedRun = run.directionalOverride() ? addDirectionalOverride(run, run.rtl()) : run; 573 574 ATSULayoutParameters params(adjustedRun); 576 575 params.initialize(this); 577 576 … … 586 585 if (status == noErr) { 587 586 offset = (unsigned)primaryOffset; 588 if ( style.directionalOverride() && offset > 0)587 if (run.directionalOverride() && offset > 0) 589 588 offset--; 590 589 } else … … 594 593 disposeATSULayoutParameters(¶ms); 595 594 596 if ( style.directionalOverride())595 if (run.directionalOverride()) 597 596 delete []adjustedRun.characters(); 598 597 -
trunk/WebCore/platform/graphics/qt/FontQt.cpp
r28251 r28298 24 24 #include "FontDescription.h" 25 25 #include "FontSelector.h" 26 #include "FontStyle.h"27 26 28 27 #include "GraphicsContext.h" … … 158 157 } 159 158 160 static int generateComponents(Vector<TextRunComponent, 1024>* components, const Font &font, const TextRun &run , const FontStyle &style)159 static int generateComponents(Vector<TextRunComponent, 1024>* components, const Font &font, const TextRun &run) 161 160 { 162 161 // qDebug() << "generateComponents" << QString((const QChar *)run.characters(), run.length()); … … 164 163 int wordSpacing = font.wordSpacing(); 165 164 bool smallCaps = font.fontDescription().smallCaps(); 166 int padding = style.padding();165 int padding = run.padding(); 167 166 int numSpaces = 0; 168 167 if (padding) { … … 184 183 --numSpaces; 185 184 } 186 components->append(TextRunComponent(1, style.rtl(), &font.font(), offset));185 components->append(TextRunComponent(1, run.rtl(), &font.font(), offset)); 187 186 offset += add + letterSpacing + components->last().width; 188 187 start = 1; … … 202 201 if (i - start > 0) { 203 202 components->append(TextRunComponent(run.characters() + start, i - start, 204 style.rtl(),203 run.rtl(), 205 204 f, offset, f == &font.scFont())); 206 205 offset += components->last().width + letterSpacing; … … 212 211 --numSpaces; 213 212 } 214 components->append(TextRunComponent(1, style.rtl(), &font.font(), offset));213 components->append(TextRunComponent(1, run.rtl(), &font.font(), offset)); 215 214 offset += wordSpacing + add + components->last().width + letterSpacing; 216 215 start = i + 1; … … 229 228 if (i - start > 0) { 230 229 components->append(TextRunComponent(run.characters() + start, i - start, 231 style.rtl(),230 run.rtl(), 232 231 f, offset, f == &font.scFont())); 233 232 offset += components->last().width + letterSpacing; … … 240 239 if (run.length() - start > 0) { 241 240 components->append(TextRunComponent(run.characters() + start, run.length() - start, 242 style.rtl(),241 run.rtl(), 243 242 f, offset, f == &font.scFont())); 244 243 offset += components->last().width; … … 252 251 if (i - start > 0) { 253 252 components->append(TextRunComponent(run.characters() + start, i - start, 254 style.rtl(),253 run.rtl(), 255 254 f, offset)); 256 255 offset += components->last().width; … … 262 261 --numSpaces; 263 262 } 264 components->append(TextRunComponent(1, style.rtl(), &font.font(), offset));263 components->append(TextRunComponent(1, run.rtl(), &font.font(), offset)); 265 264 offset += add + components->last().width; 266 265 if (i) … … 271 270 if (run.length() - start > 0) { 272 271 components->append(TextRunComponent(run.characters() + start, run.length() - start, 273 style.rtl(),272 run.rtl(), 274 273 f, offset)); 275 274 offset += components->last().width; … … 279 278 } 280 279 281 void Font::drawText(GraphicsContext* ctx, const TextRun& run, const F ontStyle& style, const FloatPoint& point, int from, int to) const280 void Font::drawText(GraphicsContext* ctx, const TextRun& run, const FloatPoint& point, int from, int to) const 282 281 { 283 282 if (to < 0) … … 288 287 289 288 Vector<TextRunComponent, 1024> components; 290 int w = generateComponents(&components, *this, run , style);289 int w = generateComponents(&components, *this, run); 291 290 292 291 if (from > 0 || to < run.length()) { 293 FloatRect clip = selectionRectForText(run, style,292 FloatRect clip = selectionRectForText(run, 294 293 IntPoint(qRound(point.x()), qRound(point.y())), 295 294 QFontMetrics(m_font).height(), from, to); … … 299 298 } 300 299 301 if ( style.rtl()) {300 if (run.rtl()) { 302 301 for (int i = 0; i < components.size(); ++i) { 303 302 if (!components.at(i).isSpace()) { … … 320 319 } 321 320 322 int Font::width(const TextRun& run , const FontStyle& style) const321 int Font::width(const TextRun& run) const 323 322 { 324 323 Vector<TextRunComponent, 1024> components; 325 int w = generateComponents(&components, *this, run , style);324 int w = generateComponents(&components, *this, run); 326 325 327 326 // qDebug() << " width=" << w; … … 329 328 } 330 329 331 int Font::width(const TextRun& run) const332 {333 return width(run, FontStyle());334 }335 336 float Font::floatWidth(const TextRun& run, const FontStyle& style) const337 {338 return width(run, style);339 }340 341 330 float Font::floatWidth(const TextRun& run) const 342 331 { … … 344 333 } 345 334 346 int Font::offsetForPosition(const TextRun& run, const FontStyle& style,int position, bool includePartialGlyphs) const335 int Font::offsetForPosition(const TextRun& run, int position, bool includePartialGlyphs) const 347 336 { 348 337 Vector<TextRunComponent, 1024> components; 349 int w = generateComponents(&components, *this, run , style);338 int w = generateComponents(&components, *this, run); 350 339 351 340 int offset = 0; 352 if ( style.rtl()) {341 if (run.rtl()) { 353 342 for (int i = 0; i < components.size(); ++i) { 354 343 int xe = w - components.at(i).offset; … … 402 391 } 403 392 404 static float cursorToX(const Vector<TextRunComponent, 1024>& components, int width, 405 const FontStyle& style, int cursor) 393 static float cursorToX(const Vector<TextRunComponent, 1024>& components, int width, bool rtl, int cursor) 406 394 { 407 395 int start = 0; … … 412 400 } 413 401 int xs = components.at(i).offset; 414 if ( style.rtl())402 if (rtl) 415 403 xs = width - xs - components.at(i).width; 416 404 QTextLayout layout(components.at(i).string, *components.at(i).font); … … 428 416 } 429 417 430 FloatRect Font::selectionRectForText(const TextRun& run, const FontStyle& style, constIntPoint& pt,418 FloatRect Font::selectionRectForText(const TextRun& run, const IntPoint& pt, 431 419 int h, int from, int to) const 432 420 { 433 421 Vector<TextRunComponent, 1024> components; 434 int w = generateComponents(&components, *this, run , style);422 int w = generateComponents(&components, *this, run); 435 423 436 424 if (from == 0 && to == run.length()) 437 425 return FloatRect(pt.x(), pt.y(), w, h); 438 426 439 float x1 = cursorToX(components, w, style, from);440 float x2 = cursorToX(components, w, style, to);427 float x1 = cursorToX(components, w, run.rtl(), from); 428 float x2 = cursorToX(components, w, run.rtl(), to); 441 429 if (x2 < x1) 442 430 qSwap(x1, x2); -
trunk/WebCore/platform/graphics/win/FontWin.cpp
r28251 r28298 33 33 #include "IntRect.h" 34 34 #include "NotImplemented.h" 35 #include "FontStyle.h"36 35 #include "UniscribeController.h" 37 36 #include <ApplicationServices/ApplicationServices.h> … … 96 95 } 97 96 98 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FontStyle& style, constIntPoint& point, int h,97 FloatRect Font::selectionRectForComplexText(const TextRun& run, const IntPoint& point, int h, 99 98 int from, int to) const 100 99 { 101 UniscribeController it(this, run , style);100 UniscribeController it(this, run); 102 101 it.advance(from); 103 102 float beforeWidth = it.runWidthSoFar(); … … 106 105 107 106 // Using roundf() rather than ceilf() for the right edge as a compromise to ensure correct caret positioning 108 if ( style.rtl()) {107 if (run.rtl()) { 109 108 it.advance(run.length()); 110 109 float totalWidth = it.runWidthSoFar(); … … 115 114 } 116 115 117 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const F ontStyle& style, const FloatPoint& point,116 void Font::drawComplexText(GraphicsContext* context, const TextRun& run, const FloatPoint& point, 118 117 int from, int to) const 119 118 { … … 122 121 123 122 float startX = point.x(); 124 UniscribeController controller(this, run , style);123 UniscribeController controller(this, run); 125 124 controller.advance(from); 126 125 float beforeWidth = controller.runWidthSoFar(); … … 133 132 float afterWidth = controller.runWidthSoFar(); 134 133 135 if ( style.rtl()) {134 if (run.rtl()) { 136 135 controller.advance(run.length()); 137 136 startX += controller.runWidthSoFar() - afterWidth; … … 141 140 // Draw the glyph buffer now at the starting point returned in startX. 142 141 FloatPoint startPoint(startX, point.y()); 143 drawGlyphBuffer(context, glyphBuffer, run, st yle, startPoint);142 drawGlyphBuffer(context, glyphBuffer, run, startPoint); 144 143 } 145 144 146 float Font::floatWidthForComplexText(const TextRun& run , const FontStyle& style) const145 float Font::floatWidthForComplexText(const TextRun& run) const 147 146 { 148 UniscribeController controller(this, run , style);147 UniscribeController controller(this, run); 149 148 controller.advance(run.length()); 150 149 return controller.runWidthSoFar(); 151 150 } 152 151 153 int Font::offsetForPositionForComplexText(const TextRun& run, const FontStyle& style,int x, bool includePartialGlyphs) const152 int Font::offsetForPositionForComplexText(const TextRun& run, int x, bool includePartialGlyphs) const 154 153 { 155 UniscribeController controller(this, run , style);154 UniscribeController controller(this, run); 156 155 return controller.offsetForPosition(x, includePartialGlyphs); 157 156 } -
trunk/WebCore/platform/graphics/wx/FontWx.cpp
r28251 r28298 75 75 } 76 76 77 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FontStyle& style, constIntPoint& point, int h, int from, int to) const77 FloatRect Font::selectionRectForComplexText(const TextRun& run, const IntPoint& point, int h, int from, int to) const 78 78 { 79 79 notImplemented(); … … 81 81 } 82 82 83 void Font::drawComplexText(GraphicsContext* graphicsContext, const TextRun& run, const F ontStyle& style, const FloatPoint& point, int from, int to) const83 void Font::drawComplexText(GraphicsContext* graphicsContext, const TextRun& run, const FloatPoint& point, int from, int to) const 84 84 { 85 85 notImplemented(); 86 86 } 87 87 88 float Font::floatWidthForComplexText(const TextRun& run , const FontStyle& style) const88 float Font::floatWidthForComplexText(const TextRun& run) const 89 89 { 90 90 notImplemented(); … … 92 92 } 93 93 94 int Font::offsetForPositionForComplexText(const TextRun& run, const FontStyle& style,int x, bool includePartialGlyphs) const94 int Font::offsetForPositionForComplexText(const TextRun& run, int x, bool includePartialGlyphs) const 95 95 { 96 96 notImplemented(); -
trunk/WebCore/platform/mac/WebCoreTextRenderer.mm
r28234 r28298 31 31 #import "GraphicsContext.h" 32 32 #import "IntPoint.h" 33 #import "FontStyle.h"34 33 #import "WebFontCache.h" 35 34 … … 49 48 Font renderer(f, ![[NSGraphicsContext currentContext] isDrawingToScreen]); 50 49 TextRun run(buffer, length); 51 FontStyle style; 52 style.disableRoundingHacks(); 50 run.disableRoundingHacks(); 53 51 CGFloat red, green, blue, alpha; 54 52 [[textColor colorUsingColorSpaceName:NSDeviceRGBColorSpace] getRed:&red green:&green blue:&blue alpha:&alpha]; 55 53 graphicsContext.setFillColor(makeRGBA((int)(red * 255), (int)(green * 255), (int)(blue * 255), (int)(alpha * 255))); 56 renderer.drawText(&graphicsContext, run, style,FloatPoint(point.x, (flipped ? point.y : (-1.0f * point.y))));54 renderer.drawText(&graphicsContext, run, FloatPoint(point.x, (flipped ? point.y : (-1.0f * point.y)))); 57 55 if (!flipped) 58 56 CGContextScaleCTM(cgContext, 1.0f, -1.0f); … … 64 62 Font renderer(f, ![[NSGraphicsContext currentContext] isDrawingToScreen]); 65 63 TextRun run(buffer, length); 66 FontStyle style; 67 style.disableRoundingHacks(); 68 return renderer.floatWidth(run, style); 64 run.disableRoundingHacks(); 65 return renderer.floatWidth(run); 69 66 } 70 67 -
trunk/WebCore/platform/win/PopupMenuWin.cpp
r28240 r28298 36 36 #include "RenderTheme.h" 37 37 #include "RenderView.h" 38 #include "FontStyle.h"39 38 #include <tchar.h> 40 39 #include <windows.h> … … 511 510 unsigned length = itemText.length(); 512 511 const UChar* string = itemText.characters(); 513 FontStyle fontStyle(0, 0, 0, itemText.defaultWritingDirection() == WTF::Unicode::RightToLeft); 514 TextRun textRun(string, length); 512 TextRun textRun(string, length, false, 0, 0, itemText.defaultWritingDirection() == WTF::Unicode::RightToLeft); 515 513 516 514 context.setFillColor(optionTextColor); … … 529 527 int textX = max(0, client()->clientPaddingLeft() - client()->clientInsetLeft()); 530 528 int textY = itemRect.y() + itemFont.ascent() + (itemRect.height() - itemFont.height()) / 2; 531 context.drawBidiText(textRun, IntPoint(textX, textY) , fontStyle);529 context.drawBidiText(textRun, IntPoint(textX, textY)); 532 530 } 533 531 } -
trunk/WebCore/platform/win/UniscribeController.cpp
r28234 r28298 31 31 #include "Font.h" 32 32 #include "FontData.h" 33 #include "FontStyle.h"34 33 #include <wtf/MathExtras.h> 35 34 … … 40 39 // take the GlyphBuffer as an arg so that we don't have to populate the glyph buffer when 41 40 // measuring. 42 UniscribeController::UniscribeController(const Font* font, const TextRun& run , const FontStyle& style)41 UniscribeController::UniscribeController(const Font* font, const TextRun& run) 43 42 : m_font(*font) 44 43 , m_run(run) 45 , m_style(style)46 44 , m_end(run.length()) 47 45 , m_currentCharacter(0) … … 52 50 , m_offsetPosition(0) 53 51 { 54 m_padding = m_ style.padding();52 m_padding = m_run.padding(); 55 53 if (!m_padding) 56 54 m_padPerSpace = 0; … … 64 62 m_padPerSpace = 0; 65 63 else 66 m_padPerSpace = ceilf(m_ style.padding() / numSpaces);64 m_padPerSpace = ceilf(m_run.padding() / numSpaces); 67 65 } 68 66 … … 80 78 if (m_computingOffsetPosition) { 81 79 // The point is to the left or to the right of the entire run. 82 if (m_offsetX >= m_runWidthSoFar && m_ style.ltr() || m_offsetX < 0 && m_style.rtl())80 if (m_offsetX >= m_runWidthSoFar && m_run.ltr() || m_offsetX < 0 && m_run.rtl()) 83 81 m_offsetPosition = m_end; 84 82 } … … 112 110 memcpy(smallCapsBuffer.data(), cp, length * sizeof(UChar)); 113 111 bool isSmallCaps = false; 114 unsigned indexOfCaseShift = m_ style.rtl() ? length - 1 : 0;115 const UChar* curr = m_ style.rtl() ? cp + length - 1: cp;116 const UChar* end = m_ style.rtl() ? cp - 1: cp + length;112 unsigned indexOfCaseShift = m_run.rtl() ? length - 1 : 0; 113 const UChar* curr = m_run.rtl() ? cp + length - 1: cp; 114 const UChar* end = m_run.rtl() ? cp - 1: cp + length; 117 115 while (curr != end) { 118 116 int index = curr - cp; 119 117 UChar c = smallCapsBuffer[index]; 120 118 UChar newC; 121 curr = m_ style.rtl() ? curr - 1 : curr + 1;119 curr = m_run.rtl() ? curr - 1 : curr + 1; 122 120 if (U_GET_GC_MASK(c) & U_GC_M_MASK) 123 121 continue; … … 126 124 if (!isSmallCaps) { 127 125 isSmallCaps = true; 128 int itemStart = m_ style.rtl() ? index : indexOfCaseShift;129 int itemLength = m_ style.rtl() ? indexOfCaseShift - index : index - indexOfCaseShift;126 int itemStart = m_run.rtl() ? index : indexOfCaseShift; 127 int itemLength = m_run.rtl() ? indexOfCaseShift - index : index - indexOfCaseShift; 130 128 itemizeShapeAndPlace(smallCapsBuffer.data() + itemStart, itemLength, false, glyphBuffer); 131 129 indexOfCaseShift = index; … … 133 131 } else if (isSmallCaps) { 134 132 isSmallCaps = false; 135 int itemStart = m_ style.rtl() ? index : indexOfCaseShift;136 int itemLength = m_ style.rtl() ? indexOfCaseShift - index : index - indexOfCaseShift;133 int itemStart = m_run.rtl() ? index : indexOfCaseShift; 134 int itemLength = m_run.rtl() ? indexOfCaseShift - index : index - indexOfCaseShift; 137 135 itemizeShapeAndPlace(smallCapsBuffer.data() + itemStart, itemLength, true, glyphBuffer); 138 136 indexOfCaseShift = index; … … 140 138 } 141 139 142 int itemLength = m_ style.rtl() ? indexOfCaseShift + 1 : length - indexOfCaseShift;140 int itemLength = m_run.rtl() ? indexOfCaseShift + 1 : length - indexOfCaseShift; 143 141 if (itemLength) { 144 int itemStart = m_ style.rtl() ? 0 : indexOfCaseShift;142 int itemStart = m_run.rtl() ? 0 : indexOfCaseShift; 145 143 itemizeShapeAndPlace(smallCapsBuffer.data() + itemStart, itemLength, isSmallCaps, glyphBuffer); 146 144 } … … 161 159 m_items.resize(numItems + 1); 162 160 163 if (m_ style.rtl()) {161 if (m_run.rtl()) { 164 162 for (int i = m_items.size() - 2; i >= 0; i--) { 165 163 if (!shapeAndPlaceItem(cp, i, smallCaps, glyphBuffer)) … … 182 180 183 181 // Set up the correct direction for the run. 184 m_state.uBidiLevel = m_ style.rtl();182 m_state.uBidiLevel = m_run.rtl(); 185 183 186 184 // Lock the correct directional override. 187 m_state.fOverrideDirection = m_ style.directionalOverride();185 m_state.fOverrideDirection = m_run.directionalOverride(); 188 186 } 189 187 … … 321 319 // match the width of the space glyph have the same width as the space glyph. 322 320 if (roundedAdvance == roundedSpaceWidth && (fontData->m_treatAsFixedPitch || glyph == fontData->m_spaceGlyph) && 323 m_ style.applyWordRounding())321 m_run.applyWordRounding()) 324 322 advance = fontData->m_adjustedSpaceWidth; 325 323 … … 358 356 // to be integer width, so the following words will start on an integer boundary. 359 357 int roundingHackIndex = roundingHackCharacters[k]; 360 if (m_ style.applyWordRounding() && roundingHackIndex != -1)358 if (m_run.applyWordRounding() && roundingHackIndex != -1) 361 359 advance = ceilf(advance); 362 360 … … 364 362 // width so that the total run width will be on an integer boundary. 365 363 int position = m_currentCharacter + len; 366 bool lastGlyph = (k == glyphs.size() - 1) && (m_ style.rtl() ? i == 0 : i == m_items.size() - 2) && (position >= m_end);367 if ((m_ style.applyWordRounding() && roundingHackWordBoundaries[k] != -1) ||368 (m_ style.applyRunRounding() && lastGlyph)) {364 bool lastGlyph = (k == glyphs.size() - 1) && (m_run.rtl() ? i == 0 : i == m_items.size() - 2) && (position >= m_end); 365 if ((m_run.applyWordRounding() && roundingHackWordBoundaries[k] != -1) || 366 (m_run.applyRunRounding() && lastGlyph)) { 369 367 float totalWidth = m_runWidthSoFar + advance; 370 368 advance += ceilf(totalWidth) - totalWidth; … … 393 391 if (trailing && m_includePartialGlyphs && m_offsetPosition < len - 1) { 394 392 m_offsetPosition += m_currentCharacter + m_items[i].iCharPos; 395 m_offsetX += m_ style.rtl() ? -trailing : trailing;393 m_offsetX += m_run.rtl() ? -trailing : trailing; 396 394 } else { 397 395 m_computingOffsetPosition = false; -
trunk/WebCore/platform/win/UniscribeController.h
r28234 r28298 39 39 class UniscribeController { 40 40 public: 41 UniscribeController(const Font*, const TextRun& , const FontStyle&);41 UniscribeController(const Font*, const TextRun&); 42 42 43 43 // Advance and measure/place up to the specified character. … … 61 61 const Font& m_font; 62 62 const TextRun& m_run; 63 const FontStyle& m_style;64 63 65 64 SCRIPT_CONTROL m_control; -
trunk/WebCore/platform/win/WebCoreTextRenderer.cpp
r28234 r28298 30 30 #include "GraphicsContext.h" 31 31 #include "StringTruncator.h" 32 #include "FontStyle.h"33 32 #include <wtf/unicode/Unicode.h> 34 33 … … 48 47 { 49 48 TextRun run(text.characters(), text.length()); 50 FontStyle style;51 49 52 50 context.setFillColor(color); 53 51 if (isOneLeftToRightRun(run)) 54 font.drawText(&context, run, style,point);52 font.drawText(&context, run, point); 55 53 else { 56 54 context.setFont(font); 57 context.drawBidiText(run, point , style);55 context.drawBidiText(run, point); 58 56 } 59 57 … … 64 62 if (underlinedIndex > 0) { 65 63 TextRun beforeRun(text.characters(), underlinedIndex); 66 beforeWidth = font.width(beforeRun , style);64 beforeWidth = font.width(beforeRun); 67 65 } else 68 66 beforeWidth = 0; 69 67 70 68 TextRun underlinedRun(text.characters() + underlinedIndex, 1); 71 int underlinedWidth = font.width(underlinedRun , style);69 int underlinedWidth = font.width(underlinedRun); 72 70 73 71 IntPoint underlinePoint(point); -
trunk/WebCore/rendering/EllipsisBox.cpp
r28240 r28298 26 26 #include "GraphicsContext.h" 27 27 #include "HitTestResult.h" 28 #include "FontStyle.h"29 28 30 29 namespace WebCore { … … 48 47 49 48 const String& str = m_str; 50 FontStyle fontStyle(0, 0, 0, false, style->visuallyOrdered()); 51 context->drawText(TextRun(str.characters(), str.length()), IntPoint(m_x + tx, m_y + ty + m_baseline), fontStyle); 49 context->drawText(TextRun(str.characters(), str.length(), false, 0, 0, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + m_baseline)); 52 50 53 51 if (setShadow) -
trunk/WebCore/rendering/InlineTextBox.cpp
r28234 r28298 33 33 #include "RenderTheme.h" 34 34 #include "Text.h" 35 #include "FontStyle.h"36 35 #include "break_lines.h" 37 36 #include <wtf/AlwaysInline.h> … … 97 96 const Font& f = textObj->style(m_firstLine)->font(); 98 97 99 IntRect r = enclosingIntRect(f.selectionRectForText(TextRun(textObj->text()->characters() + m_start, m_len), 100 FontStyle(textObj->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride), 98 IntRect r = enclosingIntRect(f.selectionRectForText(TextRun(textObj->text()->characters() + m_start, m_len, textObj->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride), 101 99 IntPoint(tx + m_x, ty + selTop), selHeight, sPos, ePos)); 102 100 if (r.x() > tx + m_x + m_width) … … 375 373 StringImpl* textStr = textObject()->text(); 376 374 377 FontStyle fontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || styleToUse->visuallyOrdered());378 379 375 if (!paintSelectedTextOnly && !paintSelectedTextSeparately) { 380 376 // paint all the text … … 384 380 if (m_truncation != cNoTruncation) 385 381 endPoint = m_truncation; 386 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, endPoint), IntPoint(m_x + tx, m_y + ty + m_baseline), fontStyle); 382 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, endPoint, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || styleToUse->visuallyOrdered()), 383 IntPoint(m_x + tx, m_y + ty + m_baseline)); 387 384 } else { 388 385 int sPos, ePos; … … 391 388 // paint only the text that is not selected 392 389 if (sPos >= ePos) 393 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len), IntPoint(m_x + tx, m_y + ty + m_baseline), fontStyle); 390 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || styleToUse->visuallyOrdered()), 391 IntPoint(m_x + tx, m_y + ty + m_baseline)); 394 392 else { 395 393 if (sPos - 1 >= 0) 396 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len), IntPoint(m_x + tx, m_y + ty + m_baseline), fontStyle, 0, sPos); 394 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || styleToUse->visuallyOrdered()), 395 IntPoint(m_x + tx, m_y + ty + m_baseline), 0, sPos); 397 396 if (ePos < m_start + m_len) 398 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len), IntPoint(m_x + tx, m_y + ty + m_baseline), fontStyle, ePos); 397 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || styleToUse->visuallyOrdered()), 398 IntPoint(m_x + tx, m_y + ty + m_baseline), ePos); 399 399 } 400 400 } … … 410 410 paintInfo.context->setShadow(IntSize(selectionTextShadow->x, selectionTextShadow->y), 411 411 selectionTextShadow->blur, selectionTextShadow->color); 412 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len), IntPoint(m_x + tx, m_y + ty + m_baseline), fontStyle, sPos, ePos); 412 paintInfo.context->drawText(TextRun(textStr->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || styleToUse->visuallyOrdered()), 413 IntPoint(m_x + tx, m_y + ty + m_baseline), sPos, ePos); 413 414 if (selectionTextShadow) 414 415 paintInfo.context->clearShadow(); … … 502 503 int h = selectionHeight(); 503 504 p->clip(IntRect(m_x + tx, y + ty, m_width, h)); 504 p->drawHighlightForText(TextRun(textObject()->text()->characters() + m_start, m_len), IntPoint(m_x + tx, y + ty), h, 505 FontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()), c, 506 sPos, ePos); 505 p->drawHighlightForText(TextRun(textObject()->text()->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()), 506 IntPoint(m_x + tx, y + ty), h, c, sPos, ePos); 507 507 p->restore(); 508 508 } … … 525 525 int y = selectionTop(); 526 526 int h = selectionHeight(); 527 p->drawHighlightForText(TextRun(textObject()->text()->characters() + m_start, m_len), 528 IntPoint(m_x + tx, y + ty), h, 529 FontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()), c, sPos, ePos); 527 p->drawHighlightForText(TextRun(textObject()->text()->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()), 528 IntPoint(m_x + tx, y + ty), h, c, sPos, ePos); 530 529 p->restore(); 531 530 } … … 614 613 int y = selectionTop(); 615 614 IntPoint startPoint = IntPoint(m_x + tx, y + ty); 616 FontStyle fontStyle = FontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered());617 615 int startPosition = max(marker.startOffset - m_start, (unsigned)0); 618 616 int endPosition = min(marker.endOffset - m_start, (unsigned)m_len); 619 TextRun run = TextRun(textObject()->text()->characters() + m_start, m_len);620 IntRect markerRect = enclosingIntRect(f->selectionRectForText(run, fontStyle,startPoint, selectionHeight(), startPosition, endPosition));617 TextRun run(textObject()->text()->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()); 618 IntRect markerRect = enclosingIntRect(f->selectionRectForText(run, startPoint, selectionHeight(), startPosition, endPosition)); 621 619 object()->document()->setRenderedRectForMarker(object()->node(), marker, markerRect); 622 620 } … … 650 648 int sPos = max(marker.startOffset - m_start, (unsigned)0); 651 649 int ePos = min(marker.endOffset - m_start, (unsigned)m_len); 652 TextRun run = TextRun(textObject()->text()->characters() + m_start, m_len); 653 FontStyle renderStyle = FontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()); 650 TextRun run(textObject()->text()->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()); 654 651 IntPoint startPoint = IntPoint(m_x + tx, y + ty); 655 652 656 653 // Always compute and store the rect associated with this marker 657 IntRect markerRect = enclosingIntRect(f->selectionRectForText(run, renderStyle,startPoint, h, sPos, ePos));654 IntRect markerRect = enclosingIntRect(f->selectionRectForText(run, startPoint, h, sPos, ePos)); 658 655 object()->document()->setRenderedRectForMarker(object()->node(), marker, markerRect); 659 656 … … 664 661 updateGraphicsContext(pt, color, color, 0); // Don't draw text at all! 665 662 pt->clip(IntRect(tx + m_x, ty + y, m_width, h)); 666 pt->drawHighlightForText(run, startPoint, h, renderStyle,color, sPos, ePos);663 pt->drawHighlightForText(run, startPoint, h, color, sPos, ePos); 667 664 pt->restore(); 668 665 } … … 802 799 RenderStyle *style = text->style(m_firstLine); 803 800 const Font* f = &style->font(); 804 return f->offsetForPosition(TextRun(textObject()->text()->characters() + m_start, m_len), 805 FontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()), 801 return f->offsetForPosition(TextRun(textObject()->text()->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride || style->visuallyOrdered()), 806 802 _x - m_x, includePartialGlyphs); 807 803 } … … 817 813 int to = m_reversed ? m_len : offset - m_start; 818 814 // FIXME: Do we need to add rightBearing here? 819 return enclosingIntRect(f.selectionRectForText(TextRun(text->text()->characters() + m_start, m_len), 820 FontStyle(textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride), 815 return enclosingIntRect(f.selectionRectForText(TextRun(text->text()->characters() + m_start, m_len, textObject()->allowTabs(), textPos(), m_toAdd, m_reversed, m_dirOverride), 821 816 IntPoint(m_x, 0), 0, from, to)).right(); 822 817 } -
trunk/WebCore/rendering/RenderFileUploadControl.cpp
r28240 r28298 32 32 #include "RenderTheme.h" 33 33 #include "RenderView.h" 34 #include "FontStyle.h"35 34 #include <math.h> 36 35 … … 177 176 unsigned length = displayedFilename.length(); 178 177 const UChar* string = displayedFilename.characters(); 179 FontStyle fontStyle(0, 0, 0, style()->direction() == RTL, style()->unicodeBidi() == Override); 180 TextRun textRun(string, length); 178 TextRun textRun(string, length, false, 0, 0, style()->direction() == RTL, style()->unicodeBidi() == Override); 181 179 182 180 // Determine where the filename should be placed … … 199 197 200 198 // Draw the filename 201 paintInfo.context->drawBidiText(textRun, IntPoint(textX, textY) , fontStyle);199 paintInfo.context->drawBidiText(textRun, IntPoint(textX, textY)); 202 200 203 201 if (m_fileChooser->icon()) { … … 236 234 // (using "0" as the nominal character). 237 235 const UChar ch = '0'; 238 float charWidth = style()->font().floatWidth(TextRun(&ch, 1 ), FontStyle(0, 0, 0, false, false, false));236 float charWidth = style()->font().floatWidth(TextRun(&ch, 1, false, 0, 0, false, false, false)); 239 237 m_maxPrefWidth = (int)ceilf(charWidth * defaultWidthNumChars); 240 238 } -
trunk/WebCore/rendering/RenderImage.cpp
r28234 r28298 39 39 #include "Page.h" 40 40 #include "RenderView.h" 41 #include "FontStyle.h"42 41 43 42 using namespace std; -
trunk/WebCore/rendering/RenderListBox.cpp
r28240 r28298 47 47 #include "RenderTheme.h" 48 48 #include "RenderView.h" 49 #include "FontStyle.h"50 49 #include <math.h> 51 50 … … 102 101 103 102 float width = 0; 104 FontStyle fontStyle(0, 0, 0, false, false, false, false);105 103 for (int i = 0; i < size; ++i) { 106 104 HTMLElement* element = listItems[i]; … … 118 116 119 117 if (!text.isEmpty()) { 120 float textWidth = itemFont.floatWidth(TextRun(text.impl() ), fontStyle);118 float textWidth = itemFont.floatWidth(TextRun(text.impl(), 0, 0, 0, false, false, false, false)); 121 119 width = max(width, textWidth); 122 120 } … … 339 337 unsigned length = itemText.length(); 340 338 const UChar* string = itemText.characters(); 341 FontStyle fontStyle(0, 0, 0, itemStyle->direction() == RTL, itemStyle->unicodeBidi() == Override, false, false); 342 TextRun textRun(string, length); 339 TextRun textRun(string, length, 0, 0, 0, itemStyle->direction() == RTL, itemStyle->unicodeBidi() == Override, false, false); 343 340 344 341 // Draw the item text 345 342 if (itemStyle->visibility() != HIDDEN) 346 paintInfo.context->drawBidiText(textRun, r.location() , fontStyle);343 paintInfo.context->drawBidiText(textRun, r.location()); 347 344 } 348 345 -
trunk/WebCore/rendering/RenderMenuList.cpp
r28234 r28298 37 37 #include "RenderText.h" 38 38 #include "RenderTheme.h" 39 #include "FontStyle.h"40 39 #include <math.h> 41 40 … … 141 140 String text = static_cast<HTMLOptionElement*>(element)->optionText(); 142 141 if (!text.isEmpty()) 143 maxOptionWidth = max(maxOptionWidth, style()->font().floatWidth(text , FontStyle()));142 maxOptionWidth = max(maxOptionWidth, style()->font().floatWidth(text)); 144 143 } 145 144 } -
trunk/WebCore/rendering/RenderText.cpp
r28234 r28298 34 34 #include "Text.h" 35 35 #include "TextBreakIterator.h" 36 #include "FontStyle.h"37 36 #include "break_lines.h" 38 37 #include <wtf/AlwaysInline.h> … … 413 412 } 414 413 415 return f.width(TextRun(text()->characters() + start, len ), FontStyle(allowTabs(), xPos));414 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos)); 416 415 } 417 416 … … 672 671 currMaxWidth = 0; 673 672 } else { 674 currMaxWidth += f.width(TextRun(txt + i, 1 ), FontStyle(allowTabs(), leadWidth + currMaxWidth));673 currMaxWidth += f.width(TextRun(txt + i, 1, allowTabs(), leadWidth + currMaxWidth)); 675 674 needsWordSpacing = isSpace && !previousCharacterIsSpace && i == len - 1; 676 675 } … … 1026 1025 w = widthFromCache(f, from, len, xPos); 1027 1026 } else 1028 w = f.width(TextRun(text()->characters() + from, len ), FontStyle(allowTabs(), xPos));1027 w = f.width(TextRun(text()->characters() + from, len, allowTabs(), xPos)); 1029 1028 1030 1029 return w; -
trunk/WebCore/rendering/RenderText.h
r25754 r28298 128 128 InlineTextBox* findNextInlineTextBox(int offset, int& pos) const; 129 129 130 intallowTabs() const { return !style()->collapseWhiteSpace(); }130 bool allowTabs() const { return !style()->collapseWhiteSpace(); } 131 131 132 132 void checkConsistency() const; -
trunk/WebCore/rendering/RenderTextControl.cpp
r28240 r28298 47 47 #include "Text.h" 48 48 #include "TextIterator.h" 49 #include "FontStyle.h"50 49 #include "htmlediting.h" 51 50 #include "visible_units.h" … … 850 849 // (using "0" as the nominal character). 851 850 const UChar ch = '0'; 852 float charWidth = style()->font().floatWidth(TextRun(&ch, 1 ), FontStyle(0, 0, 0, false, false, false));851 float charWidth = style()->font().floatWidth(TextRun(&ch, 1, false, 0, 0, false, false, false)); 853 852 int factor; 854 853 int scrollbarSize = 0; -
trunk/WebCore/rendering/SVGInlineTextBox.cpp
r28234 r28298 36 36 #include "SVGRootInlineBox.h" 37 37 #include "Text.h" 38 #include "FontStyle.h"39 38 40 39 #include <float.h> … … 75 74 float SVGInlineTextBox::calculateGlyphWidth(RenderStyle* style, int offset) const 76 75 { 77 return style->font().floatWidth( TextRun(textObject()->text()->characters() + offset, 1), svgFontStyleForInlineTextBox(style, this, 0));76 return style->font().floatWidth(svgTextRunForInlineTextBox(textObject()->text()->characters() + offset, 1, style, this, 0)); 78 77 } 79 78 … … 380 379 381 380 IntPoint origin((int) svgChar.x, (int) svgChar.y); 382 TextRun run(chars, length); 383 FontStyle style = svgFontStyleForInlineTextBox(styleToUse, this, svgChar.x); 384 385 paintInfo.context->drawText(run, origin, style); 381 TextRun run = svgTextRunForInlineTextBox(chars, length, styleToUse, this, svgChar.x); 382 383 paintInfo.context->drawText(run, origin); 386 384 387 385 if (paintInfo.phase != PaintPhaseSelection) { … … 461 459 462 460 int adjust = startPos >= boxStartOffset ? boxStartOffset : 0; 463 p->drawHighlightForText(TextRun(textObject()->text()->characters() + start() + boxStartOffset, length), 464 IntPoint((int) svgChar.x, (int) svgChar.y - f->ascent()), f->ascent() + f->descent(), 465 svgFontStyleForInlineTextBox(style, this, svgChar.x), color, 466 startPos - adjust, endPos - adjust); 461 p->drawHighlightForText(svgTextRunForInlineTextBox(textObject()->text()->characters() + start() + boxStartOffset, length, style, this, svgChar.x), 462 IntPoint((int) svgChar.x, (int) svgChar.y - f->ascent()), 463 f->ascent() + f->descent(), color, startPos - adjust, endPos - adjust); 467 464 468 465 p->restore(); -
trunk/WebCore/rendering/SVGRootInlineBox.cpp
r28240 r28298 41 41 #include "SVGURIReference.h" 42 42 #include "Text.h" 43 #include "FontStyle.h"44 43 #include "UnicodeRange.h" 45 44 … … 520 519 // Paint decorations, that have to be drawn before the text gets drawn 521 520 if (textDecorations != TDNONE && m_paintInfo.phase != PaintPhaseSelection) { 522 textWidth = styleToUse->font().width( TextRun(stringStart, stringLength), styleToUse);521 textWidth = styleToUse->font().width(svgTextRunForInlineTextBox(stringStart, stringLength, styleToUse, textBox, (*it).x)); 523 522 decorationOrigin = IntPoint((int) (*it).x, (int) (*it).y - styleToUse->font().ascent()); 524 523 info = m_rootBox->retrievePaintServersForTextDecoration(text); … … 623 622 RenderStyle* style = text->style(); 624 623 625 return style->font().floatWidth( TextRun(text->characters() + textBox->start() + range.startOffset, range.endOffset - range.startOffset), svgFontStyleForInlineTextBox(style, textBox, 0));624 return style->font().floatWidth(svgTextRunForInlineTextBox(text->characters() + textBox->start() + range.startOffset, range.endOffset - range.startOffset, style, textBox, 0)); 626 625 } 627 626 … … 639 638 } 640 639 641 FontStyle svgFontStyleForInlineTextBox(RenderStyle* style, const InlineTextBox* textBox, float xPos)640 TextRun svgTextRunForInlineTextBox(const UChar* c, int len, RenderStyle* style, const InlineTextBox* textBox, float xPos) 642 641 { 643 642 ASSERT(textBox); 644 643 ASSERT(style); 645 644 646 FontStyle fontStyle(false, static_cast<int>(xPos), textBox->toAdd(), textBox->m_reversed, textBox->m_dirOverride || style->visuallyOrdered());645 TextRun run(c, len, false, static_cast<int>(xPos), textBox->toAdd(), textBox->m_reversed, textBox->m_dirOverride || style->visuallyOrdered()); 647 646 648 647 // We handle letter & word spacing ourselves 649 fontStyle.disableSpacing();650 return fontStyle;648 run.disableSpacing(); 649 return run; 651 650 } 652 651 -
trunk/WebCore/rendering/SVGRootInlineBox.h
r28234 r28298 76 76 77 77 // Shared with SVGRenderTreeAsText / SVGInlineTextBox 78 FontStyle svgFontStyleForInlineTextBox(RenderStyle* style, const InlineTextBox* textBox, float xPos);78 TextRun svgTextRunForInlineTextBox(const UChar*, int len, RenderStyle* style, const InlineTextBox* textBox, float xPos); 79 79 FloatPoint topLeftPositionOfCharacterRange(Vector<SVGChar>::iterator start, Vector<SVGChar>::iterator end); 80 80 float cummulatedWidthOfInlineBoxCharacterRange(SVGInlineBoxCharacterRange& range);
Note:
See TracChangeset
for help on using the changeset viewer.