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"
|
|
|
|
#include "nsIContent.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsStyleContext.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSplittableFrame)
|
|
|
|
|
2013-03-20 01:47:48 +00:00
|
|
|
void
|
2006-03-09 18:55:21 +00:00
|
|
|
nsSplittableFrame::Init(nsIContent* aContent,
|
1999-02-25 03:27:57 +00:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD nsSplittableFrame::SetPrevContinuation(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetNextContinuation() const
|
|
|
|
{
|
|
|
|
return mNextContinuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_METHOD nsSplittableFrame::SetNextContinuation(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetFirstContinuation() const
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
NS_POSTCONDITION(firstContinuation, "illegal state in continuation chain.");
|
|
|
|
return firstContinuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetLastContinuation() const
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
NS_POSTCONDITION(lastContinuation, "illegal state in continuation chain.");
|
|
|
|
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
|
|
|
}
|
|
|
|
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_METHOD 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-17 01:41:24 +00:00
|
|
|
return NS_OK;
|
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
|
|
|
}
|
|
|
|
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_METHOD 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-17 01:41:24 +00:00
|
|
|
return NS_OK;
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetFirstInFlow() const
|
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
nsSplittableFrame* firstInFlow = const_cast<nsSplittableFrame*>(this);
|
2006-02-21 21:33:47 +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
|
|
|
}
|
2003-01-16 02:59:04 +00:00
|
|
|
NS_POSTCONDITION(firstInFlow, "illegal state in flow chain.");
|
1998-04-13 20:24:54 +00:00
|
|
|
return firstInFlow;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetLastInFlow() const
|
|
|
|
{
|
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
|
|
|
}
|
2003-01-16 02:59:04 +00:00
|
|
|
NS_POSTCONDITION(lastInFlow, "illegal state in flow chain.");
|
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
|
|
|
}
|
|
|
|
|
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
|