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/. */
|
2006-02-16 03:30:29 +03:00
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
#include "nsFormControlFrame.h"
|
2006-12-26 20:47:52 +03:00
|
|
|
#include "nsGkAtoms.h"
|
2012-01-30 21:48:46 +04:00
|
|
|
#include "nsLayoutUtils.h"
|
1999-01-06 03:02:27 +03:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
2011-04-21 21:35:52 +04:00
|
|
|
#include "nsEventStateManager.h"
|
2011-09-09 06:27:13 +04:00
|
|
|
#include "mozilla/LookAndFeel.h"
|
2013-09-23 15:55:35 +04:00
|
|
|
#include "nsDeviceContext.h"
|
2011-09-09 06:27:13 +04:00
|
|
|
|
|
|
|
using namespace mozilla;
|
1998-12-15 22:03:36 +03:00
|
|
|
|
2000-03-24 17:59:02 +03:00
|
|
|
//#define FCF_NOISY
|
2000-03-03 07:28:59 +03:00
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
nsFormControlFrame::nsFormControlFrame(nsStyleContext* aContext) :
|
2007-02-15 13:58:31 +03:00
|
|
|
nsLeafFrame(aContext)
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsFormControlFrame::~nsFormControlFrame()
|
|
|
|
{
|
2000-08-03 02:12:11 +04:00
|
|
|
}
|
|
|
|
|
2012-06-05 03:26:30 +04:00
|
|
|
nsIAtom*
|
|
|
|
nsFormControlFrame::GetType() const
|
|
|
|
{
|
|
|
|
return nsGkAtoms::formControlFrame;
|
|
|
|
}
|
|
|
|
|
2006-04-10 04:16:29 +04:00
|
|
|
void
|
2009-12-24 08:21:15 +03:00
|
|
|
nsFormControlFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2000-08-03 02:12:11 +04:00
|
|
|
{
|
2007-02-15 13:58:31 +03:00
|
|
|
// Unregister the access key registered in reflow
|
2011-10-17 18:59:28 +04:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), false);
|
2009-12-24 08:21:15 +03:00
|
|
|
nsLeafFrame::DestroyFrom(aDestructRoot);
|
1998-09-23 21:44:33 +04:00
|
|
|
}
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
NS_QUERYFRAME_HEAD(nsFormControlFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIFormControlFrame)
|
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsLeafFrame)
|
1998-09-23 21:44:33 +04:00
|
|
|
|
2009-09-12 20:49:24 +04: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 08:38:33 +03:00
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetIntrinsicWidth()
|
2000-01-08 18:53:48 +03:00
|
|
|
{
|
2007-03-14 05:47:05 +03: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 18:53:48 +03:00
|
|
|
}
|
1998-09-23 21:44:33 +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
|
|
|
nscoord
|
|
|
|
nsFormControlFrame::GetIntrinsicHeight()
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
2007-03-14 05:47:05 +03: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 21:05:29 +03:00
|
|
|
}
|
|
|
|
|
2008-03-07 20:57:34 +03: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;
|
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::Reflow(nsPresContext* aPresContext,
|
1999-02-27 06:59:19 +03:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
1998-11-14 02:13:42 +03:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
1999-02-27 06:59:19 +03:00
|
|
|
nsReflowStatus& aStatus)
|
1998-11-14 02:13:42 +03: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
|
|
|
DO_GLOBAL_REFLOW_COUNT("nsFormControlFrame");
|
2001-11-14 16:40:03 +03:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
2000-04-22 01:51:35 +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
|
|
|
if (mState & NS_FRAME_FIRST_REFLOW) {
|
2011-10-17 18:59:28 +04:00
|
|
|
RegUnRegAccessKey(static_cast<nsIFrame*>(this), true);
|
2000-02-09 22:34:39 +03:00
|
|
|
}
|
|
|
|
|
2012-01-30 21:48:46 +04:00
|
|
|
nsresult rv = nsLeafFrame::Reflow(aPresContext, aDesiredSize, aReflowState,
|
|
|
|
aStatus);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nsLayoutUtils::FontSizeInflationEnabled(aPresContext)) {
|
2012-05-21 09:18:28 +04:00
|
|
|
float inflation = nsLayoutUtils::FontSizeInflationFor(this);
|
2013-12-27 21:59:52 +04:00
|
|
|
aDesiredSize.Width() *= inflation;
|
|
|
|
aDesiredSize.Height() *= inflation;
|
2012-01-30 21:48:46 +04:00
|
|
|
aDesiredSize.UnionOverflowAreasWithDesiredBounds();
|
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
1998-11-14 02:13:42 +03:00
|
|
|
}
|
|
|
|
|
2000-02-09 22:34:39 +03:00
|
|
|
nsresult
|
2011-09-29 10:19:26 +04:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(nsIFrame * aFrame, bool aDoReg)
|
2000-02-09 22:34:39 +03:00
|
|
|
{
|
2005-03-24 21:41:39 +03:00
|
|
|
NS_ENSURE_ARG_POINTER(aFrame);
|
2006-04-10 04:16:29 +04:00
|
|
|
|
2007-03-31 01:11:41 +04:00
|
|
|
nsPresContext* presContext = aFrame->PresContext();
|
2006-04-10 04:16:29 +04:00
|
|
|
|
|
|
|
NS_ASSERTION(presContext, "aPresContext is NULL in RegUnRegAccessKey!");
|
2000-02-09 22:34:39 +03:00
|
|
|
|
|
|
|
nsAutoString accessKey;
|
|
|
|
|
2005-03-24 21:41:39 +03:00
|
|
|
nsIContent* content = aFrame->GetContent();
|
2006-12-26 20:47:52 +03:00
|
|
|
content->GetAttr(kNameSpaceID_None, nsGkAtoms::accesskey, accessKey);
|
2004-07-04 00:54:54 +04:00
|
|
|
if (!accessKey.IsEmpty()) {
|
2011-04-21 21:35:52 +04:00
|
|
|
nsEventStateManager *stateManager = presContext->EventStateManager();
|
2004-02-27 20:17:37 +03:00
|
|
|
if (aDoReg) {
|
2012-08-22 19:56:38 +04:00
|
|
|
stateManager->RegisterAccessKey(content, (uint32_t)accessKey.First());
|
2004-02-27 20:17:37 +03:00
|
|
|
} else {
|
2012-08-22 19:56:38 +04:00
|
|
|
stateManager->UnregisterAccessKey(content, (uint32_t)accessKey.First());
|
2000-02-09 22:34:39 +03:00
|
|
|
}
|
2011-04-21 21:35:52 +04:00
|
|
|
return NS_OK;
|
2000-02-09 22:34:39 +03:00
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
1998-10-23 03:00:37 +04:00
|
|
|
void
|
2011-09-29 10:19:26 +04:00
|
|
|
nsFormControlFrame::SetFocus(bool aOn, bool aRepaint)
|
1998-10-23 03:00:37 +04:00
|
|
|
{
|
1998-09-23 21:44:33 +04:00
|
|
|
}
|
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
nsresult
|
2004-08-01 03:15:21 +04:00
|
|
|
nsFormControlFrame::HandleEvent(nsPresContext* aPresContext,
|
2013-10-02 07:46:03 +04:00
|
|
|
WidgetGUIEvent* aEvent,
|
|
|
|
nsEventStatus* aEventStatus)
|
1998-09-23 21:44:33 +04:00
|
|
|
{
|
2000-08-09 03:38:00 +04:00
|
|
|
// Check for user-input:none style
|
2013-02-17 01:51:02 +04:00
|
|
|
const nsStyleUserInterface* uiStyle = StyleUserInterface();
|
2006-02-16 03:30:29 +03:00
|
|
|
if (uiStyle->mUserInput == NS_STYLE_USER_INPUT_NONE ||
|
|
|
|
uiStyle->mUserInput == NS_STYLE_USER_INPUT_DISABLED)
|
2000-08-09 03:38:00 +04:00
|
|
|
return nsFrame::HandleEvent(aPresContext, aEvent, aEventStatus);
|
|
|
|
|
1998-09-23 21:44:33 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-10-28 15:25:24 +04:00
|
|
|
void
|
2011-09-29 10:19:26 +04:00
|
|
|
nsFormControlFrame::GetCurrentCheckState(bool *aState)
|
1999-01-06 03:02:27 +03:00
|
|
|
{
|
2002-03-07 23:53:40 +03:00
|
|
|
nsCOMPtr<nsIDOMHTMLInputElement> inputElement = do_QueryInterface(mContent);
|
|
|
|
if (inputElement) {
|
2005-10-28 15:25:24 +04:00
|
|
|
inputElement->GetChecked(aState);
|
1999-01-06 03:02:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 02:53:06 +03:00
|
|
|
nsresult
|
|
|
|
nsFormControlFrame::SetFormProperty(nsIAtom* aName, const nsAString& aValue)
|
1999-01-26 01:16:27 +03:00
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-08-18 07:21:07 +04:00
|
|
|
// static
|
|
|
|
nsRect
|
|
|
|
nsFormControlFrame::GetUsableScreenRect(nsPresContext* aPresContext)
|
2004-02-03 01:17:21 +03:00
|
|
|
{
|
|
|
|
nsRect screen;
|
|
|
|
|
2011-04-17 05:22:44 +04:00
|
|
|
nsDeviceContext *context = aPresContext->DeviceContext();
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t dropdownCanOverlapOSBar =
|
2011-09-09 06:27:13 +04:00
|
|
|
LookAndFeel::GetInt(LookAndFeel::eIntID_MenusCanOverlapOSBar, 0);
|
2004-02-03 01:17:21 +03:00
|
|
|
if ( dropdownCanOverlapOSBar )
|
2009-08-18 07:21:07 +04:00
|
|
|
context->GetRect(screen);
|
2004-02-03 01:17:21 +03:00
|
|
|
else
|
|
|
|
context->GetClientRect(screen);
|
2007-02-07 10:46:44 +03:00
|
|
|
|
2009-08-18 07:21:07 +04:00
|
|
|
return screen;
|
2000-03-18 16:45:30 +03:00
|
|
|
}
|