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
|
1999-04-16 01:39:34 +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/
|
1999-04-16 01:39:34 +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.
|
1999-04-16 01:39:34 +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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
/*
|
|
|
|
* code for managing absolutely positioned children of a rendering
|
|
|
|
* object that is a containing block for them
|
|
|
|
*/
|
|
|
|
|
1999-04-16 01:39:34 +00:00
|
|
|
#ifndef nsAbsoluteContainingBlock_h___
|
|
|
|
#define nsAbsoluteContainingBlock_h___
|
|
|
|
|
|
|
|
#include "nsFrameList.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsHTMLReflowState.h"
|
2003-01-20 18:04:34 +00:00
|
|
|
#include "nsLayoutAtoms.h"
|
1999-04-16 01:39:34 +00:00
|
|
|
|
|
|
|
class nsIAtom;
|
|
|
|
class nsIFrame;
|
2004-07-31 23:15:21 +00:00
|
|
|
class nsPresContext;
|
1999-04-16 01:39:34 +00:00
|
|
|
|
|
|
|
/**
|
1999-07-24 02:37:45 +00:00
|
|
|
* This class contains the logic for being an absolute containing block.
|
1999-04-16 01:39:34 +00:00
|
|
|
*
|
|
|
|
* There is no principal child list, just a named child list which contains
|
|
|
|
* the absolutely positioned frames
|
|
|
|
*
|
1999-07-24 02:37:45 +00:00
|
|
|
* All functions include as the first argument the frame that is delegating
|
|
|
|
* the request
|
|
|
|
*
|
1999-04-16 01:39:34 +00:00
|
|
|
* @see nsLayoutAtoms::absoluteList
|
|
|
|
*/
|
|
|
|
class nsAbsoluteContainingBlock
|
|
|
|
{
|
|
|
|
public:
|
2003-01-20 18:04:34 +00:00
|
|
|
nsAbsoluteContainingBlock() { } // useful for debugging
|
|
|
|
|
|
|
|
virtual ~nsAbsoluteContainingBlock() { } // useful for debugging
|
|
|
|
|
|
|
|
virtual nsIAtom* GetChildListName() const { return nsLayoutAtoms::absoluteList; }
|
|
|
|
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult FirstChild(const nsIFrame* aDelegatingFrame,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame** aFirstChild) const;
|
2006-01-26 02:29:17 +00:00
|
|
|
nsIFrame* GetFirstChild() { return mAbsoluteFrames.FirstChild(); }
|
1999-04-16 01:39:34 +00:00
|
|
|
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult SetInitialChildList(nsIFrame* aDelegatingFrame,
|
1999-04-16 01:39:34 +00:00
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
2005-02-07 01:58:25 +00:00
|
|
|
nsresult AppendFrames(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
nsresult InsertFrames(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
nsresult RemoveFrame(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame);
|
2002-11-12 03:30:13 +00:00
|
|
|
|
1999-04-16 01:39:34 +00:00
|
|
|
// Called by the delegating frame after it has done its reflow first. This
|
|
|
|
// function will reflow any absolutely positioned child frames that need to
|
|
|
|
// be reflowed, e.g., because the absolutely positioned child frame has
|
1999-12-06 15:49:53 +00:00
|
|
|
// 'auto' for an offset, or a percentage based width or height.
|
2003-01-20 18:04:34 +00:00
|
|
|
// If aChildBounds is set, it returns (in the local coordinate space) the
|
|
|
|
// bounding rect of the absolutely positioned child elements taking into
|
2005-01-23 21:44:46 +00:00
|
|
|
// account their overflow area (if it is visible).
|
|
|
|
// @param aForceReflow if this is false, reflow for some absolutely
|
|
|
|
// positioned frames may be skipped based on whether they use
|
|
|
|
// placeholders for positioning and on whether the containing block
|
|
|
|
// width or height changed.
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult Reflow(nsIFrame* aDelegatingFrame,
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPresContext* aPresContext,
|
1999-09-16 14:33:19 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aContainingBlockWidth,
|
1999-12-06 15:49:53 +00:00
|
|
|
nscoord aContainingBlockHeight,
|
2005-01-23 21:44:46 +00:00
|
|
|
nsRect* aChildBounds = nsnull,
|
|
|
|
PRBool aForceReflow = PR_TRUE,
|
|
|
|
PRBool aCBWidthChanged = PR_TRUE,
|
|
|
|
PRBool aCBHeightChanged = PR_TRUE);
|
1999-04-16 01:39:34 +00:00
|
|
|
|
2004-11-14 20:22:58 +00:00
|
|
|
// Called by the delegating frame to determine whether the
|
|
|
|
// incremental reflow is entirely targeted at absolute children
|
|
|
|
PRBool ReflowingAbsolutesOnly(nsIFrame* aDelegatingFrame,
|
|
|
|
const nsHTMLReflowState& aReflowState);
|
|
|
|
|
|
|
|
// Called only for a reflow reason of eReflowReason_Incremental.
|
|
|
|
void IncrementalReflow(nsIFrame* aDelegatingFrame,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nscoord aContainingBlockWidth,
|
|
|
|
nscoord aContainingBlockHeight);
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
void DestroyFrames(nsIFrame* aDelegatingFrame);
|
1999-04-16 01:39:34 +00:00
|
|
|
|
2000-05-09 05:11:12 +00:00
|
|
|
PRBool HasAbsoluteFrames() {return mAbsoluteFrames.NotEmpty();}
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
void CalculateChildBounds(nsPresContext* aPresContext, nsRect& aChildBounds);
|
2002-08-06 12:54:52 +00:00
|
|
|
|
1999-04-16 01:39:34 +00:00
|
|
|
protected:
|
2005-01-23 21:44:46 +00:00
|
|
|
// Returns PR_TRUE if the position of f depends on the position of
|
|
|
|
// its placeholder or if the position or size of f depends on a
|
|
|
|
// containing block dimension that changed.
|
|
|
|
PRBool FrameDependsOnContainer(nsIFrame* f, PRBool aCBWidthChanged,
|
|
|
|
PRBool aCBHeightChanged);
|
|
|
|
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult ReflowAbsoluteFrame(nsIFrame* aDelegatingFrame,
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPresContext* aPresContext,
|
1999-04-16 01:39:34 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1999-09-16 14:33:19 +00:00
|
|
|
nscoord aContainingBlockWidth,
|
|
|
|
nscoord aContainingBlockHeight,
|
1999-04-16 01:39:34 +00:00
|
|
|
nsIFrame* aKidFrame,
|
2000-05-02 02:23:31 +00:00
|
|
|
nsReflowReason aReason,
|
1999-04-16 01:39:34 +00:00
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsFrameList mAbsoluteFrames; // additional named child list
|
2002-11-16 10:41:10 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// helper routine for debug printout
|
|
|
|
void PrettyUC(nscoord aSize,
|
|
|
|
char* aBuf);
|
|
|
|
#endif
|
1999-04-16 01:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsnsAbsoluteContainingBlock_h___ */
|
|
|
|
|