2 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz>
3 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
4 * Copyright (C) 2008 Rob Buis <buis@kde.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details.
16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
22 #ifndef LayoutSVGInlineText_h
23 #define LayoutSVGInlineText_h
25 #include "core/layout/LayoutText.h"
26 #include "core/layout/svg/SVGTextLayoutAttributes.h"
30 class LayoutSVGInlineText final
: public LayoutText
{
32 LayoutSVGInlineText(Node
*, PassRefPtr
<StringImpl
>);
34 bool characterStartsNewTextChunk(int position
) const;
35 SVGTextLayoutAttributes
* layoutAttributes() { return &m_layoutAttributes
; }
36 const SVGTextLayoutAttributes
* layoutAttributes() const { return &m_layoutAttributes
; }
38 float scalingFactor() const { return m_scalingFactor
; }
39 const Font
& scaledFont() const { return m_scaledFont
; }
40 void updateScaledFont();
41 static void computeNewScaledFontForStyle(LayoutObject
*, const ComputedStyle
*, float& scalingFactor
, Font
& scaledFont
);
43 // Preserves floating point precision for the use in DRT. It knows how to round and does a better job than enclosingIntRect.
44 FloatRect
floatLinesBoundingBox() const;
46 PassRefPtr
<StringImpl
> originalText() const override
;
48 const char* name() const override
{ return "LayoutSVGInlineText"; }
51 void setTextInternal(PassRefPtr
<StringImpl
>) override
;
52 void styleDidChange(StyleDifference
, const ComputedStyle
*) override
;
54 FloatRect
objectBoundingBox() const override
{ return floatLinesBoundingBox(); }
56 bool isOfType(LayoutObjectType type
) const override
{ return type
== LayoutObjectSVG
|| type
== LayoutObjectSVGInlineText
|| LayoutText::isOfType(type
); }
58 PositionWithAffinity
positionForPoint(const LayoutPoint
&) override
;
59 LayoutRect
localCaretRect(InlineBox
*, int caretOffset
, LayoutUnit
* extraWidthToEndOfLine
= nullptr) override
;
60 IntRect
linesBoundingBox() const override
;
61 InlineTextBox
* createTextBox(int start
, unsigned short length
) override
;
63 LayoutRect
clippedOverflowRectForPaintInvalidation(const LayoutBoxModelObject
* paintInvalidationContainer
, const PaintInvalidationState
*) const final
;
65 float m_scalingFactor
;
67 SVGTextLayoutAttributes m_layoutAttributes
;
70 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGInlineText
, isSVGInlineText());
72 class SVGInlineTextMetricsIterator
{
73 DISALLOW_ALLOCATION();
75 SVGInlineTextMetricsIterator() { reset(nullptr); }
77 void advanceToTextStart(const LayoutSVGInlineText
* textLayoutObject
, unsigned startCharacterOffset
)
79 ASSERT(textLayoutObject
);
80 if (m_textLayoutObject
!= textLayoutObject
) {
81 reset(textLayoutObject
);
82 ASSERT(!metricsList().isEmpty());
85 if (m_characterOffset
== startCharacterOffset
)
88 // TODO(fs): We could walk backwards through the metrics list in these cases.
89 if (m_characterOffset
> startCharacterOffset
)
90 reset(textLayoutObject
);
92 while (m_characterOffset
< startCharacterOffset
)
98 m_characterOffset
+= metrics().length();
99 ++m_metricsListOffset
;
102 const SVGTextMetrics
& metrics() const
104 ASSERT(m_textLayoutObject
&& m_metricsListOffset
< metricsList().size());
105 return metricsList()[m_metricsListOffset
];
107 const Vector
<SVGTextMetrics
>& metricsList() const { return m_textLayoutObject
->layoutAttributes()->textMetricsValues(); }
108 unsigned metricsListOffset() const { return m_metricsListOffset
; }
109 unsigned characterOffset() const { return m_characterOffset
; }
110 bool isAtEnd() const { return m_metricsListOffset
== metricsList().size(); }
113 void reset(const LayoutSVGInlineText
* textLayoutObject
)
115 m_textLayoutObject
= textLayoutObject
;
116 m_characterOffset
= 0;
117 m_metricsListOffset
= 0;
120 const LayoutSVGInlineText
* m_textLayoutObject
;
121 unsigned m_metricsListOffset
;
122 unsigned m_characterOffset
;
127 #endif // LayoutSVGInlineText_h