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/. */
|
2000-03-31 11:02:06 +04:00
|
|
|
#ifndef nsLeafBoxFrame_h___
|
|
|
|
#define nsLeafBoxFrame_h___
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2000-03-02 06:01:30 +03:00
|
|
|
#include "nsLeafFrame.h"
|
2000-03-31 11:02:06 +04:00
|
|
|
#include "nsBox.h"
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2004-09-28 22:37:50 +04:00
|
|
|
class nsLeafBoxFrame : public nsLeafFrame
|
2000-03-02 06:01:30 +03:00
|
|
|
{
|
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewLeafBoxFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsSize GetPrefSize(nsBoxLayoutState& aState) override;
|
|
|
|
virtual nsSize GetMinSize(nsBoxLayoutState& aState) override;
|
|
|
|
virtual nsSize GetMaxSize(nsBoxLayoutState& aState) override;
|
|
|
|
virtual nscoord GetFlex(nsBoxLayoutState& aState) override;
|
|
|
|
virtual nscoord GetBoxAscent(nsBoxLayoutState& aState) override;
|
|
|
|
|
|
|
|
virtual nsIAtom* GetType() const override;
|
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
|
|
|
// This is bogus, but it's what we've always done.
|
|
|
|
// Note that nsLeafFrame is also eReplacedContainsBlock.
|
|
|
|
return nsLeafFrame::IsFrameOfType(aFlags &
|
2007-07-04 02:11:28 +04:00
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock | nsIFrame::eXULBox));
|
2007-02-24 21:33:33 +03:00
|
|
|
}
|
|
|
|
|
2014-01-06 03:31:14 +04:00
|
|
|
#ifdef DEBUG_FRAME_DUMP
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult GetFrameName(nsAString& aResult) const override;
|
2001-09-15 04:45:54 +04:00
|
|
|
#endif
|
2000-03-02 06:01:30 +03: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 08:38:33 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void MarkIntrinsicISizesDirty() override;
|
|
|
|
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) override;
|
|
|
|
virtual nscoord GetPrefISize(nsRenderingContext *aRenderingContext) 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
|
|
|
|
2008-01-27 23:24:06 +03:00
|
|
|
// Our auto size is that provided by nsFrame, not nsLeafFrame
|
2014-08-24 18:34:51 +04:00
|
|
|
virtual mozilla::LogicalSize
|
|
|
|
ComputeAutoSize(nsRenderingContext *aRenderingContext,
|
|
|
|
mozilla::WritingMode aWritingMode,
|
|
|
|
const mozilla::LogicalSize& aCBSize,
|
|
|
|
nscoord aAvailableISize,
|
|
|
|
const mozilla::LogicalSize& aMargin,
|
|
|
|
const mozilla::LogicalSize& aBorder,
|
|
|
|
const mozilla::LogicalSize& aPadding,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aShrinkWrap) override;
|
2008-01-27 23:24:06 +03:00
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult CharacterDataChanged(CharacterDataChangeInfo* aInfo) override;
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2014-05-25 02:20:40 +04:00
|
|
|
virtual void Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* asPrevInFlow) override;
|
2000-03-31 11:02:06 +04:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
2006-01-26 05:29:17 +03:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult AttributeChanged(int32_t aNameSpaceID,
|
2014-02-18 12:36:33 +04:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2007-06-19 03:22:46 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool ComputesOwnOverflowArea() override { return false; }
|
2004-09-28 22:37:50 +04:00
|
|
|
|
2000-03-02 06:01:30 +03:00
|
|
|
protected:
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD DoLayout(nsBoxLayoutState& aState) override;
|
2004-09-28 22:37:50 +04:00
|
|
|
|
2002-09-10 01:32:33 +04:00
|
|
|
#ifdef DEBUG_LAYOUT
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void GetBoxName(nsAutoString& aName) override;
|
2002-09-10 01:32:33 +04:00
|
|
|
#endif
|
2000-05-15 08:12:31 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nscoord GetIntrinsicISize() override;
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2015-01-06 12:27:56 +03:00
|
|
|
explicit nsLeafBoxFrame(nsStyleContext* aContext);
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2007-06-19 03:22:46 +04:00
|
|
|
private:
|
|
|
|
|
|
|
|
void UpdateMouseThrough();
|
|
|
|
|
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
}; // class nsLeafBoxFrame
|
2000-03-02 06:01:30 +03:00
|
|
|
|
2000-03-31 11:02:06 +04:00
|
|
|
#endif /* nsLeafBoxFrame_h___ */
|