2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 18:30:37 +04:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-04-14 00:24:54 +04:00
|
|
|
*
|
1999-11-06 06:40:37 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 18:30:37 +04:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-29 00:14:13 +04:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 06:40:37 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 18:30:37 +04:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-29 00:14:13 +04:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 18:30:37 +04:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-29 00:14:13 +04:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 18:30:37 +04:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-29 00:14:13 +04:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
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
|
|
|
|
2007-02-24 21:33:33 +03:00
|
|
|
virtual PRBool IsFrameOfType(PRUint32 aFlags) const
|
|
|
|
{
|
|
|
|
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
|
|
|
|
1998-10-23 03:00:37 +04:00
|
|
|
virtual void SetFocus(PRBool aOn = PR_TRUE, PRBool aRepaint = PR_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
|
2006-04-10 04:16:29 +04:00
|
|
|
static nsresult RegUnRegAccessKey(nsIFrame * aFrame, PRBool 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.
|
|
|
|
* @param aState set to PR_TRUE if the checked attribute is set,
|
|
|
|
* PR_FALSE if the checked attribute has been removed
|
|
|
|
*/
|
|
|
|
|
2005-10-28 15:25:24 +04:00
|
|
|
void GetCurrentCheckState(PRBool* aState);
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-04-25 01:37:30 +04:00
|
|
|
|