1998-12-18 20:54:54 +03: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.
|
|
|
|
*/
|
|
|
|
#ifndef nsAreaFrame_h___
|
|
|
|
#define nsAreaFrame_h___
|
|
|
|
|
|
|
|
#include "nsBlockFrame.h"
|
|
|
|
#include "nsVoidArray.h"
|
1999-01-18 20:27:27 +03:00
|
|
|
#include "nsIAreaFrame.h"
|
1999-04-16 05:42:51 +04:00
|
|
|
#include "nsAbsoluteContainingBlock.h"
|
1998-12-18 20:54:54 +03:00
|
|
|
|
|
|
|
class nsSpaceManager;
|
|
|
|
|
|
|
|
struct nsStyleDisplay;
|
|
|
|
struct nsStylePosition;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Child list name indices
|
|
|
|
* @see #GetAdditionalChildListName()
|
|
|
|
*/
|
|
|
|
#define NS_AREA_FRAME_ABSOLUTE_LIST_INDEX (NS_BLOCK_FRAME_LAST_LIST_INDEX + 1)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The area frame has an additional named child list:
|
|
|
|
* - "Absolute-list" which contains the absolutely positioned frames
|
|
|
|
*
|
|
|
|
* @see nsLayoutAtoms::absoluteList
|
|
|
|
*/
|
1999-01-18 20:27:27 +03:00
|
|
|
class nsAreaFrame : public nsBlockFrame, public nsIAreaFrame
|
1998-12-18 20:54:54 +03:00
|
|
|
{
|
|
|
|
public:
|
1999-05-12 02:03:29 +04:00
|
|
|
friend nsresult NS_NewAreaFrame(nsIFrame** aResult, PRUint32 aFlags);
|
1998-12-18 20:54:54 +03:00
|
|
|
|
1999-01-18 20:27:27 +03:00
|
|
|
// nsISupports
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
1998-12-18 20:54:54 +03:00
|
|
|
// nsIFrame
|
1999-07-22 06:24:52 +04:00
|
|
|
NS_IMETHOD Destroy(nsIPresContext& aPresContext);
|
1998-12-18 20:54:54 +03:00
|
|
|
|
1998-12-29 06:38:16 +03:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
1999-07-24 06:37:45 +04:00
|
|
|
NS_IMETHOD AppendFrames(nsIPresContext& aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
NS_IMETHOD InsertFrames(nsIPresContext& aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
NS_IMETHOD RemoveFrame(nsIPresContext& aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame);
|
1998-12-29 06:38:16 +03:00
|
|
|
|
1998-12-18 20:54:54 +03:00
|
|
|
NS_IMETHOD GetAdditionalChildListName(PRInt32 aIndex,
|
1999-02-10 05:25:01 +03:00
|
|
|
nsIAtom** aListName) const;
|
1998-12-18 20:54:54 +03:00
|
|
|
|
1999-02-10 05:25:01 +03:00
|
|
|
NS_IMETHOD FirstChild(nsIAtom* aListName, nsIFrame** aFirstChild) const;
|
1998-12-18 20:54:54 +03:00
|
|
|
|
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
1999-06-29 07:41:58 +04:00
|
|
|
NS_IMETHOD DidReflow(nsIPresContext& aPresContext,
|
|
|
|
nsDidReflowStatus aStatus);
|
|
|
|
|
1999-02-14 06:47:33 +03:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
|
|
|
* @see nsLayoutAtoms::areaFrame
|
|
|
|
*/
|
|
|
|
NS_IMETHOD GetFrameType(nsIAtom** aType) const;
|
|
|
|
|
1999-09-01 05:02:16 +04:00
|
|
|
#ifdef DEBUG
|
1999-11-02 01:12:45 +03:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
1999-08-31 07:09:40 +04:00
|
|
|
NS_IMETHOD SizeOf(nsISizeOfHandler* aHandler, PRUint32* aResult) const;
|
1999-09-01 05:02:16 +04:00
|
|
|
#endif
|
1999-08-31 07:09:40 +04:00
|
|
|
|
1999-01-18 20:27:27 +03:00
|
|
|
// nsIAreaFrame
|
|
|
|
NS_IMETHOD GetPositionedInfo(nscoord& aXMost, nscoord& aYMost) const;
|
|
|
|
|
1998-12-18 20:54:54 +03:00
|
|
|
protected:
|
|
|
|
nsAreaFrame();
|
|
|
|
|
|
|
|
private:
|
1999-04-16 05:42:51 +04:00
|
|
|
nsAbsoluteContainingBlock mAbsoluteContainer;
|
1999-06-29 07:41:58 +04:00
|
|
|
nsRect mCombinedArea;
|
1998-12-18 20:54:54 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsAreaFrame_h___ */
|