2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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-13 20:24:54 +00:00
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
#ifndef nsFormControlFrame_h___
|
|
|
|
#define nsFormControlFrame_h___
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
#include "nsIFormControlFrame.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsLeafFrame.h"
|
1998-09-23 17:16:51 +00:00
|
|
|
|
1998-04-14 16:53:16 +00:00
|
|
|
/**
|
2008-03-07 17:57:34 +00: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 17:16:51 +00:00
|
|
|
class nsFormControlFrame : public nsLeafFrame,
|
|
|
|
public nsIFormControlFrame
|
|
|
|
{
|
1998-04-13 20:24:54 +00:00
|
|
|
public:
|
1998-04-14 16:53:16 +00:00
|
|
|
/**
|
|
|
|
* Main constructor
|
|
|
|
* @param aContent the content representing this frame
|
|
|
|
* @param aParentFrame the parent frame
|
|
|
|
*/
|
2006-03-26 21:30:36 +00:00
|
|
|
nsFormControlFrame(nsStyleContext*);
|
1998-09-23 17:16:51 +00:00
|
|
|
|
2012-06-04 23:26:30 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsFrameOfType(PRUint32 aFlags) const
|
2007-02-24 18:33:33 +00:00
|
|
|
{
|
|
|
|
return nsLeafFrame::IsFrameOfType(aFlags &
|
|
|
|
~(nsIFrame::eReplaced | nsIFrame::eReplacedContainsBlock));
|
|
|
|
}
|
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_DECL_QUERYFRAME
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-14 16:53:16 +00:00
|
|
|
/**
|
|
|
|
* Respond to a gui event
|
|
|
|
* @see nsIFrame::HandleEvent
|
|
|
|
*/
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1998-04-17 01:41:24 +00:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
1998-04-24 21:37:30 +00:00
|
|
|
|
2008-03-07 17:57:34 +00:00
|
|
|
virtual nscoord GetBaseline() const;
|
|
|
|
|
1998-04-14 16:53:16 +00:00
|
|
|
/**
|
|
|
|
* Respond to the request to resize and/or reflow
|
1998-05-25 17:31:49 +00:00
|
|
|
* @see nsIFrame::Reflow
|
1998-04-14 16:53:16 +00:00
|
|
|
*/
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aCX,
|
1998-10-01 04:46:11 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-10-02 04:10:00 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1998-05-25 17:31:49 +00:00
|
|
|
nsReflowStatus& aStatus);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2009-12-24 05:21:15 +00:00
|
|
|
virtual void DestroyFrom(nsIFrame* aDestructRoot);
|
2000-08-02 22:12:11 +00:00
|
|
|
|
1998-04-24 21:37:30 +00:00
|
|
|
// new behavior
|
1998-04-14 16:53:16 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void SetFocus(bool aOn = true, bool aRepaint = false);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
// nsIFormControlFrame
|
|
|
|
virtual nsresult SetFormProperty(nsIAtom* aName, const nsAString& aValue);
|
2000-01-08 15:53:48 +00:00
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
virtual nsresult GetFormProperty(nsIAtom* aName, nsAString& aValue) const;
|
|
|
|
|
2000-02-09 19:34:39 +00:00
|
|
|
// AccessKey Helper function
|
2011-09-29 06:19:26 +00:00
|
|
|
static nsresult RegUnRegAccessKey(nsIFrame * aFrame, bool aDoReg);
|
1999-02-11 01:13:28 +00:00
|
|
|
|
2000-03-21 15:18:07 +00:00
|
|
|
/**
|
2009-08-18 03:21:07 +00:00
|
|
|
* Returns the usable screen rect in app units, eg the rect where we can
|
|
|
|
* draw dropdowns.
|
2000-03-21 15:18:07 +00:00
|
|
|
*/
|
2009-08-18 03:21:07 +00:00
|
|
|
static nsRect GetUsableScreenRect(nsPresContext* aPresContext);
|
2000-03-18 13:45:30 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
protected:
|
1998-04-14 16:53:16 +00:00
|
|
|
|
1998-09-23 17:16:51 +00:00
|
|
|
virtual ~nsFormControlFrame();
|
1998-04-14 16:53:16 +00: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 05:38:33 +00:00
|
|
|
virtual nscoord GetIntrinsicWidth();
|
|
|
|
virtual nscoord GetIntrinsicHeight();
|
1998-04-24 21:37:30 +00:00
|
|
|
|
1999-01-06 00:02:27 +00:00
|
|
|
//
|
|
|
|
//-------------------------------------------------------------------------------------
|
|
|
|
// Utility methods for managing checkboxes and radiobuttons
|
|
|
|
//-------------------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
/**
|
|
|
|
* Get the state of the checked attribute.
|
2011-10-17 14:59:28 +00:00
|
|
|
* @param aState set to true if the checked attribute is set,
|
|
|
|
* false if the checked attribute has been removed
|
1999-01-06 00:02:27 +00:00
|
|
|
*/
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
void GetCurrentCheckState(bool* aState);
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-04-24 21:37:30 +00:00
|
|
|
|