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/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
#ifndef nsFormControlFrame_h___
|
|
|
|
#define nsFormControlFrame_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
|
|
|
/**
|
2008-03-07 20:57:34 +03:00
|
|
|
* nsFormControlFrame is the base class for radio buttons and
|
|
|
|
* checkboxes. It also has two static methods (RegUnRegAccessKey and
|
|
|
|
* GetScreenHeight) that are used by other form controls.
|
|
|
|
*/
|
2016-04-18 08:42:26 +03:00
|
|
|
class nsFormControlFrame : public nsAtomicContainerFrame,
|
1998-09-23 21:16:51 +04:00
|
|
|
public nsIFormControlFrame
|
|
|
|
{
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Main constructor
|
|
|
|
* @param aContent the content representing this frame
|
|
|
|
* @param aParentFrame the parent frame
|
|
|
|
*/
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsFormControlFrame(nsStyleContext*);
|
1998-09-23 21:16:51 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsIAtom* GetType() const override;
|
2012-06-05 03:26:30 +04: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
|
|
|
{
|
2016-04-18 08:42:26 +03:00
|
|
|
return nsAtomicContainerFrame::IsFrameOfType(aFlags &
|
2007-02-24 21:33:33 +03:00
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2015-11-04 12:57:35 +03:00
|
|
|
NS_DECL_ABSTRACT_FRAME(nsFormControlFrame)
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2016-01-28 02:11:00 +03:00
|
|
|
// nsIFrame replacements
|
|
|
|
virtual void BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists) override {
|
|
|
|
DO_GLOBAL_REFLOW_COUNT_DSP("nsFormControlFrame");
|
|
|
|
DisplayBorderBackgroundOutline(aBuilder, aLists);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Both GetMinISize and GetPrefISize will return whatever GetIntrinsicISize
|
|
|
|
* returns.
|
|
|
|
*/
|
|
|
|
virtual nscoord GetMinISize(nsRenderingContext *aRenderingContext) override;
|
|
|
|
virtual nscoord GetPrefISize(nsRenderingContext *aRenderingContext) override;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Our auto size is just intrinsic width and intrinsic height.
|
|
|
|
*/
|
|
|
|
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,
|
|
|
|
bool aShrinkWrap) override;
|
|
|
|
|
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)
|
2015-03-21 19:28:04 +03:00
|
|
|
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,
|
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;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot) 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
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult SetFormProperty(nsIAtom* 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:
|
1998-04-14 20:53:16 +04:00
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
virtual ~nsFormControlFrame();
|
1998-04-14 20:53:16 +04:00
|
|
|
|
2016-01-28 02:11:00 +03:00
|
|
|
nscoord GetIntrinsicISize();
|
|
|
|
nscoord GetIntrinsicBSize();
|
1998-04-25 01:37:30 +04:00
|
|
|
|
1999-01-06 03:02:27 +03:00
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------------------
|
|
|
|
// Utility methods for managing checkboxes and radiobuttons
|
|
|
|
//-------------------------------------------------------------------------------------
|
2016-04-18 08:42:26 +03:00
|
|
|
//
|
1999-01-06 03:02:27 +03:00
|
|
|
/**
|
|
|
|
* Get the state of the checked attribute.
|
2011-10-17 18:59:28 +04:00
|
|
|
* @param aState set to true if the checked attribute is set,
|
|
|
|
* false if the checked attribute has been removed
|
1999-01-06 03:02:27 +03:00
|
|
|
*/
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void GetCurrentCheckState(bool* aState);
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-04-25 01:37:30 +04:00
|
|
|
|