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

Unified Diff: Source/core/rendering/RenderMultiColumnFlowThread.h

Issue 712553003: [New Multicolumn] Actual support for layout of column-span:all. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Code review. Camelize. Created 6 years 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/rendering/RenderFlowThread.cpp ('k') | Source/core/rendering/RenderMultiColumnFlowThread.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/RenderMultiColumnFlowThread.h
diff --git a/Source/core/rendering/RenderMultiColumnFlowThread.h b/Source/core/rendering/RenderMultiColumnFlowThread.h
index 3e02d85e10e5c5a21010871cdeb0d26625581e8d..1b2de2f2a87c09c5f0448a0ef39cf425392502e5 100644
--- a/Source/core/rendering/RenderMultiColumnFlowThread.h
+++ b/Source/core/rendering/RenderMultiColumnFlowThread.h
@@ -122,7 +122,6 @@ public:
unsigned columnCount() const { return m_columnCount; }
LayoutUnit columnHeightAvailable() const { return m_columnHeightAvailable; }
void setColumnHeightAvailable(LayoutUnit available) { m_columnHeightAvailable = available; }
- virtual bool heightIsAuto() const { return !columnHeightAvailable() || multiColumnBlockFlow()->style()->columnFill() == ColumnFillBalance; }
bool progressionIsInline() const { return m_progressionIsInline; }
virtual LayoutSize columnOffset(const LayoutPoint&) const override final;
@@ -130,6 +129,8 @@ public:
// Do we need to set a new width and lay out?
virtual bool needsNewWidth() const;
+ virtual RenderMultiColumnSet* columnSetAtBlockOffset(LayoutUnit) const override final;
+
void layoutColumns(bool relayoutChildren, SubtreeLayoutScope&);
bool recalculateColumnHeights();
@@ -149,26 +150,37 @@ private:
virtual const char* renderName() const override;
virtual void addRegionToThread(RenderMultiColumnSet*) override;
virtual void willBeRemovedFromTree() override;
+ virtual bool isColumnSpanner(const RenderObject*) const override;
+ virtual bool isInsideColumnSpanner(const RenderObject*) const override final;
+ virtual LayoutUnit enterColumnSpannerBeforeLayout(RenderBox*, LayoutUnit logicalTop, SubtreeLayoutScope&) override;
+ virtual void exitColumnSpannerAfterLayout(RenderBox*, LayoutUnit logicalBottom) override;
virtual void flowThreadDescendantWasInserted(RenderObject*) override;
+ virtual void flowThreadDescendantWillBeRemoved(RenderObject*) override;
virtual void computeLogicalHeight(LayoutUnit logicalHeight, LayoutUnit logicalTop, LogicalExtentComputedValues&) const override;
virtual void updateLogicalWidth() override;
virtual void setPageBreak(LayoutUnit offset, LayoutUnit spaceShortage) override;
virtual void updateMinimumPageHeight(LayoutUnit offset, LayoutUnit minHeight) override;
- virtual RenderMultiColumnSet* columnSetAtBlockOffset(LayoutUnit) const override;
virtual bool addForcedRegionBreak(LayoutUnit, RenderObject* breakChild, bool isBefore, LayoutUnit* offsetBreakAdjustment = 0) override;
virtual bool isPageLogicalHeightKnown() const override;
typedef HashMap<const RenderObject*, RenderMultiColumnSpannerSet*> SpannerMap;
SpannerMap m_spannerMap;
+ // The last set we worked on. It's not to be used as the "current set". The concept of a
+ // "current set" is difficult, since layout may jump back and forth in the tree, due to wrong
+ // top location estimates (due to e.g. margin collapsing), and possibly for other reasons.
+ RenderMultiColumnSet* m_lastSetWorkedOn;
+
unsigned m_columnCount; // The used value of column-count
LayoutUnit m_columnHeightAvailable; // Total height available to columns, or 0 if auto.
bool m_inBalancingPass; // Set when relayouting for column balancing.
bool m_needsColumnHeightsRecalculation; // Set when we need to recalculate the column set heights after layout.
bool m_progressionIsInline; // Always true for regular multicol. False for paged-y overflow.
+ bool m_isBeingEvacuated;
};
+DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderMultiColumnFlowThread, isRenderMultiColumnFlowThread());
+
} // namespace blink
#endif // RenderMultiColumnFlowThread_h
-
« no previous file with comments | « Source/core/rendering/RenderFlowThread.cpp ('k') | Source/core/rendering/RenderMultiColumnFlowThread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698