2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/* rendering object for CSS display:inline objects */
|
|
|
|
|
|
|
|
#ifndef nsInlineFrame_h___
|
|
|
|
#define nsInlineFrame_h___
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-12-27 12:18:48 -08:00
|
|
|
#include "nsContainerFrame.h"
|
2013-02-01 08:01:47 -08:00
|
|
|
|
|
|
|
class nsLineLayout;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-10 22:22:20 -08:00
|
|
|
typedef nsContainerFrame nsInlineFrameBase;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Inline frame class.
|
|
|
|
*
|
|
|
|
* This class manages a list of child frames that are inline frames. Working with
|
|
|
|
* nsLineLayout, the class will reflow and place inline frames on a line.
|
|
|
|
*/
|
2013-02-10 22:22:20 -08:00
|
|
|
class nsInlineFrame : public nsInlineFrameBase
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsInlineFrame)
|
2009-01-12 11:20:59 -08:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-24 15:20:40 -07:00
|
|
|
friend nsInlineFrame* NS_NewInlineFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2009-01-09 08:35:24 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIFrame overrides
|
2013-02-14 03:12:27 -08:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-28 14:53:44 -07:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
2014-01-05 15:31:14 -08:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-12-03 20:50:05 -08:00
|
|
|
if (aFlags & eSupportsCSSTransforms) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-27 12:18:48 -08:00
|
|
|
return nsContainerFrame::IsFrameOfType(aFlags &
|
2007-05-17 23:04:04 -07:00
|
|
|
~(nsIFrame::eBidiInlineContainer | nsIFrame::eLineParticipant));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual void InvalidateFrame(uint32_t aDisplayItemKey = 0) MOZ_OVERRIDE;
|
|
|
|
virtual void InvalidateFrameWithRect(const nsRect& aRect, uint32_t aDisplayItemKey = 0) MOZ_OVERRIDE;
|
2013-02-10 22:22:20 -08:00
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual bool IsEmpty() MOZ_OVERRIDE;
|
|
|
|
virtual bool IsSelfEmpty() MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-03-13 07:14:37 -07:00
|
|
|
virtual FrameSearchResult PeekOffsetCharacter(bool aForward, int32_t* aOffset,
|
2012-09-14 09:10:08 -07:00
|
|
|
bool aRespectClusters = true) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-07-07 09:08:42 -07:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIHTMLReflow overrides
|
2014-07-24 10:03:25 -07:00
|
|
|
virtual void AddInlineMinISize(nsRenderingContext *aRenderingContext,
|
|
|
|
InlineMinISizeData *aData) MOZ_OVERRIDE;
|
|
|
|
virtual void AddInlinePrefISize(nsRenderingContext *aRenderingContext,
|
|
|
|
InlinePrefISizeData *aData) MOZ_OVERRIDE;
|
2014-08-24 07:34:44 -07:00
|
|
|
virtual mozilla::LogicalSize
|
|
|
|
ComputeSize(nsRenderingContext *aRenderingContext,
|
|
|
|
mozilla::WritingMode aWritingMode,
|
|
|
|
const mozilla::LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const mozilla::LogicalSize& aMargin,
|
|
|
|
const mozilla::LogicalSize& aBorder,
|
|
|
|
const mozilla::LogicalSize& aPadding,
|
|
|
|
uint32_t aFlags) MOZ_OVERRIDE;
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual nsRect ComputeTightBounds(gfxContext* aContext) const MOZ_OVERRIDE;
|
2014-05-12 17:47:52 -07:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-09-07 19:34:20 -07:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
int32_t aModType) MOZ_OVERRIDE;
|
|
|
|
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual bool CanContinueTextRun() const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-29 12:37:49 -07:00
|
|
|
virtual void PullOverflowsFromPrevInFlow() MOZ_OVERRIDE;
|
2014-06-17 05:19:38 -07:00
|
|
|
virtual nscoord GetLogicalBaseline(mozilla::WritingMode aWritingMode) const MOZ_OVERRIDE;
|
2013-12-17 05:30:24 -08:00
|
|
|
virtual bool DrainSelfOverflowList() MOZ_OVERRIDE;
|
2009-07-24 06:32:32 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
2014-03-13 00:39:33 -07:00
|
|
|
* Return true if the frame is first visual frame or first continuation
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2014-03-13 00:39:33 -07:00
|
|
|
bool IsFirst() const {
|
|
|
|
// If the frame's bidi visual state is set, return is-first state
|
2007-03-22 10:30:00 -07:00
|
|
|
// else return true if it's the first continuation.
|
|
|
|
return (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET)
|
2014-03-13 00:39:33 -07:00
|
|
|
? !!(GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_IS_FIRST)
|
2007-03-22 10:30:00 -07:00
|
|
|
: (!GetPrevInFlow());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-13 00:39:33 -07:00
|
|
|
* Return true if the frame is last visual frame or last continuation.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2014-03-13 00:39:33 -07:00
|
|
|
bool IsLast() const {
|
|
|
|
// If the frame's bidi visual state is set, return is-last state
|
2007-03-22 10:30:00 -07:00
|
|
|
// else return true if it's the last continuation.
|
|
|
|
return (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET)
|
2014-03-13 00:39:33 -07:00
|
|
|
? !!(GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_IS_LAST)
|
2007-03-22 10:30:00 -07:00
|
|
|
: (!GetNextInFlow());
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional reflow state used during our reflow methods
|
|
|
|
struct InlineReflowState {
|
|
|
|
nsIFrame* mPrevFrame;
|
|
|
|
nsInlineFrame* mNextInFlow;
|
2007-04-20 17:42:58 -07:00
|
|
|
nsIFrame* mLineContainer;
|
2009-10-26 18:43:56 -07:00
|
|
|
nsLineLayout* mLineLayout;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mSetParentPointer; // when reflowing child frame first set its
|
2007-03-22 10:30:00 -07:00
|
|
|
// parent frame pointer
|
|
|
|
|
|
|
|
InlineReflowState() {
|
2012-07-30 07:20:58 -07:00
|
|
|
mPrevFrame = nullptr;
|
|
|
|
mNextInFlow = nullptr;
|
|
|
|
mLineContainer = nullptr;
|
|
|
|
mLineLayout = nullptr;
|
2011-10-17 07:59:28 -07:00
|
|
|
mSetParentPointer = false;
|
2007-04-23 07:21:53 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2014-08-31 20:36:37 -07:00
|
|
|
explicit nsInlineFrame(nsStyleContext* aContext) : nsContainerFrame(aContext) {}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-06-28 03:13:13 -07:00
|
|
|
virtual LogicalSides GetLogicalSkipSides(const nsHTMLReflowState* aReflowState = nullptr) const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-12 17:47:52 -07:00
|
|
|
void ReflowFrames(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
InlineReflowState& rs,
|
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
nsReflowStatus& aStatus);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-12 17:47:52 -07:00
|
|
|
void ReflowInlineFrame(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
InlineReflowState& rs,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
nsReflowStatus& aStatus);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-20 17:42:58 -07:00
|
|
|
/**
|
|
|
|
* Reparent floats whose placeholders are inline descendants of aFrame from
|
|
|
|
* whatever block they're currently parented by to aOurBlock.
|
|
|
|
* @param aReparentSiblings if this is true, we follow aFrame's
|
|
|
|
* GetNextSibling chain reparenting them all
|
|
|
|
*/
|
|
|
|
void ReparentFloatsForInlineChild(nsIFrame* aOurBlock, nsIFrame* aFrame,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aReparentSiblings);
|
2007-04-20 17:42:58 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsIFrame* PullOneFrame(nsPresContext* aPresContext,
|
|
|
|
InlineReflowState& rs,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool* aIsComplete);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual void PushFrames(nsPresContext* aPresContext,
|
|
|
|
nsIFrame* aFromChild,
|
2009-10-26 18:43:56 -07:00
|
|
|
nsIFrame* aPrevSibling,
|
|
|
|
InlineReflowState& aState);
|
2011-08-03 11:30:58 -07:00
|
|
|
|
2013-12-17 05:30:24 -08:00
|
|
|
private:
|
|
|
|
// Helper method for DrainSelfOverflowList() to deal with lazy parenting
|
|
|
|
// (which we only do for nsInlineFrame, not nsFirstLineFrame).
|
|
|
|
enum DrainFlags {
|
|
|
|
eDontReparentFrames = 1, // skip reparenting the overflow list frames
|
|
|
|
eInFirstLine = 2, // the request is for an inline descendant of a nsFirstLineFrame
|
2014-07-07 09:08:42 -07:00
|
|
|
eForDestroy = 4, // the request is from DestroyFrom; in this case we do the
|
|
|
|
// minimal work required since the frame is about to be
|
|
|
|
// destroyed (just fixup parent pointers)
|
2013-12-17 05:30:24 -08:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Move any frames on our overflow list to the end of our principal list.
|
|
|
|
* @param aFlags one or more of the above DrainFlags
|
|
|
|
* @param aLineContainer the nearest line container ancestor
|
|
|
|
* @return true if there were any overflow frames
|
|
|
|
*/
|
|
|
|
bool DrainSelfOverflowListInternal(DrainFlags aFlags,
|
|
|
|
nsIFrame* aLineContainer);
|
|
|
|
protected:
|
2011-08-03 11:30:58 -07:00
|
|
|
nscoord mBaseline;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Variation on inline-frame used to manage lines for line layout in
|
|
|
|
* special situations (:first-line style in particular).
|
|
|
|
*/
|
2013-12-17 05:30:24 -08:00
|
|
|
class nsFirstLineFrame MOZ_FINAL : public nsInlineFrame {
|
2007-03-22 10:30:00 -07:00
|
|
|
public:
|
2009-09-12 09:49:24 -07:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2014-05-24 15:20:39 -07:00
|
|
|
friend nsFirstLineFrame* NS_NewFirstLineFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-01-05 15:31:14 -08:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-17 23:47:48 -08:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2014-05-12 17:47:52 -07:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-24 15:20:40 -07:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2012-09-14 09:10:08 -07:00
|
|
|
virtual void PullOverflowsFromPrevInFlow() MOZ_OVERRIDE;
|
2013-12-17 05:30:24 -08:00
|
|
|
virtual bool DrainSelfOverflowList() MOZ_OVERRIDE;
|
2009-07-24 06:32:32 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2014-08-31 20:36:37 -07:00
|
|
|
explicit nsFirstLineFrame(nsStyleContext* aContext) : nsInlineFrame(aContext) {}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual nsIFrame* PullOneFrame(nsPresContext* aPresContext,
|
|
|
|
InlineReflowState& rs,
|
2012-09-14 09:10:08 -07:00
|
|
|
bool* aIsComplete) MOZ_OVERRIDE;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsInlineFrame_h___ */
|