2 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
22 #include "RenderCombineText.h"
24 #include "RenderBlock.h"
25 #include "StyleInheritedData.h"
29 const float textCombineMargin = 1.15f; // Allow em + 15% margin
31 RenderCombineText::RenderCombineText(Text& textNode, PassRefPtr<StringImpl> string)
32 : RenderText(textNode, string)
33 , m_combinedTextWidth(0)
35 , m_needsFontUpdate(false)
39 void RenderCombineText::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
41 // FIXME: This is pretty hackish.
42 m_combineFontStyle = RenderStyle::clone(&style());
44 RenderText::styleDidChange(diff, oldStyle);
47 RenderText::setRenderedText(originalText()); // This RenderCombineText has been combined once. Restore the original text for the next combineText().
51 m_needsFontUpdate = true;
54 void RenderCombineText::setRenderedText(const String& text)
56 RenderText::setRenderedText(text);
58 m_needsFontUpdate = true;
61 float RenderCombineText::width(unsigned from, unsigned length, const Font& font, float xPosition, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
66 return RenderText::width(from, length, font, xPosition, fallbackFonts, glyphOverflow);
69 void RenderCombineText::adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const
72 textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style().font().pixelSize());
75 void RenderCombineText::getStringToRender(unsigned start, String& string, unsigned& length) const
78 string = originalText();
79 length = string.length();
84 string = string.substringSharingImpl(start, length);
87 void RenderCombineText::combineText()
89 if (!m_needsFontUpdate)
93 m_needsFontUpdate = false;
95 // CSS3 spec says text-combine works only in vertical writing mode.
96 if (style().isHorizontalWritingMode())
99 TextRun run = RenderBlock::constructTextRun(this, originalFont(), this, style());
100 FontDescription description = originalFont().fontDescription();
101 float emWidth = description.computedSize() * textCombineMargin;
102 bool shouldUpdateFont = false;
104 description.setOrientation(Horizontal); // We are going to draw combined text horizontally.
105 m_combinedTextWidth = originalFont().width(run);
106 m_isCombined = m_combinedTextWidth <= emWidth;
108 FontSelector* fontSelector = style().font().fontSelector();
111 shouldUpdateFont = m_combineFontStyle->setFontDescription(description); // Need to change font orientation to horizontal.
113 // Need to try compressed glyphs.
114 static const FontWidthVariant widthVariants[] = { HalfWidth, ThirdWidth, QuarterWidth };
115 for (size_t i = 0 ; i < WTF_ARRAY_LENGTH(widthVariants) ; ++i) {
116 description.setWidthVariant(widthVariants[i]);
117 Font compressedFont = Font(description, style().font().letterSpacing(), style().font().wordSpacing());
118 compressedFont.update(fontSelector);
119 float runWidth = compressedFont.width(run);
120 if (runWidth <= emWidth) {
121 m_combinedTextWidth = runWidth;
124 // Replace my font with the new one.
125 shouldUpdateFont = m_combineFontStyle->setFontDescription(description);
132 shouldUpdateFont = m_combineFontStyle->setFontDescription(originalFont().fontDescription());
134 if (shouldUpdateFont)
135 m_combineFontStyle->font().update(fontSelector);
138 DEPRECATED_DEFINE_STATIC_LOCAL(String, objectReplacementCharacterString, (&objectReplacementCharacter, 1));
139 RenderText::setRenderedText(objectReplacementCharacterString.impl());
143 } // namespace WebCore