2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
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.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* 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
|
|
|
|
* either 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"),
|
|
|
|
* 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
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* 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
|
|
|
|
* the terms of any one of the NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
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"
|
1998-07-16 23:31:53 +00:00
|
|
|
#include "nsIPresContext.h"
|
1998-09-23 20:12:21 +00:00
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsIStyleContext.h"
|
1999-04-23 14:34:48 +00:00
|
|
|
#include "nsLayoutAtoms.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
nsresult
|
1999-12-04 23:49:50 +00:00
|
|
|
NS_NewPlaceholderFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame)
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
1999-05-11 22:03:29 +00:00
|
|
|
NS_PRECONDITION(aNewFrame, "null OUT ptr");
|
|
|
|
if (nsnull == aNewFrame) {
|
1998-04-13 20:24:54 +00:00
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
1999-12-04 23:49:50 +00:00
|
|
|
nsPlaceholderFrame* it = new (aPresShell) nsPlaceholderFrame;
|
1998-04-13 20:24:54 +00:00
|
|
|
if (nsnull == it) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
1999-05-11 22:03:29 +00:00
|
|
|
*aNewFrame = it;
|
1998-04-13 20:24:54 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2002-09-24 22:13:20 +00:00
|
|
|
// These are useful for debugging
|
|
|
|
nsPlaceholderFrame::nsPlaceholderFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsPlaceholderFrame::~nsPlaceholderFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1998-07-29 04:05:49 +00:00
|
|
|
NS_IMETHODIMP
|
1999-11-24 06:03:41 +00:00
|
|
|
nsPlaceholderFrame::Reflow(nsIPresContext* 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;
|
|
|
|
if (nsnull != aDesiredSize.maxElementSize) {
|
1998-11-10 18:04:34 +00:00
|
|
|
aDesiredSize.maxElementSize->width = 0;
|
|
|
|
aDesiredSize.maxElementSize->height = 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
|
|
|
}
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPlaceholderFrame::GetFrameType(nsIAtom** aType) const
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(nsnull != aType, "null OUT parameter pointer");
|
|
|
|
*aType = nsLayoutAtoms::placeholderFrame;
|
|
|
|
NS_ADDREF(*aType);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2001-10-25 01:08:40 +00:00
|
|
|
NS_IMETHODIMP
|
2002-06-25 21:16:17 +00:00
|
|
|
nsPlaceholderFrame::IsEmpty(nsCompatibility aCompatMode,
|
|
|
|
PRBool aIsPre,
|
|
|
|
PRBool *aResult)
|
2001-10-25 01:08:40 +00:00
|
|
|
{
|
|
|
|
*aResult = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef DEBUG
|
1998-07-16 23:31:53 +00:00
|
|
|
NS_IMETHODIMP
|
2001-09-19 12:35:19 +00:00
|
|
|
nsPlaceholderFrame::Paint(nsIPresContext* aPresContext,
|
1998-07-16 23:31:53 +00:00
|
|
|
nsIRenderingContext& aRenderingContext,
|
2001-09-19 12:35:19 +00:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer,
|
|
|
|
PRUint32 aFlags)
|
1998-07-16 23:31:53 +00:00
|
|
|
{
|
1999-03-26 00:39:35 +00:00
|
|
|
if ((NS_FRAME_PAINT_LAYER_DEBUG == aWhichLayer) && GetShowFrameBorders()) {
|
1999-02-12 17:45:58 +00:00
|
|
|
float p2t;
|
1999-11-24 06:03:41 +00:00
|
|
|
aPresContext->GetPixelsToTwips(&p2t);
|
1998-07-16 23:31:53 +00:00
|
|
|
aRenderingContext.SetColor(NS_RGB(0, 255, 255));
|
1998-07-31 23:34:45 +00:00
|
|
|
nscoord x = NSIntPixelsToTwips(-5, p2t);
|
1998-11-14 19:26:57 +00:00
|
|
|
aRenderingContext.FillRect(x, 0, NSIntPixelsToTwips(13, p2t),
|
|
|
|
NSIntPixelsToTwips(3, p2t));
|
1998-07-31 23:34:45 +00:00
|
|
|
nscoord y = NSIntPixelsToTwips(-10, p2t);
|
1998-11-14 19:26:57 +00:00
|
|
|
aRenderingContext.FillRect(0, y, NSIntPixelsToTwips(3, p2t),
|
|
|
|
NSIntPixelsToTwips(10, p2t));
|
1998-07-16 23:31:53 +00:00
|
|
|
}
|
2001-03-13 01:47:22 +00:00
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP("nsPlaceholderFrame", &aRenderingContext);
|
1998-07-16 23:31:53 +00:00
|
|
|
return NS_OK;
|
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
|
1999-10-26 04:44:41 +00:00
|
|
|
nsPlaceholderFrame::List(nsIPresContext* aPresContext, 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
|
1999-05-03 20:54:24 +00:00
|
|
|
nsIView* view;
|
1999-10-26 04:44:41 +00:00
|
|
|
GetView(aPresContext, &view);
|
1999-05-03 20:54:24 +00:00
|
|
|
if (nsnull != view) {
|
2001-10-25 01:08:40 +00:00
|
|
|
fprintf(out, " [view=%p]", (void*)view);
|
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);
|
|
|
|
}
|
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-08-31 03:09:40 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsPlaceholderFrame::SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const
|
|
|
|
{
|
|
|
|
if (!aResult) {
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
*aResult = sizeof(*this);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-09-24 22:13:20 +00:00
|
|
|
|
1999-09-01 01:02:16 +00:00
|
|
|
#endif
|