1998-09-09 02:34:40 +04: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 "nsHTMLParts.h"
|
|
|
|
#include "nsContainerFrame.h"
|
1998-09-26 03:39:06 +04:00
|
|
|
#include "nsCSSRendering.h"
|
1998-09-09 02:34:40 +04:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIReflowCommand.h"
|
|
|
|
#include "nsIPresContext.h"
|
|
|
|
#include "nsIStyleContext.h"
|
|
|
|
#include "nsViewsCID.h"
|
|
|
|
#include "nsIView.h"
|
|
|
|
#include "nsIViewManager.h"
|
|
|
|
#include "nsIWidget.h"
|
|
|
|
#include "nsHTMLIIDs.h"
|
|
|
|
#include "nsPageFrame.h"
|
|
|
|
#include "nsIRenderingContext.h"
|
|
|
|
#include "nsGUIEvent.h"
|
|
|
|
#include "nsDOMEvent.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsIViewManager.h"
|
|
|
|
#include "nsHTMLAtoms.h"
|
|
|
|
#include "nsIEventStateManager.h"
|
|
|
|
#include "nsIDeviceContext.h"
|
1998-10-19 04:44:28 +04:00
|
|
|
#include "nsIScrollableView.h"
|
|
|
|
|
|
|
|
// Interface IDs
|
|
|
|
static NS_DEFINE_IID(kScrollViewIID, NS_ISCROLLABLEVIEW_IID);
|
1998-11-18 08:25:26 +03:00
|
|
|
static NS_DEFINE_IID(kIFrameIID, NS_IFRAME_IID);
|
1998-09-09 02:34:40 +04:00
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
/**
|
|
|
|
* Root frame class.
|
|
|
|
*
|
|
|
|
* The root frame is the parent frame for the document element's frame.
|
|
|
|
* It only supports having a single child frame which must be one of the
|
|
|
|
* following:
|
|
|
|
* - scroll frame
|
|
|
|
* - area frame
|
|
|
|
* - page sequence frame
|
|
|
|
*/
|
1998-10-30 08:18:59 +03:00
|
|
|
class RootFrame : public nsHTMLContainerFrame {
|
1998-09-09 02:34:40 +04:00
|
|
|
public:
|
1998-11-10 09:05:32 +03:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
1998-10-02 08:10:00 +04:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1998-09-09 02:34:40 +04:00
|
|
|
NS_IMETHOD HandleEvent(nsIPresContext& aPresContext,
|
|
|
|
nsGUIEvent* aEvent,
|
|
|
|
nsEventStatus& aEventStatus);
|
1998-09-26 03:47:59 +04:00
|
|
|
NS_IMETHOD IsPercentageBase(PRBool& aBase) const {
|
|
|
|
aBase = PR_TRUE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1998-10-30 08:18:59 +03:00
|
|
|
|
1998-11-19 20:22:29 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
1998-11-13 05:20:31 +03:00
|
|
|
|
1998-10-30 08:18:59 +03:00
|
|
|
protected:
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
1998-09-09 02:34:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
nsresult
|
1998-12-21 21:22:44 +03:00
|
|
|
NS_NewRootFrame(nsIFrame*& aResult)
|
1998-09-09 02:34:40 +04:00
|
|
|
{
|
1998-12-03 09:31:43 +03:00
|
|
|
RootFrame* frame = new RootFrame;
|
1998-09-09 02:34:40 +04:00
|
|
|
if (nsnull == frame) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
aResult = frame;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-09-10 23:32:14 +04:00
|
|
|
NS_IMETHODIMP
|
1998-11-10 09:05:32 +03:00
|
|
|
RootFrame::SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList)
|
1998-09-10 23:32:14 +04:00
|
|
|
{
|
1998-10-30 02:25:02 +03:00
|
|
|
mFirstChild = aChildList;
|
|
|
|
return NS_OK;
|
1998-09-10 23:32:14 +04:00
|
|
|
}
|
|
|
|
|
1998-09-09 02:34:40 +04:00
|
|
|
NS_IMETHODIMP
|
1998-10-02 08:10:00 +04:00
|
|
|
RootFrame::Reflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
1998-09-09 02:34:40 +04:00
|
|
|
{
|
|
|
|
NS_FRAME_TRACE_REFLOW_IN("RootFrame::Reflow");
|
1998-12-22 06:49:04 +03:00
|
|
|
NS_PRECONDITION(nsnull == aDesiredSize.maxElementSize, "unexpected request");
|
1998-09-09 02:34:40 +04:00
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
// Initialize OUT parameter
|
1998-09-09 02:34:40 +04:00
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
PRBool isChildInitialReflow = PR_FALSE;
|
|
|
|
|
|
|
|
// Check for an incremental reflow
|
|
|
|
if (eReflowReason_Incremental == aReflowState.reason) {
|
1998-11-17 02:16:03 +03:00
|
|
|
// See if we're the target frame
|
|
|
|
nsIFrame* targetFrame;
|
1998-12-22 06:49:04 +03:00
|
|
|
aReflowState.reflowCommand->GetTarget(targetFrame);
|
1998-11-17 02:16:03 +03:00
|
|
|
if (this == targetFrame) {
|
|
|
|
nsIReflowCommand::ReflowType reflowType;
|
|
|
|
nsIFrame* childFrame;
|
|
|
|
|
|
|
|
// Get the reflow type
|
1998-12-22 06:49:04 +03:00
|
|
|
aReflowState.reflowCommand->GetType(reflowType);
|
1998-11-17 02:16:03 +03:00
|
|
|
|
|
|
|
if ((nsIReflowCommand::FrameAppended == reflowType) ||
|
|
|
|
(nsIReflowCommand::FrameInserted == reflowType)) {
|
1998-12-22 06:49:04 +03:00
|
|
|
|
|
|
|
NS_ASSERTION(nsnull == mFirstChild, "only one child frame allowed");
|
|
|
|
|
1998-11-17 02:16:03 +03:00
|
|
|
// Insert the frame into the child list
|
1998-12-22 06:49:04 +03:00
|
|
|
aReflowState.reflowCommand->GetChildFrame(childFrame);
|
|
|
|
mFirstChild = childFrame;
|
|
|
|
|
|
|
|
// It's the child frame's initial reflow
|
|
|
|
isChildInitialReflow = PR_TRUE;
|
|
|
|
|
1998-11-17 02:16:03 +03:00
|
|
|
} else if (nsIReflowCommand::FrameRemoved == reflowType) {
|
|
|
|
nsIFrame* deletedFrame;
|
|
|
|
|
|
|
|
// Get the child frame we should delete
|
1998-12-22 06:49:04 +03:00
|
|
|
aReflowState.reflowCommand->GetChildFrame(deletedFrame);
|
|
|
|
NS_ASSERTION(deletedFrame == mFirstChild, "not a child frame");
|
1998-11-17 02:16:03 +03:00
|
|
|
|
|
|
|
// Remove it from the child list
|
|
|
|
if (deletedFrame == mFirstChild) {
|
1998-12-22 06:49:04 +03:00
|
|
|
mFirstChild = nsnull;
|
|
|
|
|
|
|
|
// Damage the area occupied by the deleted frame
|
|
|
|
nsRect damageRect;
|
|
|
|
deletedFrame->GetRect(damageRect);
|
|
|
|
Invalidate(damageRect, PR_FALSE);
|
|
|
|
|
|
|
|
// Delete the frame
|
|
|
|
deletedFrame->DeleteFrame(aPresContext);
|
1998-11-17 02:16:03 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
nsIFrame* nextFrame;
|
|
|
|
// Get the next frame in the reflow chain
|
1998-12-22 06:49:04 +03:00
|
|
|
aReflowState.reflowCommand->GetNext(nextFrame);
|
1998-11-17 02:16:03 +03:00
|
|
|
NS_ASSERTION(nextFrame == mFirstChild, "unexpected next reflow command frame");
|
|
|
|
}
|
1998-09-09 02:34:40 +04:00
|
|
|
}
|
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
// Reflow our one and only child frame
|
1998-09-09 02:34:40 +04:00
|
|
|
if (nsnull != mFirstChild) {
|
1998-12-22 06:49:04 +03:00
|
|
|
// Note: the root frame does not have border or padding...
|
1998-10-30 08:18:59 +03:00
|
|
|
|
1998-11-21 01:27:33 +03:00
|
|
|
// Compute the margins around the child frame
|
1998-12-22 06:49:04 +03:00
|
|
|
nsMargin childMargin;
|
|
|
|
nsHTMLReflowState::ComputeMarginFor(mFirstChild, &aReflowState, childMargin);
|
|
|
|
|
|
|
|
// Compute the child frame's available space
|
|
|
|
nsSize kidMaxSize(aReflowState.maxSize.width - childMargin.left - childMargin.right,
|
|
|
|
aReflowState.maxSize.height - childMargin.top - childMargin.bottom);
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics desiredSize(nsnull);
|
1998-12-21 02:29:47 +03:00
|
|
|
// We must pass in that the available height is unconstrained, because
|
|
|
|
// constrained is only for when we're paginated...
|
1998-12-22 06:49:04 +03:00
|
|
|
nsHTMLReflowState kidReflowState(aPresContext, mFirstChild, aReflowState,
|
1998-12-21 02:29:47 +03:00
|
|
|
nsSize(kidMaxSize.width, NS_UNCONSTRAINEDSIZE));
|
1998-12-22 06:49:04 +03:00
|
|
|
if (isChildInitialReflow) {
|
|
|
|
kidReflowState.reason = eReflowReason_Initial;
|
|
|
|
kidReflowState.reflowCommand = nsnull;
|
|
|
|
}
|
1998-10-01 08:46:11 +04:00
|
|
|
|
1998-12-22 06:49:04 +03:00
|
|
|
// For a width or height that's 'auto', make the frame as big as the
|
|
|
|
// available space
|
|
|
|
if (eHTMLFrameConstraint_FixedContent != kidReflowState.widthConstraint) {
|
|
|
|
kidReflowState.widthConstraint = eHTMLFrameConstraint_Fixed;
|
|
|
|
kidReflowState.minWidth = kidMaxSize.width;
|
|
|
|
}
|
|
|
|
if (eHTMLFrameConstraint_FixedContent != kidReflowState.heightConstraint) {
|
|
|
|
kidReflowState.heightConstraint = eHTMLFrameConstraint_Fixed;
|
|
|
|
kidReflowState.minHeight = kidMaxSize.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reflow the frame
|
|
|
|
nsIHTMLReflow* htmlReflow;
|
1998-10-01 08:46:11 +04:00
|
|
|
if (NS_OK == mFirstChild->QueryInterface(kIHTMLReflowIID, (void**)&htmlReflow)) {
|
1998-10-06 04:27:22 +04:00
|
|
|
ReflowChild(mFirstChild, aPresContext, desiredSize, kidReflowState, aStatus);
|
1998-10-01 08:46:11 +04:00
|
|
|
|
1998-11-21 01:27:33 +03:00
|
|
|
// Place and size the child. Because we told the child it was
|
|
|
|
// fixed make sure it's at least as big as we told it. This
|
|
|
|
// handles the case where the child ignores the reflow state
|
|
|
|
// constraints
|
1998-12-22 06:49:04 +03:00
|
|
|
if (desiredSize.width < kidReflowState.minWidth) {
|
|
|
|
desiredSize.width = kidReflowState.minWidth;
|
1998-11-19 02:49:44 +03:00
|
|
|
}
|
1998-12-22 06:49:04 +03:00
|
|
|
if (desiredSize.height < kidReflowState.minHeight) {
|
|
|
|
desiredSize.height = kidReflowState.minHeight;
|
1998-11-19 02:49:44 +03:00
|
|
|
}
|
1998-12-22 06:49:04 +03:00
|
|
|
nsRect rect(childMargin.left, childMargin.top, desiredSize.width, desiredSize.height);
|
1998-10-01 08:46:11 +04:00
|
|
|
mFirstChild->SetRect(rect);
|
1998-10-06 04:27:22 +04:00
|
|
|
|
1998-11-21 01:27:33 +03:00
|
|
|
// XXX We should resolve the details of who/when DidReflow()
|
|
|
|
// notifications are sent...
|
1998-10-01 08:46:11 +04:00
|
|
|
htmlReflow->DidReflow(aPresContext, NS_FRAME_REFLOW_FINISHED);
|
|
|
|
}
|
1998-10-31 07:40:01 +03:00
|
|
|
|
1998-12-21 02:29:47 +03:00
|
|
|
// If this is a resize reflow then do a repaint
|
1998-12-22 06:49:04 +03:00
|
|
|
if (eReflowReason_Resize == aReflowState.reason) {
|
|
|
|
nsRect damageRect(0, 0, aReflowState.maxSize.width, aReflowState.maxSize.height);
|
1998-10-31 07:40:01 +03:00
|
|
|
Invalidate(damageRect, PR_FALSE);
|
|
|
|
}
|
1998-09-09 02:34:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return the max size as our desired size
|
1998-12-22 06:49:04 +03:00
|
|
|
aDesiredSize.width = aReflowState.maxSize.width;
|
|
|
|
aDesiredSize.height = aReflowState.maxSize.height;
|
1998-09-09 02:34:40 +04:00
|
|
|
aDesiredSize.ascent = aDesiredSize.height;
|
|
|
|
aDesiredSize.descent = 0;
|
|
|
|
|
|
|
|
NS_FRAME_TRACE_REFLOW_OUT("RootFrame::Reflow", aStatus);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-10-30 08:18:59 +03:00
|
|
|
PRIntn
|
|
|
|
RootFrame::GetSkipSides() const
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1998-09-09 02:34:40 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
RootFrame::HandleEvent(nsIPresContext& aPresContext,
|
|
|
|
nsGUIEvent* aEvent,
|
|
|
|
nsEventStatus& aEventStatus)
|
|
|
|
{
|
1998-11-18 08:25:26 +03:00
|
|
|
if (nsEventStatus_eConsumeNoDefault == aEventStatus) {
|
|
|
|
return NS_OK;
|
1998-11-13 02:03:35 +03:00
|
|
|
}
|
1998-09-09 02:34:40 +04:00
|
|
|
|
|
|
|
if (aEvent->message == NS_MOUSE_LEFT_BUTTON_UP ||
|
|
|
|
aEvent->message == NS_MOUSE_MIDDLE_BUTTON_UP ||
|
|
|
|
aEvent->message == NS_MOUSE_RIGHT_BUTTON_UP) {
|
|
|
|
nsFrame::HandleEvent(aPresContext, aEvent, aEventStatus);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1998-11-13 05:20:31 +03:00
|
|
|
NS_IMETHODIMP
|
1998-11-19 20:22:29 +03:00
|
|
|
RootFrame::GetFrameName(nsString& aResult) const
|
1998-11-13 05:20:31 +03:00
|
|
|
{
|
1998-11-19 20:22:29 +03:00
|
|
|
return MakeFrameName("Root", aResult);
|
1998-11-13 05:20:31 +03:00
|
|
|
}
|