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

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

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: Created 6 years, 1 month 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
Index: Source/core/rendering/RenderMultiColumnFlowThread.cpp
diff --git a/Source/core/rendering/RenderMultiColumnFlowThread.cpp b/Source/core/rendering/RenderMultiColumnFlowThread.cpp
index 6eaed6f174181af1b3308840f9bf3bb3b990256a..83737058a11d5424e5afad481fb957f6a465e1f5 100644
--- a/Source/core/rendering/RenderMultiColumnFlowThread.cpp
+++ b/Source/core/rendering/RenderMultiColumnFlowThread.cpp
@@ -32,7 +32,8 @@
namespace blink {
RenderMultiColumnFlowThread::RenderMultiColumnFlowThread()
- : m_columnCount(1)
+ : m_lastSetWorkedOn(0)
+ , m_columnCount(1)
, m_columnHeightAvailable(0)
, m_inBalancingPass(false)
, m_needsColumnHeightsRecalculation(false)
@@ -162,16 +163,15 @@ void RenderMultiColumnFlowThread::layoutColumns(bool relayoutChildren, SubtreeLa
return;
}
- for (RenderMultiColumnSet* columnSet = firstMultiColumnSet(); columnSet; columnSet = columnSet->nextSiblingMultiColumnSet()) {
- if (!m_inBalancingPass) {
- // This is the initial layout pass. We need to reset the column height, because contents
- // typically have changed.
+ if (!m_inBalancingPass) {
+ // This is the initial layout pass. We need to reset the column height, because contents
+ // typically have changed.
+ for (RenderMultiColumnSet* columnSet = firstMultiColumnSet(); columnSet; columnSet = columnSet->nextSiblingMultiColumnSet())
columnSet->resetColumnHeight();
- }
}
invalidateRegions();
- m_needsColumnHeightsRecalculation = heightIsAuto();
+ m_needsColumnHeightsRecalculation = true;
layout();
}
@@ -316,6 +316,72 @@ void RenderMultiColumnFlowThread::willBeRemovedFromTree()
RenderFlowThread::willBeRemovedFromTree();
}
+bool RenderMultiColumnFlowThread::isColumnSpanner(const RenderObject* descendant) const
+{
+ ASSERT(descendant->isDescendantOf(this));
+ return m_spannerMap.get(descendant);
+}
+
+bool RenderMultiColumnFlowThread::isInsideColumnSpanner(const RenderObject* descendant) const
+{
+ ASSERT(descendant->isDescendantOf(this));
+ return containingColumnSpannerSet(descendant);
+}
+
+LayoutUnit RenderMultiColumnFlowThread::enterColumnSpannerBeforeLayout(RenderBox* renderer, LayoutUnit logicalTop, SubtreeLayoutScope& layoutScope)
+{
+ ASSERT(renderer->isDescendantOf(this));
+ RenderMultiColumnSpannerSet* spannerSet = m_spannerMap.get(renderer);
+ ASSERT(spannerSet);
+
+ // FIXME: it's really only necessary to mark the spanner set for layout when the height of
+ // |renderer| changes.
+ spannerSet->setChildNeedsLayout(MarkOnlyThis, &layoutScope);
+
+ RenderMultiColumnSet* previousSet = spannerSet->previousSiblingMultiColumnSet();
+ if (!previousSet) {
+ // The first set is entered at the beginning of flow thread layout. If the first set happens
+ // to be a spanner, we have nothing more to do here.
+ return LayoutUnit();
+ }
+
+ RenderBlock* cb = renderer->containingBlock();
+ LayoutUnit logicalTopInFlowThread = cb->offsetFromLogicalTopOfFirstPage() + logicalTop;
+ LayoutUnit adjustment;
+ if (!previousSet->isRenderMultiColumnSpannerSet() && previousSet->pageLogicalHeight()) {
+ // Pad flow thread offset to a column boundary, so that contents that's supposed to come
+ // after the spanner (or the spanner itself) don't bleed into the column preceding the
+ // spanner.
+ LayoutUnit columnLogicalTopInFlowThread = previousSet->pageLogicalTopForOffset(logicalTopInFlowThread);
+ if (columnLogicalTopInFlowThread != logicalTopInFlowThread) {
+ adjustment = columnLogicalTopInFlowThread + previousSet->pageLogicalHeight() - logicalTopInFlowThread;
+ logicalTopInFlowThread += adjustment;
+ }
+ }
+
+ if (!previousSet->isRenderMultiColumnSpannerSet())
+ previousSet->endFlow(logicalTopInFlowThread);
+ spannerSet->beginFlow(logicalTopInFlowThread);
+
+ m_lastSetWorkedOn = spannerSet;
+ return adjustment;
+}
+
+void RenderMultiColumnFlowThread::leaveColumnSpannerAfterLayout(RenderBox* renderer, LayoutUnit logicalBottom)
+{
+ ASSERT(m_lastSetWorkedOn == m_spannerMap.get(renderer));
+
+ RenderBlock* cb = renderer->containingBlock();
+ LayoutUnit logicalBottomInFlowThread = cb->offsetFromLogicalTopOfFirstPage() + logicalBottom;
+ m_lastSetWorkedOn->endFlow(logicalBottomInFlowThread);
+ RenderMultiColumnSet* nextSet = m_lastSetWorkedOn->nextSiblingMultiColumnSet();
+ if (nextSet) {
+ m_lastSetWorkedOn = nextSet;
+ if (!m_lastSetWorkedOn->isRenderMultiColumnSpannerSet())
+ m_lastSetWorkedOn->beginFlow(logicalBottomInFlowThread);
+ }
+}
+
void RenderMultiColumnFlowThread::flowThreadDescendantWasInserted(RenderObject* descendant)
{
// Go through the subtree that was just inserted and create column sets (needed by regular
@@ -351,9 +417,16 @@ void RenderMultiColumnFlowThread::updateLogicalWidth()
void RenderMultiColumnFlowThread::layout()
{
+ ASSERT(!m_lastSetWorkedOn);
+ m_lastSetWorkedOn = firstMultiColumnSet();
+ if (m_lastSetWorkedOn)
+ m_lastSetWorkedOn->beginFlow(LayoutUnit());
RenderFlowThread::layout();
- if (RenderMultiColumnSet* lastSet = lastMultiColumnSet())
+ if (RenderMultiColumnSet* lastSet = lastMultiColumnSet()) {
+ lastSet->endFlow(logicalHeight());
lastSet->expandToEncompassFlowThreadContentsIfNeeded();
+ }
+ m_lastSetWorkedOn = 0;
}
void RenderMultiColumnFlowThread::setPageBreak(LayoutUnit offset, LayoutUnit spaceShortage)
@@ -375,10 +448,27 @@ void RenderMultiColumnFlowThread::updateMinimumPageHeight(LayoutUnit offset, Lay
multicolSet->updateMinimumColumnHeight(minHeight);
}
-RenderMultiColumnSet* RenderMultiColumnFlowThread::columnSetAtBlockOffset(LayoutUnit /*offset*/) const
+RenderMultiColumnSet* RenderMultiColumnFlowThread::columnSetAtBlockOffset(LayoutUnit offset) const
{
- // For now there's only one column set, so this is easy:
- return firstMultiColumnSet();
+ if (m_lastSetWorkedOn) {
+ // Layout in progress. We are calculating the set heights as we speak, so the column set range
+ // information is not up-to-date.
+ // FIXME: need to check if m_lastSetWorkedOn contains the offset, and if it doesn't, we need
+ // to locate the right set.
+ return m_lastSetWorkedOn;
+ }
+
+ ASSERT(!m_regionsInvalidated);
+ if (offset <= 0)
+ return m_multiColumnSetList.isEmpty() ? 0 : m_multiColumnSetList.first();
+
+ MultiColumnSetSearchAdapter adapter(offset);
mstensho (USE GERRIT) 2014/11/07 16:06:01 Note: The code here is a revival of code found ori
+ m_multiColumnSetIntervalTree.allOverlapsWithAdapter<MultiColumnSetSearchAdapter>(adapter);
+
+ // If no set was found, the offset is in the flow thread overflow.
+ if (!adapter.result() && !m_multiColumnSetList.isEmpty())
+ return m_multiColumnSetList.last();
+ return adapter.result();
}
bool RenderMultiColumnFlowThread::addForcedRegionBreak(LayoutUnit offset, RenderObject* /*breakChild*/, bool /*isBefore*/, LayoutUnit* offsetBreakAdjustment)

Powered by Google App Engine
This is Rietveld 408576698