2003-01-20 21:04:34 +03: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 that is the root of the frame tree, which contains
|
|
|
|
* the document's scrollbars and contains fixed-positioned elements
|
|
|
|
*/
|
|
|
|
|
2003-01-20 21:04:34 +03:00
|
|
|
#ifndef nsViewportFrame_h___
|
|
|
|
#define nsViewportFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2003-01-20 21:04:34 +03:00
|
|
|
#include "nsContainerFrame.h"
|
|
|
|
|
2010-04-11 00:10:12 +04:00
|
|
|
class nsPresContext;
|
|
|
|
|
2003-01-20 21:04:34 +03: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-30 03:02:33 +04:00
|
|
|
* list.
|
2003-01-20 21:04:34 +03:00
|
|
|
*/
|
|
|
|
class ViewportFrame : public nsContainerFrame {
|
|
|
|
public:
|
2013-04-24 20:17:55 +04:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(ViewportFrame)
|
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 20:49:24 +04: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 08:38:33 +03:00
|
|
|
typedef nsContainerFrame Super;
|
|
|
|
|
2007-08-03 02:44:36 +04:00
|
|
|
ViewportFrame(nsStyleContext* aContext)
|
|
|
|
: nsContainerFrame(aContext)
|
|
|
|
{}
|
2003-01-20 21:04:34 +03:00
|
|
|
virtual ~ViewportFrame() { } // useful for debugging
|
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* asPrevInFlow) 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 08:38:33 +03:00
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD SetInitialChildList(ChildListID aListID,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsFrameList& aChildList) MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD AppendFrames(ChildListID aListID,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD InsertFrames(ChildListID aListID,
|
2003-01-20 21:04:34 +03:00
|
|
|
nsIFrame* aPrevFrame,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsFrameList& aFrameList) MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
|
2011-08-25 00:54:30 +04:00
|
|
|
NS_IMETHOD RemoveFrame(ChildListID aListID,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsIFrame* aOldFrame) MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) MOZ_OVERRIDE;
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual nscoord GetMinWidth(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
|
|
|
|
virtual nscoord GetPrefWidth(nsRenderingContext *aRenderingContext) MOZ_OVERRIDE;
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
2003-01-20 21:04:34 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2012-09-14 20:10:08 +04:00
|
|
|
nsReflowStatus& aStatus) MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the "type" of the frame
|
|
|
|
*
|
2006-12-26 20:47:52 +03:00
|
|
|
* @see nsGkAtoms::viewportFrame
|
2003-01-20 21:04:34 +03:00
|
|
|
*/
|
2012-09-14 20:10:08 +04:00
|
|
|
virtual nsIAtom* GetType() const MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
|
2013-04-24 20:17:55 +04: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;
|
|
|
|
|
2003-01-20 21:04:34 +03:00
|
|
|
#ifdef DEBUG
|
2012-09-14 20:10:08 +04:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const MOZ_OVERRIDE;
|
2003-01-20 21:04:34 +03:00
|
|
|
#endif
|
|
|
|
|
2011-04-28 03:41:43 +04:00
|
|
|
private:
|
2013-05-14 20:33:23 +04:00
|
|
|
virtual mozilla::layout::FrameChildListID GetAbsoluteListID() const MOZ_OVERRIDE { return kFixedList; }
|
2011-04-28 03:41:43 +04:00
|
|
|
|
2003-01-20 21:04:34 +03:00
|
|
|
protected:
|
2013-04-24 20:17:55 +04: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 22:21:20 +03:00
|
|
|
nsPoint AdjustReflowStateForScrollbars(nsHTMLReflowState* aReflowState) const;
|
2003-01-20 21:04:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // nsViewportFrame_h___
|