2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2017-09-27 15:12:00 +03:00
|
|
|
#ifndef nsCheckboxRadioFrame_h___
|
|
|
|
#define nsCheckboxRadioFrame_h___
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2012-09-14 20:10:08 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1998-09-23 21:16:51 +04:00
|
|
|
#include "nsIFormControlFrame.h"
|
2016-01-28 02:11:00 +03:00
|
|
|
#include "nsAtomicContainerFrame.h"
|
|
|
|
#include "nsDisplayList.h"
|
|
|
|
|
2016-04-18 08:42:26 +03:00
|
|
|
/**
|
2017-09-27 15:12:00 +03:00
|
|
|
* nsCheckboxRadioFrame is used for radio buttons and checkboxes.
|
2017-09-27 15:12:00 +03:00
|
|
|
* It also has two static methods (RegUnRegAccessKey and
|
2008-03-07 20:57:34 +03:00
|
|
|
* GetScreenHeight) that are used by other form controls.
|
|
|
|
*/
|
2017-09-27 15:12:00 +03:00
|
|
|
class nsCheckboxRadioFrame final : public nsAtomicContainerFrame,
|
|
|
|
public nsIFormControlFrame {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2017-09-27 15:12:00 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2017-09-27 15:12:00 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsCheckboxRadioFrame)
|
1998-09-23 21:16:51 +04:00
|
|
|
|
2019-02-05 19:45:54 +03:00
|
|
|
explicit nsCheckboxRadioFrame(ComputedStyle* aStyle,
|
|
|
|
nsPresContext* aPresContext);
|
2017-09-27 15:12:00 +03:00
|
|
|
|
|
|
|
// nsIFrame replacements
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const override {
|
2016-04-18 08:42:26 +03:00
|
|
|
return nsAtomicContainerFrame::IsFrameOfType(
|
2007-02-24 21:33:33 +03:00
|
|
|
aFlags & ~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
|
|
|
|
2016-01-28 02:11:00 +03:00
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayListSet& aLists) override {
|
2017-09-27 15:12:00 +03:00
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP("nsCheckboxRadioFrame");
|
2016-01-28 02:11:00 +03:00
|
|
|
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Both GetMinISize and GetPrefISize will return whatever GetIntrinsicISize
|
|
|
|
* returns.
|
|
|
|
*/
|
2017-06-09 22:14:53 +03:00
|
|
|
virtual nscoord GetMinISize(gfxContext* aRenderingContext) override;
|
|
|
|
virtual nscoord GetPrefISize(gfxContext* aRenderingContext) override;
|
2016-01-28 02:11:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Our auto size is just intrinsic width and intrinsic height.
|
|
|
|
*/
|
2021-01-26 05:47:40 +03:00
|
|
|
mozilla::LogicalSize ComputeAutoSize(
|
2017-06-09 22:14:53 +03:00
|
|
|
gfxContext* aRenderingContext, mozilla::WritingMode aWM,
|
2016-01-28 02:11:00 +03:00
|
|
|
const mozilla::LogicalSize& aCBSize, nscoord aAvailableISize,
|
2020-09-14 23:39:17 +03:00
|
|
|
const mozilla::LogicalSize& aMargin,
|
|
|
|
const mozilla::LogicalSize& aBorderPadding,
|
2021-01-26 05:47:40 +03:00
|
|
|
const mozilla::StyleSizeOverrides& aSizeOverrides,
|
2020-09-11 21:32:08 +03:00
|
|
|
mozilla::ComputeSizeFlags aFlags) override;
|
2016-01-28 02:11:00 +03:00
|
|
|
|
2016-04-18 08:42:26 +03:00
|
|
|
/**
|
1998-04-14 20:53:16 +04:00
|
|
|
* Respond to a gui event
|
|
|
|
* @see nsIFrame::HandleEvent
|
|
|
|
*/
|
2016-04-18 08:42:26 +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;
|
1998-04-25 01:37:30 +04:00
|
|
|
|
2014-06-17 16:19:38 +04:00
|
|
|
virtual nscoord GetLogicalBaseline(
|
|
|
|
mozilla::WritingMode aWritingMode) const override;
|
2008-03-07 20:57:34 +03:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Respond to the request to resize and/or reflow
|
1998-05-25 21:31:49 +04:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-14 20:53:16 +04:00
|
|
|
*/
|
2014-05-13 04:47:52 +04:00
|
|
|
virtual void Reflow(nsPresContext* aCX, ReflowOutput& aDesiredSize,
|
2016-07-21 13:36:39 +03:00
|
|
|
const ReflowInput& aReflowInput,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsReflowStatus& aStatus) override;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2017-11-07 03:20:33 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot,
|
|
|
|
PostDestroyData& aPostDestroyData) override;
|
2000-08-03 02:12:11 +04:00
|
|
|
|
1998-04-25 01:37:30 +04:00
|
|
|
// new behavior
|
1998-04-14 20:53:16 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetFocus(bool aOn = true, bool aRepaint = false) override;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
// nsIFormControlFrame
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult SetFormProperty(nsAtom* aName,
|
|
|
|
const nsAString& aValue) override;
|
2000-01-08 18:53:48 +03:00
|
|
|
|
2000-02-09 22:34:39 +03:00
|
|
|
// AccessKey Helper function
|
2011-09-29 10:19:26 +04:00
|
|
|
static nsresult RegUnRegAccessKey(nsIFrame* aFrame, bool aDoReg);
|
1999-02-11 04:13:28 +03:00
|
|
|
|
2000-03-21 18:18:07 +03:00
|
|
|
/**
|
2009-08-18 07:21:07 +04:00
|
|
|
* Returns the usable screen rect in app units, eg the rect where we can
|
|
|
|
* draw dropdowns.
|
2000-03-21 18:18:07 +03:00
|
|
|
*/
|
2009-08-18 07:21:07 +04:00
|
|
|
static nsRect GetUsableScreenRect(nsPresContext* aPresContext);
|
2000-03-18 16:45:30 +03:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
protected:
|
2017-09-27 15:12:00 +03:00
|
|
|
virtual ~nsCheckboxRadioFrame();
|
1998-04-14 20:53:16 +04:00
|
|
|
|
2017-02-09 23:22:40 +03:00
|
|
|
static nscoord DefaultSize() {
|
|
|
|
// XXXmats We have traditionally always returned 9px for GetMin/PrefISize
|
|
|
|
// but we might want to factor in what the theme says, something like:
|
|
|
|
// GetMinimumWidgetSize - GetWidgetPadding - GetWidgetBorder.
|
|
|
|
return nsPresContext::CSSPixelsToAppUnits(9);
|
|
|
|
}
|
1999-01-06 03:02:27 +03:00
|
|
|
|
2017-02-09 23:22:40 +03:00
|
|
|
/**
|
|
|
|
* Get the state of the checked attribute.
|
|
|
|
* @param aState set to true if the checked attribute is set,
|
|
|
|
* false if the checked attribute has been removed
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
void GetCurrentCheckState(bool* aState);
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|