2002-01-25 02:07:03 +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/. */
|
2002-01-25 02:07:03 +00:00
|
|
|
#include "nsPageContentFrame.h"
|
2007-07-26 04:03:29 +00:00
|
|
|
#include "nsPageFrame.h"
|
2008-02-24 12:19:17 +00:00
|
|
|
#include "nsPlaceholderFrame.h"
|
2007-07-26 04:03:29 +00:00
|
|
|
#include "nsCSSFrameConstructor.h"
|
2011-12-27 20:18:48 +00:00
|
|
|
#include "nsContainerFrame.h"
|
2002-01-25 02:07:03 +00:00
|
|
|
#include "nsHTMLParts.h"
|
|
|
|
#include "nsIContent.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2007-01-30 00:06:41 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2002-01-25 02:07:03 +00:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsReadableUtils.h"
|
2002-09-19 21:45:07 +00:00
|
|
|
#include "nsSimplePageSequence.h"
|
2006-01-26 02:29:17 +00:00
|
|
|
#include "nsDisplayList.h"
|
2002-01-25 02:07:03 +00:00
|
|
|
|
2005-11-04 02:38:33 +00:00
|
|
|
nsIFrame*
|
2006-03-26 21:30:36 +00:00
|
|
|
NS_NewPageContentFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2002-01-31 14:24:06 +00:00
|
|
|
{
|
2006-03-26 21:30:36 +00:00
|
|
|
return new (aPresShell) nsPageContentFrame(aContext);
|
2002-01-31 14:24:06 +00:00
|
|
|
}
|
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsPageContentFrame)
|
|
|
|
|
2007-07-26 04:03:29 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPageContentFrame::Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
2002-01-25 02:07:03 +00:00
|
|
|
{
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsPageContentFrame");
|
2002-01-25 02:07:03 +00:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
|
|
|
aStatus = NS_FRAME_COMPLETE; // initialize out parameter
|
2008-02-24 12:19:17 +00:00
|
|
|
nsresult rv = NS_OK;
|
2002-01-25 02:07:03 +00:00
|
|
|
|
2008-09-08 08:13:17 +00:00
|
|
|
if (GetPrevInFlow() && (GetStateBits() & NS_FRAME_FIRST_REFLOW)) {
|
2007-08-07 16:06:56 +00:00
|
|
|
nsresult rv = aPresContext->PresShell()->FrameConstructor()
|
|
|
|
->ReplicateFixedFrames(this);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-07-26 04:03:29 +00:00
|
|
|
}
|
|
|
|
|
2010-08-05 21:59:36 +00:00
|
|
|
// Set our size up front, since some parts of reflow depend on it
|
|
|
|
// being already set. Note that the computed height may be
|
|
|
|
// unconstrained; that's ok. Consumers should watch out for that.
|
2012-08-31 21:20:56 +00:00
|
|
|
nsSize maxSize(aReflowState.ComputedWidth(),
|
|
|
|
aReflowState.ComputedHeight());
|
|
|
|
SetSize(maxSize);
|
2010-08-05 21:59:36 +00:00
|
|
|
|
2008-09-08 08:13:17 +00:00
|
|
|
// A PageContentFrame must always have one child: the canvas frame.
|
2006-04-01 01:19:28 +00:00
|
|
|
// Resize our frame allowing it only to be as big as we are
|
|
|
|
// XXX Pay attention to the page's border and padding...
|
|
|
|
if (mFrames.NotEmpty()) {
|
|
|
|
nsIFrame* frame = mFrames.FirstChild();
|
|
|
|
nsHTMLReflowState kidReflowState(aPresContext, aReflowState, frame, maxSize);
|
2012-08-31 21:20:56 +00:00
|
|
|
kidReflowState.SetComputedHeight(maxSize.height);
|
2006-04-01 01:19:28 +00:00
|
|
|
|
2012-08-31 21:20:56 +00:00
|
|
|
mPD->mPageContentSize = maxSize.width;
|
2006-04-01 01:19:28 +00:00
|
|
|
|
2008-02-24 12:19:17 +00:00
|
|
|
// Reflow the page content area
|
|
|
|
rv = ReflowChild(frame, aPresContext, aDesiredSize, kidReflowState, 0, 0, 0, aStatus);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2006-04-01 01:19:28 +00:00
|
|
|
// The document element's background should cover the entire canvas, so
|
|
|
|
// take into account the combined area and any space taken up by
|
|
|
|
// absolutely positioned elements
|
|
|
|
nsMargin padding(0,0,0,0);
|
|
|
|
|
|
|
|
// XXXbz this screws up percentage padding (sets padding to zero
|
|
|
|
// in the percentage padding case)
|
|
|
|
kidReflowState.mStylePadding->GetPadding(padding);
|
|
|
|
|
2010-10-07 04:25:47 +00:00
|
|
|
// This is for shrink-to-fit, and therefore we want to use the
|
|
|
|
// scrollable overflow, since the purpose of shrink to fit is to
|
|
|
|
// make the content that ought to be reachable (represented by the
|
|
|
|
// scrollable overflow) fit in the page.
|
|
|
|
if (frame->HasOverflowAreas()) {
|
2006-04-01 01:19:28 +00:00
|
|
|
// The background covers the content area and padding area, so check
|
|
|
|
// for children sticking outside the child frame's padding edge
|
2010-10-07 04:25:47 +00:00
|
|
|
nscoord xmost = aDesiredSize.ScrollableOverflow().XMost();
|
|
|
|
if (xmost > aDesiredSize.width) {
|
2006-04-01 01:19:28 +00:00
|
|
|
mPD->mPageContentXMost =
|
2010-10-07 04:25:47 +00:00
|
|
|
xmost +
|
2012-05-31 05:19:49 +00:00
|
|
|
kidReflowState.mStyleBorder->GetComputedBorderWidth(NS_SIDE_RIGHT) +
|
2006-04-01 01:19:28 +00:00
|
|
|
padding.right;
|
2002-09-19 21:45:07 +00:00
|
|
|
}
|
2006-04-01 01:19:28 +00:00
|
|
|
}
|
2002-09-19 21:45:07 +00:00
|
|
|
|
2006-04-01 01:19:28 +00:00
|
|
|
// Place and size the child
|
|
|
|
FinishReflowChild(frame, aPresContext, &kidReflowState, aDesiredSize, 0, 0, 0);
|
2002-01-25 02:07:03 +00:00
|
|
|
|
2007-07-26 04:03:29 +00:00
|
|
|
NS_ASSERTION(aPresContext->IsDynamic() || !NS_FRAME_IS_FULLY_COMPLETE(aStatus) ||
|
2006-04-01 01:19:28 +00:00
|
|
|
!frame->GetNextInFlow(), "bad child flow list");
|
|
|
|
}
|
2011-04-29 23:02:33 +00:00
|
|
|
|
|
|
|
// Reflow our fixed frames
|
2008-04-22 17:24:28 +00:00
|
|
|
nsReflowStatus fixedStatus = NS_FRAME_COMPLETE;
|
2011-04-29 23:02:33 +00:00
|
|
|
ReflowAbsoluteFrames(aPresContext, aDesiredSize, aReflowState, fixedStatus);
|
2008-04-22 17:24:28 +00:00
|
|
|
NS_ASSERTION(NS_FRAME_IS_COMPLETE(fixedStatus), "fixed frames can be truncated, but not incomplete");
|
2006-04-01 01:19:28 +00:00
|
|
|
|
|
|
|
// Return our desired size
|
2012-08-31 21:20:56 +00:00
|
|
|
aDesiredSize.width = aReflowState.ComputedWidth();
|
|
|
|
if (aReflowState.ComputedHeight() != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
aDesiredSize.height = aReflowState.ComputedHeight();
|
2002-01-25 02:07:03 +00:00
|
|
|
}
|
|
|
|
|
2010-08-27 23:15:08 +00:00
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
|
2002-05-28 22:50:43 +00:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
2002-01-25 02:07:03 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
nsIAtom*
|
|
|
|
nsPageContentFrame::GetType() const
|
2002-01-25 02:07:03 +00:00
|
|
|
{
|
2006-12-26 17:47:52 +00:00
|
|
|
return nsGkAtoms::pageContentFrame;
|
2002-01-25 02:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPageContentFrame::GetFrameName(nsAString& aResult) const
|
|
|
|
{
|
|
|
|
return MakeFrameName(NS_LITERAL_STRING("PageContent"), aResult);
|
|
|
|
}
|
|
|
|
#endif
|