2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00: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-13 20:24:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00: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-13 20:24:54 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00: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-28 20:14:13 +00: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 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00: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 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rendering object for the point that anchors out-of-flow rendering
|
|
|
|
* objects such as floats and absolutely positioned elements
|
|
|
|
*/
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsPlaceholderFrame.h"
|
1998-09-23 20:12:21 +00:00
|
|
|
#include "nsLineLayout.h"
|
|
|
|
#include "nsIContent.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
1998-09-23 20:12:21 +00:00
|
|
|
#include "nsIRenderingContext.h"
|
1999-04-23 14:34:48 +00:00
|
|
|
#include "nsLayoutAtoms.h"
|
2005-03-23 03:35:08 +00:00
|
|
|
#include "nsFrameManager.h"
|
2006-01-26 02:29:17 +00:00
|
|
|
#include "nsDisplayList.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2005-11-04 02:38:33 +00:00
|
|
|
nsIFrame*
|
2006-03-26 21:30:36 +00:00
|
|
|
NS_NewPlaceholderFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2002-09-24 22:13:20 +00:00
|
|
|
{
|
2006-03-26 21:30:36 +00:00
|
|
|
return new (aPresShell) nsPlaceholderFrame(aContext);
|
2002-09-24 22:13:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsPlaceholderFrame::~nsPlaceholderFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-07-29 04:05:49 +00:00
|
|
|
NS_IMETHODIMP
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPlaceholderFrame::Reflow(nsPresContext* aPresContext,
|
1998-10-03 04:28:05 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
1998-07-29 04:05:49 +00:00
|
|
|
{
|
2000-04-21 14:59:47 +00:00
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsPlaceholderFrame", aReflowState.reason);
|
2001-11-14 13:40:03 +00:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
1998-07-29 19:33:27 +00:00
|
|
|
aDesiredSize.width = 0;
|
|
|
|
aDesiredSize.height = 0;
|
|
|
|
aDesiredSize.ascent = 0;
|
1998-07-16 23:31:53 +00:00
|
|
|
aDesiredSize.descent = 0;
|
2003-01-09 14:26:32 +00:00
|
|
|
if (aDesiredSize.mComputeMEW) {
|
|
|
|
aDesiredSize.mMaxElementWidth = 0;
|
1998-07-16 23:31:53 +00:00
|
|
|
}
|
1998-10-03 04:28:05 +00:00
|
|
|
|
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
2002-05-28 22:50:43 +00:00
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
1998-10-03 04:28:05 +00:00
|
|
|
return NS_OK;
|
1998-07-16 23:31:53 +00:00
|
|
|
}
|
|
|
|
|
2006-03-15 06:43:36 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPlaceholderFrame::Destroy(nsPresContext* aPresContext)
|
2005-03-23 03:35:08 +00:00
|
|
|
{
|
2006-03-15 06:43:36 +00:00
|
|
|
nsIPresShell* shell = aPresContext->GetPresShell();
|
2005-03-23 03:35:08 +00:00
|
|
|
if (shell && mOutOfFlowFrame) {
|
|
|
|
NS_ASSERTION(!shell->FrameManager()->GetPlaceholderFrameFor(mOutOfFlowFrame),
|
|
|
|
"Placeholder relationship should have been torn down");
|
|
|
|
}
|
|
|
|
|
2006-03-15 06:43:36 +00:00
|
|
|
return nsSplittableFrame::Destroy(aPresContext);
|
2005-03-23 03:35:08 +00:00
|
|
|
}
|
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
nsIAtom*
|
|
|
|
nsPlaceholderFrame::GetType() const
|
1999-11-01 22:12:45 +00:00
|
|
|
{
|
2003-10-31 20:19:18 +00:00
|
|
|
return nsLayoutAtoms::placeholderFrame;
|
1999-11-01 22:12:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2006-01-26 02:29:17 +00: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));
|
|
|
|
}
|
|
|
|
|
1998-07-16 23:31:53 +00:00
|
|
|
NS_IMETHODIMP
|
2006-01-26 02:29:17 +00:00
|
|
|
nsPlaceholderFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists)
|
1998-07-16 23:31:53 +00:00
|
|
|
{
|
2006-01-26 02:29:17 +00:00
|
|
|
if (!GetShowFrameBorders())
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
return aLists.Outlines()->AppendNewToTop(new (aBuilder)
|
|
|
|
nsDisplayGeneric(this, PaintDebugPlaceholder, "DebugPlaceholder"));
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
|
|
|
|
1998-11-14 19:26:57 +00:00
|
|
|
NS_IMETHODIMP
|
2001-11-14 01:33:42 +00:00
|
|
|
nsPlaceholderFrame::GetFrameName(nsAString& aResult) const
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
2001-11-14 01:33:42 +00:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("Placeholder"), aResult);
|
1998-04-13 20:24:54 +00:00
|
|
|
}
|
1999-05-03 20:54:24 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2005-09-06 21:34:50 +00:00
|
|
|
nsPlaceholderFrame::List(FILE* out, PRInt32 aIndent) const
|
1999-05-03 20:54:24 +00:00
|
|
|
{
|
|
|
|
IndentBy(out, aIndent);
|
|
|
|
ListTag(out);
|
2000-07-27 05:16:08 +00:00
|
|
|
#ifdef DEBUG_waterson
|
2001-10-25 01:08:40 +00:00
|
|
|
fprintf(out, " [parent=%p]", NS_STATIC_CAST(void*, mParent));
|
2000-07-27 05:16:08 +00:00
|
|
|
#endif
|
2003-06-19 23:44:01 +00:00
|
|
|
if (HasView()) {
|
2003-06-30 10:46:59 +00:00
|
|
|
fprintf(out, " [view=%p]", (void*)GetView());
|
1999-05-03 20:54:24 +00: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 03:35:08 +00: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 14:36:00 +00:00
|
|
|
if (mOutOfFlowFrame) {
|
|
|
|
fprintf(out, " outOfFlowFrame=");
|
|
|
|
nsFrame::ListTag(out, mOutOfFlowFrame);
|
|
|
|
}
|
1999-05-03 20:54:24 +00:00
|
|
|
fputs("\n", out);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-09-01 01:02:16 +00:00
|
|
|
#endif
|