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

Unified Diff: Source/core/layout/api/LineLayoutBlockFlow.h

Issue 1164933006: Create LineLayout api (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + nits Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/layout/LayoutBox.cpp ('k') | Source/core/layout/api/LineLayoutBox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/layout/api/LineLayoutBlockFlow.h
diff --git a/Source/core/layout/api/LineLayoutBlockFlow.h b/Source/core/layout/api/LineLayoutBlockFlow.h
new file mode 100644
index 0000000000000000000000000000000000000000..b1e38b924407aa7f7d989f5a7500afac3a0eb003
--- /dev/null
+++ b/Source/core/layout/api/LineLayoutBlockFlow.h
@@ -0,0 +1,166 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef LineLayoutBlockFlow_h
+#define LineLayoutBlockFlow_h
+
+#include "core/layout/FloatingObjects.h"
+#include "core/layout/LayoutBlockFlow.h"
+#include "core/layout/api/LineLayoutBox.h"
+#include "platform/LayoutUnit.h"
+
+namespace blink {
+
+class LayoutBlockFlow;
+class FloatingObject;
+class LineInfo;
+class LineWidth;
+
+class LineLayoutBlockFlow : public LineLayoutBox {
+public:
+ explicit LineLayoutBlockFlow(LayoutBlockFlow* blockFlow)
+ : LineLayoutBox(blockFlow)
+ {
+ }
+
+ LineLayoutBlockFlow(const LineLayoutItem& item)
+ : LineLayoutBox(item)
+ {
+ ASSERT(!item || item.isLayoutBlockFlow());
+ }
+
+ LineLayoutBlockFlow() { }
+
+ LineLayoutItem firstChild() const
+ {
+ return LineLayoutItem(toBlockFlow()->firstChild());
+ }
+ LineLayoutItem lastChild() const
+ {
+ return LineLayoutItem(toBlockFlow()->lastChild());
+ }
+
+ LayoutUnit startAlignedOffsetForLine(LayoutUnit position, bool shouldIndentText)
+ {
+ return toBlockFlow()->startAlignedOffsetForLine(position, shouldIndentText);
+ }
+
+ LayoutUnit textIndentOffset() const
+ {
+ return toBlockFlow()->textIndentOffset();
+ }
+
+ LayoutUnit logicalWidthForChild(const LayoutBox& child) const
+ {
+ return toBlockFlow()->logicalWidthForChild(child);
+ }
+
+ LayoutUnit marginStartForChild(const LayoutBoxModelObject& child) const
+ {
+ return toBlockFlow()->marginStartForChild(child);
+ }
+
+ LayoutUnit marginEndForChild(const LayoutBoxModelObject& child) const
+ {
+ return toBlockFlow()->marginEndForChild(child);
+ }
+
+ LayoutUnit marginBeforeForChild(const LayoutBoxModelObject& child) const
+ {
+ return toBlockFlow()->marginBeforeForChild(child);
+ }
+
+ LayoutUnit startOffsetForContent() const
+ {
+ return toBlockFlow()->startOffsetForContent();
+ }
+
+ LayoutUnit lineHeight(bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
+ {
+ return toBlockFlow()->lineHeight(firstLine, direction, linePositionMode);
+ }
+
+ LayoutUnit minLineHeightForReplacedObject(bool isFirstLine, LayoutUnit replacedHeight) const
+ {
+ return toBlockFlow()->minLineHeightForReplacedObject(isFirstLine, replacedHeight);
+ }
+
+ void setStaticInlinePositionForChild(LayoutBox& box, LayoutUnit inlinePosition)
+ {
+ toBlockFlow()->setStaticInlinePositionForChild(box, inlinePosition);
+ }
+
+ void updateStaticInlinePositionForChild(LayoutBox& box, LayoutUnit logicalTop)
+ {
+ toBlockFlow()->updateStaticInlinePositionForChild(box, logicalTop);
+ }
+
+ FloatingObject* insertFloatingObject(LayoutBox& box)
+ {
+ return toBlockFlow()->insertFloatingObject(box);
+ }
+
+ bool positionNewFloats(LineWidth* width)
+ {
+ return toBlockFlow()->positionNewFloats(width);
+ }
+
+ bool positionNewFloatOnLine(FloatingObject& newFloat, FloatingObject* lastFloatFromPreviousLine, LineInfo& lineInfo, LineWidth& lineWidth)
+ {
+ return toBlockFlow()->positionNewFloatOnLine(newFloat, lastFloatFromPreviousLine, lineInfo, lineWidth);
+ }
+
+ LayoutUnit nextFloatLogicalBottomBelow(LayoutUnit logicalHeight, ShapeOutsideFloatOffsetMode offsetMode = ShapeOutsideFloatMarginBoxOffset) const
+ {
+ return toBlockFlow()->nextFloatLogicalBottomBelow(logicalHeight, offsetMode);
+ }
+
+ FloatingObject* lastFloatFromPreviousLine() const
+ {
+ return toBlockFlow()->lastFloatFromPreviousLine();
+ }
+
+ LayoutUnit logicalTopForFloat(const FloatingObject& floatingObject) const
+ {
+ return toBlockFlow()->logicalTopForFloat(floatingObject);
+ }
+
+ LayoutUnit logicalBottomForFloat(const FloatingObject& floatingObject) const
+ {
+ return toBlockFlow()->logicalBottomForFloat(floatingObject);
+ }
+
+ LayoutUnit logicalLeftForFloat(const FloatingObject& floatingObject) const
+ {
+ return toBlockFlow()->logicalLeftForFloat(floatingObject);
+ }
+
+ LayoutUnit logicalRightForFloat(const FloatingObject& floatingObject) const
+ {
+ return toBlockFlow()->logicalRightForFloat(floatingObject);
+ }
+
+ LayoutUnit logicalWidthForFloat(const FloatingObject& floatingObject) const
+ {
+ return toBlockFlow()->logicalWidthForFloat(floatingObject);
+ }
+
+ LayoutUnit logicalRightOffsetForLine(LayoutUnit position, bool shouldIndentText, LayoutUnit logicalHeight = 0) const
+ {
+ return toBlockFlow()->logicalRightOffsetForLine(position, shouldIndentText, logicalHeight);
+ }
+
+ LayoutUnit logicalLeftOffsetForLine(LayoutUnit position, bool shouldIndentText, LayoutUnit logicalHeight = 0) const
+ {
+ return toBlockFlow()->logicalLeftOffsetForLine(position, shouldIndentText, logicalHeight);
+ }
+
+private:
+ LayoutBlockFlow* toBlockFlow() { return toLayoutBlockFlow(layoutObject()); };
+ const LayoutBlockFlow* toBlockFlow() const { return toLayoutBlockFlow(layoutObject()); };
+};
+
+} // namespace blink
+
+#endif // LineLayoutBlockFlow_h
« no previous file with comments | « Source/core/layout/LayoutBox.cpp ('k') | Source/core/layout/api/LineLayoutBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698