2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
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"
|
2013-04-01 15:26:01 +00:00
|
|
|
#include "nsIFrame.h"
|
1999-04-16 01:39:34 +00:00
|
|
|
|
2013-04-01 15:26:01 +00:00
|
|
|
class nsContainerFrame;
|
|
|
|
class nsHTMLReflowState;
|
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
|
2011-08-24 20:54:30 +00:00
|
|
|
* the absolutely positioned frames (kAbsoluteList or kFixedList).
|
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-04-16 01:39:34 +00:00
|
|
|
*/
|
|
|
|
class nsAbsoluteContainingBlock
|
|
|
|
{
|
|
|
|
public:
|
2011-08-24 20:54:30 +00:00
|
|
|
typedef nsIFrame::ChildListID ChildListID;
|
|
|
|
|
|
|
|
nsAbsoluteContainingBlock(ChildListID aChildListID)
|
2007-10-02 08:29:23 +00:00
|
|
|
#ifdef DEBUG
|
2011-08-24 20:54:30 +00:00
|
|
|
: mChildListID(aChildListID)
|
2007-10-02 08:29:23 +00:00
|
|
|
#endif
|
2007-08-02 22:44:36 +00:00
|
|
|
{
|
2013-04-01 15:26:01 +00:00
|
|
|
MOZ_ASSERT(mChildListID == nsIFrame::kAbsoluteList ||
|
|
|
|
mChildListID == nsIFrame::kFixedList,
|
|
|
|
"should either represent position:fixed or absolute content");
|
2007-08-02 22:44:36 +00:00
|
|
|
}
|
2003-01-20 18:04:34 +00:00
|
|
|
|
2009-07-28 12:51:09 +00:00
|
|
|
const nsFrameList& GetChildList() const { return mAbsoluteFrames; }
|
2011-08-24 20:54:29 +00:00
|
|
|
void AppendChildList(nsTArray<nsIFrame::ChildList>* aLists,
|
|
|
|
ChildListID aListID) const
|
|
|
|
{
|
2013-04-01 15:26:01 +00:00
|
|
|
NS_ASSERTION(aListID == mChildListID, "wrong list ID");
|
2011-08-24 20:54:29 +00:00
|
|
|
GetChildList().AppendIfNonempty(aLists, aListID);
|
|
|
|
}
|
2007-10-02 06:24:26 +00:00
|
|
|
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult SetInitialChildList(nsIFrame* aDelegatingFrame,
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID aListID,
|
2009-07-28 12:53:20 +00:00
|
|
|
nsFrameList& aChildList);
|
2005-02-07 01:58:25 +00:00
|
|
|
nsresult AppendFrames(nsIFrame* aDelegatingFrame,
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID aListID,
|
2009-07-30 17:23:32 +00:00
|
|
|
nsFrameList& aFrameList);
|
2005-02-07 01:58:25 +00:00
|
|
|
nsresult InsertFrames(nsIFrame* aDelegatingFrame,
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID aListID,
|
2005-02-07 01:58:25 +00:00
|
|
|
nsIFrame* aPrevFrame,
|
2009-07-30 17:23:32 +00:00
|
|
|
nsFrameList& aFrameList);
|
2009-09-18 11:09:36 +00:00
|
|
|
void RemoveFrame(nsIFrame* aDelegatingFrame,
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID aListID,
|
2009-09-18 11:09:36 +00:00
|
|
|
nsIFrame* aOldFrame);
|
2002-11-12 03:30:13 +00:00
|
|
|
|
2013-04-01 15:26:01 +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
|
|
|
|
* 'auto' for an offset, or a percentage based width or height.
|
|
|
|
*
|
|
|
|
* @param aOverflowAreas, if non-null, is unioned with (in the local
|
|
|
|
* coordinate space) the overflow areas of the absolutely positioned
|
|
|
|
* children.
|
|
|
|
*
|
|
|
|
* @param aReflowStatus is assumed to be already-initialized, e.g. with the
|
|
|
|
* status of the delegating frame's main reflow. This function merges in the
|
|
|
|
* statuses of the absolutely positioned children's reflows.
|
|
|
|
*/
|
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,
|
2013-04-15 08:31:45 +00:00
|
|
|
const nsRect& aContainingBlock,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aConstrainHeight,
|
|
|
|
bool aCBWidthChanged,
|
|
|
|
bool 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
|
|
|
|
2009-12-24 05:21:15 +00:00
|
|
|
void DestroyFrames(nsIFrame* aDelegatingFrame,
|
|
|
|
nsIFrame* aDestructRoot);
|
1999-04-16 01:39:34 +00:00
|
|
|
|
2013-04-01 15:26:01 +00:00
|
|
|
bool HasAbsoluteFrames() const { return mAbsoluteFrames.NotEmpty(); }
|
2000-05-09 05:11:12 +00:00
|
|
|
|
2013-04-01 15:26:01 +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();
|
|
|
|
|
2013-04-01 15:26:01 +00:00
|
|
|
/**
|
|
|
|
* Mark all our absolute frames with NS_FRAME_IS_DIRTY.
|
|
|
|
*/
|
2009-04-21 23:53:52 +00:00
|
|
|
void MarkAllFramesDirty();
|
|
|
|
|
1999-04-16 01:39:34 +00:00
|
|
|
protected:
|
2013-04-01 15:26:01 +00:00
|
|
|
/**
|
|
|
|
* Returns true if the position of aFrame depends on the position of
|
|
|
|
* its placeholder or if the position or size of aFrame depends on a
|
|
|
|
* containing block dimension that changed.
|
|
|
|
*/
|
|
|
|
bool FrameDependsOnContainer(nsIFrame* aFrame, bool aCBWidthChanged,
|
|
|
|
bool aCBHeightChanged);
|
2005-01-23 21:44:46 +00:00
|
|
|
|
1999-07-24 02:37:45 +00:00
|
|
|
nsresult ReflowAbsoluteFrame(nsIFrame* aDelegatingFrame,
|
2013-04-01 15:26:01 +00:00
|
|
|
nsPresContext* aPresContext,
|
1999-04-16 01:39:34 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
2013-04-15 08:31:45 +00:00
|
|
|
const nsRect& aContainingBlockRect,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool 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
|
|
|
|
2013-04-01 15:26:01 +00:00
|
|
|
/**
|
|
|
|
* Mark our absolute frames dirty.
|
|
|
|
* @param aMarkAllDirty if true, all will be marked with NS_FRAME_IS_DIRTY.
|
|
|
|
* Otherwise, the size-dependant ones will be marked with
|
|
|
|
* NS_FRAME_HAS_DIRTY_CHILDREN.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
void DoMarkFramesDirty(bool aMarkAllDirty);
|
2009-04-21 23:53:52 +00:00
|
|
|
|
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
|
2011-08-24 20:54:30 +00:00
|
|
|
ChildListID const mChildListID; // kFixedList or kAbsoluteList
|
2007-10-02 08:29:23 +00:00
|
|
|
#endif
|
1999-04-16 01:39:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsnsAbsoluteContainingBlock_h___ */
|