2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* base class for rendering objects that can be split across lines,
|
|
|
|
* columns, or pages
|
|
|
|
*/
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsSplittableFrame.h"
|
2013-07-25 15:34:16 +00:00
|
|
|
#include "nsContainerFrame.h"
|
2013-10-01 21:00:38 +00:00
|
|
|
#include "nsIFrameInlines.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2014-06-28 10:13:14 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSplittableFrame)
|
|
|
|
|
2013-03-20 01:47:48 +00:00
|
|
|
void
|
2014-05-24 22:20:40 +00:00
|
|
|
nsSplittableFrame::Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
1999-02-25 03:27:57 +00:00
|
|
|
{
|
2013-03-20 01:47:48 +00:00
|
|
|
nsFrame::Init(aContent, aParent, aPrevInFlow);
|
1999-02-25 03:27:57 +00:00
|
|
|
|
|
|
|
if (aPrevInFlow) {
|
|
|
|
// Hook the frame into the flow
|
2006-02-21 21:33:47 +00:00
|
|
|
SetPrevInFlow(aPrevInFlow);
|
1999-10-22 14:53:52 +00:00
|
|
|
aPrevInFlow->SetNextInFlow(this);
|
1999-02-25 03:27:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
void
|
2009-12-24 05:21:15 +00:00
|
|
|
nsSplittableFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2002-10-30 15:33:36 +00:00
|
|
|
{
|
|
|
|
// Disconnect from the flow list
|
2006-02-21 21:33:47 +00:00
|
|
|
if (mPrevContinuation || mNextContinuation) {
|
2002-10-30 15:33:36 +00:00
|
|
|
RemoveFromFlow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let the base class destroy the frame
|
2009-12-24 05:21:15 +00:00
|
|
|
nsFrame::DestroyFrom(aDestructRoot);
|
2002-10-30 15:33:36 +00:00
|
|
|
}
|
|
|
|
|
2006-12-20 03:52:34 +00:00
|
|
|
nsSplittableType
|
|
|
|
nsSplittableFrame::GetSplittableType() const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2006-12-20 03:52:34 +00:00
|
|
|
return NS_FRAME_SPLITTABLE;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2006-02-21 21:33:47 +00:00
|
|
|
nsIFrame* nsSplittableFrame::GetPrevContinuation() const
|
|
|
|
{
|
|
|
|
return mPrevContinuation;
|
|
|
|
}
|
|
|
|
|
2013-09-25 17:54:55 +00:00
|
|
|
void
|
|
|
|
nsSplittableFrame::SetPrevContinuation(nsIFrame* aFrame)
|
2006-02-21 21:33:47 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION (!aFrame || GetType() == aFrame->GetType(), "setting a prev continuation with incorrect type!");
|
|
|
|
NS_ASSERTION (!IsInPrevContinuationChain(aFrame, this), "creating a loop in continuation chain!");
|
|
|
|
mPrevContinuation = aFrame;
|
|
|
|
RemoveStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetNextContinuation() const
|
|
|
|
{
|
|
|
|
return mNextContinuation;
|
|
|
|
}
|
|
|
|
|
2013-09-25 17:54:55 +00:00
|
|
|
void
|
|
|
|
nsSplittableFrame::SetNextContinuation(nsIFrame* aFrame)
|
2006-02-21 21:33:47 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION (!aFrame || GetType() == aFrame->GetType(), "setting a next continuation with incorrect type!");
|
|
|
|
NS_ASSERTION (!IsInNextContinuationChain(aFrame, this), "creating a loop in continuation chain!");
|
|
|
|
mNextContinuation = aFrame;
|
|
|
|
if (aFrame)
|
|
|
|
aFrame->RemoveStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
|
|
|
|
}
|
|
|
|
|
2013-09-25 11:42:35 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsSplittableFrame::FirstContinuation() const
|
2006-02-21 21:33:47 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsSplittableFrame* firstContinuation = const_cast<nsSplittableFrame*>(this);
|
2006-02-21 21:33:47 +00:00
|
|
|
while (firstContinuation->mPrevContinuation) {
|
2007-07-08 07:08:04 +00:00
|
|
|
firstContinuation = static_cast<nsSplittableFrame*>(firstContinuation->mPrevContinuation);
|
2006-02-21 21:33:47 +00:00
|
|
|
}
|
2013-09-25 11:42:35 +00:00
|
|
|
MOZ_ASSERT(firstContinuation, "post-condition failed");
|
2006-02-21 21:33:47 +00:00
|
|
|
return firstContinuation;
|
|
|
|
}
|
|
|
|
|
2013-09-25 11:42:35 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsSplittableFrame::LastContinuation() const
|
2006-02-21 21:33:47 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsSplittableFrame* lastContinuation = const_cast<nsSplittableFrame*>(this);
|
2006-02-21 21:33:47 +00:00
|
|
|
while (lastContinuation->mNextContinuation) {
|
2007-07-08 07:08:04 +00:00
|
|
|
lastContinuation = static_cast<nsSplittableFrame*>(lastContinuation->mNextContinuation);
|
2006-02-21 21:33:47 +00:00
|
|
|
}
|
2013-09-25 11:42:35 +00:00
|
|
|
MOZ_ASSERT(lastContinuation, "post-condition failed");
|
2006-02-21 21:33:47 +00:00
|
|
|
return lastContinuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nsSplittableFrame::IsInPrevContinuationChain(nsIFrame* aFrame1, nsIFrame* aFrame2)
|
2006-02-21 21:33:47 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t iterations = 0;
|
2009-07-10 02:03:03 +00:00
|
|
|
while (aFrame1 && iterations < 10) {
|
|
|
|
// Bail out after 10 iterations so we don't bog down debug builds too much
|
2006-02-21 21:33:47 +00:00
|
|
|
if (aFrame1 == aFrame2)
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2006-02-21 21:33:47 +00:00
|
|
|
aFrame1 = aFrame1->GetPrevContinuation();
|
2009-07-10 02:03:03 +00:00
|
|
|
++iterations;
|
2006-02-21 21:33:47 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-02-21 21:33:47 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool nsSplittableFrame::IsInNextContinuationChain(nsIFrame* aFrame1, nsIFrame* aFrame2)
|
2006-02-21 21:33:47 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t iterations = 0;
|
2009-07-10 02:03:03 +00:00
|
|
|
while (aFrame1 && iterations < 10) {
|
|
|
|
// Bail out after 10 iterations so we don't bog down debug builds too much
|
2006-02-21 21:33:47 +00:00
|
|
|
if (aFrame1 == aFrame2)
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2006-02-21 21:33:47 +00:00
|
|
|
aFrame1 = aFrame1->GetNextContinuation();
|
2009-07-10 02:03:03 +00:00
|
|
|
++iterations;
|
2006-02-21 21:33:47 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-02-21 21:33:47 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-09-14 02:28:03 +00:00
|
|
|
nsIFrame* nsSplittableFrame::GetPrevInFlow() const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
return (GetStateBits() & NS_FRAME_IS_FLUID_CONTINUATION) ? mPrevContinuation : nullptr;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2013-09-25 17:54:55 +00:00
|
|
|
void
|
|
|
|
nsSplittableFrame::SetPrevInFlow(nsIFrame* aFrame)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2006-02-21 21:33:47 +00:00
|
|
|
NS_ASSERTION (!aFrame || GetType() == aFrame->GetType(), "setting a prev in flow with incorrect type!");
|
|
|
|
NS_ASSERTION (!IsInPrevContinuationChain(aFrame, this), "creating a loop in continuation chain!");
|
|
|
|
mPrevContinuation = aFrame;
|
|
|
|
AddStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2004-09-14 02:28:03 +00:00
|
|
|
nsIFrame* nsSplittableFrame::GetNextInFlow() const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2006-02-21 21:33:47 +00:00
|
|
|
return mNextContinuation && (mNextContinuation->GetStateBits() & NS_FRAME_IS_FLUID_CONTINUATION) ?
|
2012-07-30 14:20:58 +00:00
|
|
|
mNextContinuation : nullptr;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2013-09-25 17:54:55 +00:00
|
|
|
void
|
|
|
|
nsSplittableFrame::SetNextInFlow(nsIFrame* aFrame)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2006-02-21 21:33:47 +00:00
|
|
|
NS_ASSERTION (!aFrame || GetType() == aFrame->GetType(), "setting a next in flow with incorrect type!");
|
|
|
|
NS_ASSERTION (!IsInNextContinuationChain(aFrame, this), "creating a loop in continuation chain!");
|
|
|
|
mNextContinuation = aFrame;
|
|
|
|
if (aFrame)
|
|
|
|
aFrame->AddStateBits(NS_FRAME_IS_FLUID_CONTINUATION);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2013-09-25 11:42:35 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsSplittableFrame::FirstInFlow() const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsSplittableFrame* firstInFlow = const_cast<nsSplittableFrame*>(this);
|
2013-09-25 11:42:35 +00:00
|
|
|
while (nsIFrame* prev = firstInFlow->GetPrevInFlow()) {
|
2007-07-08 07:08:04 +00:00
|
|
|
firstInFlow = static_cast<nsSplittableFrame*>(prev);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
2013-09-25 11:42:35 +00:00
|
|
|
MOZ_ASSERT(firstInFlow, "post-condition failed");
|
1998-04-13 20:24:54 +00:00
|
|
|
return firstInFlow;
|
|
|
|
}
|
|
|
|
|
2013-09-25 11:42:35 +00:00
|
|
|
nsIFrame*
|
|
|
|
nsSplittableFrame::LastInFlow() const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsSplittableFrame* lastInFlow = const_cast<nsSplittableFrame*>(this);
|
2006-02-21 21:33:47 +00:00
|
|
|
while (nsIFrame* next = lastInFlow->GetNextInFlow()) {
|
2007-07-08 07:08:04 +00:00
|
|
|
lastInFlow = static_cast<nsSplittableFrame*>(next);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
2013-09-25 11:42:35 +00:00
|
|
|
MOZ_ASSERT(lastInFlow, "post-condition failed");
|
1998-04-13 20:24:54 +00:00
|
|
|
return lastInFlow;
|
|
|
|
}
|
|
|
|
|
1999-10-22 14:53:52 +00:00
|
|
|
// Remove this frame from the flow. Connects prev in flow and next in flow
|
|
|
|
void
|
|
|
|
nsSplittableFrame::RemoveFromFlow(nsIFrame* aFrame)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2006-02-21 21:33:47 +00:00
|
|
|
nsIFrame* prevContinuation = aFrame->GetPrevContinuation();
|
|
|
|
nsIFrame* nextContinuation = aFrame->GetNextContinuation();
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2006-02-21 21:33:47 +00:00
|
|
|
// The new continuation is fluid only if the continuation on both sides
|
|
|
|
// of the removed frame was fluid
|
|
|
|
if (aFrame->GetPrevInFlow() && aFrame->GetNextInFlow()) {
|
|
|
|
if (prevContinuation) {
|
|
|
|
prevContinuation->SetNextInFlow(nextContinuation);
|
|
|
|
}
|
|
|
|
if (nextContinuation) {
|
|
|
|
nextContinuation->SetPrevInFlow(prevContinuation);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (prevContinuation) {
|
|
|
|
prevContinuation->SetNextContinuation(nextContinuation);
|
|
|
|
}
|
|
|
|
if (nextContinuation) {
|
|
|
|
nextContinuation->SetPrevContinuation(prevContinuation);
|
|
|
|
}
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
aFrame->SetPrevInFlow(nullptr);
|
|
|
|
aFrame->SetNextInFlow(nullptr);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
2013-07-25 15:34:12 +00:00
|
|
|
nscoord
|
2014-06-20 09:55:35 +00:00
|
|
|
nsSplittableFrame::GetConsumedBSize() const
|
2013-07-25 15:34:12 +00:00
|
|
|
{
|
|
|
|
nscoord height = 0;
|
|
|
|
for (nsIFrame* prev = GetPrevInFlow(); prev; prev = prev->GetPrevInFlow()) {
|
2014-05-12 11:45:28 +00:00
|
|
|
height += prev->GetContentRectRelativeToSelf().height;
|
2013-07-25 15:34:12 +00:00
|
|
|
}
|
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
2013-07-25 15:34:16 +00:00
|
|
|
nscoord
|
2014-06-20 09:55:35 +00:00
|
|
|
nsSplittableFrame::GetEffectiveComputedBSize(const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aConsumedBSize) const
|
2013-07-25 15:34:16 +00:00
|
|
|
{
|
2014-06-20 09:55:35 +00:00
|
|
|
nscoord bSize = aReflowState.ComputedBSize();
|
|
|
|
if (bSize == NS_INTRINSICSIZE) {
|
2013-07-25 15:34:16 +00:00
|
|
|
return NS_INTRINSICSIZE;
|
|
|
|
}
|
|
|
|
|
2014-06-20 09:55:35 +00:00
|
|
|
if (aConsumedBSize == NS_INTRINSICSIZE) {
|
|
|
|
aConsumedBSize = GetConsumedBSize();
|
2013-07-25 15:34:16 +00:00
|
|
|
}
|
|
|
|
|
2014-06-20 09:55:35 +00:00
|
|
|
bSize -= aConsumedBSize;
|
2013-07-25 15:34:16 +00:00
|
|
|
|
|
|
|
// We may have stretched the frame beyond its computed height. Oh well.
|
2014-06-20 09:55:35 +00:00
|
|
|
return std::max(0, bSize);
|
2013-07-25 15:34:16 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 10:13:13 +00:00
|
|
|
nsIFrame::LogicalSides
|
2014-03-13 07:39:33 +00:00
|
|
|
nsSplittableFrame::GetLogicalSkipSides(const nsHTMLReflowState* aReflowState) const
|
2013-07-25 15:34:27 +00:00
|
|
|
{
|
|
|
|
if (IS_TRUE_OVERFLOW_CONTAINER(this)) {
|
2014-06-28 10:13:14 +00:00
|
|
|
return LogicalSides(eLogicalSideBitsBBoth);
|
2013-07-25 15:34:27 +00:00
|
|
|
}
|
|
|
|
|
2014-05-05 17:55:54 +00:00
|
|
|
if (MOZ_UNLIKELY(StyleBorder()->mBoxDecorationBreak ==
|
|
|
|
NS_STYLE_BOX_DECORATION_BREAK_CLONE)) {
|
2014-06-28 10:13:13 +00:00
|
|
|
return LogicalSides();
|
2014-05-05 17:55:54 +00:00
|
|
|
}
|
2014-04-20 19:39:24 +00:00
|
|
|
|
2014-06-28 10:13:13 +00:00
|
|
|
LogicalSides skip;
|
2013-07-25 15:34:27 +00:00
|
|
|
if (GetPrevInFlow()) {
|
2014-06-28 10:13:14 +00:00
|
|
|
skip |= eLogicalSideBitsBStart;
|
2013-07-25 15:34:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (aReflowState) {
|
|
|
|
// We're in the midst of reflow right now, so it's possible that we haven't
|
|
|
|
// created a nif yet. If our content height is going to exceed our available
|
|
|
|
// height, though, then we're going to need a next-in-flow, it just hasn't
|
|
|
|
// been created yet.
|
|
|
|
|
2014-06-20 09:55:35 +00:00
|
|
|
if (NS_UNCONSTRAINEDSIZE != aReflowState->AvailableBSize()) {
|
|
|
|
nscoord effectiveCH = this->GetEffectiveComputedBSize(*aReflowState);
|
2014-05-12 11:45:28 +00:00
|
|
|
if (effectiveCH != NS_INTRINSICSIZE &&
|
2014-06-20 09:55:35 +00:00
|
|
|
effectiveCH > aReflowState->AvailableBSize()) {
|
2013-07-25 15:34:27 +00:00
|
|
|
// Our content height is going to exceed our available height, so we're
|
|
|
|
// going to need a next-in-flow.
|
2014-06-28 10:13:14 +00:00
|
|
|
skip |= eLogicalSideBitsBEnd;
|
2013-07-25 15:34:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
nsIFrame* nif = GetNextInFlow();
|
|
|
|
if (nif && !IS_TRUE_OVERFLOW_CONTAINER(nif)) {
|
2014-06-28 10:13:14 +00:00
|
|
|
skip |= eLogicalSideBitsBEnd;
|
2013-07-25 15:34:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return skip;
|
|
|
|
}
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef DEBUG
|
1998-11-19 18:51:53 +00:00
|
|
|
void
|
2012-08-22 15:56:38 +00:00
|
|
|
nsSplittableFrame::DumpBaseRegressionData(nsPresContext* aPresContext, FILE* out, int32_t aIndent)
|
1998-11-19 18:51:53 +00:00
|
|
|
{
|
2009-02-10 04:36:54 +00:00
|
|
|
nsFrame::DumpBaseRegressionData(aPresContext, out, aIndent);
|
2012-07-30 14:20:58 +00:00
|
|
|
if (nullptr != mNextContinuation) {
|
1998-11-19 18:51:53 +00:00
|
|
|
IndentBy(out, aIndent);
|
2012-09-14 20:09:52 +00:00
|
|
|
fprintf(out, "<next-continuation va=\"%p\"/>\n", (void*)mNextContinuation);
|
1998-11-19 18:51:53 +00:00
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
if (nullptr != mPrevContinuation) {
|
1998-11-19 18:51:53 +00:00
|
|
|
IndentBy(out, aIndent);
|
2012-09-14 20:09:52 +00:00
|
|
|
fprintf(out, "<prev-continuation va=\"%p\"/>\n", (void*)mPrevContinuation);
|
1998-11-19 18:51:53 +00:00
|
|
|
}
|
1999-08-31 03:09:40 +00:00
|
|
|
|
|
|
|
}
|
1999-09-01 01:02:16 +00:00
|
|
|
#endif
|