Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: Source/core/layout/api/LineLayoutBlockFlow.h

Issue 1149953007: Create LineLayout api (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: removed source of crash. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/layout/LayoutBlockFlow.h ('k') | Source/core/layout/api/LineLayoutBlockFlow.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutBlockFlow.h ('k') | Source/core/layout/api/LineLayoutBlockFlow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698