This source file includes following definitions.
- m_needsFontUpdate
 
- styleDidChange
 
- setTextInternal
 
- width
 
- adjustTextOrigin
 
- getStringToRender
 
- combineText
 
#include "config.h"
#include "core/rendering/RenderCombineText.h"
#include "core/rendering/RenderBlockFlow.h"
namespace WebCore {
const float textCombineMargin = 1.1f; 
RenderCombineText::RenderCombineText(Node* node, PassRefPtr<StringImpl> string)
     : RenderText(node, string)
     , m_combinedTextWidth(0)
     , m_isCombined(false)
     , m_needsFontUpdate(false)
{
}
void RenderCombineText::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
{
    setStyleInternal(RenderStyle::clone(style()));
    RenderText::styleDidChange(diff, oldStyle);
    if (m_isCombined) {
        RenderText::setTextInternal(originalText()); 
        m_isCombined = false;
    }
    m_needsFontUpdate = true;
}
void RenderCombineText::setTextInternal(PassRefPtr<StringImpl> text)
{
    RenderText::setTextInternal(text);
    m_needsFontUpdate = true;
}
float RenderCombineText::width(unsigned from, unsigned length, const Font& font, float xPosition, TextDirection direction, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
{
    if (hasEmptyText())
        return 0;
    if (m_isCombined)
        return font.fontDescription().computedSize();
    return RenderText::width(from, length, font, xPosition, direction, fallbackFonts, glyphOverflow);
}
void RenderCombineText::adjustTextOrigin(FloatPoint& textOrigin, const FloatRect& boxRect) const
{
    if (m_isCombined)
        textOrigin.move(boxRect.height() / 2 - ceilf(m_combinedTextWidth) / 2, style()->font().fontDescription().computedPixelSize());
}
void RenderCombineText::getStringToRender(int start, StringView& string, int& length) const
{
    ASSERT(start >= 0);
    if (m_isCombined) {
        string = StringView(m_renderingText.impl());
        length = string.length();
        return;
    }
    string = text().createView(start, length);
}
void RenderCombineText::combineText()
{
    if (!m_needsFontUpdate)
        return;
    m_isCombined = false;
    m_needsFontUpdate = false;
    
    if (style()->isHorizontalWritingMode())
        return;
    TextRun run = RenderBlockFlow::constructTextRun(this, originalFont(), this, style(), style()->direction());
    FontDescription description = originalFont().fontDescription();
    float emWidth = description.computedSize() * textCombineMargin;
    bool shouldUpdateFont = false;
    description.setOrientation(Horizontal); 
    m_combinedTextWidth = originalFont().width(run);
    m_isCombined = m_combinedTextWidth <= emWidth;
    FontSelector* fontSelector = style()->font().fontSelector();
    if (m_isCombined)
        shouldUpdateFont = style()->setFontDescription(description); 
    else {
        
        static const FontWidthVariant widthVariants[] = { HalfWidth, ThirdWidth, QuarterWidth };
        for (size_t i = 0 ; i < WTF_ARRAY_LENGTH(widthVariants) ; ++i) {
            description.setWidthVariant(widthVariants[i]);
            Font compressedFont = Font(description);
            compressedFont.update(fontSelector);
            float runWidth = compressedFont.width(run);
            if (runWidth <= emWidth) {
                m_combinedTextWidth = runWidth;
                m_isCombined = true;
                
                shouldUpdateFont = style()->setFontDescription(description);
                break;
            }
        }
    }
    if (!m_isCombined)
        shouldUpdateFont = style()->setFontDescription(originalFont().fontDescription());
    if (shouldUpdateFont)
        style()->font().update(fontSelector);
    if (m_isCombined) {
        DEFINE_STATIC_LOCAL(String, objectReplacementCharacterString, (&objectReplacementCharacter, 1));
        m_renderingText = text();
        RenderText::setTextInternal(objectReplacementCharacterString.impl());
    }
}
}