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"
|
2007-01-30 00:06:41 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2007-10-02 05:57:45 +00:00
|
|
|
#include "nsContainerFrame.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
|
|
|
|
|
|
|
/**
|
2007-08-02 22:44:36 +00:00
|
|
|
* This class contains the logic for being an absolute containing block. This
|
|
|
|
* class is used within viewport frames (for frames representing content with
|
|
|
|
* fixed position) and blocks (for frames representing absolutely positioned
|
|
|
|
* content), since each set of frames is absolutely positioned with respect to
|
|
|
|
* its parent.
|
1999-04-16 01:39:34 +00:00
|
|
|
*
|
|
|
|
* There is no principal child list, just a named child list which contains
|
2007-08-02 22:44:36 +00:00
|
|
|
* the absolutely positioned frames.
|
1999-04-16 01:39:34 +00:00
|
|
|
*
|
1999-07-24 02:37:45 +00:00
|
|
|
* All functions include as the first argument the frame that is delegating
|
2007-08-02 22:44:36 +00:00
|
|
|
* the request.
|
1999-07-24 02:37:45 +00:00
|
|
|
*
|
2007-08-02 22:44:36 +00:00
|
|
|
* @see nsGkAtoms::absoluteList and nsGkAtoms::fixedList
|
1999-04-16 01:39:34 +00:00
|
|
|
*/
|
|
|
|
class nsAbsoluteContainingBlock
|
|
|
|
{
|
|
|
|
public:
|
2007-08-02 22:44:36 +00:00
|
|
|
nsAbsoluteContainingBlock(nsIAtom* aChildListName)
|
2007-10-02 08:29:23 +00:00
|
|
|
#ifdef DEBUG
|
2007-08-02 22:44:36 +00:00
|
|
|
: mChildListName(aChildListName)
|
2007-10-02 08:29:23 +00:00
|
|
|
#endif
|
2007-08-02 22:44:36 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mChildListName == nsGkAtoms::absoluteList ||
|
|
|
|
mChildListName == nsGkAtoms::fixedList,
|
|
|
|
"should either represent position:fixed or absolute content");
|
|
|
|
}
|
2003-01-20 18:04:34 +00:00
|
|
|
|
2007-10-02 08:29:23 +00:00
|
|
|
#ifdef DEBUG
|
2007-08-02 22:44:36 +00:00
|
|
|
nsIAtom* GetChildListName() const { return mChildListName; }
|
2007-10-02 08:29:23 +00:00
|
|
|
#endif
|
2003-01-20 18:04:34 +00:00
|
|
|
|
2009-07-28 12:51:09 +00:00
|
|
|
const nsFrameList& GetChildList() const { return mAbsoluteFrames; }
|
2007-10-02 06:24:26 +00:00
|
|
|
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult SetInitialChildList(nsIFrame* aDelegatingFrame,
|
1999-04-16 01:39:34 +00:00
|
|
|
nsIAtom* aListName,
|
2009-07-28 12:53:20 +00:00
|
|
|
nsFrameList& aChildList);
|
2005-02-07 01:58:25 +00:00
|
|
|
nsresult AppendFrames(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIAtom* aListName,
|
2009-07-30 17:23:32 +00:00
|
|
|
nsFrameList& aFrameList);
|
2005-02-07 01:58:25 +00:00
|
|
|
nsresult InsertFrames(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 17:23:32 +00:00
|
|
|
nsFrameList& aFrameList);
|
2009-09-18 11:09:36 +00:00
|
|
|
void 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.
|
2010-10-07 04:25:45 +00:00
|
|
|
// aOverflowAreas, if non-null, is unioned with (in the local
|
|
|
|
// coordinate space) the overflow areas of the absolutely positioned
|
|
|
|
// children.
|
2005-01-23 21:44:46 +00:00
|
|
|
// @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.
|
2007-10-02 05:57:45 +00:00
|
|
|
nsresult Reflow(nsContainerFrame* aDelegatingFrame,
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
nsPresContext* aPresContext,
|
1999-09-16 14:33:19 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
2007-10-02 05:57:45 +00:00
|
|
|
nsReflowStatus& aReflowStatus,
|
1999-09-16 14:33:19 +00:00
|
|
|
nscoord aContainingBlockWidth,
|
1999-12-06 15:49:53 +00:00
|
|
|
nscoord aContainingBlockHeight,
|
2007-10-02 08:29:23 +00:00
|
|
|
PRBool aConstrainHeight,
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
PRBool aCBWidthChanged,
|
|
|
|
PRBool aCBHeightChanged,
|
2010-10-07 04:25:45 +00:00
|
|
|
nsOverflowAreas* aOverflowAreas);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
|
2004-11-14 20:22:58 +00:00
|
|
|
|
2009-12-24 05:21:15 +00:00
|
|
|
void DestroyFrames(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIFrame* aDestructRoot);
|
1999-04-16 01:39:34 +00:00
|
|
|
|
2000-05-09 05:11:12 +00:00
|
|
|
PRBool HasAbsoluteFrames() {return mAbsoluteFrames.NotEmpty();}
|
|
|
|
|
2009-04-21 23:53:52 +00:00
|
|
|
// Mark our size-dependent absolute frames with NS_FRAME_HAS_DIRTY_CHILDREN
|
|
|
|
// so that we'll make sure to reflow them.
|
2008-10-15 20:30:42 +00:00
|
|
|
void MarkSizeDependentFramesDirty();
|
|
|
|
|
2009-04-21 23:53:52 +00:00
|
|
|
// Mark all our absolute frames with NS_FRAME_IS_DIRTY
|
|
|
|
void MarkAllFramesDirty();
|
|
|
|
|
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,
|
2007-10-02 08:29:23 +00:00
|
|
|
PRBool aConstrainHeight,
|
1999-04-16 01:39:34 +00:00
|
|
|
nsIFrame* aKidFrame,
|
2007-07-16 18:55:24 +00:00
|
|
|
nsReflowStatus& aStatus,
|
2010-10-07 04:25:45 +00:00
|
|
|
nsOverflowAreas* aOverflowAreas);
|
1999-04-16 01:39:34 +00:00
|
|
|
|
2009-04-21 23:53:52 +00:00
|
|
|
// Mark our absolute frames dirty. If aMarkAllDirty is true, all will be
|
|
|
|
// marked with NS_FRAME_IS_DIRTY. Otherwise, the size-dependant ones will be
|
|
|
|
// marked with NS_FRAME_HAS_DIRTY_CHILDREN.
|
|
|
|
void DoMarkFramesDirty(PRBool aMarkAllDirty);
|
|
|
|
|
1999-04-16 01:39:34 +00:00
|
|
|
protected:
|
|
|
|
nsFrameList mAbsoluteFrames; // additional named child list
|
2002-11-16 10:41:10 +00:00
|
|
|
|
2007-10-02 08:29:23 +00:00
|
|
|
#ifdef DEBUG
|
2007-08-05 22:37:52 +00:00
|
|
|
nsIAtom* const mChildListName; // nsGkAtoms::fixedList or nsGkAtoms::absoluteList
|
2007-08-02 22:44:36 +00:00
|
|
|
|
2002-11-16 10:41:10 +00:00
|
|
|
// helper routine for debug printout
|
|
|
|
void PrettyUC(nscoord aSize,
|
|
|
|
char* aBuf);
|
2007-10-02 08:29:23 +00:00
|
|
|
#endif
|
1999-04-16 01:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsnsAbsoluteContainingBlock_h___ */
|
|
|
|
|