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/. */
|
1999-04-22 02:46:15 +04:00
|
|
|
|
|
|
|
#ifndef nsHTMLButtonControlFrame_h___
|
|
|
|
#define nsHTMLButtonControlFrame_h___
|
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-12-28 00:18:48 +04:00
|
|
|
#include "nsContainerFrame.h"
|
1999-04-22 02:46:15 +04:00
|
|
|
#include "nsIFormControlFrame.h"
|
|
|
|
#include "nsButtonFrameRenderer.h"
|
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
class gfxContext;
|
2010-04-11 00:10:12 +04:00
|
|
|
class nsPresContext;
|
2004-10-14 22:48:42 +04:00
|
|
|
|
2011-12-28 00:18:48 +04:00
|
|
|
class nsHTMLButtonControlFrame : public nsContainerFrame,
|
2017-04-30 18:30:08 +03:00
|
|
|
public nsIFormControlFrame
|
1999-04-22 02:46:15 +04:00
|
|
|
{
|
|
|
|
public:
|
2017-04-30 18:30:08 +03:00
|
|
|
explicit nsHTMLButtonControlFrame(nsStyleContext* aContext)
|
2017-05-26 13:11:11 +03:00
|
|
|
: nsHTMLButtonControlFrame(aContext, kClassID)
|
2017-04-30 18:30:08 +03:00
|
|
|
{}
|
|
|
|
|
1999-11-05 02:16:47 +03:00
|
|
|
~nsHTMLButtonControlFrame();
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) override;
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsHTMLButtonControlFrame)
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2013-02-14 15:12:27 +04:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
2015-03-21 19:28:04 +03:00
|
|
|
const nsDisplayListSet& aLists) override;
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual nscoord GetMinISize(gfxContext *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
|
|
|
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual nscoord GetPrefISize(gfxContext *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
|
|
|
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aPresContext,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2017-01-28 04:34:13 +03:00
|
|
|
bool GetVerticalAlignBaseline(mozilla::WritingMode aWM,
|
|
|
|
nscoord* aBaseline) const override;
|
|
|
|
|
|
|
|
bool GetNaturalBaselineBOffset(mozilla::WritingMode aWM,
|
|
|
|
BaselineSharingGroup aBaselineGroup,
|
|
|
|
nscoord* aBaseline) const override;
|
|
|
|
|
2017-07-06 15:00:35 +03:00
|
|
|
virtual nsresult HandleEvent(nsPresContext* aPresContext,
|
2014-02-18 12:36:33 +04:00
|
|
|
mozilla::WidgetGUIEvent* aEvent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsEventStatus* aEventStatus) override;
|
1999-04-22 02:46:15 +04: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* aPrevInFlow) override;
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsStyleContext* GetAdditionalStyleContext(int32_t aIndex) const override;
|
2017-07-06 15:00:35 +03:00
|
|
|
virtual void SetAdditionalStyleContext(int32_t aIndex,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsStyleContext* aStyleContext) override;
|
2017-07-06 15:00:35 +03:00
|
|
|
|
2014-05-28 23:36:59 +04:00
|
|
|
#ifdef DEBUG
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void AppendFrames(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aFrameList) override;
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void InsertFrames(ChildListID aListID,
|
2014-05-28 23:36:58 +04:00
|
|
|
nsIFrame* aPrevFrame,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aFrameList) override;
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void RemoveFrame(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aOldFrame) override;
|
2014-05-28 23:36:59 +04:00
|
|
|
#endif
|
2003-11-18 05:12:24 +03:00
|
|
|
|
2001-08-17 07:13:07 +04:00
|
|
|
#ifdef ACCESSIBILITY
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual mozilla::a11y::AccType AccessibleType() override;
|
2001-08-17 07:13:07 +04:00
|
|
|
#endif
|
2001-05-18 03:52:32 +04: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 {
|
2006-04-25 23:56:45 +04:00
|
|
|
return MakeFrameName(NS_LITERAL_STRING("HTMLButtonControl"), aResult);
|
1999-04-22 02:46:15 +04:00
|
|
|
}
|
1999-11-02 01:12:45 +03:00
|
|
|
#endif
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool HonorPrintBackgroundSettings() override { return false; }
|
2009-05-28 09:01:42 +04:00
|
|
|
|
2002-09-16 10:23:52 +04:00
|
|
|
// nsIFormControlFrame
|
2015-03-21 19:28:04 +03:00
|
|
|
void SetFocus(bool aOn, bool aRepaint) override;
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult SetFormProperty(nsAtom* aName, const nsAString& aValue) override;
|
1999-04-22 02:46:15 +04:00
|
|
|
|
2005-03-07 22:08:26 +03:00
|
|
|
// Inserted child content gets its frames parented by our child block
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsContainerFrame* GetContentInsertionFrame() override {
|
2016-01-29 17:42:14 +03:00
|
|
|
return PrincipalChildList().FirstChild()->GetContentInsertionFrame();
|
2005-03-07 22:08:26 +03:00
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
2011-12-28 00:18:48 +04:00
|
|
|
return nsContainerFrame::IsFrameOfType(aFlags &
|
2007-02-24 21:33:33 +03:00
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
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
|
|
|
|
2017-06-16 12:22:33 +03:00
|
|
|
// Return the ::-moz-button-content anonymous box.
|
|
|
|
void AppendDirectlyOwnedAnonBoxes(nsTArray<OwnedAnonBox>& aResult) override;
|
|
|
|
|
1999-04-22 02:46:15 +04:00
|
|
|
protected:
|
2017-05-26 13:11:11 +03:00
|
|
|
nsHTMLButtonControlFrame(nsStyleContext* aContext, nsIFrame::ClassID aID);
|
2017-04-30 18:30:08 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool IsInput() { return false; }
|
2016-04-02 06:36:41 +03:00
|
|
|
|
|
|
|
// Indicates whether we should clip our children's painting to our
|
|
|
|
// border-box (either because of "overflow" or because of legacy reasons
|
|
|
|
// about how <input>-flavored buttons work).
|
|
|
|
bool ShouldClipPaintingToBorderBox();
|
|
|
|
|
2013-09-27 10:43:16 +04:00
|
|
|
// Reflows the button's sole child frame, and computes the desired size
|
|
|
|
// of the button itself from the results.
|
2004-08-01 03:15:21 +04:00
|
|
|
void ReflowButtonContents(nsPresContext* aPresContext,
|
2016-07-21 13:36:38 +03:00
|
|
|
ReflowOutput& aButtonDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aButtonReflowInput,
|
2013-09-27 10:43:16 +04:00
|
|
|
nsIFrame* aFirstKid);
|
2006-01-13 10:58:12 +03:00
|
|
|
|
1999-04-22 02:46:15 +04:00
|
|
|
nsButtonFrameRenderer mRenderer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|