gecko-dev/layout/generic/nsPlaceholderFrame.cpp

198 lines
5.7 KiB
C++
Raw Normal View History

1998-04-13 20:24:54 +00:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#include "nsPlaceholderFrame.h"
#include "nsIContent.h"
#include "nsIContentDelegate.h"
#include "nsIFloaterContainer.h"
static NS_DEFINE_IID(kIFloaterContainerIID, NS_IFLOATERCONTAINER_IID);
nsresult
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::NewFrame(nsIFrame** aInstancePtrResult,
nsIContent* aContent,
nsIFrame* aParent)
1998-04-13 20:24:54 +00:00
{
NS_PRECONDITION(nsnull != aInstancePtrResult, "null ptr");
if (nsnull == aInstancePtrResult) {
return NS_ERROR_NULL_POINTER;
}
1998-05-28 02:37:37 +00:00
nsIFrame* it = new nsPlaceholderFrame(aContent, aParent);
1998-04-13 20:24:54 +00:00
if (nsnull == it) {
return NS_ERROR_OUT_OF_MEMORY;
}
*aInstancePtrResult = it;
return NS_OK;
}
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::nsPlaceholderFrame(nsIContent* aContent, nsIFrame* aParent)
: nsFrame(aContent, aParent)
1998-04-13 20:24:54 +00:00
{
mAnchoredItem = nsnull;
}
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::~nsPlaceholderFrame()
1998-04-13 20:24:54 +00:00
{
}
1998-05-28 02:37:37 +00:00
NS_METHOD nsPlaceholderFrame::Reflow(nsIPresContext* aPresContext,
nsReflowMetrics& aDesiredSize,
const nsReflowState& aReflowState,
nsReflowStatus& aStatus)
1998-04-13 20:24:54 +00:00
{
// Get the floater container in which we're inserted
nsIFloaterContainer* container = nsnull;
for (nsIFrame* parent = mGeometricParent; parent; parent->GetGeometricParent(parent)) {
1998-04-13 20:24:54 +00:00
if (NS_OK == parent->QueryInterface(kIFloaterContainerIID, (void**)&container)) {
break;
}
}
NS_ASSERTION(nsnull != container, "no floater container");
// Have we created the anchored item yet?
if (nsnull == mAnchoredItem) {
// Create the anchored item
nsIContentDelegate* delegate = mContent->GetDelegate(aPresContext);
nsresult rv = delegate->CreateFrame(aPresContext, mContent,
mGeometricParent, mStyleContext,
mAnchoredItem);
1998-04-13 20:24:54 +00:00
NS_RELEASE(delegate);
if (NS_OK != rv) {
return rv;
}
1998-04-13 20:24:54 +00:00
// Resize reflow the anchored item into the available space
// XXX Check for complete?
nsReflowMetrics desiredSize(nsnull);
nsReflowState reflowState(eReflowReason_Initial, aReflowState.maxSize);
1998-05-28 20:12:02 +00:00
mAnchoredItem->WillReflow(*aPresContext);
mAnchoredItem->Reflow(aPresContext, desiredSize, reflowState, aStatus);
mAnchoredItem->SizeTo(desiredSize.width, desiredSize.height);
1998-04-13 20:24:54 +00:00
// Now notify our containing block that there's a new floater
container->AddFloater(aPresContext, mAnchoredItem, this);
1998-05-28 20:12:02 +00:00
mAnchoredItem->DidReflow(*aPresContext, NS_FRAME_REFLOW_FINISHED);
1998-04-13 20:24:54 +00:00
} else {
// XXX This causes anchored-items sizes to get fixed up; this is
// not quite right because this class should be implementing one
// of the incremental reflow methods and propagating things down
// properly to the contained frame.
nsReflowMetrics desiredSize(nsnull);
nsReflowState reflowState(eReflowReason_Resize, aReflowState.maxSize);
1998-05-28 20:12:02 +00:00
mAnchoredItem->WillReflow(*aPresContext);
mAnchoredItem->Reflow(aPresContext, desiredSize, reflowState, aStatus);
mAnchoredItem->SizeTo(desiredSize.width, desiredSize.height);
1998-04-13 20:24:54 +00:00
container->PlaceFloater(aPresContext, mAnchoredItem, this);
1998-05-28 20:12:02 +00:00
mAnchoredItem->DidReflow(*aPresContext, NS_FRAME_REFLOW_FINISHED);
1998-04-13 20:24:54 +00:00
}
return nsFrame::Reflow(aPresContext, aDesiredSize, aReflowState, aStatus);
1998-04-13 20:24:54 +00:00
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::ChildCount(PRInt32& aChildCount) const
{
aChildCount = 1;
return NS_OK;
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::ChildAt(PRInt32 aIndex, nsIFrame*& aFrame) const
{
aFrame = (0 == aIndex) ? mAnchoredItem : nsnull;
return NS_OK;
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::IndexOf(const nsIFrame* aChild, PRInt32& aIndex) const
{
aIndex = (aChild == mAnchoredItem) ? 0 : -1;
return NS_OK;
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::FirstChild(nsIFrame*& aFirstChild) const
{
aFirstChild = mAnchoredItem;
return NS_OK;
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::NextChild(const nsIFrame* aChild, nsIFrame*& aNextChild) const
{
aNextChild = nsnull;
return NS_OK;
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::PrevChild(const nsIFrame* aChild, nsIFrame*& aPrevChild) const
{
aPrevChild = nsnull;
return NS_OK;
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::LastChild(nsIFrame*& aLastChild) const
{
aLastChild = mAnchoredItem;
return NS_OK;
}
1998-05-28 02:37:37 +00:00
NS_METHOD nsPlaceholderFrame::ListTag(FILE* out) const
1998-04-13 20:24:54 +00:00
{
fputs("*placeholder", out);
PRInt32 contentIndex;
GetContentIndex(contentIndex);
fprintf(out, "(%d)@%p", contentIndex, this);
return NS_OK;
1998-04-13 20:24:54 +00:00
}
NS_METHOD
1998-05-28 02:37:37 +00:00
nsPlaceholderFrame::List(FILE* out, PRInt32 aIndent) const
{
PRInt32 i;
// Indent
for (i = aIndent; --i >= 0; ) fputs(" ", out);
// Output the tag
ListTag(out);
// Output the rect
out << mRect;
// Output the children
if (nsnull != mAnchoredItem) {
1998-05-18 16:53:09 +00:00
if (0 != mState) {
fprintf(out, " [state=%08x]", mState);
}
fputs("<\n", out);
mAnchoredItem->List(out, aIndent + 1);
for (i = aIndent; --i >= 0; ) fputs(" ", out);
fputs(">\n", out);
} else {
1998-05-18 16:53:09 +00:00
if (0 != mState) {
fprintf(out, " [state=%08x]", mState);
}
fputs("<>\n", out);
}
return NS_OK;
}