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/. */
|
2006-02-16 00:30:29 +00:00
|
|
|
|
1998-09-23 17:44:33 +00:00
|
|
|
#include "nsFormControlFrame.h"
|
2006-12-26 17:47:52 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2012-01-30 17:48:46 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
1999-01-06 00:02:27 +00:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
2011-04-21 17:35:52 +00:00
|
|
|
#include "nsEventStateManager.h"
|
2011-09-09 02:27:13 +00:00
|
|
|
#include "mozilla/LookAndFeel.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
1998-12-15 19:03:36 +00:00
|
|
|
|
2000-03-24 14:59:02 +00:00
|
|
|
//#define FCF_NOISY
|
2000-03-03 04:28:59 +00:00
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsFormControlFrame::nsFormControlFrame(nsStyleContext* aContext) :
|
2007-02-15 10:58:31 +00:00
|
|
|
nsLeafFrame(aContext)
|
1998-09-23 17:44:33 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFormControlFrame::~nsFormControlFrame()
|
|
|
|
{
|
2000-08-02 22:12:11 +00:00
|
|
|
}
|
|
|
|
|
2012-06-04 23:26:30 +00:00
|
|
|
nsIAtom*
|
|
|
|
nsFormControlFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::formControlFrame;
|
|
|
|
}
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
void
|
2009-12-24 05:21:15 +00:00
|
|
|
nsFormControlFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2000-08-02 22:12:11 +00:00
|
|
|
{
|
2007-02-15 10:58:31 +00:00
|
|
|
// Unregister the access key registered in reflow
|
2011-10-17 14:59:28 +00:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), false);
|
2009-12-24 05:21:15 +00:00
|
|
|
nsLeafFrame::DestroyFrom(aDestructRoot);
|
1998-09-23 17:44:33 +00:00
|
|
|
}
|
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_QUERYFRAME_HEAD(nsFormControlFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIFormControlFrame)
|
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsLeafFrame)
|
1998-09-23 17:44:33 +00:00
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsFormControlFrame)
|
|
|
|
|
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
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetIntrinsicWidth()
|
2000-01-08 15:53:48 +00:00
|
|
|
{
|
2007-03-14 02:47:05 +00:00
|
|
|
// Provide a reasonable default for sites that use an "auto" height.
|
|
|
|
// Note that if you change this, you should change the values in forms.css
|
|
|
|
// as well. This is the 13px default width minus the 2px default border.
|
|
|
|
return nsPresContext::CSSPixelsToAppUnits(13 - 2 * 2);
|
2000-01-08 15:53:48 +00:00
|
|
|
}
|
1998-09-23 17:44:33 +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
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetIntrinsicHeight()
|
1998-09-23 17:44:33 +00:00
|
|
|
{
|
2007-03-14 02:47:05 +00:00
|
|
|
// Provide a reasonable default for sites that use an "auto" height.
|
|
|
|
// Note that if you change this, you should change the values in forms.css
|
|
|
|
// as well. This is the 13px default width minus the 2px default border.
|
|
|
|
return nsPresContext::CSSPixelsToAppUnits(13 - 2 * 2);
|
1998-10-30 18:05:29 +00:00
|
|
|
}
|
|
|
|
|
2008-03-07 17:57:34 +00:00
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetBaseline() const
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!NS_SUBTREE_DIRTY(this),
|
|
|
|
"frame must not be dirty");
|
|
|
|
// Treat radio buttons and checkboxes as having an intrinsic baseline
|
|
|
|
// at the bottom of the control (use the bottom content edge rather
|
|
|
|
// than the bottom margin edge).
|
|
|
|
return mRect.height - GetUsedBorderAndPadding().bottom;
|
|
|
|
}
|
|
|
|
|
1998-09-23 17:44:33 +00:00
|
|
|
NS_METHOD
|
2004-07-31 23:15:21 +00:00
|
|
|
nsFormControlFrame::Reflow(nsPresContext* aPresContext,
|
1999-02-27 03:59:19 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-11-13 23:13:42 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1999-02-27 03:59:19 +00:00
|
|
|
nsReflowStatus& aStatus)
|
1998-11-13 23:13:42 +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
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsFormControlFrame");
|
2001-11-14 13:40:03 +00:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
2000-04-21 21:51:35 +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
|
|
|
if (mState & NS_FRAME_FIRST_REFLOW) {
|
2011-10-17 14:59:28 +00:00
|
|
|
RegUnRegAccessKey(static_cast<nsIFrame*>(this), true);
|
2000-02-09 19:34:39 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 17:48:46 +00:00
|
|
|
nsresult rv = nsLeafFrame::Reflow(aPresContext, aDesiredSize, aReflowState,
|
|
|
|
aStatus);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsLayoutUtils::FontSizeInflationEnabled(aPresContext)) {
|
2012-05-21 05:18:28 +00:00
|
|
|
float inflation = nsLayoutUtils::FontSizeInflationFor(this);
|
2012-01-30 17:48:46 +00:00
|
|
|
aDesiredSize.width *= inflation;
|
|
|
|
aDesiredSize.height *= inflation;
|
|
|
|
aDesiredSize.UnionOverflowAreasWithDesiredBounds();
|
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
1998-11-13 23:13:42 +00:00
|
|
|
}
|
|
|
|
|
2000-02-09 19:34:39 +00:00
|
|
|
nsresult
|
2011-09-29 06:19:26 +00:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(nsIFrame * aFrame, bool aDoReg)
|
2000-02-09 19:34:39 +00:00
|
|
|
{
|
2005-03-24 18:41:39 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aFrame);
|
2006-04-10 00:16:29 +00:00
|
|
|
|
2007-03-30 21:11:41 +00:00
|
|
|
nsPresContext* presContext = aFrame->PresContext();
|
2006-04-10 00:16:29 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(presContext, "aPresContext is NULL in RegUnRegAccessKey!");
|
2000-02-09 19:34:39 +00:00
|
|
|
|
|
|
|
nsAutoString accessKey;
|
|
|
|
|
2005-03-24 18:41:39 +00:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
2006-12-26 17:47:52 +00:00
|
|
|
content->GetAttr(kNameSpaceID_None, nsGkAtoms::accesskey, accessKey);
|
2004-07-03 20:54:54 +00:00
|
|
|
if (!accessKey.IsEmpty()) {
|
2011-04-21 17:35:52 +00:00
|
|
|
nsEventStateManager *stateManager = presContext->EventStateManager();
|
2004-02-27 17:17:37 +00:00
|
|
|
if (aDoReg) {
|
2012-08-22 15:56:38 +00:00
|
|
|
stateManager->RegisterAccessKey(content, (uint32_t)accessKey.First());
|
2004-02-27 17:17:37 +00:00
|
|
|
} else {
|
2012-08-22 15:56:38 +00:00
|
|
|
stateManager->UnregisterAccessKey(content, (uint32_t)accessKey.First());
|
2000-02-09 19:34:39 +00:00
|
|
|
}
|
2011-04-21 17:35:52 +00:00
|
|
|
return NS_OK;
|
2000-02-09 19:34:39 +00:00
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
1998-10-22 23:00:37 +00:00
|
|
|
void
|
2011-09-29 06:19:26 +00:00
|
|
|
nsFormControlFrame::SetFocus(bool aOn, bool aRepaint)
|
1998-10-22 23:00:37 +00:00
|
|
|
{
|
1998-09-23 17:44:33 +00:00
|
|
|
}
|
|
|
|
|
1999-08-21 00:09:24 +00:00
|
|
|
NS_METHOD
|
2004-07-31 23:15:21 +00:00
|
|
|
nsFormControlFrame::HandleEvent(nsPresContext* aPresContext,
|
1998-09-23 17:44:33 +00:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus)
|
1998-09-23 17:44:33 +00:00
|
|
|
{
|
2000-08-08 23:38:00 +00:00
|
|
|
// Check for user-input:none style
|
2003-05-15 03:42:21 +00:00
|
|
|
const nsStyleUserInterface* uiStyle = GetStyleUserInterface();
|
2006-02-16 00:30:29 +00:00
|
|
|
if (uiStyle->mUserInput == NS_STYLE_USER_INPUT_NONE ||
|
|
|
|
uiStyle->mUserInput == NS_STYLE_USER_INPUT_DISABLED)
|
2000-08-08 23:38:00 +00:00
|
|
|
return nsFrame::HandleEvent(aPresContext, aEvent, aEventStatus);
|
|
|
|
|
1998-09-23 17:44:33 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-10-28 11:25:24 +00:00
|
|
|
void
|
2011-09-29 06:19:26 +00:00
|
|
|
nsFormControlFrame::GetCurrentCheckState(bool *aState)
|
1999-01-06 00:02:27 +00:00
|
|
|
{
|
2002-03-07 20:53:40 +00:00
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> inputElement = do_QueryInterface(mContent);
|
|
|
|
if (inputElement) {
|
2005-10-28 11:25:24 +00:00
|
|
|
inputElement->GetChecked(aState);
|
1999-01-06 00:02:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
nsresult
|
|
|
|
nsFormControlFrame::SetFormProperty(nsIAtom* aName, const nsAString& aValue)
|
1999-01-25 22:16:27 +00:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
nsresult
|
|
|
|
nsFormControlFrame::GetFormProperty(nsIAtom* aName, nsAString& aValue) const
|
1999-01-25 22:16:27 +00:00
|
|
|
{
|
2000-08-23 17:27:06 +00:00
|
|
|
aValue.Truncate();
|
1999-01-25 22:16:27 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-08-18 03:21:07 +00:00
|
|
|
// static
|
|
|
|
nsRect
|
|
|
|
nsFormControlFrame::GetUsableScreenRect(nsPresContext* aPresContext)
|
2004-02-02 22:17:21 +00:00
|
|
|
{
|
|
|
|
nsRect screen;
|
|
|
|
|
2011-04-17 01:22:44 +00:00
|
|
|
nsDeviceContext *context = aPresContext->DeviceContext();
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t dropdownCanOverlapOSBar =
|
2011-09-09 02:27:13 +00:00
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_MenusCanOverlapOSBar, 0);
|
2004-02-02 22:17:21 +00:00
|
|
|
if ( dropdownCanOverlapOSBar )
|
2009-08-18 03:21:07 +00:00
|
|
|
context->GetRect(screen);
|
2004-02-02 22:17:21 +00:00
|
|
|
else
|
|
|
|
context->GetClientRect(screen);
|
2007-02-07 07:46:44 +00:00
|
|
|
|
2009-08-18 03:21:07 +00:00
|
|
|
return screen;
|
2000-03-18 13:45:30 +00:00
|
|
|
}
|