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
|
|
|
|
1998-09-23 21:16:51 +04:00
|
|
|
#include "nsIFormControlFrame.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsLeafFrame.h"
|
1998-09-23 21:16:51 +04:00
|
|
|
|
1998-04-14 20:53:16 +04: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.
|
|
|
|
*/
|
1998-09-23 21:16:51 +04:00
|
|
|
class nsFormControlFrame : public nsLeafFrame,
|
|
|
|
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
|
|
|
|
*/
|
2006-03-27 01:30:36 +04:00
|
|
|
nsFormControlFrame(nsStyleContext*);
|
1998-09-23 21:16:51 +04:00
|
|
|
|
2012-06-05 03:26:30 +04:00
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual bool IsFrameOfType(uint32_t aFlags) const
|
2007-02-24 21:33:33 +03:00
|
|
|
{
|
|
|
|
return nsLeafFrame::IsFrameOfType(aFlags &
|
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1998-04-14 00:24:54 +04:00
|
|
|
|
1998-04-14 20:53:16 +04:00
|
|
|
/**
|
|
|
|
* Respond to a gui event
|
|
|
|
* @see nsIFrame::HandleEvent
|
|
|
|
*/
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1998-04-17 05:41:24 +04:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 09:03:41 +03:00
|
|
|
nsEventStatus* aEventStatus);
|
1998-04-25 01:37:30 +04:00
|
|
|
|
2008-03-07 20:57:34 +03:00
|
|
|
virtual nscoord GetBaseline() const;
|
|
|
|
|
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
|
|
|
*/
|
2004-08-01 03:15:21 +04:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aCX,
|
1998-10-01 08:46:11 +04:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 08:10:00 +04:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-25 21:31:49 +04:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2009-12-24 08:21:15 +03:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
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
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual void SetFocus(bool aOn = true, bool aRepaint = false);
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
// nsIFormControlFrame
|
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue);
|
2000-01-08 18:53:48 +03:00
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const;
|
|
|
|
|
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
|
|
|
|
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
|
|
|
virtual nscoord GetIntrinsicWidth();
|
|
|
|
virtual nscoord GetIntrinsicHeight();
|
1998-04-25 01:37:30 +04:00
|
|
|
|
1999-01-06 03:02:27 +03:00
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------------------
|
|
|
|
// Utility methods for managing checkboxes and radiobuttons
|
|
|
|
//-------------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|