2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 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
|
|
|
|
|
|
|
/*
|
|
|
|
* 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"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsFrame.h"
|
|
|
|
|
|
|
|
// Derived class that allows splitting
|
|
|
|
class nsSplittableFrame : public nsFrame
|
|
|
|
{
|
|
|
|
public:
|
2015-11-04 12:57:35 +03:00
|
|
|
NS_DECL_ABSTRACT_FRAME(nsSplittableFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
1999-02-25 06:27:57 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsSplittableType GetSplittableType() const override;
|
2002-10-30 18:33:36 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
2002-10-30 18:33:36 +03:00
|
|
|
|
2006-02-22 00:33:47 +03:00
|
|
|
/*
|
|
|
|
* Frame continuations can be either fluid or not:
|
|
|
|
* Fluid continuations ("in-flows") are the result of line breaking,
|
|
|
|
* column breaking, or page breaking.
|
|
|
|
* Other (non-fluid) continuations can be the result of BiDi frame splitting.
|
|
|
|
* A "flow" is a chain of fluid continuations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Get the previous/next continuation, regardless of its type (fluid or non-fluid).
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIFrame* GetPrevContinuation() const override;
|
|
|
|
virtual nsIFrame* GetNextContinuation() const override;
|
2006-02-22 00:33:47 +03:00
|
|
|
|
|
|
|
// Set a previous/next non-fluid continuation.
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetPrevContinuation(nsIFrame*) override;
|
|
|
|
virtual void SetNextContinuation(nsIFrame*) override;
|
2006-02-22 00:33:47 +03:00
|
|
|
|
|
|
|
// Get the first/last continuation for this frame.
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIFrame* FirstContinuation() const override;
|
|
|
|
virtual nsIFrame* LastContinuation() const override;
|
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
|
|
|
|
|
|
|
|
// Get the previous/next continuation, only if it is fluid (an "in-flow").
|
|
|
|
nsIFrame* GetPrevInFlow() const;
|
|
|
|
nsIFrame* GetNextInFlow() const;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIFrame* GetPrevInFlowVirtual() const override { return GetPrevInFlow(); }
|
|
|
|
virtual nsIFrame* GetNextInFlowVirtual() const override { return GetNextInFlow(); }
|
2006-02-22 00:33:47 +03:00
|
|
|
|
|
|
|
// Set a previous/next fluid continuation.
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetPrevInFlow(nsIFrame*) override;
|
|
|
|
virtual void SetNextInFlow(nsIFrame*) override;
|
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.
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIFrame* FirstInFlow() const override;
|
|
|
|
virtual nsIFrame* LastInFlow() const override;
|
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:
|
2014-08-08 03:48:38 +04:00
|
|
|
explicit nsSplittableFrame(nsStyleContext* aContext) : nsFrame(aContext) {}
|
2006-03-27 01:30:36 +04:00
|
|
|
|
2013-07-25 19:34:12 +04:00
|
|
|
/**
|
|
|
|
* Determine the height consumed by our previous-in-flows.
|
|
|
|
*
|
|
|
|
* @note (bz) This makes laying out a splittable frame with N in-flows
|
|
|
|
* O(N^2)! So, use this function with caution and minimize the number
|
|
|
|
* of calls to this method.
|
|
|
|
*/
|
2014-06-20 13:55:35 +04:00
|
|
|
nscoord GetConsumedBSize() const;
|
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 in-flows.
|
2013-07-25 19:34:16 +04:00
|
|
|
*/
|
2016-07-21 13:36:39 +03:00
|
|
|
nscoord GetEffectiveComputedBSize(const ReflowInput& aReflowInput,
|
2014-06-20 13:55:35 +04:00
|
|
|
nscoord aConsumed = NS_INTRINSICSIZE) 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
|
|
|
*/
|
2016-07-21 13:36:39 +03:00
|
|
|
virtual LogicalSides GetLogicalSkipSides(const ReflowInput* aReflowInput = nullptr) const override;
|
2013-07-25 19:34:27 +04:00
|
|
|
|
2016-03-11 19:39:26 +03:00
|
|
|
/**
|
|
|
|
* A faster version of GetLogicalSkipSides() that is intended to be used
|
|
|
|
* inside Reflow before it's known if |this| frame will be COMPLETE or not.
|
|
|
|
* 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.
|
|
|
|
* This method is intended for frames that breaks in the block axis.
|
|
|
|
*/
|
|
|
|
LogicalSides PreReflowBlockLevelLogicalSkipSides() const;
|
|
|
|
|
1999-11-02 01:12:45 +03:00
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DumpBaseRegressionData(nsPresContext* aPresContext, FILE* out, int32_t aIndent) override;
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1998-11-19 21:51:53 +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___ */
|