2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* base class for rendering objects that can be split across lines,
|
|
|
|
* columns, or pages
|
|
|
|
*/
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#ifndef nsSplittableFrame_h___
|
|
|
|
#define nsSplittableFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2020-07-07 01:38:11 +03:00
|
|
|
#include "nsIFrame.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
// Derived class that allows splitting
|
2020-07-07 01:29:42 +03:00
|
|
|
class nsSplittableFrame : public nsIFrame {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2015-11-04 12:57:35 +03:00
|
|
|
NS_DECL_ABSTRACT_FRAME(nsSplittableFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2018-09-06 04:23:49 +03:00
|
|
|
void Init(nsIContent* aContent, nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) override;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2018-09-06 04:23:49 +03:00
|
|
|
void DestroyFrom(nsIFrame* aDestructRoot,
|
|
|
|
PostDestroyData& aPostDestroyData) override;
|
2002-10-30 18:33:36 +03:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
/*
|
2019-12-13 02:57:11 +03:00
|
|
|
* Frame continuations can be either fluid or non-fluid.
|
|
|
|
*
|
2006-02-22 00:33:47 +03:00
|
|
|
* Fluid continuations ("in-flows") are the result of line breaking,
|
|
|
|
* column breaking, or page breaking.
|
2019-12-13 02:57:11 +03:00
|
|
|
*
|
|
|
|
* Non-fluid continuations can be the result of BiDi frame splitting,
|
|
|
|
* column-span splitting, or <col span="N"> where N > 1.
|
|
|
|
*
|
2006-02-22 00:33:47 +03:00
|
|
|
* A "flow" is a chain of fluid continuations.
|
2019-12-13 02:57:11 +03:00
|
|
|
*
|
|
|
|
* For more information, see https://wiki.mozilla.org/Gecko:Continuation_Model
|
2006-02-22 00:33:47 +03:00
|
|
|
*/
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
// Get the previous/next continuation, regardless of its type (fluid or
|
|
|
|
// non-fluid).
|
2018-09-06 04:23:49 +03:00
|
|
|
nsIFrame* GetPrevContinuation() const final;
|
|
|
|
nsIFrame* GetNextContinuation() const final;
|
2006-02-22 00:33:47 +03:00
|
|
|
|
|
|
|
// Set a previous/next non-fluid continuation.
|
2018-09-06 04:23:49 +03:00
|
|
|
void SetPrevContinuation(nsIFrame*) final;
|
|
|
|
void SetNextContinuation(nsIFrame*) final;
|
2006-02-22 00:33:47 +03:00
|
|
|
|
|
|
|
// Get the first/last continuation for this frame.
|
2018-09-06 04:23:49 +03:00
|
|
|
nsIFrame* FirstContinuation() const final;
|
|
|
|
nsIFrame* LastContinuation() const final;
|
2006-02-22 00:33:47 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Can aFrame2 be reached from aFrame1 by following prev/next continuations?
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsInPrevContinuationChain(nsIFrame* aFrame1, nsIFrame* aFrame2);
|
|
|
|
static bool IsInNextContinuationChain(nsIFrame* aFrame1, nsIFrame* aFrame2);
|
2006-02-22 00:33:47 +03:00
|
|
|
#endif
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
// Get the previous/next continuation, only if it is fluid (an "in-flow").
|
2019-07-04 00:37:14 +03:00
|
|
|
nsIFrame* GetPrevInFlow() const final;
|
|
|
|
nsIFrame* GetNextInFlow() const final;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
// Set a previous/next fluid continuation.
|
2018-09-06 04:23:49 +03:00
|
|
|
void SetPrevInFlow(nsIFrame*) final;
|
|
|
|
void SetNextInFlow(nsIFrame*) final;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
// Get the first/last frame in the current flow.
|
2018-09-06 04:23:49 +03:00
|
|
|
nsIFrame* FirstInFlow() const final;
|
|
|
|
nsIFrame* LastInFlow() const final;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-10-22 18:53:52 +04:00
|
|
|
// Remove the frame from the flow. Connects the frame's prev-in-flow
|
2009-04-10 05:19:06 +04:00
|
|
|
// and its next-in-flow. This should only be called in frame Destroy()
|
|
|
|
// methods.
|
1999-10-22 18:53:52 +04:00
|
|
|
static void RemoveFromFlow(nsIFrame* aFrame);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
|
|
|
protected:
|
2019-02-05 19:45:54 +03:00
|
|
|
nsSplittableFrame(ComputedStyle* aStyle, nsPresContext* aPresContext,
|
|
|
|
ClassID aID)
|
2020-07-07 01:29:42 +03:00
|
|
|
: nsIFrame(aStyle, aPresContext, aID),
|
2016-12-01 11:06:50 +03:00
|
|
|
mPrevContinuation(nullptr),
|
|
|
|
mNextContinuation(nullptr) {}
|
2006-03-27 01:30:36 +04:00
|
|
|
|
2013-07-25 19:34:12 +04:00
|
|
|
/**
|
2019-08-15 19:49:14 +03:00
|
|
|
* Return the sum of the block-axis content size of our previous
|
|
|
|
* continuations.
|
|
|
|
*
|
2020-11-18 14:04:35 +03:00
|
|
|
* Classes that call this are _required_ to call this at least once for each
|
|
|
|
* reflow (unless you're the first continuation, in which case you can skip
|
|
|
|
* it, because as an optimization we don't cache it there).
|
|
|
|
*
|
|
|
|
* This guarantees that the internal cache works, by refreshing it. Calling it
|
|
|
|
* multiple times in the same reflow is wasteful, but not an error.
|
2013-07-25 19:34:12 +04:00
|
|
|
*/
|
2020-11-18 14:06:29 +03:00
|
|
|
nscoord CalcAndCacheConsumedBSize();
|
2013-07-25 19:34:12 +04:00
|
|
|
|
2013-07-25 19:34:16 +04:00
|
|
|
/**
|
2014-06-20 13:55:35 +04:00
|
|
|
* Retrieve the effective computed block size of this frame, which is the
|
|
|
|
* computed block size, minus the block size consumed by any previous
|
2019-08-15 19:49:14 +03:00
|
|
|
* continuations.
|
2013-07-25 19:34:16 +04:00
|
|
|
*/
|
2020-12-07 13:17:57 +03:00
|
|
|
nscoord GetEffectiveComputedBSize(const ReflowInput& aReflowInput,
|
|
|
|
nscoord aConsumed) const;
|
2013-07-25 19:34:16 +04:00
|
|
|
|
2013-07-25 19:34:27 +04:00
|
|
|
/**
|
2014-03-13 11:39:33 +04:00
|
|
|
* @see nsIFrame::GetLogicalSkipSides()
|
2013-07-25 19:34:27 +04:00
|
|
|
*/
|
2020-11-30 20:49:04 +03:00
|
|
|
LogicalSides GetLogicalSkipSides() const override {
|
|
|
|
return GetBlockLevelLogicalSkipSides(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
LogicalSides GetBlockLevelLogicalSkipSides(bool aAfterReflow) const;
|
2013-07-25 19:34:27 +04:00
|
|
|
|
2016-03-11 19:39:26 +03:00
|
|
|
/**
|
2020-11-30 20:49:04 +03:00
|
|
|
* A version of GetLogicalSkipSides() that is intended to be used inside
|
|
|
|
* Reflow before it's known if |this| frame will be COMPLETE or not.
|
2016-03-11 19:39:26 +03:00
|
|
|
* It returns a result that assumes this fragment is the last and thus
|
|
|
|
* should apply the block-end border/padding etc (except for "true" overflow
|
|
|
|
* containers which always skip block sides). You're then expected to
|
|
|
|
* recalculate the block-end side (as needed) when you know |this| frame's
|
|
|
|
* reflow status is INCOMPLETE.
|
2020-11-30 20:49:04 +03:00
|
|
|
* This method is intended for frames that break in the block axis.
|
2016-03-11 19:39:26 +03:00
|
|
|
*/
|
2020-11-30 20:49:04 +03:00
|
|
|
LogicalSides PreReflowBlockLevelLogicalSkipSides() const {
|
|
|
|
return GetBlockLevelLogicalSkipSides(false);
|
|
|
|
};
|
2016-03-11 19:39:26 +03:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
nsIFrame* mPrevContinuation;
|
|
|
|
nsIFrame* mNextContinuation;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsSplittableFrame_h___ */
|