2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-03-29 22:29:03 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rendering object for the point that anchors out-of-flow rendering
|
|
|
|
* objects such as floats and absolutely positioned elements
|
|
|
|
*/
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsPlaceholderFrame.h"
|
1998-09-24 00:12:21 +04:00
|
|
|
#include "nsLineLayout.h"
|
|
|
|
#include "nsIContent.h"
|
2004-08-01 03:15:21 +04:00
|
|
|
#include "nsPresContext.h"
|
1998-09-24 00:12:21 +04:00
|
|
|
#include "nsIRenderingContext.h"
|
1999-04-23 18:34:48 +04:00
|
|
|
#include "nsLayoutAtoms.h"
|
2005-03-23 06:35:08 +03:00
|
|
|
#include "nsFrameManager.h"
|
2006-01-26 05:29:17 +03:00
|
|
|
#include "nsDisplayList.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2005-11-04 05:38:33 +03:00
|
|
|
nsIFrame*
|
2006-03-27 01:30:36 +04:00
|
|
|
NS_NewPlaceholderFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2002-09-25 02:13:20 +04:00
|
|
|
{
|
2006-03-27 01:30:36 +04:00
|
|
|
return new (aPresShell) nsPlaceholderFrame(aContext);
|
2002-09-25 02:13:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsPlaceholderFrame::~nsPlaceholderFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-07-29 08:05:49 +04:00
|
|
|
NS_IMETHODIMP
|
2004-08-01 03:15:21 +04:00
|
|
|
nsPlaceholderFrame::Reflow(nsPresContext* aPresContext,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
1998-07-29 08:05:49 +04:00
|
|
|
{
|
2000-04-21 18:59:47 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsPlaceholderFrame", aReflowState.reason);
|
2001-11-14 16:40:03 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
1998-07-29 23:33:27 +04:00
|
|
|
aDesiredSize.width = 0;
|
|
|
|
aDesiredSize.height = 0;
|
|
|
|
aDesiredSize.ascent = 0;
|
1998-07-17 03:31:53 +04:00
|
|
|
aDesiredSize.descent = 0;
|
2003-01-09 17:26:32 +03:00
|
|
|
if (aDesiredSize.mComputeMEW) {
|
|
|
|
aDesiredSize.mMaxElementWidth = 0;
|
1998-07-17 03:31:53 +04:00
|
|
|
}
|
1998-10-03 08:28:05 +04:00
|
|
|
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
2002-05-29 02:50:43 +04:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
1998-10-03 08:28:05 +04:00
|
|
|
return NS_OK;
|
1998-07-17 03:31:53 +04:00
|
|
|
}
|
|
|
|
|
2006-04-10 04:16:29 +04:00
|
|
|
void
|
|
|
|
nsPlaceholderFrame::Destroy()
|
2005-03-23 06:35:08 +03:00
|
|
|
{
|
2006-04-10 04:16:29 +04:00
|
|
|
nsIPresShell* shell = GetPresContext()->GetPresShell();
|
2005-03-23 06:35:08 +03:00
|
|
|
if (shell && mOutOfFlowFrame) {
|
|
|
|
NS_ASSERTION(!shell->FrameManager()->GetPlaceholderFrameFor(mOutOfFlowFrame),
|
|
|
|
"Placeholder relationship should have been torn down");
|
|
|
|
}
|
|
|
|
|
2006-04-10 04:16:29 +04:00
|
|
|
nsSplittableFrame::Destroy();
|
2005-03-23 06:35:08 +03:00
|
|
|
}
|
|
|
|
|
2006-08-24 09:22:16 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPlaceholderFrame::IsSplittable(nsSplittableType& aIsSplittable) const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mOutOfFlowFrame, "IsSplittable called at the wrong time");
|
|
|
|
return mOutOfFlowFrame->IsSplittable(aIsSplittable);
|
|
|
|
}
|
|
|
|
|
2003-10-31 23:19:18 +03:00
|
|
|
nsIAtom*
|
|
|
|
nsPlaceholderFrame::GetType() const
|
1999-11-02 01:12:45 +03:00
|
|
|
{
|
2003-10-31 23:19:18 +03:00
|
|
|
return nsLayoutAtoms::placeholderFrame;
|
1999-11-02 01:12:45 +03:00
|
|
|
}
|
|
|
|
|
2006-10-19 05:47:47 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPlaceholderFrame::CanContinueTextRun(PRBool& aContinueTextRun) const
|
|
|
|
{
|
|
|
|
if (!mOutOfFlowFrame) {
|
|
|
|
aContinueTextRun = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
// first-letter frames can continue text runs, and placeholders for floated
|
|
|
|
// first-letter frames can too
|
|
|
|
return mOutOfFlowFrame->CanContinueTextRun(aContinueTextRun);
|
|
|
|
}
|
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef DEBUG
|
2006-01-26 05:29:17 +03:00
|
|
|
static void
|
|
|
|
PaintDebugPlaceholder(nsIFrame* aFrame, nsIRenderingContext* aCtx,
|
|
|
|
const nsRect& aDirtyRect, nsPoint aPt)
|
|
|
|
{
|
|
|
|
float p2t;
|
|
|
|
p2t = aFrame->GetPresContext()->PixelsToTwips();
|
|
|
|
aCtx->SetColor(NS_RGB(0, 255, 255));
|
|
|
|
nscoord x = NSIntPixelsToTwips(-5, p2t);
|
|
|
|
aCtx->FillRect(aPt.x + x, aPt.y,
|
|
|
|
NSIntPixelsToTwips(13, p2t), NSIntPixelsToTwips(3, p2t));
|
|
|
|
nscoord y = NSIntPixelsToTwips(-10, p2t);
|
|
|
|
aCtx->FillRect(aPt.x, aPt.y + y,
|
|
|
|
NSIntPixelsToTwips(3, p2t), NSIntPixelsToTwips(10, p2t));
|
|
|
|
}
|
2006-09-19 08:26:20 +04:00
|
|
|
#endif // DEBUG
|
|
|
|
|
|
|
|
#if defined(DEBUG) || (defined(MOZ_REFLOW_PERF_DSP) && defined(MOZ_REFLOW_PERF))
|
2006-01-26 05:29:17 +03:00
|
|
|
|
1998-07-17 03:31:53 +04:00
|
|
|
NS_IMETHODIMP
|
2006-01-26 05:29:17 +03:00
|
|
|
nsPlaceholderFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
1998-07-17 03:31:53 +04:00
|
|
|
{
|
2006-09-19 08:26:20 +04:00
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP("nsPlaceholderFrame");
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2006-01-26 05:29:17 +03:00
|
|
|
if (!GetShowFrameBorders())
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return aLists.Outlines()->AppendNewToTop(new (aBuilder)
|
|
|
|
nsDisplayGeneric(this, PaintDebugPlaceholder, "DebugPlaceholder"));
|
2006-09-19 08:26:20 +04:00
|
|
|
#else // DEBUG
|
|
|
|
return NS_OK;
|
|
|
|
#endif // DEBUG
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
2006-09-19 08:26:20 +04:00
|
|
|
#endif // DEBUG || (MOZ_REFLOW_PERF_DSP && MOZ_REFLOW_PERF)
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2006-09-19 08:26:20 +04:00
|
|
|
#ifdef DEBUG
|
1998-11-14 22:26:57 +03:00
|
|
|
NS_IMETHODIMP
|
2001-11-14 04:33:42 +03:00
|
|
|
nsPlaceholderFrame::GetFrameName(nsAString& aResult) const
|
1998-04-14 00:24:54 +04:00
|
|
|
{
|
2001-11-14 04:33:42 +03:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("Placeholder"), aResult);
|
1998-04-14 00:24:54 +04:00
|
|
|
}
|
1999-05-04 00:54:24 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-09-07 01:34:50 +04:00
|
|
|
nsPlaceholderFrame::List(FILE* out, PRInt32 aIndent) const
|
1999-05-04 00:54:24 +04:00
|
|
|
{
|
|
|
|
IndentBy(out, aIndent);
|
|
|
|
ListTag(out);
|
2000-07-27 09:16:08 +04:00
|
|
|
#ifdef DEBUG_waterson
|
2001-10-25 05:08:40 +04:00
|
|
|
fprintf(out, " [parent=%p]", NS_STATIC_CAST(void*, mParent));
|
2000-07-27 09:16:08 +04:00
|
|
|
#endif
|
2003-06-20 03:44:01 +04:00
|
|
|
if (HasView()) {
|
2003-06-30 14:46:59 +04:00
|
|
|
fprintf(out, " [view=%p]", (void*)GetView());
|
1999-05-04 00:54:24 +04:00
|
|
|
}
|
|
|
|
fprintf(out, " {%d,%d,%d,%d}", mRect.x, mRect.y, mRect.width, mRect.height);
|
|
|
|
if (0 != mState) {
|
|
|
|
fprintf(out, " [state=%08x]", mState);
|
|
|
|
}
|
2005-03-23 06:35:08 +03:00
|
|
|
nsIFrame* prevInFlow = GetPrevInFlow();
|
|
|
|
nsIFrame* nextInFlow = GetNextInFlow();
|
|
|
|
if (nsnull != prevInFlow) {
|
|
|
|
fprintf(out, " prev-in-flow=%p", NS_STATIC_CAST(void*, prevInFlow));
|
|
|
|
}
|
|
|
|
if (nsnull != nextInFlow) {
|
|
|
|
fprintf(out, " next-in-flow=%p", NS_STATIC_CAST(void*, nextInFlow));
|
|
|
|
}
|
1999-10-29 18:36:00 +04:00
|
|
|
if (mOutOfFlowFrame) {
|
|
|
|
fprintf(out, " outOfFlowFrame=");
|
|
|
|
nsFrame::ListTag(out, mOutOfFlowFrame);
|
|
|
|
}
|
1999-05-04 00:54:24 +04:00
|
|
|
fputs("\n", out);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|