OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "core/layout/api/LineLayoutBlockFlow.h" |
| 7 |
| 8 #include "core/layout/LayoutBlockFlow.h" |
| 9 |
| 10 namespace blink { |
| 11 |
| 12 LineLayoutBlockFlow::LineLayoutBlockFlow(LayoutBlockFlow* blockFlow) |
| 13 : LineLayoutBox(blockFlow) |
| 14 { |
| 15 } |
| 16 |
| 17 LineLayoutBlockFlow::LineLayoutBlockFlow(const LineLayoutItem& item) |
| 18 : LineLayoutBox(item) |
| 19 { |
| 20 ASSERT(!item.layoutObject() || item.layoutObject()->isLayoutBlockFlow()); |
| 21 } |
| 22 |
| 23 LineLayoutItem LineLayoutBlockFlow::firstChild() const |
| 24 { |
| 25 return toBlockFlow()->firstChild(); |
| 26 } |
| 27 |
| 28 LineLayoutItem LineLayoutBlockFlow::lastChild() const |
| 29 { |
| 30 return toBlockFlow()->lastChild(); |
| 31 } |
| 32 |
| 33 LayoutUnit LineLayoutBlockFlow::startAlignedOffsetForLine(LayoutUnit position, b
ool shouldIndentText) |
| 34 { |
| 35 return toBlockFlow()->startAlignedOffsetForLine(position, shouldIndentText); |
| 36 } |
| 37 |
| 38 LayoutUnit LineLayoutBlockFlow::textIndentOffset() const |
| 39 { |
| 40 return toBlockFlow()->textIndentOffset(); |
| 41 } |
| 42 |
| 43 LayoutUnit LineLayoutBlockFlow::logicalWidthForChild(const LayoutBox& child) con
st |
| 44 { |
| 45 return toBlockFlow()->logicalWidthForChild(child); |
| 46 } |
| 47 |
| 48 LayoutUnit LineLayoutBlockFlow::marginStartForChild(const LayoutBoxModelObject&
child) const |
| 49 { |
| 50 return toBlockFlow()->marginStartForChild(child); |
| 51 } |
| 52 |
| 53 LayoutUnit LineLayoutBlockFlow::marginEndForChild(const LayoutBoxModelObject& ch
ild) const |
| 54 { |
| 55 return toBlockFlow()->marginEndForChild(child); |
| 56 } |
| 57 |
| 58 LayoutUnit LineLayoutBlockFlow::marginBeforeForChild(const LayoutBoxModelObject&
child) const |
| 59 { |
| 60 return toBlockFlow()->marginBeforeForChild(child); |
| 61 } |
| 62 |
| 63 LayoutUnit LineLayoutBlockFlow::startOffsetForContent() const |
| 64 { |
| 65 return toBlockFlow()->startOffsetForContent(); |
| 66 } |
| 67 |
| 68 LayoutUnit LineLayoutBlockFlow::lineHeight(bool firstLine, LineDirectionMode dir
ection, LinePositionMode linePositionMode) const |
| 69 { |
| 70 return toBlockFlow()->lineHeight(firstLine, direction, linePositionMode); |
| 71 } |
| 72 |
| 73 LayoutUnit LineLayoutBlockFlow::minLineHeightForReplacedObject(bool isFirstLine,
LayoutUnit replacedHeight) const |
| 74 { |
| 75 return toBlockFlow()->minLineHeightForReplacedObject(isFirstLine, replacedHe
ight); |
| 76 } |
| 77 |
| 78 FloatingObject* LineLayoutBlockFlow::insertFloatingObject(LayoutBox& box) |
| 79 { |
| 80 return toBlockFlow()->insertFloatingObject(box); |
| 81 } |
| 82 |
| 83 bool LineLayoutBlockFlow::positionNewFloats(LineWidth* width) |
| 84 { |
| 85 return toBlockFlow()->positionNewFloats(width); |
| 86 } |
| 87 |
| 88 bool LineLayoutBlockFlow::positionNewFloatOnLine(FloatingObject* newFloat, Float
ingObject* lastFloatFromPreviousLine, LineInfo& lineInfo, LineWidth& lineWidth) |
| 89 { |
| 90 return toBlockFlow()->positionNewFloatOnLine(newFloat, lastFloatFromPrevious
Line, lineInfo, lineWidth); |
| 91 } |
| 92 |
| 93 LayoutUnit LineLayoutBlockFlow::nextFloatLogicalBottomBelow(LayoutUnit logicalHe
ight, ShapeOutsideFloatOffsetMode offsetMode) const |
| 94 { |
| 95 return toBlockFlow()->nextFloatLogicalBottomBelow(logicalHeight, offsetMode)
; |
| 96 } |
| 97 |
| 98 FloatingObject* LineLayoutBlockFlow::lastFloatFromPreviousLine() const |
| 99 { |
| 100 return toBlockFlow()->containsFloats() ? toBlockFlow()->m_floatingObjects->s
et().last().get() : 0; |
| 101 } |
| 102 |
| 103 LayoutUnit LineLayoutBlockFlow::logicalTopForFloat(const FloatingObject* floatin
gObject) const |
| 104 { |
| 105 return toBlockFlow()->logicalTopForFloat(floatingObject); |
| 106 } |
| 107 |
| 108 LayoutUnit LineLayoutBlockFlow::logicalBottomForFloat(const FloatingObject* floa
tingObject) const |
| 109 { |
| 110 return toBlockFlow()->logicalBottomForFloat(floatingObject); |
| 111 } |
| 112 |
| 113 LayoutUnit LineLayoutBlockFlow::logicalLeftForFloat(const FloatingObject* floati
ngObject) const |
| 114 { |
| 115 return toBlockFlow()->logicalLeftForFloat(floatingObject); |
| 116 } |
| 117 |
| 118 LayoutUnit LineLayoutBlockFlow::logicalRightForFloat(const FloatingObject* float
ingObject) const |
| 119 { |
| 120 return toBlockFlow()->logicalRightForFloat(floatingObject); |
| 121 } |
| 122 |
| 123 LayoutUnit LineLayoutBlockFlow::logicalWidthForFloat(const FloatingObject* float
ingObject) const |
| 124 { |
| 125 return toBlockFlow()->logicalWidthForFloat(floatingObject); |
| 126 } |
| 127 |
| 128 LayoutUnit LineLayoutBlockFlow::logicalRightOffsetForLine(LayoutUnit position, b
ool shouldIndentText, LayoutUnit logicalHeight) const |
| 129 { |
| 130 return toBlockFlow()->logicalRightOffsetForLine(position, shouldIndentText,
logicalHeight); |
| 131 } |
| 132 |
| 133 LayoutUnit LineLayoutBlockFlow::logicalLeftOffsetForLine(LayoutUnit position, bo
ol shouldIndentText, LayoutUnit logicalHeight) const |
| 134 { |
| 135 return toBlockFlow()->logicalLeftOffsetForLine(position, shouldIndentText, l
ogicalHeight); |
| 136 } |
| 137 |
| 138 void LineLayoutBlockFlow::setStaticInlinePositionForChild(LayoutBox& box, Layout
Unit inlinePosition) |
| 139 { |
| 140 toBlockFlow()->setStaticInlinePositionForChild(box, inlinePosition); |
| 141 } |
| 142 |
| 143 void LineLayoutBlockFlow::updateStaticInlinePositionForChild(LayoutBox& box, Lay
outUnit logicalTop) |
| 144 { |
| 145 toBlockFlow()->updateStaticInlinePositionForChild(box, logicalTop); |
| 146 } |
| 147 |
| 148 LayoutBlockFlow* LineLayoutBlockFlow::toBlockFlow() |
| 149 { |
| 150 return toLayoutBlockFlow(layoutObject()); |
| 151 } |
| 152 |
| 153 const LayoutBlockFlow* LineLayoutBlockFlow::toBlockFlow() const |
| 154 { |
| 155 return toLayoutBlockFlow(layoutObject()); |
| 156 } |
| 157 |
| 158 } // namespace blink |
OLD | NEW |