2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-04-20 00:23:05 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1999-04-20 00:23:05 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-04-20 00:23:05 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
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___
|
|
|
|
|
|
|
|
#include "nsHTMLContainerFrame.h"
|
|
|
|
#include "nsAbsoluteContainingBlock.h"
|
|
|
|
#include "nsLineLayout.h"
|
|
|
|
|
|
|
|
class nsAnonymousBlockFrame;
|
|
|
|
|
1999-07-14 17:28:45 +00:00
|
|
|
#define NS_INLINE_FRAME_CID \
|
2006-09-11 20:43:01 +00:00
|
|
|
{ 0x88b298af, 0x8b0e, 0x4592,{0x9e, 0xc6, 0xea, 0x4c, 0x4b, 0x3f, 0xf7, 0xa4}}
|
1999-07-14 17:28:45 +00:00
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
#define nsInlineFrameSuper nsHTMLContainerFrame
|
|
|
|
|
2002-08-10 07:59:44 +00:00
|
|
|
// NS_INLINE_FRAME_HARD_TEXT_OFFSETS is used for access keys, where what
|
|
|
|
// would normally be 1 text frame is split into 3 sets of an inline parent
|
|
|
|
// and text child (the pre access key text, the underlined key text, and
|
|
|
|
// the post access key text). The offsets of the 3 text frame children
|
|
|
|
// are set in nsCSSFrameConstructor
|
|
|
|
|
2007-01-27 18:40:26 +00:00
|
|
|
#define NS_INLINE_FRAME_HARD_TEXT_OFFSETS 0x00100000
|
2002-08-10 07:59:44 +00:00
|
|
|
|
2006-06-15 08:16:23 +00:00
|
|
|
/** In Bidi left (or right) margin/padding/border should be applied to left
|
|
|
|
* (or right) most frame (or a continuation frame).
|
|
|
|
* This state value shows if this frame is left (or right) most continuation
|
|
|
|
* or not.
|
|
|
|
*/
|
2007-01-27 18:40:26 +00:00
|
|
|
#define NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET 0x00200000
|
2006-06-15 08:16:23 +00:00
|
|
|
|
2007-01-27 18:40:26 +00:00
|
|
|
#define NS_INLINE_FRAME_BIDI_VISUAL_IS_LEFT_MOST 0x00400000
|
2006-06-15 08:16:23 +00:00
|
|
|
|
2007-01-27 18:40:26 +00:00
|
|
|
#define NS_INLINE_FRAME_BIDI_VISUAL_IS_RIGHT_MOST 0x00800000
|
2006-06-15 08:16:23 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
1999-04-20 00:23:05 +00:00
|
|
|
class nsInlineFrame : public nsInlineFrameSuper
|
|
|
|
{
|
|
|
|
public:
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewInlineFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
|
|
|
// nsISupports overrides
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
|
|
|
// nsIFrame overrides
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
2000-01-12 21:52:58 +00:00
|
|
|
|
2007-02-18 17:34:09 +00:00
|
|
|
virtual void Destroy();
|
|
|
|
|
2002-08-10 07:59:44 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
NS_IMETHODIMP GetAccessible(nsIAccessible** aAccessible);
|
|
|
|
#endif
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2007-02-24 18:33:33 +00:00
|
|
|
|
|
|
|
virtual PRBool IsFrameOfType(PRUint32 aFlags) const
|
|
|
|
{
|
|
|
|
return nsInlineFrameSuper::IsFrameOfType(aFlags &
|
|
|
|
~(nsIFrame::eBidiInlineContainer));
|
|
|
|
}
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2003-11-10 23:36:06 +00:00
|
|
|
virtual PRBool IsEmpty();
|
2004-11-15 05:01:11 +00:00
|
|
|
virtual PRBool IsSelfEmpty();
|
2001-10-25 01:08:40 +00:00
|
|
|
|
2006-09-11 20:43:01 +00:00
|
|
|
virtual PRBool PeekOffsetCharacter(PRBool aForward, PRInt32* aOffset);
|
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
// nsIHTMLReflow overrides
|
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
|
|
|
virtual void AddInlineMinWidth(nsIRenderingContext *aRenderingContext,
|
|
|
|
InlineMinWidthData *aData);
|
|
|
|
virtual void AddInlinePrefWidth(nsIRenderingContext *aRenderingContext,
|
|
|
|
InlinePrefWidthData *aData);
|
|
|
|
virtual nsSize ComputeSize(nsIRenderingContext *aRenderingContext,
|
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
|
|
|
PRBool aShrinkWrap);
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1999-04-20 00:23:05 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
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
|
|
|
virtual PRBool CanContinueTextRun() const;
|
2000-07-28 22:29:28 +00:00
|
|
|
|
1999-11-01 15:24:57 +00:00
|
|
|
// Take all of the frames away from this frame. The caller is
|
|
|
|
// presumed to keep them alive.
|
|
|
|
void StealAllFrames() {
|
|
|
|
mFrames.SetFrames(nsnull);
|
|
|
|
}
|
|
|
|
|
2006-06-15 08:16:23 +00:00
|
|
|
/**
|
|
|
|
* Return true if the frame is leftmost frame or continuation.
|
|
|
|
*/
|
|
|
|
PRBool IsLeftMost() const {
|
|
|
|
// If the frame's bidi visual state is set, return is-leftmost state
|
|
|
|
// else return true if it's the first continuation.
|
|
|
|
return (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET)
|
|
|
|
? (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_IS_LEFT_MOST)
|
|
|
|
: (!GetPrevInFlow());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return true if the frame is rightmost frame or continuation.
|
|
|
|
*/
|
|
|
|
PRBool IsRightMost() const {
|
|
|
|
// If the frame's bidi visual state is set, return is-rightmost state
|
|
|
|
// else return true if it's the last continuation.
|
|
|
|
return (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_STATE_IS_SET)
|
|
|
|
? (GetStateBits() & NS_INLINE_FRAME_BIDI_VISUAL_IS_RIGHT_MOST)
|
|
|
|
: (!GetNextInFlow());
|
|
|
|
}
|
|
|
|
|
1999-04-20 00:23:05 +00:00
|
|
|
protected:
|
|
|
|
// Additional reflow state used during our reflow methods
|
|
|
|
struct InlineReflowState {
|
|
|
|
nsIFrame* mPrevFrame;
|
|
|
|
nsInlineFrame* mNextInFlow;
|
2000-09-11 20:46:44 +00:00
|
|
|
PRPackedBool mSetParentPointer; // when reflowing child frame first set its
|
|
|
|
// parent frame pointer
|
2000-03-20 23:47:01 +00:00
|
|
|
|
|
|
|
InlineReflowState() {
|
|
|
|
mPrevFrame = nsnull;
|
|
|
|
mNextInFlow = nsnull;
|
2000-03-22 04:06:37 +00:00
|
|
|
mSetParentPointer = PR_FALSE;
|
2000-03-20 23:47:01 +00:00
|
|
|
};
|
1999-04-20 00:23:05 +00:00
|
|
|
};
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsInlineFrame(nsStyleContext* aContext) : nsInlineFrameSuper(aContext) {}
|
1999-04-20 00:23:05 +00:00
|
|
|
|
|
|
|
virtual PRIntn GetSkipSides() const;
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
nsresult ReflowFrames(nsPresContext* aPresContext,
|
1999-11-01 15:24:57 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
InlineReflowState& rs,
|
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
nsReflowStatus& aStatus);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
nsresult ReflowInlineFrame(nsPresContext* aPresContext,
|
1999-04-20 00:23:05 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
InlineReflowState& rs,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual nsIFrame* PullOneFrame(nsPresContext* aPresContext,
|
1999-11-01 15:24:57 +00:00
|
|
|
InlineReflowState& rs,
|
|
|
|
PRBool* 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,
|
|
|
|
nsIFrame* aPrevSibling);
|
2000-09-11 20:46:44 +00:00
|
|
|
|
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).
|
|
|
|
*/
|
1999-04-20 00:23:05 +00:00
|
|
|
class nsFirstLineFrame : public nsInlineFrame {
|
|
|
|
public:
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewFirstLineFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
1999-11-01 23:12:32 +00:00
|
|
|
#ifdef DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
1999-11-01 23:12:32 +00:00
|
|
|
#endif
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1999-04-20 00:23:05 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
|
1999-08-31 03:09:40 +00:00
|
|
|
// Take frames starting at aFrame until the end of the frame-list
|
|
|
|
// away from this frame. The caller is presumed to keep them alive.
|
|
|
|
void StealFramesFrom(nsIFrame* aFrame);
|
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,
|
|
|
|
PRBool* aIsComplete);
|
1999-04-20 00:23:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Derived class created for relatively positioned inline-level elements
|
|
|
|
// that acts as a containing block for child absolutely positioned
|
|
|
|
// elements
|
|
|
|
|
|
|
|
class nsPositionedInlineFrame : public nsInlineFrame
|
|
|
|
{
|
|
|
|
public:
|
2006-03-26 21:30:36 +00:00
|
|
|
nsPositionedInlineFrame(nsStyleContext* aContext) : nsInlineFrame(aContext) {}
|
2003-01-20 18:04:34 +00:00
|
|
|
|
|
|
|
virtual ~nsPositionedInlineFrame() { } // useful for debugging
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
virtual void Destroy();
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIAtom* aListName,
|
1999-04-20 00:23:05 +00:00
|
|
|
nsIFrame* aChildList);
|
2005-02-07 01:58:25 +00:00
|
|
|
NS_IMETHOD AppendFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
NS_IMETHOD InsertFrames(nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
NS_IMETHOD RemoveFrame(nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame);
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
2004-01-09 14:20:53 +00:00
|
|
|
virtual nsIAtom* GetAdditionalChildListName(PRInt32 aIndex) const;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2004-01-09 14:20:53 +00:00
|
|
|
virtual nsIFrame* GetFirstChild(nsIAtom* aListName) const;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1999-04-20 00:23:05 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1999-04-20 19:11:37 +00:00
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
1999-04-20 00:23:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
nsAbsoluteContainingBlock mAbsoluteContainer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsInlineFrame_h___ */
|