2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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 18:29:03 +00:00
|
|
|
|
|
|
|
/* rendering object for CSS display:inline objects */
|
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
#ifndef nsInlineFrame_h___
|
|
|
|
#define nsInlineFrame_h___
|
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-12-27 20:18:48 +00:00
|
|
|
#include "nsContainerFrame.h"
|
2013-02-01 16:01:47 +00:00
|
|
|
|
|
|
|
class nsLineLayout;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2013-02-11 06:22:20 +00:00
|
|
|
typedef nsContainerFrame nsInlineFrameBase;
|
|
|
|
|
1999-11-01 15:24:57 +00: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-11 06:22:20 +00:00
|
|
|
class nsInlineFrame : public nsInlineFrameBase
|
1999-04-20 00:23:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsInlineFrame)
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2014-05-24 22:20:40 +00:00
|
|
|
friend nsInlineFrame* NS_NewInlineFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
2009-01-09 16:35:24 +00:00
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
// nsIFrame overrides
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2000-01-12 21:52:58 +00:00
|
|
|
|
2002-08-10 07:59:44 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-28 21:53:44 +00:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE;
|
2002-08-10 07:59:44 +00:00
|
|
|
#endif
|
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
2013-05-29 19:37:49 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2007-02-24 18:33:33 +00:00
|
|
|
|
2013-05-29 19:37:49 +00:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const MOZ_OVERRIDE
|
2007-02-24 18:33:33 +00:00
|
|
|
{
|
2012-12-04 04:50:05 +00:00
|
|
|
if (aFlags & eSupportsCSSTransforms) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-12-27 20:18:48 +00:00
|
|
|
return nsContainerFrame::IsFrameOfType(aFlags &
|
2007-05-18 06:04:04 +00:00
|
|
|
~(nsIFrame::eBidiInlineContainer | nsIFrame::eLineParticipant));
|
2007-02-24 18:33:33 +00:00
|
|
|
}
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2013-05-29 19:37:49 +00:00
|
|
|
virtual void InvalidateFrame(uint32_t aDisplayItemKey = 0) MOZ_OVERRIDE;
|
|
|
|
virtual void InvalidateFrameWithRect(const nsRect& aRect, uint32_t aDisplayItemKey = 0) MOZ_OVERRIDE;
|
2013-02-11 06:22:20 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual bool IsEmpty() MOZ_OVERRIDE;
|
|
|
|
virtual bool IsSelfEmpty() MOZ_OVERRIDE;
|
2001-10-25 01:08:40 +00:00
|
|
|
|
2014-03-13 14:14:37 +00:00
|
|
|
virtual FrameSearchResult PeekOffsetCharacter(bool aForward, int32_t* aOffset,
|
2012-09-14 16:10:08 +00:00
|
|
|
bool aRespectClusters = true) MOZ_OVERRIDE;
|
2006-09-11 20:43:01 +00:00
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
// nsIHTMLReflow overrides
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual void AddInlineMinWidth(nsRenderingContext *aRenderingContext,
|
2012-09-14 16:10:08 +00:00
|
|
|
InlineMinWidthData *aData) MOZ_OVERRIDE;
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual void AddInlinePrefWidth(nsRenderingContext *aRenderingContext,
|
2012-09-14 16:10:08 +00:00
|
|
|
InlinePrefWidthData *aData) MOZ_OVERRIDE;
|
2011-04-08 01:04:40 +00:00
|
|
|
virtual nsSize ComputeSize(nsRenderingContext *aRenderingContext,
|
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
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aFlags) MOZ_OVERRIDE;
|
2013-05-29 19:37:49 +00:00
|
|
|
virtual nsRect ComputeTightBounds(gfxContext* aContext) const MOZ_OVERRIDE;
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual bool CanContinueTextRun() const MOZ_OVERRIDE;
|
2000-07-28 22:29:28 +00:00
|
|
|
|
2013-05-29 19:37:49 +00:00
|
|
|
virtual void PullOverflowsFromPrevInFlow() MOZ_OVERRIDE;
|
2014-06-17 12:19:38 +00:00
|
|
|
virtual nscoord GetLogicalBaseline(mozilla::WritingMode aWritingMode) const MOZ_OVERRIDE;
|
2013-12-17 13:30:24 +00:00
|
|
|
virtual bool DrainSelfOverflowList() MOZ_OVERRIDE;
|
2009-07-24 13:32:32 +00:00
|
|
|
|
2006-06-15 08:16:23 +00:00
|
|
|
/**
|
2014-03-13 07:39:33 +00:00
|
|
|
* Return true if the frame is first visual frame or first continuation
|
2006-06-15 08:16:23 +00:00
|
|
|
*/
|
2014-03-13 07:39:33 +00:00
|
|
|
bool IsFirst() const {
|
|
|
|
// If the frame's bidi visual state is set, return is-first state
|
2006-06-15 08:16:23 +00:00
|
|
|
// else return true if it's the first continuation.
|
|
|
|
return (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET)
|
2014-03-13 07:39:33 +00:00
|
|
|
? !!(GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_IS_FIRST)
|
2006-06-15 08:16:23 +00:00
|
|
|
: (!GetPrevInFlow());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-03-13 07:39:33 +00:00
|
|
|
* Return true if the frame is last visual frame or last continuation.
|
2006-06-15 08:16:23 +00:00
|
|
|
*/
|
2014-03-13 07:39:33 +00:00
|
|
|
bool IsLast() const {
|
|
|
|
// If the frame's bidi visual state is set, return is-last state
|
2006-06-15 08:16:23 +00:00
|
|
|
// else return true if it's the last continuation.
|
|
|
|
return (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET)
|
2014-03-13 07:39:33 +00:00
|
|
|
? !!(GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_IS_LAST)
|
2006-06-15 08:16:23 +00:00
|
|
|
: (!GetNextInFlow());
|
|
|
|
}
|
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
protected:
|
|
|
|
// Additional reflow state used during our reflow methods
|
|
|
|
struct InlineReflowState {
|
|
|
|
nsIFrame* mPrevFrame;
|
|
|
|
nsInlineFrame* mNextInFlow;
|
2007-04-21 00:42:58 +00:00
|
|
|
nsIFrame* mLineContainer;
|
2009-10-27 01:43:56 +00:00
|
|
|
nsLineLayout* mLineLayout;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mSetParentPointer; // when reflowing child frame first set its
|
2000-09-11 20:46:44 +00:00
|
|
|
// parent frame pointer
|
2000-03-20 23:47:01 +00:00
|
|
|
|
|
|
|
InlineReflowState() {
|
2012-07-30 14:20:58 +00:00
|
|
|
mPrevFrame = nullptr;
|
|
|
|
mNextInFlow = nullptr;
|
|
|
|
mLineContainer = nullptr;
|
|
|
|
mLineLayout = nullptr;
|
2011-10-17 14:59:28 +00:00
|
|
|
mSetParentPointer = false;
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
1999-04-20 00:23:05 +00:00
|
|
|
};
|
|
|
|
|
2011-12-27 20:18:48 +00:00
|
|
|
nsInlineFrame(nsStyleContext* aContext) : nsContainerFrame(aContext) {}
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2014-03-13 07:39:33 +00:00
|
|
|
virtual int GetLogicalSkipSides(const nsHTMLReflowState* aReflowState = nullptr) const MOZ_OVERRIDE;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2014-05-13 00:47:52 +00:00
|
|
|
void ReflowFrames(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
InlineReflowState& rs,
|
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
nsReflowStatus& aStatus);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2014-05-13 00:47:52 +00:00
|
|
|
void ReflowInlineFrame(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
InlineReflowState& rs,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
nsReflowStatus& aStatus);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2007-04-21 00:42:58 +00: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-29 06:19:26 +00:00
|
|
|
bool aReparentSiblings);
|
2007-04-21 00:42:58 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual nsIFrame* PullOneFrame(nsPresContext* aPresContext,
|
1999-11-01 15:24:57 +00:00
|
|
|
InlineReflowState& rs,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* aIsComplete);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual void PushFrames(nsPresContext* aPresContext,
|
1999-04-20 00:23:05 +00:00
|
|
|
nsIFrame* aFromChild,
|
2009-10-27 01:43:56 +00:00
|
|
|
nsIFrame* aPrevSibling,
|
|
|
|
InlineReflowState& aState);
|
2011-08-03 18:30:58 +00:00
|
|
|
|
2013-12-17 13:30:24 +00: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
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* 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 18:30:58 +00:00
|
|
|
nscoord mBaseline;
|
1999-04-20 00:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
1999-11-01 15:24:57 +00:00
|
|
|
/**
|
|
|
|
* Variation on inline-frame used to manage lines for line layout in
|
|
|
|
* special situations (:first-line style in particular).
|
|
|
|
*/
|
2013-12-17 13:30:24 +00:00
|
|
|
class nsFirstLineFrame MOZ_FINAL : public nsInlineFrame {
|
1999-04-20 00:23:05 +00:00
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
2014-05-24 22:20:39 +00:00
|
|
|
friend nsFirstLineFrame* NS_NewFirstLineFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2014-01-05 23:31:14 +00:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2014-02-18 07:47:48 +00:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
1999-11-01 23:12:32 +00:00
|
|
|
#endif
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2014-05-24 22:20:40 +00:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual void PullOverflowsFromPrevInFlow() MOZ_OVERRIDE;
|
2013-12-17 13:30:24 +00:00
|
|
|
virtual bool DrainSelfOverflowList() MOZ_OVERRIDE;
|
2009-07-24 13:32:32 +00:00
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
protected:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsFirstLineFrame(nsStyleContext* aContext) : nsInlineFrame(aContext) {}
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual nsIFrame* PullOneFrame(nsPresContext* aPresContext,
|
1999-11-01 15:24:57 +00:00
|
|
|
InlineReflowState& rs,
|
2012-09-14 16:10:08 +00:00
|
|
|
bool* aIsComplete) MOZ_OVERRIDE;
|
1999-04-20 00:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsInlineFrame_h___ */
|