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 #ifndef LineLayoutBlockFlow_h |
| 6 #define LineLayoutBlockFlow_h |
| 7 |
| 8 #include "core/layout/FloatingObjects.h" |
| 9 #include "core/layout/api/LineLayoutBox.h" |
| 10 #include "platform/LayoutUnit.h" |
| 11 |
| 12 namespace blink { |
| 13 |
| 14 class LayoutBlockFlow; |
| 15 class FloatingObject; |
| 16 class LineInfo; |
| 17 class LineWidth; |
| 18 |
| 19 class LineLayoutBlockFlow : public LineLayoutBox { |
| 20 public: |
| 21 LineLayoutBlockFlow(LayoutBlockFlow*); |
| 22 LineLayoutBlockFlow(const LineLayoutItem&); |
| 23 LineLayoutBlockFlow() { } |
| 24 |
| 25 LineLayoutItem firstChild() const; |
| 26 LineLayoutItem lastChild() const; |
| 27 |
| 28 LayoutUnit startAlignedOffsetForLine(LayoutUnit position, bool shouldIndentT
ext); |
| 29 |
| 30 LayoutUnit textIndentOffset() const; |
| 31 |
| 32 LayoutUnit logicalWidthForChild(const LayoutBox& child) const; |
| 33 LayoutUnit marginStartForChild(const LayoutBoxModelObject&) const; |
| 34 LayoutUnit marginEndForChild(const LayoutBoxModelObject&) const; |
| 35 LayoutUnit marginBeforeForChild(const LayoutBoxModelObject&) const; |
| 36 |
| 37 LayoutUnit startOffsetForContent() const; |
| 38 |
| 39 LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositionMode) c
onst; |
| 40 LayoutUnit minLineHeightForReplacedObject(bool isFirstLine, LayoutUnit repla
cedHeight) const; |
| 41 |
| 42 void setStaticInlinePositionForChild(LayoutBox&, LayoutUnit inlinePosition); |
| 43 void updateStaticInlinePositionForChild(LayoutBox&, LayoutUnit logicalTop); |
| 44 |
| 45 FloatingObject* insertFloatingObject(LayoutBox&); |
| 46 bool positionNewFloats(LineWidth*); |
| 47 bool positionNewFloatOnLine(FloatingObject* newFloat, FloatingObject* lastFl
oatFromPreviousLine, LineInfo&, LineWidth&); |
| 48 LayoutUnit nextFloatLogicalBottomBelow(LayoutUnit, ShapeOutsideFloatOffsetMo
de = ShapeOutsideFloatMarginBoxOffset) const; |
| 49 FloatingObject* lastFloatFromPreviousLine() const; |
| 50 |
| 51 LayoutUnit logicalTopForFloat(const FloatingObject*) const; |
| 52 LayoutUnit logicalBottomForFloat(const FloatingObject*) const; |
| 53 LayoutUnit logicalLeftForFloat(const FloatingObject*) const; |
| 54 LayoutUnit logicalRightForFloat(const FloatingObject*) const; |
| 55 LayoutUnit logicalWidthForFloat(const FloatingObject*) const; |
| 56 |
| 57 LayoutUnit logicalRightOffsetForLine(LayoutUnit position, bool shouldIndentT
ext, LayoutUnit logicalHeight = 0) const; |
| 58 LayoutUnit logicalLeftOffsetForLine(LayoutUnit position, bool shouldIndentTe
xt, LayoutUnit logicalHeight = 0) const; |
| 59 |
| 60 private: |
| 61 LayoutBlockFlow* toBlockFlow(); |
| 62 const LayoutBlockFlow* toBlockFlow() const; |
| 63 }; |
| 64 |
| 65 } // namespace blink |
| 66 |
| 67 #endif // LineLayoutBlockFlow_h |
OLD | NEW |