2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2001-10-25 01:08:40 +00:00
|
|
|
// vim:cindent:ts=2:et:sw=2:
|
2001-09-28 20:14:13 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-12-01 16:13:49 +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/
|
1998-12-01 16:13:49 +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.
|
1998-12-01 16:13:49 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client 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.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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
|
|
|
|
|
|
|
/* class that a parent frame uses to reflow a block frame */
|
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
#ifndef nsBlockReflowContext_h___
|
|
|
|
#define nsBlockReflowContext_h___
|
|
|
|
|
1999-10-30 02:52:11 +00:00
|
|
|
#include "nsIFrame.h"
|
2001-08-01 01:27:50 +00:00
|
|
|
#include "nsHTMLReflowMetrics.h"
|
1998-12-01 16:13:49 +00:00
|
|
|
|
|
|
|
class nsBlockFrame;
|
2004-11-25 14:51:00 +00:00
|
|
|
class nsBlockReflowState;
|
2004-11-25 16:52:46 +00:00
|
|
|
struct nsHTMLReflowState;
|
2004-11-25 14:51:00 +00:00
|
|
|
class nsLineBox;
|
1998-12-01 16:13:49 +00:00
|
|
|
class nsIFrame;
|
2004-07-31 23:15:21 +00:00
|
|
|
class nsPresContext;
|
1998-12-01 16:13:49 +00:00
|
|
|
class nsLineLayout;
|
|
|
|
struct nsStylePosition;
|
2000-01-26 01:45:47 +00:00
|
|
|
struct nsBlockHorizontalAlign;
|
1998-12-01 16:13:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An encapsulation of the state and algorithm for reflowing block frames.
|
|
|
|
*/
|
|
|
|
class nsBlockReflowContext {
|
|
|
|
public:
|
2004-07-31 23:15:21 +00:00
|
|
|
nsBlockReflowContext(nsPresContext* aPresContext,
|
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
|
|
|
const nsHTMLReflowState& aParentRS);
|
1998-12-01 16:13:49 +00:00
|
|
|
~nsBlockReflowContext() { }
|
|
|
|
|
2002-09-04 06:55:40 +00:00
|
|
|
nsresult ReflowBlock(const nsRect& aSpace,
|
|
|
|
PRBool aApplyTopMargin,
|
2004-11-25 14:51:00 +00:00
|
|
|
nsCollapsingMargin& aPrevMargin,
|
|
|
|
nscoord aClearance,
|
2002-09-04 06:55:40 +00:00
|
|
|
PRBool aIsAdjacentWithTop,
|
|
|
|
nsMargin& aComputedOffsets,
|
|
|
|
nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aReflowStatus);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
2001-12-07 14:51:12 +00:00
|
|
|
PRBool PlaceBlock(const nsHTMLReflowState& aReflowState,
|
|
|
|
PRBool aForceFit,
|
2004-11-25 14:51:00 +00:00
|
|
|
nsLineBox* aLine,
|
2001-12-07 14:51:12 +00:00
|
|
|
const nsMargin& aComputedOffsets,
|
|
|
|
nsCollapsingMargin& aBottomMarginResult /* out */,
|
|
|
|
nsRect& aInFlowBounds,
|
2005-03-23 03:35:08 +00:00
|
|
|
nsRect& aCombinedRect,
|
|
|
|
nsReflowStatus aReflowStatus);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
2001-10-25 01:08:40 +00:00
|
|
|
nsCollapsingMargin& GetCarriedOutBottomMargin() {
|
1998-12-01 16:13:49 +00:00
|
|
|
return mMetrics.mCarriedOutBottomMargin;
|
|
|
|
}
|
|
|
|
|
1999-04-01 01:37:36 +00:00
|
|
|
nscoord GetTopMargin() const {
|
2002-10-08 01:52:34 +00:00
|
|
|
return mTopMargin.get();
|
1999-04-01 01:37:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const nsMargin& GetMargin() const {
|
|
|
|
return mMargin;
|
|
|
|
}
|
|
|
|
|
|
|
|
const nsHTMLReflowMetrics& GetMetrics() const {
|
|
|
|
return mMetrics;
|
|
|
|
}
|
|
|
|
|
2004-11-25 14:51:00 +00:00
|
|
|
/**
|
|
|
|
* Computes the collapsed top margin for a block whose reflow state is in aRS.
|
|
|
|
* The computed margin is added into aMargin.
|
|
|
|
* If aClearanceFrame is null then this is the first optimistic pass which shall assume
|
|
|
|
* that no frames have clearance, and we clear the HasClearance on all frames encountered.
|
|
|
|
* If non-null, this is the second pass and
|
|
|
|
* the caller has decided aClearanceFrame needs clearance (and we will
|
|
|
|
* therefore stop collapsing there); also, this function is responsible for marking
|
|
|
|
* it with SetHasClearance.
|
|
|
|
* If in the optimistic pass any frame is encountered that might possibly need
|
|
|
|
* clearance (i.e., if we really needed the optimism assumption) then we set aMayNeedRetry
|
|
|
|
* to true.
|
|
|
|
* We return PR_TRUE if we changed the clearance state of any line and marked it dirty.
|
|
|
|
*/
|
|
|
|
static PRBool ComputeCollapsedTopMargin(const nsHTMLReflowState& aRS,
|
|
|
|
nsCollapsingMargin* aMargin, nsIFrame* aClearanceFrame,
|
2006-02-27 04:15:05 +00:00
|
|
|
PRBool* aMayNeedRetry, PRBool* aIsEmpty = nsnull);
|
1999-04-03 18:58:32 +00:00
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
protected:
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPresContext* mPresContext;
|
1999-03-05 04:22:11 +00:00
|
|
|
const nsHTMLReflowState& mOuterReflowState;
|
1998-12-01 16:13:49 +00:00
|
|
|
|
|
|
|
nsIFrame* mFrame;
|
|
|
|
nsRect mSpace;
|
2001-12-17 22:39:59 +00:00
|
|
|
|
1999-03-05 04:22:11 +00:00
|
|
|
// Spacing style for the frame we are reflowing; only valid after reflow
|
2001-02-07 09:57:26 +00:00
|
|
|
const nsStyleBorder* mStyleBorder;
|
|
|
|
const nsStyleMargin* mStyleMargin;
|
|
|
|
const nsStylePadding* mStylePadding;
|
1998-12-01 16:13:49 +00:00
|
|
|
|
1999-08-27 21:47:04 +00:00
|
|
|
nscoord mComputedWidth; // copy of reflowstate's computedWidth
|
1998-12-01 16:13:49 +00:00
|
|
|
nsMargin mMargin;
|
|
|
|
nscoord mX, mY;
|
|
|
|
nsHTMLReflowMetrics mMetrics;
|
2002-10-08 01:52:34 +00:00
|
|
|
nsCollapsingMargin mTopMargin;
|
1998-12-01 16:13:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsBlockReflowContext_h___ */
|