2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2001-10-25 05:08:40 +04:00
|
|
|
// vim:cindent:ts=2:et:sw=2:
|
2012-05-21 15:12:37 +04: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 22:29:03 +04:00
|
|
|
|
|
|
|
/* class that a parent frame uses to reflow a block frame */
|
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
#ifndef nsBlockReflowContext_h___
|
|
|
|
#define nsBlockReflowContext_h___
|
|
|
|
|
1999-10-30 06:52:11 +04:00
|
|
|
#include "nsIFrame.h"
|
2001-08-01 05:27:50 +04:00
|
|
|
#include "nsHTMLReflowMetrics.h"
|
1998-12-01 19:13:49 +03:00
|
|
|
|
2004-11-25 17:51:00 +03:00
|
|
|
class nsBlockReflowState;
|
2004-11-25 19:52:46 +03:00
|
|
|
struct nsHTMLReflowState;
|
2004-11-25 17:51:00 +03:00
|
|
|
class nsLineBox;
|
2004-08-01 03:15:21 +04:00
|
|
|
class nsPresContext;
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* An encapsulation of the state and algorithm for reflowing block frames.
|
|
|
|
*/
|
|
|
|
class nsBlockReflowContext {
|
|
|
|
public:
|
2004-08-01 03:15:21 +04: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 08:38:33 +03:00
|
|
|
const nsHTMLReflowState& aParentRS);
|
1998-12-01 19:13:49 +03:00
|
|
|
~nsBlockReflowContext() { }
|
|
|
|
|
2014-10-22 02:16:13 +04:00
|
|
|
void ReflowBlock(const mozilla::LogicalRect& aSpace,
|
|
|
|
bool aApplyBStartMargin,
|
|
|
|
nsCollapsingMargin& aPrevMargin,
|
|
|
|
nscoord aClearance,
|
|
|
|
bool aIsAdjacentWithBStart,
|
|
|
|
nsLineBox* aLine,
|
|
|
|
nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aReflowStatus,
|
|
|
|
nsBlockReflowState& aState);
|
1998-12-01 19:13:49 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool PlaceBlock(const nsHTMLReflowState& aReflowState,
|
2014-04-16 12:03:28 +04:00
|
|
|
bool aForceFit,
|
|
|
|
nsLineBox* aLine,
|
2014-06-17 18:41:35 +04:00
|
|
|
nsCollapsingMargin& aBEndMarginResult /* out */,
|
2014-04-16 12:03:28 +04:00
|
|
|
nsOverflowAreas& aOverflowAreas,
|
2014-06-17 18:41:35 +04:00
|
|
|
nsReflowStatus aReflowStatus);
|
1998-12-01 19:13:49 +03:00
|
|
|
|
2014-06-17 18:41:35 +04:00
|
|
|
nsCollapsingMargin& GetCarriedOutBEndMargin() {
|
2014-11-17 11:49:38 +03:00
|
|
|
return mMetrics.mCarriedOutBEndMargin;
|
1998-12-01 19:13:49 +03:00
|
|
|
}
|
|
|
|
|
1999-04-01 05:37:36 +04:00
|
|
|
const nsHTMLReflowMetrics& GetMetrics() const {
|
|
|
|
return mMetrics;
|
|
|
|
}
|
|
|
|
|
2004-11-25 17:51:00 +03:00
|
|
|
/**
|
2014-10-24 15:24:38 +04:00
|
|
|
* Computes the collapsed block-start margin (in the context's parent's
|
|
|
|
* writing mode) for a block whose reflow state is in aRS.
|
|
|
|
* The computed margin is added into aMargin, whose writing mode is the
|
|
|
|
* parent's mode as found in mMetrics.GetWritingMode(); note this may not be
|
|
|
|
* the block's own writing mode as found in aRS.
|
2014-06-17 18:41:35 +04:00
|
|
|
* 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 true if we changed the clearance state of any line and marked it
|
|
|
|
* dirty.
|
2004-11-25 17:51:00 +03:00
|
|
|
*/
|
2014-10-24 15:24:38 +04:00
|
|
|
bool ComputeCollapsedBStartMargin(const nsHTMLReflowState& aRS,
|
|
|
|
nsCollapsingMargin* aMargin,
|
|
|
|
nsIFrame* aClearanceFrame,
|
|
|
|
bool* aMayNeedRetry,
|
|
|
|
bool* aIsEmpty = nullptr);
|
1999-04-03 22:58:32 +04:00
|
|
|
|
1998-12-01 19:13:49 +03:00
|
|
|
protected:
|
2004-08-01 03:15:21 +04:00
|
|
|
nsPresContext* mPresContext;
|
1999-03-05 07:22:11 +03:00
|
|
|
const nsHTMLReflowState& mOuterReflowState;
|
1998-12-01 19:13:49 +03:00
|
|
|
|
|
|
|
nsIFrame* mFrame;
|
2014-06-17 18:41:35 +04:00
|
|
|
mozilla::LogicalRect mSpace;
|
2001-12-18 01:39:59 +03:00
|
|
|
|
2015-07-16 12:07:57 +03:00
|
|
|
nscoord mICoord, mBCoord;
|
|
|
|
nsSize mContainerSize;
|
2014-06-17 18:41:35 +04:00
|
|
|
mozilla::WritingMode mWritingMode;
|
1998-12-01 19:13:49 +03:00
|
|
|
nsHTMLReflowMetrics mMetrics;
|
2014-06-17 18:41:35 +04:00
|
|
|
nsCollapsingMargin mBStartMargin;
|
1998-12-01 19:13:49 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsBlockReflowContext_h___ */
|