2003-01-20 18:04:34 +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 that is the root of the frame tree, which contains
|
|
|
|
* the document's scrollbars and contains fixed-positioned elements
|
|
|
|
*/
|
|
|
|
|
2003-01-20 18:04:34 +00:00
|
|
|
#ifndef nsViewportFrame_h___
|
|
|
|
#define nsViewportFrame_h___
|
|
|
|
|
2012-09-14 16:10:08 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-01-20 18:04:34 +00:00
|
|
|
#include "nsContainerFrame.h"
|
|
|
|
|
2010-04-10 20:10:12 +00:00
|
|
|
class nsPresContext;
|
|
|
|
|
2003-01-20 18:04:34 +00:00
|
|
|
/**
|
2014-09-23 13:44:00 +00:00
|
|
|
* ViewportFrame is the parent of a single child - the doc root frame or a scroll frame
|
|
|
|
* containing the doc root frame. ViewportFrame stores this child in its primary child
|
2011-04-29 23:02:33 +00:00
|
|
|
* list.
|
2003-01-20 18:04:34 +00:00
|
|
|
*/
|
|
|
|
class ViewportFrame : public nsContainerFrame {
|
|
|
|
public:
|
2013-04-24 16:17:55 +00:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(ViewportFrame)
|
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
|
|
|
|
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
|
|
|
typedef nsContainerFrame Super;
|
|
|
|
|
2014-09-01 03:36:37 +00:00
|
|
|
explicit ViewportFrame(nsStyleContext* aContext)
|
2007-08-02 22:44:36 +00:00
|
|
|
: nsContainerFrame(aContext)
|
|
|
|
{}
|
2003-01-20 18:04:34 +00:00
|
|
|
virtual ~ViewportFrame() { } // useful for debugging
|
|
|
|
|
2014-05-24 22:20:40 +00:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow) MOZ_OVERRIDE;
|
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
|
|
|
|
2014-05-28 19:36:59 +00:00
|
|
|
#ifdef DEBUG
|
2014-05-28 19:36:58 +00:00
|
|
|
virtual void SetInitialChildList(ChildListID aListID,
|
2014-05-28 19:36:58 +00:00
|
|
|
nsFrameList& aChildList) MOZ_OVERRIDE;
|
2014-05-28 19:36:58 +00:00
|
|
|
virtual void AppendFrames(ChildListID aListID,
|
2014-05-28 19:36:58 +00:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE;
|
2014-05-28 19:36:58 +00:00
|
|
|
virtual void InsertFrames(ChildListID aListID,
|
2014-05-28 19:36:58 +00:00
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE;
|
2014-05-28 19:36:58 +00:00
|
|
|
virtual void RemoveFrame(ChildListID aListID,
|
2014-05-28 19:36:58 +00:00
|
|
|
nsIFrame* aOldFrame) MOZ_OVERRIDE;
|
2014-05-28 19:36:59 +00:00
|
|
|
#endif
|
2003-01-20 18:04:34 +00:00
|
|
|
|
2013-02-14 11:12:27 +00:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2006-01-26 02:29:17 +00:00
|
|
|
|
2014-07-24 17:03:25 +00:00
|
|
|
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
|
|
|
|
virtual nscoord GetPrefISize(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
|
2014-05-13 00:47:52 +00:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2003-01-20 18:04:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2006-12-26 17:47:52 +00:00
|
|
|
* @see nsGkAtoms::viewportFrame
|
2003-01-20 18:04:34 +00:00
|
|
|
*/
|
2012-09-14 16:10:08 +00:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2003-01-20 18:04:34 +00:00
|
|
|
|
2014-09-23 13:44:00 +00:00
|
|
|
virtual bool UpdateOverflow() MOZ_OVERRIDE;
|
|
|
|
|
2013-04-24 16:17:55 +00:00
|
|
|
/**
|
|
|
|
* Adjust aReflowState to account for scrollbars and pres shell
|
|
|
|
* GetScrollPositionClampingScrollPortSizeSet and
|
|
|
|
* GetContentDocumentFixedPositionMargins adjustments.
|
|
|
|
* @return the rect to use as containing block rect
|
|
|
|
*/
|
|
|
|
nsRect AdjustReflowStateAsContainingBlock(nsHTMLReflowState* aReflowState) const;
|
|
|
|
|
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;
|
2003-01-20 18:04:34 +00:00
|
|
|
#endif
|
|
|
|
|
2011-04-27 23:41:43 +00:00
|
|
|
private:
|
2013-05-14 16:33:23 +00:00
|
|
|
virtual mozilla::layout::FrameChildListID GetAbsoluteListID() const MOZ_OVERRIDE { return kFixedList; }
|
2011-04-27 23:41:43 +00:00
|
|
|
|
2003-01-20 18:04:34 +00:00
|
|
|
protected:
|
2013-04-24 16:17:55 +00:00
|
|
|
/**
|
|
|
|
* Calculate how much room is available for fixed frames. That means
|
|
|
|
* determining if the viewport is scrollable and whether the vertical and/or
|
|
|
|
* horizontal scrollbars are visible. Adjust the computed width/height and
|
|
|
|
* available width for aReflowState accordingly.
|
|
|
|
* @return the current scroll position, or 0,0 if not scrollable
|
|
|
|
*/
|
2004-01-09 19:21:20 +00:00
|
|
|
nsPoint AdjustReflowStateForScrollbars(nsHTMLReflowState* aReflowState) const;
|
2003-01-20 18:04:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // nsViewportFrame_h___
|