2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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 22:29:03 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* base class for rendering objects that can be split across lines,
|
|
|
|
* columns, or pages
|
|
|
|
*/
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsSplittableFrame.h"
|
|
|
|
#include "nsIContent.h"
|
2004-08-01 03:15:21 +04:00
|
|
|
#include "nsPresContext.h"
|
2003-02-22 03:32:13 +03:00
|
|
|
#include "nsStyleContext.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsSplittableFrame)
|
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
void
|
2006-03-09 21:55:21 +03:00
|
|
|
nsSplittableFrame::Init(nsIContent* aContent,
|
1999-02-25 06:27:57 +03:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow)
|
|
|
|
{
|
2013-03-20 05:47:48 +04:00
|
|
|
nsFrame::Init(aContent, aParent, aPrevInFlow);
|
1999-02-25 06:27:57 +03:00
|
|
|
|
|
|
|
if (aPrevInFlow) {
|
|
|
|
// Hook the frame into the flow
|
2006-02-22 00:33:47 +03:00
|
|
|
SetPrevInFlow(aPrevInFlow);
|
1999-10-22 18:53:52 +04:00
|
|
|
aPrevInFlow->SetNextInFlow(this);
|
1999-02-25 06:27:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-04-10 04:16:29 +04:00
|
|
|
void
|
2009-12-24 08:21:15 +03:00
|
|
|
nsSplittableFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2002-10-30 18:33:36 +03:00
|
|
|
{
|
|
|
|
// Disconnect from the flow list
|
2006-02-22 00:33:47 +03:00
|
|
|
if (mPrevContinuation || mNextContinuation) {
|
2002-10-30 18:33:36 +03:00
|
|
|
RemoveFromFlow(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let the base class destroy the frame
|
2009-12-24 08:21:15 +03:00
|
|
|
nsFrame::DestroyFrom(aDestructRoot);
|
2002-10-30 18:33:36 +03:00
|
|
|
}
|
|
|
|
|
2006-12-20 06:52:34 +03:00
|
|
|
nsSplittableType
|
|
|
|
nsSplittableFrame::GetSplittableType() const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2006-12-20 06:52:34 +03:00
|
|
|
return NS_FRAME_SPLITTABLE;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
2006-02-22 00:33:47 +03: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 11:08:04 +04:00
|
|
|
nsSplittableFrame* firstContinuation = const_cast<nsSplittableFrame*>(this);
|
2006-02-22 00:33:47 +03:00
|
|
|
while (firstContinuation->mPrevContinuation) {
|
2007-07-08 11:08:04 +04:00
|
|
|
firstContinuation = static_cast<nsSplittableFrame*>(firstContinuation->mPrevContinuation);
|
2006-02-22 00:33:47 +03:00
|
|
|
}
|
|
|
|
NS_POSTCONDITION(firstContinuation, "illegal state in continuation chain.");
|
|
|
|
return firstContinuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetLastContinuation() const
|
|
|
|
{
|
2007-07-08 11:08:04 +04:00
|
|
|
nsSplittableFrame* lastContinuation = const_cast<nsSplittableFrame*>(this);
|
2006-02-22 00:33:47 +03:00
|
|
|
while (lastContinuation->mNextContinuation) {
|
2007-07-08 11:08:04 +04:00
|
|
|
lastContinuation = static_cast<nsSplittableFrame*>(lastContinuation->mNextContinuation);
|
2006-02-22 00:33:47 +03:00
|
|
|
}
|
|
|
|
NS_POSTCONDITION(lastContinuation, "illegal state in continuation chain.");
|
|
|
|
return lastContinuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsSplittableFrame::IsInPrevContinuationChain(nsIFrame* aFrame1, nsIFrame* aFrame2)
|
2006-02-22 00:33:47 +03:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t iterations = 0;
|
2009-07-10 06:03:03 +04:00
|
|
|
while (aFrame1 && iterations < 10) {
|
|
|
|
// Bail out after 10 iterations so we don't bog down debug builds too much
|
2006-02-22 00:33:47 +03:00
|
|
|
if (aFrame1 == aFrame2)
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2006-02-22 00:33:47 +03:00
|
|
|
aFrame1 = aFrame1->GetPrevContinuation();
|
2009-07-10 06:03:03 +04:00
|
|
|
++iterations;
|
2006-02-22 00:33:47 +03:00
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2006-02-22 00:33:47 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsSplittableFrame::IsInNextContinuationChain(nsIFrame* aFrame1, nsIFrame* aFrame2)
|
2006-02-22 00:33:47 +03:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t iterations = 0;
|
2009-07-10 06:03:03 +04:00
|
|
|
while (aFrame1 && iterations < 10) {
|
|
|
|
// Bail out after 10 iterations so we don't bog down debug builds too much
|
2006-02-22 00:33:47 +03:00
|
|
|
if (aFrame1 == aFrame2)
|
2011-10-17 18:59:28 +04:00
|
|
|
return true;
|
2006-02-22 00:33:47 +03:00
|
|
|
aFrame1 = aFrame1->GetNextContinuation();
|
2009-07-10 06:03:03 +04:00
|
|
|
++iterations;
|
2006-02-22 00:33:47 +03:00
|
|
|
}
|
2011-10-17 18:59:28 +04:00
|
|
|
return false;
|
2006-02-22 00:33:47 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-09-14 06:28:03 +04:00
|
|
|
nsIFrame* nsSplittableFrame::GetPrevInFlow() const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2012-07-30 18:20:58 +04:00
|
|
|
return (GetStateBits() & NS_FRAME_IS_FLUID_CONTINUATION) ? mPrevContinuation : nullptr;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-04-17 05:41:24 +04:00
|
|
|
NS_METHOD nsSplittableFrame::SetPrevInFlow(nsIFrame* aFrame)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2006-02-22 00:33:47 +03: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 05:41:24 +04:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
2004-09-14 06:28:03 +04:00
|
|
|
nsIFrame* nsSplittableFrame::GetNextInFlow() const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2006-02-22 00:33:47 +03:00
|
|
|
return mNextContinuation && (mNextContinuation->GetStateBits() & NS_FRAME_IS_FLUID_CONTINUATION) ?
|
2012-07-30 18:20:58 +04:00
|
|
|
mNextContinuation : nullptr;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1998-04-17 05:41:24 +04:00
|
|
|
NS_METHOD nsSplittableFrame::SetNextInFlow(nsIFrame* aFrame)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2006-02-22 00:33:47 +03: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 05:41:24 +04:00
|
|
|
return NS_OK;
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetFirstInFlow() const
|
|
|
|
{
|
2007-07-08 11:08:04 +04:00
|
|
|
nsSplittableFrame* firstInFlow = const_cast<nsSplittableFrame*>(this);
|
2006-02-22 00:33:47 +03:00
|
|
|
while (nsIFrame *prev = firstInFlow->GetPrevInFlow()) {
|
2007-07-08 11:08:04 +04:00
|
|
|
firstInFlow = static_cast<nsSplittableFrame*>(prev);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2003-01-16 05:59:04 +03:00
|
|
|
NS_POSTCONDITION(firstInFlow, "illegal state in flow chain.");
|
1998-04-14 00:24:54 +04:00
|
|
|
return firstInFlow;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame* nsSplittableFrame::GetLastInFlow() const
|
|
|
|
{
|
2007-07-08 11:08:04 +04:00
|
|
|
nsSplittableFrame* lastInFlow = const_cast<nsSplittableFrame*>(this);
|
2006-02-22 00:33:47 +03:00
|
|
|
while (nsIFrame* next = lastInFlow->GetNextInFlow()) {
|
2007-07-08 11:08:04 +04:00
|
|
|
lastInFlow = static_cast<nsSplittableFrame*>(next);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2003-01-16 05:59:04 +03:00
|
|
|
NS_POSTCONDITION(lastInFlow, "illegal state in flow chain.");
|
1998-04-14 00:24:54 +04:00
|
|
|
return lastInFlow;
|
|
|
|
}
|
|
|
|
|
1999-10-22 18:53:52 +04:00
|
|
|
// Remove this frame from the flow. Connects prev in flow and next in flow
|
|
|
|
void
|
|
|
|
nsSplittableFrame::RemoveFromFlow(nsIFrame* aFrame)
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2006-02-22 00:33:47 +03:00
|
|
|
nsIFrame* prevContinuation = aFrame->GetPrevContinuation();
|
|
|
|
nsIFrame* nextContinuation = aFrame->GetNextContinuation();
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2006-02-22 00:33:47 +03: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-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
aFrame->SetPrevInFlow(nullptr);
|
|
|
|
aFrame->SetNextInFlow(nullptr);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef DEBUG
|
1998-11-19 21:51:53 +03:00
|
|
|
void
|
2012-08-22 19:56:38 +04:00
|
|
|
nsSplittableFrame::DumpBaseRegressionData(nsPresContext* aPresContext, FILE* out, int32_t aIndent)
|
1998-11-19 21:51:53 +03:00
|
|
|
{
|
2009-02-10 07:36:54 +03:00
|
|
|
nsFrame::DumpBaseRegressionData(aPresContext, out, aIndent);
|
2012-07-30 18:20:58 +04:00
|
|
|
if (nullptr != mNextContinuation) {
|
1998-11-19 21:51:53 +03:00
|
|
|
IndentBy(out, aIndent);
|
2012-09-15 00:09:52 +04:00
|
|
|
fprintf(out, "<next-continuation va=\"%p\"/>\n", (void*)mNextContinuation);
|
1998-11-19 21:51:53 +03:00
|
|
|
}
|
2012-07-30 18:20:58 +04:00
|
|
|
if (nullptr != mPrevContinuation) {
|
1998-11-19 21:51:53 +03:00
|
|
|
IndentBy(out, aIndent);
|
2012-09-15 00:09:52 +04:00
|
|
|
fprintf(out, "<prev-continuation va=\"%p\"/>\n", (void*)mPrevContinuation);
|
1998-11-19 21:51:53 +03:00
|
|
|
}
|
1999-08-31 07:09:40 +04:00
|
|
|
|
|
|
|
}
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|