1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
* Copyright (C) 2000 Lars Knoll (knoll@kde.org)
* Copyright (C) 2013 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef RenderLineBreak_h
#define RenderLineBreak_h
#include "RenderBoxModelObject.h"
namespace WebCore {
class InlineElementBox;
class HTMLElement;
class Position;
class RenderLineBreak final : public RenderBoxModelObject {
public:
RenderLineBreak(HTMLElement&, Ref<RenderStyle>&&);
virtual ~RenderLineBreak();
// FIXME: The lies here keep render tree dump based test results unchanged.
virtual const char* renderName() const override { return m_isWBR ? "RenderWordBreak" : "RenderBR"; }
virtual bool isWBR() const override { return m_isWBR; }
std::unique_ptr<InlineElementBox> createInlineBox();
InlineElementBox* inlineBoxWrapper() const { return m_inlineBoxWrapper; }
void setInlineBoxWrapper(InlineElementBox*);
void deleteInlineBoxWrapper();
void replaceInlineBoxWrapper(InlineElementBox&);
void dirtyLineBoxes(bool fullLayout);
void deleteLineBoxesBeforeSimpleLineLayout();
IntRect linesBoundingBox() const;
virtual void absoluteRects(Vector<IntRect>&, const LayoutPoint& accumulatedOffset) const override;
virtual void absoluteQuads(Vector<FloatQuad>&, bool* wasFixed) const override;
#if PLATFORM(IOS)
virtual void collectSelectionRects(Vector<SelectionRect>&, unsigned startOffset = 0, unsigned endOffset = std::numeric_limits<unsigned>::max()) override;
#endif
private:
void node() const = delete;
virtual bool canHaveChildren() const override { return false; }
virtual void paint(PaintInfo&, const LayoutPoint&) override { }
virtual VisiblePosition positionForPoint(const LayoutPoint&, const RenderRegion*) override;
virtual int caretMinOffset() const override;
virtual int caretMaxOffset() const override;
virtual bool canBeSelectionLeaf() const override;
virtual LayoutRect localCaretRect(InlineBox*, int caretOffset, LayoutUnit* extraWidthToEndOfLine) override;
virtual void setSelectionState(SelectionState) override;
virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositionMode) const override;
virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode) const override;
virtual LayoutUnit marginTop() const override { return 0; }
virtual LayoutUnit marginBottom() const override { return 0; }
virtual LayoutUnit marginLeft() const override { return 0; }
virtual LayoutUnit marginRight() const override { return 0; }
virtual LayoutUnit marginBefore(const RenderStyle*) const override { return 0; }
virtual LayoutUnit marginAfter(const RenderStyle*) const override { return 0; }
virtual LayoutUnit marginStart(const RenderStyle*) const override { return 0; }
virtual LayoutUnit marginEnd(const RenderStyle*) const override { return 0; }
virtual LayoutUnit offsetWidth() const override { return linesBoundingBox().width(); }
virtual LayoutUnit offsetHeight() const override { return linesBoundingBox().height(); }
LayoutRect borderBoundingBox() const override { return LayoutRect(LayoutPoint(), linesBoundingBox().size()); }
virtual LayoutRect frameRectForStickyPositioning() const override { ASSERT_NOT_REACHED(); return LayoutRect(); }
virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObject*) const override { return LayoutRect(); }
virtual void updateFromStyle() override;
virtual bool requiresLayer() const override { return false; }
InlineElementBox* m_inlineBoxWrapper;
mutable int m_cachedLineHeight;
bool m_isWBR;
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_RENDER_OBJECT(RenderLineBreak, isLineBreak())
#endif // RenderLineBreak_h
|