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
|
|
|
|
|
|
|
/*
|
|
|
|
* rendering object for the point that anchors out-of-flow rendering
|
|
|
|
* objects such as floats and absolutely positioned elements
|
|
|
|
*/
|
|
|
|
|
2006-11-06 04:17:32 +03:00
|
|
|
/*
|
|
|
|
* Destruction of a placeholder and its out-of-flow must observe the
|
|
|
|
* following constraints:
|
|
|
|
*
|
|
|
|
* - The mapping from the out-of-flow to the placeholder must be
|
|
|
|
* removed from the frame manager before the placeholder is destroyed.
|
|
|
|
* - The mapping from the out-of-flow to the placeholder must be
|
|
|
|
* removed from the frame manager before the out-of-flow is destroyed.
|
|
|
|
* - The placeholder must be removed from the frame tree, or have the
|
|
|
|
* mapping from it to its out-of-flow cleared, before the out-of-flow
|
|
|
|
* is destroyed (so that the placeholder will not point to a destroyed
|
|
|
|
* frame while it's in the frame tree).
|
|
|
|
*
|
2009-12-24 08:20:41 +03:00
|
|
|
* Furthermore, some code assumes that placeholders point to something
|
|
|
|
* useful, so placeholders without an associated out-of-flow should not
|
|
|
|
* remain in the tree.
|
2006-11-06 04:17:32 +03:00
|
|
|
*
|
2009-12-24 08:20:41 +03:00
|
|
|
* The placeholder's Destroy() implementation handles the destruction of
|
|
|
|
* the placeholder and its out-of-flow. To avoid crashes, frame removal
|
|
|
|
* and destruction code that works with placeholders must not assume
|
|
|
|
* that the placeholder points to its out-of-flow.
|
2006-11-06 04:17:32 +03:00
|
|
|
*/
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#ifndef nsPlaceholderFrame_h___
|
|
|
|
#define nsPlaceholderFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2009-08-31 22:25:35 +04:00
|
|
|
#include "nsFrame.h"
|
2007-01-30 03:06:41 +03:00
|
|
|
#include "nsGkAtoms.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2009-11-17 00:00:07 +03:00
|
|
|
nsIFrame* NS_NewPlaceholderFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext,
|
|
|
|
nsFrameState aTypeBit);
|
|
|
|
|
|
|
|
// Frame state bits that are used to keep track of what this is a
|
|
|
|
// placeholder for.
|
2010-06-09 09:28:14 +04:00
|
|
|
#define PLACEHOLDER_FOR_FLOAT NS_FRAME_STATE_BIT(20)
|
|
|
|
#define PLACEHOLDER_FOR_ABSPOS NS_FRAME_STATE_BIT(21)
|
|
|
|
#define PLACEHOLDER_FOR_FIXEDPOS NS_FRAME_STATE_BIT(22)
|
|
|
|
#define PLACEHOLDER_FOR_POPUP NS_FRAME_STATE_BIT(23)
|
|
|
|
#define PLACEHOLDER_TYPE_MASK (PLACEHOLDER_FOR_FLOAT | \
|
|
|
|
PLACEHOLDER_FOR_ABSPOS | \
|
|
|
|
PLACEHOLDER_FOR_FIXEDPOS | \
|
|
|
|
PLACEHOLDER_FOR_POPUP)
|
2002-01-10 17:16:05 +03:00
|
|
|
|
1998-11-14 22:26:57 +03:00
|
|
|
/**
|
1999-04-23 18:34:48 +04:00
|
|
|
* Implementation of a frame that's used as a placeholder for a frame that
|
2013-02-11 06:28:50 +04:00
|
|
|
* has been moved out of the flow.
|
1998-11-14 22:26:57 +03:00
|
|
|
*/
|
2013-02-11 06:28:50 +04:00
|
|
|
class nsPlaceholderFrame MOZ_FINAL : public nsFrame {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
/**
|
2009-11-17 00:00:07 +03:00
|
|
|
* Create a new placeholder frame. aTypeBit must be one of the
|
|
|
|
* PLACEHOLDER_FOR_* constants above.
|
1998-04-14 00:24:54 +04:00
|
|
|
*/
|
2009-11-17 00:00:07 +03:00
|
|
|
friend nsIFrame* NS_NewPlaceholderFrame(nsIPresShell* aPresShell,
|
|
|
|
nsStyleContext* aContext,
|
|
|
|
nsFrameState aTypeBit);
|
2013-02-11 06:28:50 +04:00
|
|
|
nsPlaceholderFrame(nsStyleContext* aContext, nsFrameState aTypeBit)
|
|
|
|
: nsFrame(aContext)
|
2009-11-17 00:00:07 +03:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aTypeBit == PLACEHOLDER_FOR_FLOAT ||
|
|
|
|
aTypeBit == PLACEHOLDER_FOR_ABSPOS ||
|
|
|
|
aTypeBit == PLACEHOLDER_FOR_FIXEDPOS ||
|
|
|
|
aTypeBit == PLACEHOLDER_FOR_POPUP,
|
|
|
|
"Unexpected type bit");
|
|
|
|
AddStateBits(aTypeBit);
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1999-04-23 18:34:48 +04:00
|
|
|
// Get/Set the associated out of flow frame
|
2013-02-11 06:28:50 +04:00
|
|
|
nsIFrame* GetOutOfFlowFrame() const { return mOutOfFlowFrame; }
|
2009-08-31 22:25:35 +04:00
|
|
|
void SetOutOfFlowFrame(nsIFrame* aFrame) {
|
|
|
|
NS_ASSERTION(!aFrame || !aFrame->GetPrevContinuation(),
|
|
|
|
"OOF must be first continuation");
|
|
|
|
mOutOfFlowFrame = aFrame;
|
|
|
|
}
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-02-11 06:28:50 +04:00
|
|
|
// nsIFrame overrides
|
|
|
|
// We need to override GetMinSize and GetPrefSize because XUL uses
|
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 08:38:33 +03:00
|
|
|
// placeholders not within lines.
|
2013-02-11 06:28:50 +04:00
|
|
|
virtual void AddInlineMinWidth(nsRenderingContext* aRenderingContext,
|
|
|
|
InlineMinWidthData* aData) MOZ_OVERRIDE;
|
|
|
|
virtual void AddInlinePrefWidth(nsRenderingContext* aRenderingContext,
|
|
|
|
InlinePrefWidthData* aData) MOZ_OVERRIDE;
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual nsSize GetMinSize(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
|
|
|
virtual nsSize GetPrefSize(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
|
|
|
virtual nsSize GetMaxSize(nsBoxLayoutState& aBoxLayoutState) MOZ_OVERRIDE;
|
2013-02-11 06:28:50 +04:00
|
|
|
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-10-03 08:28:05 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
1998-10-03 08:28:05 +04:00
|
|
|
|
2013-02-11 06:28:50 +04:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) MOZ_OVERRIDE;
|
2005-03-23 06:35:08 +03:00
|
|
|
|
2006-09-19 08:26:20 +04:00
|
|
|
#if defined(DEBUG) || (defined(MOZ_REFLOW_PERF_DSP) && defined(MOZ_REFLOW_PERF))
|
2006-01-26 05:29:17 +03:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2013-02-11 06:28:50 +04:00
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2006-09-19 08:26:20 +04:00
|
|
|
#endif // DEBUG || (MOZ_REFLOW_PERF_DSP && MOZ_REFLOW_PERF)
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
2012-09-19 18:36:35 +04:00
|
|
|
NS_IMETHOD List(FILE* out, int32_t aIndent, uint32_t aFlags = 0) const MOZ_OVERRIDE;
|
2013-02-11 06:28:50 +04:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2006-09-19 08:26:20 +04:00
|
|
|
#endif // DEBUG
|
1998-07-01 01:35:07 +04:00
|
|
|
|
1999-04-23 18:34:48 +04:00
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2006-12-26 20:47:52 +03:00
|
|
|
* @see nsGkAtoms::placeholderFrame
|
1999-04-23 18:34:48 +04:00
|
|
|
*/
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
1999-04-23 18:34:48 +04:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual bool IsEmpty() MOZ_OVERRIDE { return true; }
|
|
|
|
virtual bool IsSelfEmpty() MOZ_OVERRIDE { return true; }
|
2001-10-25 05:08:40 +04:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual bool CanContinueTextRun() const MOZ_OVERRIDE;
|
2006-10-19 05:47:47 +04:00
|
|
|
|
2005-09-23 01:59:06 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2012-09-29 01:53:44 +04:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() MOZ_OVERRIDE
|
2005-09-23 01:59:06 +04:00
|
|
|
{
|
2010-06-28 16:02:03 +04:00
|
|
|
nsIFrame* realFrame = GetRealFrameForPlaceholder(this);
|
2012-09-29 01:53:44 +04:00
|
|
|
return realFrame ? realFrame->AccessibleType() :
|
|
|
|
nsFrame::AccessibleType();
|
2005-09-23 01:59:06 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual nsIFrame* GetParentStyleContextFrame() const MOZ_OVERRIDE;
|
2011-09-12 20:08:07 +04:00
|
|
|
|
2005-04-14 19:30:35 +04:00
|
|
|
/**
|
|
|
|
* @return the out-of-flow for aFrame if aFrame is a placeholder; otherwise
|
|
|
|
* aFrame
|
|
|
|
*/
|
|
|
|
static nsIFrame* GetRealFrameFor(nsIFrame* aFrame) {
|
|
|
|
NS_PRECONDITION(aFrame, "Must have a frame to work with");
|
2006-12-26 20:47:52 +03:00
|
|
|
if (aFrame->GetType() == nsGkAtoms::placeholderFrame) {
|
2005-04-14 19:30:35 +04:00
|
|
|
return GetRealFrameForPlaceholder(aFrame);
|
|
|
|
}
|
|
|
|
return aFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return the out-of-flow for aFrame, which is known to be a placeholder
|
|
|
|
*/
|
|
|
|
static nsIFrame* GetRealFrameForPlaceholder(nsIFrame* aFrame) {
|
2006-12-26 20:47:52 +03:00
|
|
|
NS_PRECONDITION(aFrame->GetType() == nsGkAtoms::placeholderFrame,
|
2005-04-14 19:30:35 +04:00
|
|
|
"Must have placeholder frame as input");
|
|
|
|
nsIFrame* outOfFlow =
|
2007-07-08 11:08:04 +04:00
|
|
|
static_cast<nsPlaceholderFrame*>(aFrame)->GetOutOfFlowFrame();
|
2005-04-14 19:30:35 +04:00
|
|
|
NS_ASSERTION(outOfFlow, "Null out-of-flow for placeholder?");
|
|
|
|
return outOfFlow;
|
|
|
|
}
|
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
protected:
|
1999-04-23 18:34:48 +04:00
|
|
|
nsIFrame* mOutOfFlowFrame;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsPlaceholderFrame_h___ */
|