2002-07-26 17:17:00 +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/. */
|
2002-07-26 17:17:00 +00:00
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2002-07-26 20:57:24 +00:00
|
|
|
#include "nsTextControlFrame.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIFormControl.h"
|
|
|
|
#include "nsIServiceManager.h"
|
2006-04-26 02:01:07 +00:00
|
|
|
#include "nsFrameSelection.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIPlaintextEditor.h"
|
|
|
|
#include "nsEditorCID.h"
|
|
|
|
#include "nsLayoutCID.h"
|
|
|
|
#include "nsIDocumentEncoder.h"
|
2008-07-16 10:52:01 +00:00
|
|
|
#include "nsCaret.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsISelectionListener.h"
|
|
|
|
#include "nsISelectionPrivate.h"
|
|
|
|
#include "nsIController.h"
|
|
|
|
#include "nsIControllers.h"
|
2002-11-12 23:03:27 +00:00
|
|
|
#include "nsIControllerContext.h"
|
2005-01-12 19:45:38 +00:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIEditorIMESupport.h"
|
2002-12-17 23:38:04 +00:00
|
|
|
#include "nsIPhonetic.h"
|
|
|
|
#include "nsIEditorObserver.h"
|
2010-05-03 13:23:36 +00:00
|
|
|
#include "nsEditProperty.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIDOMHTMLTextAreaElement.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsINodeInfo.h"
|
|
|
|
#include "nsFormControlFrame.h" //for registering accesskeys
|
|
|
|
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIAtom.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2011-04-08 01:04:40 +00:00
|
|
|
#include "nsRenderingContext.h"
|
2007-01-30 00:06:41 +00:00
|
|
|
#include "nsGkAtoms.h"
|
2006-07-06 10:43:51 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIComponentManager.h"
|
|
|
|
#include "nsIView.h"
|
2007-02-12 19:31:59 +00:00
|
|
|
#include "nsIViewManager.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIDOMHTMLInputElement.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
2011-10-29 20:03:55 +00:00
|
|
|
#include "nsIDOMHTMLElement.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
|
|
|
|
#include "nsBoxLayoutState.h"
|
|
|
|
//for keylistener for "return" check
|
2007-05-14 09:11:38 +00:00
|
|
|
#include "nsIDOMEventTarget.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#include "nsIDocument.h" //observe documents to send onchangenotifications
|
|
|
|
#include "nsIStyleSheet.h"//observe documents to send onchangenotifications
|
|
|
|
#include "nsIStyleRule.h"//observe documents to send onchangenotifications
|
|
|
|
#include "nsIDOMEventListener.h"//observe documents to send onchangenotifications
|
|
|
|
#include "nsGUIEvent.h"
|
2004-09-30 16:29:54 +00:00
|
|
|
#include "nsIDOMNSEvent.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
|
|
|
|
#include "nsIDOMCharacterData.h" //for selection setting helper func
|
|
|
|
#include "nsIDOMNodeList.h" //for selection setting helper func
|
|
|
|
#include "nsIDOMRange.h" //for selection setting helper func
|
2005-11-28 23:56:44 +00:00
|
|
|
#include "nsPIDOMWindow.h" //needed for notify selection changed to update the menus ect.
|
2002-07-26 17:17:00 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2011-01-28 04:38:14 +00:00
|
|
|
#include "nsAccessibilityService.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
#endif
|
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
|
|
|
|
#include "nsITransactionManager.h"
|
|
|
|
#include "nsIDOMText.h" //for multiline getselection
|
2004-06-25 12:26:02 +00:00
|
|
|
#include "nsNodeInfoManager.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
2004-09-07 21:21:48 +00:00
|
|
|
#include "nsINativeKeyBindings.h"
|
2005-04-26 03:31:29 +00:00
|
|
|
#include "nsIJSContextStack.h"
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
#include "nsFocusManager.h"
|
2010-02-02 15:49:55 +00:00
|
|
|
#include "nsTextEditRules.h"
|
2011-02-04 23:28:38 +00:00
|
|
|
#include "nsPresState.h"
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-05-19 23:22:19 +00:00
|
|
|
#include "mozilla/FunctionTimer.h"
|
|
|
|
|
2002-07-26 17:17:00 +00:00
|
|
|
#define DEFAULT_COLUMN_WIDTH 20
|
|
|
|
|
2012-06-10 23:44:50 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2005-11-01 20:40:54 +00:00
|
|
|
nsIFrame*
|
2006-03-26 21:30:36 +00:00
|
|
|
NS_NewTextControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2006-03-26 21:30:36 +00:00
|
|
|
return new (aPresShell) nsTextControlFrame(aPresShell, aContext);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_IMPL_FRAMEARENA_HELPERS(nsTextControlFrame)
|
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
NS_QUERYFRAME_HEAD(nsTextControlFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIFormControlFrame)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsIAnonymousContentCreator)
|
|
|
|
NS_QUERYFRAME_ENTRY(nsITextControlFrame)
|
2011-02-04 23:28:38 +00:00
|
|
|
NS_QUERYFRAME_ENTRY(nsIStatefulFrame)
|
2012-06-23 11:11:00 +00:00
|
|
|
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
|
2002-07-26 17:17:00 +00:00
|
|
|
|
|
|
|
#ifdef ACCESSIBILITY
|
2012-05-29 01:18:45 +00:00
|
|
|
already_AddRefed<Accessible>
|
2010-06-28 12:02:03 +00:00
|
|
|
nsTextControlFrame::CreateAccessible()
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2011-01-28 04:38:14 +00:00
|
|
|
nsAccessibilityService* accService = nsIPresShell::AccService();
|
2002-07-26 17:17:00 +00:00
|
|
|
if (accService) {
|
2010-06-28 12:02:03 +00:00
|
|
|
return accService->CreateHTMLTextFieldAccessible(mContent,
|
|
|
|
PresContext()->PresShell());
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2010-06-28 12:02:03 +00:00
|
|
|
return nsnull;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-02-10 01:29:11 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
class EditorInitializerEntryTracker {
|
|
|
|
public:
|
|
|
|
explicit EditorInitializerEntryTracker(nsTextControlFrame &frame)
|
|
|
|
: mFrame(frame)
|
2011-10-17 14:59:28 +00:00
|
|
|
, mFirstEntry(false)
|
2010-02-10 01:29:11 +00:00
|
|
|
{
|
|
|
|
if (!mFrame.mInEditorInitialization) {
|
2011-10-17 14:59:28 +00:00
|
|
|
mFrame.mInEditorInitialization = true;
|
|
|
|
mFirstEntry = true;
|
2010-02-10 01:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
~EditorInitializerEntryTracker()
|
|
|
|
{
|
|
|
|
if (mFirstEntry) {
|
2011-10-17 14:59:28 +00:00
|
|
|
mFrame.mInEditorInitialization = false;
|
2010-02-10 01:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
2011-09-29 06:19:26 +00:00
|
|
|
bool EnteredMoreThanOnce() const { return !mFirstEntry; }
|
2010-02-10 01:29:11 +00:00
|
|
|
private:
|
|
|
|
nsTextControlFrame &mFrame;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mFirstEntry;
|
2010-02-10 01:29:11 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsTextControlFrame::nsTextControlFrame(nsIPresShell* aShell, nsStyleContext* aContext)
|
2012-06-23 11:11:00 +00:00
|
|
|
: nsContainerFrame(aContext)
|
2011-10-17 14:59:28 +00:00
|
|
|
, mUseEditor(false)
|
|
|
|
, mIsProcessing(false)
|
2010-02-10 01:29:11 +00:00
|
|
|
#ifdef DEBUG
|
2011-10-17 14:59:28 +00:00
|
|
|
, mInEditorInitialization(false)
|
2010-02-10 01:29:11 +00:00
|
|
|
#endif
|
2007-01-05 16:31:07 +00:00
|
|
|
{
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::~nsTextControlFrame()
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-04-21 20:17:41 +00:00
|
|
|
nsTextControlFrame::DestroyFrom(nsIFrame* aDestructRoot)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-05-06 22:12:21 +00:00
|
|
|
mScrollEvent.Revoke();
|
2006-02-21 00:49:04 +00:00
|
|
|
|
2011-05-21 08:25:27 +00:00
|
|
|
EditorInitializer* initializer = (EditorInitializer*) Properties().Get(TextControlInitializer());
|
|
|
|
if (initializer) {
|
|
|
|
initializer->Revoke();
|
|
|
|
Properties().Delete(TextControlInitializer());
|
|
|
|
}
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
// Unbind the text editor state object from the frame. The editor will live
|
|
|
|
// on, but things like controllers will be released.
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
txtCtrl->UnbindFromFrame(this);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(static_cast<nsIFrame*>(this), false);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2012-06-23 11:11:00 +00:00
|
|
|
nsContainerFrame::DestroyFrom(aDestructRoot);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
nsIAtom*
|
|
|
|
nsTextControlFrame::GetType() const
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2006-12-26 17:47:52 +00:00
|
|
|
return nsGkAtoms::textInputFrame;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2002-09-23 19:43:48 +00:00
|
|
|
nsresult
|
2011-04-08 01:04:40 +00:00
|
|
|
nsTextControlFrame::CalcIntrinsicSize(nsRenderingContext* aRenderingContext,
|
2011-11-24 02:48:23 +00:00
|
|
|
nsSize& aIntrinsicSize,
|
|
|
|
float aFontSizeInflation)
|
2002-09-16 06:23:52 +00:00
|
|
|
{
|
2002-09-23 19:43:48 +00:00
|
|
|
// Get leading and the Average/MaxAdvance char width
|
2004-10-10 18:30:28 +00:00
|
|
|
nscoord lineHeight = 0;
|
2002-09-23 19:43:48 +00:00
|
|
|
nscoord charWidth = 0;
|
|
|
|
nscoord charMaxAdvance = 0;
|
|
|
|
|
2011-04-08 01:05:49 +00:00
|
|
|
nsRefPtr<nsFontMetrics> fontMet;
|
2006-07-06 10:43:51 +00:00
|
|
|
nsresult rv =
|
2011-11-24 02:48:23 +00:00
|
|
|
nsLayoutUtils::GetFontMetricsForFrame(this, getter_AddRefs(fontMet),
|
|
|
|
aFontSizeInflation);
|
2002-09-23 19:43:48 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
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
|
|
|
aRenderingContext->SetFont(fontMet);
|
|
|
|
|
2009-05-18 22:13:12 +00:00
|
|
|
lineHeight =
|
2011-11-24 02:48:23 +00:00
|
|
|
nsHTMLReflowState::CalcLineHeight(GetStyleContext(), NS_AUTOHEIGHT,
|
|
|
|
aFontSizeInflation);
|
2011-04-08 04:18:43 +00:00
|
|
|
charWidth = fontMet->AveCharWidth();
|
|
|
|
charMaxAdvance = fontMet->MaxAdvance();
|
2002-09-16 06:23:52 +00:00
|
|
|
|
|
|
|
// Set the width equal to the width in characters
|
2004-08-07 22:04:27 +00:00
|
|
|
PRInt32 cols = GetCols();
|
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
|
|
|
aIntrinsicSize.width = cols * charWidth;
|
2003-11-10 23:42:43 +00:00
|
|
|
|
|
|
|
// To better match IE, take the maximum character width(in twips) and remove
|
|
|
|
// 4 pixels add this on as additional padding(internalPadding). But only do
|
|
|
|
// this if charMaxAdvance != charWidth; if they are equal, this is almost
|
|
|
|
// certainly a fixed-width font.
|
|
|
|
if (charWidth != charMaxAdvance) {
|
2009-09-16 15:01:36 +00:00
|
|
|
nscoord internalPadding = NS_MAX(0, charMaxAdvance -
|
2007-02-07 07:46:44 +00:00
|
|
|
nsPresContext::CSSPixelsToAppUnits(4));
|
|
|
|
nscoord t = nsPresContext::CSSPixelsToAppUnits(1);
|
|
|
|
// Round to a multiple of t
|
2003-11-10 23:42:43 +00:00
|
|
|
nscoord rest = internalPadding % t;
|
|
|
|
if (rest < t - rest) {
|
|
|
|
internalPadding -= rest;
|
|
|
|
} else {
|
|
|
|
internalPadding += t - rest;
|
|
|
|
}
|
|
|
|
// Now add the extra padding on (so that small input sizes work well)
|
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
|
|
|
aIntrinsicSize.width += internalPadding;
|
2003-12-18 06:06:00 +00:00
|
|
|
} else {
|
|
|
|
// This is to account for the anonymous <br> having a 1 twip width
|
|
|
|
// in Full Standards mode, see BRFrame::Reflow and bug 228752.
|
2007-05-05 05:30:10 +00:00
|
|
|
if (PresContext()->CompatibilityMode() == eCompatibility_FullStandards) {
|
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
|
|
|
aIntrinsicSize.width += 1;
|
2003-12-18 06:06:00 +00:00
|
|
|
}
|
2007-08-02 22:06:00 +00:00
|
|
|
|
2010-02-26 18:47:38 +00:00
|
|
|
// Also add in the padding of our value div child. Note that it hasn't
|
2007-08-02 22:06:00 +00:00
|
|
|
// been reflowed yet, so we can't get its used padding, but it shouldn't be
|
|
|
|
// using percentage padding anyway.
|
|
|
|
nsMargin childPadding;
|
2011-08-24 20:54:30 +00:00
|
|
|
nsIFrame* firstChild = GetFirstPrincipalChild();
|
2010-08-25 05:44:18 +00:00
|
|
|
if (firstChild && firstChild->GetStylePadding()->GetPadding(childPadding)) {
|
2007-08-02 22:06:00 +00:00
|
|
|
aIntrinsicSize.width += childPadding.LeftRight();
|
|
|
|
} else {
|
2010-02-26 18:47:38 +00:00
|
|
|
NS_ERROR("Percentage padding on value div?");
|
2007-08-02 22:06:00 +00:00
|
|
|
}
|
2003-11-10 23:42:43 +00:00
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2004-08-07 22:04:27 +00:00
|
|
|
// Increment width with cols * letter-spacing.
|
|
|
|
{
|
|
|
|
const nsStyleCoord& lsCoord = GetStyleText()->mLetterSpacing;
|
|
|
|
if (eStyleUnit_Coord == lsCoord.GetUnit()) {
|
|
|
|
nscoord letterSpacing = lsCoord.GetCoordValue();
|
|
|
|
if (letterSpacing != 0) {
|
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
|
|
|
aIntrinsicSize.width += cols * letterSpacing;
|
2004-08-07 22:04:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-16 06:23:52 +00:00
|
|
|
// Set the height equal to total number of rows (times the height of each
|
|
|
|
// line, of course)
|
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
|
|
|
aIntrinsicSize.height = lineHeight * GetRows();
|
|
|
|
|
|
|
|
// Add in the size of the scrollbars for textarea
|
|
|
|
if (IsTextArea()) {
|
2011-08-24 20:54:30 +00:00
|
|
|
nsIFrame* first = GetFirstPrincipalChild();
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
nsIScrollableFrame *scrollableFrame = do_QueryFrame(first);
|
2006-12-19 15:08:34 +00:00
|
|
|
NS_ASSERTION(scrollableFrame, "Child must be scrollable");
|
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
|
|
|
|
2010-08-25 05:44:18 +00:00
|
|
|
if (scrollableFrame) {
|
|
|
|
nsMargin scrollbarSizes =
|
2008-04-10 04:39:41 +00:00
|
|
|
scrollableFrame->GetDesiredScrollbarSizes(PresContext(), aRenderingContext);
|
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
|
|
|
|
2010-08-25 05:44:18 +00:00
|
|
|
aIntrinsicSize.width += scrollbarSizes.LeftRight();
|
|
|
|
|
|
|
|
aIntrinsicSize.height += scrollbarSizes.TopBottom();;
|
|
|
|
}
|
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
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2002-09-23 19:43:48 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2009-01-29 19:46:17 +00:00
|
|
|
nsresult
|
2010-02-02 04:00:06 +00:00
|
|
|
nsTextControlFrame::EnsureEditorInitialized()
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2009-01-29 19:46:17 +00:00
|
|
|
// This method initializes our editor, if needed.
|
2010-02-02 04:00:06 +00:00
|
|
|
|
2009-01-29 19:46:17 +00:00
|
|
|
// This code used to be called from CreateAnonymousContent(), but
|
|
|
|
// when the editor set the initial string, it would trigger a
|
|
|
|
// PresShell listener which called FlushPendingNotifications()
|
|
|
|
// during frame construction. This was causing other form controls
|
2010-02-02 04:00:06 +00:00
|
|
|
// to display wrong values. Additionally, calling this every time
|
|
|
|
// a text frame control is instantiated means that we're effectively
|
|
|
|
// instantiating the editor for all text fields, even if they
|
2010-02-02 15:49:55 +00:00
|
|
|
// never get used. So, now this method is being called lazily only
|
|
|
|
// when we actually need an editor.
|
2006-05-15 19:35:12 +00:00
|
|
|
|
2009-01-29 19:46:17 +00:00
|
|
|
// Check if this method has been called already.
|
|
|
|
// If so, just return early.
|
|
|
|
if (mUseEditor)
|
|
|
|
return NS_OK;
|
2006-05-15 19:35:12 +00:00
|
|
|
|
2010-05-19 23:22:19 +00:00
|
|
|
NS_TIME_FUNCTION;
|
|
|
|
|
2010-02-02 04:00:06 +00:00
|
|
|
nsIDocument* doc = mContent->GetCurrentDoc();
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsWeakFrame weakFrame(this);
|
|
|
|
|
|
|
|
// Flush out content on our document. Have to do this, because script
|
|
|
|
// blockers don't prevent the sink flushing out content and notifying in the
|
|
|
|
// process, which can destroy frames.
|
|
|
|
doc->FlushPendingNotifications(Flush_ContentAndNotify);
|
|
|
|
NS_ENSURE_TRUE(weakFrame.IsAlive(), NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// Make sure that editor init doesn't do things that would kill us off
|
|
|
|
// (especially off the script blockers it'll create for its DOM mutations).
|
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
|
|
|
|
|
|
|
// Time to mess with our security context... See comments in GetValue()
|
|
|
|
// for why this is needed.
|
|
|
|
nsCxPusher pusher;
|
|
|
|
pusher.PushNull();
|
|
|
|
|
|
|
|
// Make sure that we try to focus the content even if the method fails
|
|
|
|
class EnsureSetFocus {
|
|
|
|
public:
|
|
|
|
explicit EnsureSetFocus(nsTextControlFrame* aFrame)
|
|
|
|
: mFrame(aFrame) {}
|
|
|
|
~EnsureSetFocus() {
|
2010-04-21 20:17:41 +00:00
|
|
|
if (nsContentUtils::IsFocusedContent(mFrame->GetContent()))
|
2011-10-17 14:59:28 +00:00
|
|
|
mFrame->SetFocus(true, false);
|
2010-02-02 04:00:06 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
nsTextControlFrame *mFrame;
|
|
|
|
};
|
|
|
|
EnsureSetFocus makeSureSetFocusHappens(this);
|
|
|
|
|
2010-02-10 01:29:11 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
// Make sure we are not being called again until we're finished.
|
|
|
|
// If reentrancy happens, just pretend that we don't have an editor.
|
|
|
|
const EditorInitializerEntryTracker tracker(*this);
|
|
|
|
NS_ASSERTION(!tracker.EnteredMoreThanOnce(),
|
|
|
|
"EnsureEditorInitialized has been called while a previous call was in progress");
|
|
|
|
#endif
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
// Create an editor for the frame, if one doesn't already exist
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsresult rv = txtCtrl->CreateEditor();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-01-29 19:46:17 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
// Turn on mUseEditor so that subsequent calls will use the
|
|
|
|
// editor.
|
2011-10-17 14:59:28 +00:00
|
|
|
mUseEditor = true;
|
2009-11-18 23:38:11 +00:00
|
|
|
|
2011-05-12 13:52:38 +00:00
|
|
|
// Set the selection to the beginning of the text field.
|
2011-09-20 03:14:47 +00:00
|
|
|
if (weakFrame.IsAlive()) {
|
|
|
|
SetSelectionEndPoints(0, 0);
|
|
|
|
}
|
2011-05-12 13:52:38 +00:00
|
|
|
|
2002-07-26 17:17:00 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-02-18 17:34:09 +00:00
|
|
|
nsresult
|
2011-05-06 20:04:44 +00:00
|
|
|
nsTextControlFrame::CreateAnonymousContent(nsTArray<ContentInfo>& aElements)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-10-19 13:11:07 +00:00
|
|
|
NS_ASSERTION(mContent, "We should have a content!");
|
|
|
|
|
2002-07-26 17:17:00 +00:00
|
|
|
mState |= NS_FRAME_INDEPENDENT_SELECTION;
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
// Bind the frame to its text control
|
|
|
|
nsresult rv = txtCtrl->BindToFrame(this);
|
2007-02-18 17:34:09 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsIContent* rootNode = txtCtrl->GetRootEditorNode();
|
|
|
|
NS_ENSURE_TRUE(rootNode, NS_ERROR_OUT_OF_MEMORY);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
if (!aElements.AppendElement(rootNode))
|
2007-02-18 17:34:09 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-10-19 13:11:07 +00:00
|
|
|
// Do we need a placeholder node?
|
|
|
|
nsAutoString placeholderTxt;
|
|
|
|
mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::placeholder,
|
|
|
|
placeholderTxt);
|
|
|
|
nsContentUtils::RemoveNewlines(placeholderTxt);
|
|
|
|
mUsePlaceholder = !placeholderTxt.IsEmpty();
|
2009-01-29 19:46:17 +00:00
|
|
|
|
2010-10-19 13:11:07 +00:00
|
|
|
// Create the placeholder anonymous content if needed.
|
|
|
|
if (mUsePlaceholder) {
|
|
|
|
nsIContent* placeholderNode = txtCtrl->CreatePlaceholderNode();
|
|
|
|
NS_ENSURE_TRUE(placeholderNode, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
if (!aElements.AppendElement(placeholderNode))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2009-01-29 19:46:17 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
rv = UpdateValueDisplay(false);
|
2010-04-21 20:17:41 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-01-29 19:46:17 +00:00
|
|
|
|
2010-06-03 02:39:29 +00:00
|
|
|
// textareas are eagerly initialized
|
2011-09-29 06:19:26 +00:00
|
|
|
bool initEagerly = !IsSingleLineTextControl();
|
2011-07-29 21:31:57 +00:00
|
|
|
if (!initEagerly) {
|
|
|
|
// Also, input elements which have a cached selection should get eager
|
|
|
|
// editor initialization.
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
initEagerly = txtCtrl->HasCachedSelection();
|
|
|
|
}
|
2010-06-03 02:39:29 +00:00
|
|
|
if (!initEagerly) {
|
2011-10-29 20:03:55 +00:00
|
|
|
nsCOMPtr<nsIDOMHTMLElement> element = do_QueryInterface(txtCtrl);
|
2010-06-03 02:39:29 +00:00
|
|
|
if (element) {
|
|
|
|
// so are input text controls with spellcheck=true
|
|
|
|
element->GetSpellcheck(&initEagerly);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (initEagerly) {
|
2010-02-02 15:49:55 +00:00
|
|
|
NS_ASSERTION(!nsContentUtils::IsSafeToRunScript(),
|
|
|
|
"Someone forgot a script blocker?");
|
2011-05-21 08:25:27 +00:00
|
|
|
EditorInitializer* initializer = (EditorInitializer*) Properties().Get(TextControlInitializer());
|
|
|
|
if (initializer) {
|
|
|
|
initializer->Revoke();
|
|
|
|
}
|
|
|
|
initializer = new EditorInitializer(this);
|
2011-05-30 05:29:32 +00:00
|
|
|
Properties().Set(TextControlInitializer(),initializer);
|
2011-05-21 08:25:27 +00:00
|
|
|
if (!nsContentUtils::AddScriptRunner(initializer)) {
|
|
|
|
initializer->Revoke(); // paranoia
|
2011-05-30 05:29:32 +00:00
|
|
|
Properties().Delete(TextControlInitializer());
|
2011-05-21 08:25:27 +00:00
|
|
|
delete initializer;
|
2010-02-02 15:49:55 +00:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
2009-01-29 19:46:17 +00:00
|
|
|
}
|
|
|
|
|
2007-02-18 17:34:09 +00:00
|
|
|
return NS_OK;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2010-02-11 17:34:01 +00:00
|
|
|
void
|
2010-10-15 15:34:35 +00:00
|
|
|
nsTextControlFrame::AppendAnonymousContentTo(nsBaseContentList& aElements,
|
|
|
|
PRUint32 aFilter)
|
2010-02-11 17:34:01 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
|
|
|
|
aElements.MaybeAppendElement(txtCtrl->GetRootEditorNode());
|
2010-10-15 15:34:35 +00:00
|
|
|
if (!(aFilter & nsIContent::eSkipPlaceholderContent))
|
|
|
|
aElements.MaybeAppendElement(txtCtrl->GetPlaceholderNode());
|
2012-06-23 11:11:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
nscoord
|
|
|
|
nsTextControlFrame::GetPrefWidth(nsRenderingContext* aRenderingContext)
|
|
|
|
{
|
|
|
|
nscoord result = 0;
|
|
|
|
DISPLAY_PREF_WIDTH(this, result);
|
|
|
|
|
|
|
|
float inflation = nsLayoutUtils::FontSizeInflationFor(this);
|
|
|
|
nsSize autoSize;
|
|
|
|
CalcIntrinsicSize(aRenderingContext, autoSize, inflation);
|
|
|
|
|
|
|
|
return autoSize.width;
|
2010-02-11 17:34:01 +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
|
2011-04-08 01:04:40 +00:00
|
|
|
nsTextControlFrame::GetMinWidth(nsRenderingContext* aRenderingContext)
|
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
|
|
|
{
|
2007-01-30 05:52:27 +00:00
|
|
|
// Our min width is just our preferred width if we have auto width.
|
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 result;
|
|
|
|
DISPLAY_MIN_WIDTH(this, result);
|
|
|
|
|
2007-01-30 05:52:27 +00:00
|
|
|
result = GetPrefWidth(aRenderingContext);
|
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
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-08-22 03:07:25 +00:00
|
|
|
nsSize
|
2011-04-08 01:04:40 +00:00
|
|
|
nsTextControlFrame::ComputeAutoSize(nsRenderingContext *aRenderingContext,
|
2007-08-22 03:07:25 +00:00
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder,
|
2011-09-29 06:19:26 +00:00
|
|
|
nsSize aPadding, bool aShrinkWrap)
|
2007-08-22 03:07:25 +00:00
|
|
|
{
|
2012-05-21 05:18:28 +00:00
|
|
|
float inflation = nsLayoutUtils::FontSizeInflationFor(this);
|
2007-08-22 03:07:25 +00:00
|
|
|
nsSize autoSize;
|
2011-11-24 02:48:23 +00:00
|
|
|
nsresult rv = CalcIntrinsicSize(aRenderingContext, autoSize, inflation);
|
2007-08-22 03:07:25 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// What now?
|
|
|
|
autoSize.SizeTo(0, 0);
|
|
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Note: Ancestor ComputeAutoSize only computes a width if we're auto-width
|
|
|
|
else if (GetStylePosition()->mWidth.GetUnit() == eStyleUnit_Auto) {
|
|
|
|
nsSize ancestorAutoSize =
|
2012-06-23 11:11:00 +00:00
|
|
|
nsContainerFrame::ComputeAutoSize(aRenderingContext,
|
|
|
|
aCBSize, aAvailableWidth,
|
|
|
|
aMargin, aBorder,
|
|
|
|
aPadding, aShrinkWrap);
|
2011-11-24 02:48:23 +00:00
|
|
|
// Disabled when there's inflation; see comment in GetPrefSize.
|
|
|
|
NS_ASSERTION(inflation != 1.0f || ancestorAutoSize.width == autoSize.width,
|
2007-08-22 03:07:25 +00:00
|
|
|
"Incorrect size computed by ComputeAutoSize?");
|
|
|
|
}
|
|
|
|
#endif
|
2012-06-23 11:11:00 +00:00
|
|
|
|
2007-08-22 03:07:25 +00:00
|
|
|
return autoSize;
|
|
|
|
}
|
|
|
|
|
2002-07-26 17:17:00 +00:00
|
|
|
NS_IMETHODIMP
|
2004-07-31 23:15:21 +00:00
|
|
|
nsTextControlFrame::Reflow(nsPresContext* aPresContext,
|
2007-01-22 04:27:31 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus)
|
2002-07-26 17:17:00 +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("nsTextControlFrame");
|
2002-07-26 17:17:00 +00:00
|
|
|
DISPLAY_REFLOW(aPresContext, this, aReflowState, aDesiredSize, aStatus);
|
|
|
|
|
2012-06-23 11:11:00 +00:00
|
|
|
// make sure that the form registers itself on the initial/first reflow
|
2002-07-26 17:17:00 +00:00
|
|
|
if (mState & NS_FRAME_FIRST_REFLOW) {
|
2011-10-17 14:59:28 +00:00
|
|
|
nsFormControlFrame::RegUnRegAccessKey(this, true);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2012-06-23 11:11:00 +00:00
|
|
|
// set values of reflow's out parameters
|
|
|
|
aDesiredSize.width = aReflowState.ComputedWidth() +
|
|
|
|
aReflowState.mComputedBorderPadding.LeftRight();
|
|
|
|
aDesiredSize.height = NS_CSS_MINMAX(aReflowState.ComputedHeight(),
|
|
|
|
aReflowState.mComputedMinHeight,
|
|
|
|
aReflowState.mComputedMaxHeight);
|
|
|
|
nscoord lineHeight = aDesiredSize.height;
|
|
|
|
aDesiredSize.height += aReflowState.mComputedBorderPadding.TopBottom();
|
2010-03-18 19:58:12 +00:00
|
|
|
|
2012-06-23 11:11:00 +00:00
|
|
|
// computation of the ascent wrt the input height
|
|
|
|
float inflation = nsLayoutUtils::FontSizeInflationFor(this);
|
|
|
|
if (!IsSingleLineTextControl()) {
|
|
|
|
lineHeight = nsHTMLReflowState::CalcLineHeight(GetStyleContext(),
|
|
|
|
NS_AUTOHEIGHT, inflation);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
2012-06-23 11:11:00 +00:00
|
|
|
nsRefPtr<nsFontMetrics> fontMet;
|
|
|
|
nsresult rv = nsLayoutUtils::GetFontMetricsForFrame(this,
|
|
|
|
getter_AddRefs(fontMet),
|
|
|
|
inflation);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// now adjust for our borders and padding
|
|
|
|
aDesiredSize.ascent =
|
|
|
|
nsLayoutUtils::GetCenteredFontBaseline(fontMet, lineHeight)
|
|
|
|
+ aReflowState.mComputedBorderPadding.top;
|
|
|
|
|
|
|
|
// overflow handling
|
|
|
|
aDesiredSize.SetOverflowAreasToDesiredBounds();
|
|
|
|
// perform reflow on all kids
|
|
|
|
nsIFrame* kid = mFrames.FirstChild();
|
|
|
|
while (kid) {
|
|
|
|
ReflowTextControlChild(kid, aPresContext, aReflowState, aStatus, aDesiredSize);
|
|
|
|
kid = kid->GetNextSibling();
|
|
|
|
}
|
|
|
|
// take into account css properties that affect overflow handling
|
|
|
|
FinishAndStoreOverflow(&aDesiredSize);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2012-06-23 11:11:00 +00:00
|
|
|
aStatus = NS_FRAME_COMPLETE;
|
|
|
|
NS_FRAME_SET_TRUNCATION(aStatus, aReflowState, aDesiredSize);
|
|
|
|
return NS_OK;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2012-06-23 11:11:00 +00:00
|
|
|
void
|
|
|
|
nsTextControlFrame::ReflowTextControlChild(nsIFrame* aKid,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus,
|
|
|
|
nsHTMLReflowMetrics& aParentDesiredSize)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2012-06-23 11:11:00 +00:00
|
|
|
// compute available size and frame offsets for child
|
|
|
|
nsSize availSize(aReflowState.ComputedWidth(),
|
|
|
|
aReflowState.ComputedHeight());
|
|
|
|
availSize.width = NS_MAX(availSize.width, 0);
|
|
|
|
availSize.height = NS_MAX(availSize.height, 0);
|
|
|
|
|
|
|
|
nsHTMLReflowState kidReflowState(aPresContext, aReflowState,
|
|
|
|
aKid, availSize);
|
|
|
|
|
|
|
|
// Set computed width and computed height for the child
|
|
|
|
nscoord width = availSize.width;
|
|
|
|
width -= kidReflowState.mComputedMargin.LeftRight() +
|
|
|
|
kidReflowState.mComputedBorderPadding.LeftRight();
|
|
|
|
width = NS_MAX(width, 0);
|
|
|
|
kidReflowState.SetComputedWidth(width);
|
|
|
|
|
|
|
|
nscoord height = availSize.height;
|
|
|
|
height -= kidReflowState.mComputedMargin.TopBottom() +
|
|
|
|
kidReflowState.mComputedBorderPadding.TopBottom();
|
|
|
|
height = NS_MAX(height, 0);
|
|
|
|
kidReflowState.SetComputedHeight(height);
|
|
|
|
|
|
|
|
// compute the offsets
|
|
|
|
nscoord xOffset = aReflowState.mComputedBorderPadding.left
|
|
|
|
+ kidReflowState.mComputedMargin.left;
|
|
|
|
nscoord yOffset = aReflowState.mComputedBorderPadding.top
|
|
|
|
+ kidReflowState.mComputedMargin.top;
|
|
|
|
|
|
|
|
// reflow the child
|
|
|
|
nsHTMLReflowMetrics desiredSize;
|
|
|
|
ReflowChild(aKid, aPresContext, desiredSize, kidReflowState,
|
|
|
|
xOffset, yOffset, 0, aStatus);
|
|
|
|
|
|
|
|
// place the child
|
|
|
|
FinishReflowChild(aKid, aPresContext, &kidReflowState,
|
|
|
|
desiredSize, xOffset, yOffset, 0);
|
|
|
|
|
|
|
|
// consider the overflow
|
|
|
|
aParentDesiredSize.mOverflowAreas.UnionWith(desiredSize.mOverflowAreas);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2007-01-08 02:57:59 +00:00
|
|
|
nsSize
|
2012-06-23 11:11:00 +00:00
|
|
|
nsTextControlFrame::GetMinSize(nsBoxLayoutState& aState)
|
2002-07-26 17:17:00 +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
|
|
|
// XXXbz why? Why not the nsBoxFrame sizes?
|
2012-06-23 11:11:00 +00:00
|
|
|
return nsBox::GetMinSize(aState);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2011-06-15 21:03:49 +00:00
|
|
|
nsTextControlFrame::IsCollapsed()
|
2007-01-22 04:27:31 +00:00
|
|
|
{
|
|
|
|
// We're never collapsed in the box sense.
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2007-01-22 04:27:31 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2005-08-16 22:52:48 +00:00
|
|
|
nsTextControlFrame::IsLeaf() const
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2005-08-16 22:52:48 +00:00
|
|
|
}
|
|
|
|
|
2010-05-06 22:12:21 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextControlFrame::ScrollOnFocusEvent::Run()
|
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
if (mFrame) {
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(mFrame->GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsISelectionController* selCon = txtCtrl->GetSelectionController();
|
|
|
|
if (selCon) {
|
|
|
|
mFrame->mScrollEvent.Forget();
|
|
|
|
selCon->ScrollSelectionIntoView(nsISelectionController::SELECTION_NORMAL,
|
|
|
|
nsISelectionController::SELECTION_FOCUS_REGION,
|
2010-10-21 20:56:20 +00:00
|
|
|
nsISelectionController::SCROLL_SYNCHRONOUS);
|
2010-04-21 20:17:41 +00:00
|
|
|
}
|
2010-05-06 22:12:21 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
//IMPLEMENTING NS_IFORMCONTROLFRAME
|
2011-09-29 06:19:26 +00:00
|
|
|
void nsTextControlFrame::SetFocus(bool aOn, bool aRepaint)
|
2004-04-15 19:45:46 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
|
2010-05-06 22:12:21 +00:00
|
|
|
// Revoke the previous scroll event if one exists
|
|
|
|
mScrollEvent.Revoke();
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
if (!aOn) {
|
2004-04-15 19:45:46 +00:00
|
|
|
return;
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
}
|
2004-05-05 22:48:51 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsISelectionController* selCon = txtCtrl->GetSelectionController();
|
|
|
|
if (!selCon)
|
2004-05-05 22:48:51 +00:00
|
|
|
return;
|
|
|
|
|
2004-04-15 19:45:46 +00:00
|
|
|
nsCOMPtr<nsISelection> ourSel;
|
2010-04-21 20:17:41 +00:00
|
|
|
selCon->GetSelection(nsISelectionController::SELECTION_NORMAL,
|
2004-04-15 19:45:46 +00:00
|
|
|
getter_AddRefs(ourSel));
|
|
|
|
if (!ourSel) return;
|
|
|
|
|
2007-03-30 21:11:41 +00:00
|
|
|
nsIPresShell* presShell = PresContext()->GetPresShell();
|
2010-03-31 12:39:31 +00:00
|
|
|
nsRefPtr<nsCaret> caret = presShell->GetCaret();
|
2004-04-15 19:45:46 +00:00
|
|
|
if (!caret) return;
|
2010-05-06 23:19:35 +00:00
|
|
|
|
|
|
|
// Scroll the current selection into view
|
|
|
|
nsISelection *caretSelection = caret->GetCaretDOMSelection();
|
2011-09-29 06:19:26 +00:00
|
|
|
const bool isFocusedRightNow = ourSel == caretSelection;
|
2010-05-06 23:19:35 +00:00
|
|
|
if (!isFocusedRightNow) {
|
2010-09-20 23:30:07 +00:00
|
|
|
// Don't scroll the current selection if we've been focused using the mouse.
|
|
|
|
PRUint32 lastFocusMethod = 0;
|
|
|
|
nsIDocument* doc = GetContent()->GetCurrentDoc();
|
|
|
|
if (doc) {
|
|
|
|
nsIFocusManager* fm = nsFocusManager::GetFocusManager();
|
|
|
|
if (fm) {
|
|
|
|
fm->GetLastFocusMethod(doc->GetWindow(), &lastFocusMethod);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!(lastFocusMethod & nsIFocusManager::FLAG_BYMOUSE)) {
|
|
|
|
nsRefPtr<ScrollOnFocusEvent> event = new ScrollOnFocusEvent(this);
|
|
|
|
nsresult rv = NS_DispatchToCurrentThread(event);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
mScrollEvent = event;
|
|
|
|
}
|
2010-05-06 23:19:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// tell the caret to use our selection
|
2004-04-15 19:45:46 +00:00
|
|
|
caret->SetCaretDOMSelection(ourSel);
|
|
|
|
|
|
|
|
// mutual-exclusion: the selection is either controlled by the
|
|
|
|
// document or by the text input/area. Clear any selection in the
|
|
|
|
// document since the focus is now on our independent selection.
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsISelectionController> selcon = do_QueryInterface(presShell);
|
2004-04-15 19:45:46 +00:00
|
|
|
nsCOMPtr<nsISelection> docSel;
|
2010-04-21 20:17:41 +00:00
|
|
|
selcon->GetSelection(nsISelectionController::SELECTION_NORMAL,
|
2004-04-15 19:45:46 +00:00
|
|
|
getter_AddRefs(docSel));
|
|
|
|
if (!docSel) return;
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool isCollapsed = false;
|
2004-04-15 19:45:46 +00:00
|
|
|
docSel->GetIsCollapsed(&isCollapsed);
|
|
|
|
if (!isCollapsed)
|
|
|
|
docSel->RemoveAllRanges();
|
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
nsresult nsTextControlFrame::SetFormProperty(nsIAtom* aName, const nsAString& aValue)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
if (!mIsProcessing)//some kind of lock.
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsProcessing = true;
|
2010-04-21 20:17:41 +00:00
|
|
|
if (nsGkAtoms::select == aName)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2003-01-21 15:17:32 +00:00
|
|
|
// Select all the text.
|
|
|
|
//
|
2010-04-21 20:17:41 +00:00
|
|
|
// XXX: This is lame, we can't call editor's SelectAll method
|
2003-01-21 15:17:32 +00:00
|
|
|
// because that triggers AutoCopies in unix builds.
|
|
|
|
// Instead, we have to call our own homegrown version
|
|
|
|
// of select all which merely builds a range that selects
|
|
|
|
// all of the content and adds that to the selection.
|
|
|
|
|
2011-01-18 17:40:38 +00:00
|
|
|
nsWeakFrame weakThis = this;
|
2011-10-17 14:59:28 +00:00
|
|
|
SelectAllOrCollapseToEndOfText(true); // NOTE: can destroy the world
|
2011-01-18 17:40:38 +00:00
|
|
|
if (!weakThis.IsAlive()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsProcessing = false;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
return NS_OK;
|
2010-02-02 04:00:12 +00:00
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2005-12-12 23:53:06 +00:00
|
|
|
nsresult
|
|
|
|
nsTextControlFrame::GetFormProperty(nsIAtom* aName, nsAString& aValue) const
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
NS_ASSERTION(nsGkAtoms::value != aName,
|
|
|
|
"Should get the value from the content node instead");
|
2002-07-26 17:17:00 +00:00
|
|
|
return NS_OK;
|
2010-02-02 04:00:12 +00:00
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::GetEditor(nsIEditor **aEditor)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aEditor);
|
2010-02-02 04:00:12 +00:00
|
|
|
|
|
|
|
nsresult rv = EnsureEditorInitialized();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
*aEditor = txtCtrl->GetTextEditor();
|
2002-07-26 17:17:00 +00:00
|
|
|
NS_IF_ADDREF(*aEditor);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::GetTextLength(PRInt32* aTextLength)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aTextLength);
|
|
|
|
|
|
|
|
nsAutoString textContents;
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
2011-10-17 14:59:28 +00:00
|
|
|
txtCtrl->GetTextEditorValue(textContents, false); // this is expensive!
|
2002-07-26 17:17:00 +00:00
|
|
|
*aTextLength = textContents.Length();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2003-01-21 15:17:32 +00:00
|
|
|
nsresult
|
|
|
|
nsTextControlFrame::SetSelectionInternal(nsIDOMNode *aStartNode,
|
|
|
|
PRInt32 aStartOffset,
|
|
|
|
nsIDOMNode *aEndNode,
|
2011-07-28 17:51:22 +00:00
|
|
|
PRInt32 aEndOffset,
|
|
|
|
nsITextControlFrame::SelectionDirection aDirection)
|
2003-01-21 15:17:32 +00:00
|
|
|
{
|
|
|
|
// Create a new range to represent the new selection.
|
|
|
|
// Note that we use a new range to avoid having to do
|
|
|
|
// isIncreasing checks to avoid possible errors.
|
|
|
|
|
2012-01-10 14:19:54 +00:00
|
|
|
nsRefPtr<nsRange> range = new nsRange();
|
2003-01-21 15:17:32 +00:00
|
|
|
nsresult rv = range->SetStart(aStartNode, aStartOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = range->SetEnd(aEndNode, aEndOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Get the selection, clear it and add the new range to it!
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsISelectionController* selCon = txtCtrl->GetSelectionController();
|
|
|
|
NS_ENSURE_TRUE(selCon, NS_ERROR_FAILURE);
|
2003-01-21 15:17:32 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsISelection> selection;
|
2010-04-21 20:17:41 +00:00
|
|
|
selCon->GetSelection(nsISelectionController::SELECTION_NORMAL, getter_AddRefs(selection));
|
2003-01-21 15:17:32 +00:00
|
|
|
NS_ENSURE_TRUE(selection, NS_ERROR_FAILURE);
|
|
|
|
|
2011-07-28 17:51:22 +00:00
|
|
|
nsCOMPtr<nsISelectionPrivate> selPriv = do_QueryInterface(selection, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsDirection direction;
|
|
|
|
if (aDirection == eNone) {
|
|
|
|
// Preserve the direction
|
|
|
|
direction = selPriv->GetSelectionDirection();
|
|
|
|
} else {
|
|
|
|
direction = (aDirection == eBackward) ? eDirPrevious : eDirNext;
|
|
|
|
}
|
|
|
|
|
2011-01-18 17:40:38 +00:00
|
|
|
rv = selection->RemoveAllRanges();
|
2003-01-21 15:17:32 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-01-18 17:40:38 +00:00
|
|
|
rv = selection->AddRange(range); // NOTE: can destroy the world
|
2011-07-28 17:51:22 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
selPriv->SetSelectionDirection(direction);
|
2011-02-05 00:29:29 +00:00
|
|
|
return rv;
|
|
|
|
}
|
2010-03-18 16:14:08 +00:00
|
|
|
|
2011-02-05 00:29:29 +00:00
|
|
|
nsresult
|
|
|
|
nsTextControlFrame::ScrollSelectionIntoView()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsISelectionController* selCon = txtCtrl->GetSelectionController();
|
|
|
|
if (selCon) {
|
|
|
|
// Scroll the selection into view (see bug 231389).
|
|
|
|
return selCon->ScrollSelectionIntoView(nsISelectionController::SELECTION_NORMAL,
|
|
|
|
nsISelectionController::SELECTION_FOCUS_REGION,
|
|
|
|
nsISelectionController::SCROLL_FIRST_ANCESTOR_ONLY);
|
2011-01-18 17:40:38 +00:00
|
|
|
}
|
|
|
|
|
2011-02-05 00:29:29 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2003-01-21 15:17:32 +00:00
|
|
|
}
|
|
|
|
|
2012-06-10 23:44:50 +00:00
|
|
|
mozilla::dom::Element*
|
|
|
|
nsTextControlFrame::GetRootNodeAndInitializeEditor()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMElement> root;
|
|
|
|
GetRootNodeAndInitializeEditor(getter_AddRefs(root));
|
|
|
|
nsCOMPtr<mozilla::dom::Element> rootElem = do_QueryInterface(root);
|
|
|
|
return rootElem;
|
|
|
|
}
|
|
|
|
|
2003-01-21 15:17:32 +00:00
|
|
|
nsresult
|
2010-04-21 20:17:41 +00:00
|
|
|
nsTextControlFrame::GetRootNodeAndInitializeEditor(nsIDOMElement **aRootElement)
|
2003-01-21 15:17:32 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aRootElement);
|
|
|
|
|
2010-06-09 18:14:42 +00:00
|
|
|
nsCOMPtr<nsIEditor> editor;
|
|
|
|
GetEditor(getter_AddRefs(editor));
|
2010-04-21 20:17:41 +00:00
|
|
|
if (!editor)
|
2003-01-21 15:17:32 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
return editor->GetRootElement(aRootElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2011-09-29 06:19:26 +00:00
|
|
|
nsTextControlFrame::SelectAllOrCollapseToEndOfText(bool aSelect)
|
2010-04-21 20:17:41 +00:00
|
|
|
{
|
2003-01-21 15:17:32 +00:00
|
|
|
nsCOMPtr<nsIDOMElement> rootElement;
|
2010-04-21 20:17:41 +00:00
|
|
|
nsresult rv = GetRootNodeAndInitializeEditor(getter_AddRefs(rootElement));
|
2003-01-21 15:17:32 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> rootContent = do_QueryInterface(rootElement);
|
2010-02-07 19:44:32 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> rootNode(do_QueryInterface(rootElement));
|
2010-11-22 08:12:56 +00:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(rootNode && rootContent, NS_ERROR_FAILURE);
|
|
|
|
|
2003-09-27 04:18:26 +00:00
|
|
|
PRInt32 numChildren = rootContent->GetChildCount();
|
2003-01-21 15:17:32 +00:00
|
|
|
|
|
|
|
if (numChildren > 0) {
|
|
|
|
// We never want to place the selection after the last
|
|
|
|
// br under the root node!
|
2003-09-27 04:18:26 +00:00
|
|
|
nsIContent *child = rootContent->GetChildAt(numChildren - 1);
|
|
|
|
if (child) {
|
2006-12-26 17:47:52 +00:00
|
|
|
if (child->Tag() == nsGkAtoms::br)
|
2003-01-21 15:17:32 +00:00
|
|
|
--numChildren;
|
|
|
|
}
|
2010-02-07 19:44:32 +00:00
|
|
|
if (!aSelect && numChildren) {
|
|
|
|
child = rootContent->GetChildAt(numChildren - 1);
|
|
|
|
if (child && child->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
rootNode = do_QueryInterface(child);
|
|
|
|
const nsTextFragment* fragment = child->GetText();
|
|
|
|
numChildren = fragment ? fragment->GetLength() : 0;
|
|
|
|
}
|
|
|
|
}
|
2003-01-21 15:17:32 +00:00
|
|
|
}
|
|
|
|
|
2011-02-05 00:29:29 +00:00
|
|
|
rv = SetSelectionInternal(rootNode, aSelect ? 0 : numChildren,
|
|
|
|
rootNode, numChildren);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return ScrollSelectionIntoView();
|
2003-01-21 15:17:32 +00:00
|
|
|
}
|
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
nsresult
|
2011-07-28 17:51:22 +00:00
|
|
|
nsTextControlFrame::SetSelectionEndPoints(PRInt32 aSelStart, PRInt32 aSelEnd,
|
|
|
|
nsITextControlFrame::SelectionDirection aDirection)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2003-01-09 06:06:17 +00:00
|
|
|
NS_ASSERTION(aSelStart <= aSelEnd, "Invalid selection offsets!");
|
|
|
|
|
|
|
|
if (aSelStart > aSelEnd)
|
2002-07-26 17:17:00 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> startNode, endNode;
|
|
|
|
PRInt32 startOffset, endOffset;
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
// Calculate the selection start point.
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
nsresult rv = OffsetToDOMPoint(aSelStart, getter_AddRefs(startNode), &startOffset);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
if (aSelStart == aSelEnd) {
|
|
|
|
// Collapsed selection, so start and end are the same!
|
|
|
|
endNode = startNode;
|
|
|
|
endOffset = startOffset;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
2003-01-09 06:06:17 +00:00
|
|
|
else {
|
|
|
|
// Selection isn't collapsed so we have to calculate
|
|
|
|
// the end point too.
|
|
|
|
|
|
|
|
rv = OffsetToDOMPoint(aSelEnd, getter_AddRefs(endNode), &endOffset);
|
|
|
|
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2011-07-28 17:51:22 +00:00
|
|
|
return SetSelectionInternal(startNode, startOffset, endNode, endOffset, aDirection);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-07-28 17:51:22 +00:00
|
|
|
nsTextControlFrame::SetSelectionRange(PRInt32 aSelStart, PRInt32 aSelEnd,
|
|
|
|
nsITextControlFrame::SelectionDirection aDirection)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-02-02 04:00:12 +00:00
|
|
|
nsresult rv = EnsureEditorInitialized();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
if (aSelStart > aSelEnd) {
|
|
|
|
// Simulate what we'd see SetSelectionStart() was called, followed
|
|
|
|
// by a SetSelectionEnd().
|
|
|
|
|
|
|
|
aSelStart = aSelEnd;
|
|
|
|
}
|
|
|
|
|
2011-07-28 17:51:22 +00:00
|
|
|
return SetSelectionEndPoints(aSelStart, aSelEnd, aDirection);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::SetSelectionStart(PRInt32 aSelectionStart)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-02-02 04:00:12 +00:00
|
|
|
nsresult rv = EnsureEditorInitialized();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
PRInt32 selStart = 0, selEnd = 0;
|
|
|
|
|
2010-02-02 04:00:12 +00:00
|
|
|
rv = GetSelectionRange(&selStart, &selEnd);
|
2003-01-09 06:06:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aSelectionStart > selEnd) {
|
|
|
|
// Collapse to the new start point.
|
|
|
|
selEnd = aSelectionStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
selStart = aSelectionStart;
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
return SetSelectionEndPoints(selStart, selEnd);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::SetSelectionEnd(PRInt32 aSelectionEnd)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-02-02 04:00:12 +00:00
|
|
|
nsresult rv = EnsureEditorInitialized();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
PRInt32 selStart = 0, selEnd = 0;
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-02-02 04:00:12 +00:00
|
|
|
rv = GetSelectionRange(&selStart, &selEnd);
|
2003-01-09 06:06:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aSelectionEnd < selStart) {
|
|
|
|
// Collapse to the new end point.
|
|
|
|
selStart = aSelectionEnd;
|
|
|
|
}
|
|
|
|
|
|
|
|
selEnd = aSelectionEnd;
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
return SetSelectionEndPoints(selStart, selEnd);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2003-01-09 06:06:17 +00:00
|
|
|
nsresult
|
|
|
|
nsTextControlFrame::OffsetToDOMPoint(PRInt32 aOffset,
|
|
|
|
nsIDOMNode** aResult,
|
|
|
|
PRInt32* aPosition)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult && aPosition);
|
|
|
|
|
|
|
|
*aResult = nsnull;
|
|
|
|
*aPosition = 0;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMElement> rootElement;
|
2010-04-21 20:17:41 +00:00
|
|
|
nsresult rv = GetRootNodeAndInitializeEditor(getter_AddRefs(rootElement));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2003-01-09 06:06:17 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> rootNode(do_QueryInterface(rootElement));
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(rootNode, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList> nodeList;
|
|
|
|
|
2010-02-02 04:00:12 +00:00
|
|
|
rv = rootNode->GetChildNodes(getter_AddRefs(nodeList));
|
2003-01-09 06:06:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(nodeList, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
PRUint32 length = 0;
|
|
|
|
|
|
|
|
rv = nodeList->GetLength(&length);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-07-20 12:47:28 +00:00
|
|
|
NS_ASSERTION(length <= 2, "We should have one text node and one mozBR at most");
|
2010-09-02 23:54:23 +00:00
|
|
|
|
2010-07-20 12:47:28 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> firstNode;
|
|
|
|
rv = nodeList->Item(0, getter_AddRefs(firstNode));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIDOMText> textNode = do_QueryInterface(firstNode);
|
2010-09-02 23:54:23 +00:00
|
|
|
|
2010-07-20 12:47:28 +00:00
|
|
|
if (length == 0 || aOffset < 0) {
|
|
|
|
NS_IF_ADDREF(*aResult = rootNode);
|
|
|
|
*aPosition = 0;
|
|
|
|
} else if (textNode) {
|
2010-12-07 06:30:05 +00:00
|
|
|
PRUint32 textLength = 0;
|
|
|
|
textNode->GetLength(&textLength);
|
|
|
|
if (length == 2 && PRUint32(aOffset) == textLength) {
|
|
|
|
// If we're at the end of the text node and we have a trailing BR node,
|
|
|
|
// set the selection on the BR node.
|
|
|
|
NS_IF_ADDREF(*aResult = rootNode);
|
|
|
|
*aPosition = 1;
|
|
|
|
} else {
|
|
|
|
// Otherwise, set the selection on the textnode itself.
|
|
|
|
NS_IF_ADDREF(*aResult = firstNode);
|
2011-01-11 17:10:47 +00:00
|
|
|
*aPosition = NS_MIN(aOffset, PRInt32(textLength));
|
2010-12-07 06:30:05 +00:00
|
|
|
}
|
2010-07-20 12:47:28 +00:00
|
|
|
} else {
|
|
|
|
NS_IF_ADDREF(*aResult = rootNode);
|
|
|
|
*aPosition = 0;
|
2003-01-09 06:06:17 +00:00
|
|
|
}
|
|
|
|
|
2010-07-20 12:47:28 +00:00
|
|
|
return NS_OK;
|
2003-01-09 06:06:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-07-28 17:51:22 +00:00
|
|
|
nsTextControlFrame::GetSelectionRange(PRInt32* aSelectionStart,
|
|
|
|
PRInt32* aSelectionEnd,
|
|
|
|
SelectionDirection* aDirection)
|
2003-01-09 06:06:17 +00:00
|
|
|
{
|
|
|
|
// make sure we have an editor
|
2010-02-02 04:00:12 +00:00
|
|
|
nsresult rv = EnsureEditorInitialized();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2003-01-09 06:06:17 +00:00
|
|
|
|
2011-07-28 17:51:22 +00:00
|
|
|
if (aSelectionStart) {
|
|
|
|
*aSelectionStart = 0;
|
|
|
|
}
|
|
|
|
if (aSelectionEnd) {
|
|
|
|
*aSelectionEnd = 0;
|
|
|
|
}
|
|
|
|
if (aDirection) {
|
|
|
|
*aDirection = eNone;
|
|
|
|
}
|
2003-01-09 06:06:17 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsISelectionController* selCon = txtCtrl->GetSelectionController();
|
|
|
|
NS_ENSURE_TRUE(selCon, NS_ERROR_FAILURE);
|
2003-01-09 06:06:17 +00:00
|
|
|
nsCOMPtr<nsISelection> selection;
|
2010-04-21 20:17:41 +00:00
|
|
|
rv = selCon->GetSelection(nsISelectionController::SELECTION_NORMAL, getter_AddRefs(selection));
|
2003-01-09 06:06:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(selection, NS_ERROR_FAILURE);
|
2012-06-10 23:44:50 +00:00
|
|
|
nsCOMPtr<nsISelectionPrivate> selPriv = do_QueryInterface(selection);
|
|
|
|
NS_ENSURE_TRUE(selPriv, NS_ERROR_FAILURE);
|
|
|
|
nsRefPtr<nsFrameSelection> frameSel;
|
|
|
|
rv = selPriv->GetFrameSelection(getter_AddRefs(frameSel));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(frameSel, NS_ERROR_FAILURE);
|
|
|
|
nsRefPtr<Selection> typedSel =
|
|
|
|
frameSel->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
NS_ENSURE_TRUE(typedSel, NS_ERROR_FAILURE);
|
2003-01-09 06:06:17 +00:00
|
|
|
|
2011-07-28 17:51:22 +00:00
|
|
|
if (aDirection) {
|
2012-06-10 23:44:50 +00:00
|
|
|
nsDirection direction = typedSel->GetSelectionDirection();
|
|
|
|
if (direction == eDirNext) {
|
|
|
|
*aDirection = eForward;
|
|
|
|
} else if (direction == eDirPrevious) {
|
|
|
|
*aDirection = eBackward;
|
|
|
|
} else {
|
|
|
|
NS_NOTREACHED("Invalid nsDirection enum value");
|
2011-07-28 17:51:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!aSelectionStart || !aSelectionEnd) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-10 23:44:50 +00:00
|
|
|
nsContentUtils::GetSelectionInTextControl(typedSel,
|
|
|
|
GetRootNodeAndInitializeEditor(), *aSelectionStart, *aSelectionEnd);
|
2012-06-10 23:37:47 +00:00
|
|
|
|
2012-06-10 23:44:50 +00:00
|
|
|
return NS_OK;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/////END INTERFACE IMPLEMENTATIONS
|
|
|
|
|
|
|
|
////NSIFRAME
|
|
|
|
NS_IMETHODIMP
|
2005-09-07 16:49:21 +00:00
|
|
|
nsTextControlFrame::AttributeChanged(PRInt32 aNameSpaceID,
|
2004-12-31 01:13:27 +00:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aModType)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsISelectionController* selCon = txtCtrl->GetSelectionController();
|
2011-09-29 06:19:26 +00:00
|
|
|
const bool needEditor = nsGkAtoms::maxlength == aAttribute ||
|
2010-04-21 20:17:41 +00:00
|
|
|
nsGkAtoms::readonly == aAttribute ||
|
2010-06-28 18:04:37 +00:00
|
|
|
nsGkAtoms::disabled == aAttribute ||
|
|
|
|
nsGkAtoms::spellcheck == aAttribute;
|
2010-06-09 18:14:42 +00:00
|
|
|
nsCOMPtr<nsIEditor> editor;
|
2010-04-21 20:17:41 +00:00
|
|
|
if (needEditor) {
|
2010-06-09 18:14:42 +00:00
|
|
|
GetEditor(getter_AddRefs(editor));
|
2010-04-21 20:17:41 +00:00
|
|
|
}
|
|
|
|
if ((needEditor && !editor) || !selCon)
|
2012-06-23 11:11:00 +00:00
|
|
|
return nsContainerFrame::AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
2009-01-29 19:46:17 +00:00
|
|
|
|
2002-07-26 17:17:00 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2006-12-26 17:47:52 +00:00
|
|
|
if (nsGkAtoms::maxlength == aAttribute)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
PRInt32 maxLength;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool maxDefined = GetMaxLength(&maxLength);
|
2002-07-26 17:17:00 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsIPlaintextEditor> textEditor = do_QueryInterface(editor);
|
2002-07-26 17:17:00 +00:00
|
|
|
if (textEditor)
|
|
|
|
{
|
2005-10-28 11:25:24 +00:00
|
|
|
if (maxDefined)
|
2002-07-26 17:17:00 +00:00
|
|
|
{ // set the maxLength attribute
|
|
|
|
textEditor->SetMaxTextLength(maxLength);
|
|
|
|
// if maxLength>docLength, we need to truncate the doc content
|
|
|
|
}
|
|
|
|
else { // unset the maxLength attribute
|
|
|
|
textEditor->SetMaxTextLength(-1);
|
|
|
|
}
|
|
|
|
}
|
2005-03-24 18:41:39 +00:00
|
|
|
rv = NS_OK; // don't propagate the error
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
2006-12-26 17:47:52 +00:00
|
|
|
else if (nsGkAtoms::readonly == aAttribute)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
PRUint32 flags;
|
2010-04-21 20:17:41 +00:00
|
|
|
editor->GetFlags(&flags);
|
2006-12-26 17:47:52 +00:00
|
|
|
if (AttributeExists(nsGkAtoms::readonly))
|
2002-07-26 17:17:00 +00:00
|
|
|
{ // set readonly
|
|
|
|
flags |= nsIPlaintextEditor::eEditorReadonlyMask;
|
2010-04-21 20:17:41 +00:00
|
|
|
if (nsContentUtils::IsFocusedContent(mContent))
|
2011-10-17 14:59:28 +00:00
|
|
|
selCon->SetCaretEnabled(false);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // unset readonly
|
|
|
|
flags &= ~(nsIPlaintextEditor::eEditorReadonlyMask);
|
2006-02-21 00:49:04 +00:00
|
|
|
if (!(flags & nsIPlaintextEditor::eEditorDisabledMask) &&
|
2010-04-21 20:17:41 +00:00
|
|
|
nsContentUtils::IsFocusedContent(mContent))
|
2011-10-17 14:59:28 +00:00
|
|
|
selCon->SetCaretEnabled(true);
|
2010-02-02 04:00:06 +00:00
|
|
|
}
|
2010-04-21 20:17:41 +00:00
|
|
|
editor->SetFlags(flags);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
2009-01-29 19:46:17 +00:00
|
|
|
else if (nsGkAtoms::disabled == aAttribute)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
PRUint32 flags;
|
2010-04-21 20:17:41 +00:00
|
|
|
editor->GetFlags(&flags);
|
2006-12-26 17:47:52 +00:00
|
|
|
if (AttributeExists(nsGkAtoms::disabled))
|
2002-07-26 17:17:00 +00:00
|
|
|
{ // set disabled
|
|
|
|
flags |= nsIPlaintextEditor::eEditorDisabledMask;
|
2010-04-21 20:17:41 +00:00
|
|
|
selCon->SetDisplaySelection(nsISelectionController::SELECTION_OFF);
|
|
|
|
if (nsContentUtils::IsFocusedContent(mContent))
|
2011-10-17 14:59:28 +00:00
|
|
|
selCon->SetCaretEnabled(false);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // unset disabled
|
|
|
|
flags &= ~(nsIPlaintextEditor::eEditorDisabledMask);
|
2010-04-21 20:17:41 +00:00
|
|
|
selCon->SetDisplaySelection(nsISelectionController::SELECTION_HIDDEN);
|
2010-08-15 15:19:34 +00:00
|
|
|
if (nsContentUtils::IsFocusedContent(mContent)) {
|
2011-10-17 14:59:28 +00:00
|
|
|
selCon->SetCaretEnabled(true);
|
2010-08-15 15:19:34 +00:00
|
|
|
}
|
2010-02-02 15:49:55 +00:00
|
|
|
}
|
2010-04-21 20:17:41 +00:00
|
|
|
editor->SetFlags(flags);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
2010-02-02 15:49:55 +00:00
|
|
|
else if (!mUseEditor && nsGkAtoms::value == aAttribute) {
|
2011-10-17 14:59:28 +00:00
|
|
|
UpdateValueDisplay(true);
|
2010-02-02 15:49:55 +00:00
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
// Allow the base class to handle common attributes supported
|
|
|
|
// by all form elements...
|
|
|
|
else {
|
2012-06-23 11:11:00 +00:00
|
|
|
rv = nsContainerFrame::AttributeChanged(aNameSpaceID, aAttribute, aModType);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-02-07 19:44:32 +00:00
|
|
|
nsresult
|
|
|
|
nsTextControlFrame::GetText(nsString& aText)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2005-10-28 11:25:24 +00:00
|
|
|
nsresult rv = NS_OK;
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
2002-09-16 06:23:52 +00:00
|
|
|
if (IsSingleLineTextControl()) {
|
2010-07-21 00:11:19 +00:00
|
|
|
// There will be no line breaks so we can ignore the wrap property.
|
2011-10-17 14:59:28 +00:00
|
|
|
txtCtrl->GetTextEditorValue(aText, true);
|
2002-07-26 17:17:00 +00:00
|
|
|
} else {
|
|
|
|
nsCOMPtr<nsIDOMHTMLTextAreaElement> textArea = do_QueryInterface(mContent);
|
|
|
|
if (textArea) {
|
2010-02-07 19:44:32 +00:00
|
|
|
rv = textArea->GetValue(aText);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-28 00:27:55 +00:00
|
|
|
nsresult
|
2002-12-17 23:38:04 +00:00
|
|
|
nsTextControlFrame::GetPhonetic(nsAString& aPhonetic)
|
|
|
|
{
|
|
|
|
aPhonetic.Truncate(0);
|
2010-02-02 04:00:12 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsIEditor> editor;
|
|
|
|
nsresult rv = GetEditor(getter_AddRefs(editor));
|
2010-02-02 04:00:12 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsIEditorIMESupport> imeSupport = do_QueryInterface(editor);
|
2002-12-17 23:38:04 +00:00
|
|
|
if (imeSupport) {
|
|
|
|
nsCOMPtr<nsIPhonetic> phonetic = do_QueryInterface(imeSupport);
|
|
|
|
if (phonetic)
|
|
|
|
phonetic->GetPhonetic(aPhonetic);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
|
|
|
|
///END NSIFRAME OVERLOADS
|
|
|
|
/////BEGIN PROTECTED METHODS
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::GetMaxLength(PRInt32* aSize)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
*aSize = -1;
|
|
|
|
|
2005-01-12 19:45:38 +00:00
|
|
|
nsGenericHTMLElement *content = nsGenericHTMLElement::FromContent(mContent);
|
2002-07-26 17:17:00 +00:00
|
|
|
if (content) {
|
2006-12-26 17:47:52 +00:00
|
|
|
const nsAttrValue* attr = content->GetParsedAttr(nsGkAtoms::maxlength);
|
2005-01-25 00:02:58 +00:00
|
|
|
if (attr && attr->Type() == nsAttrValue::eInteger) {
|
|
|
|
*aSize = attr->GetIntegerValue();
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// END IMPLEMENTING NS_IFORMCONTROLFRAME
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2011-08-24 20:54:30 +00:00
|
|
|
nsTextControlFrame::SetInitialChildList(ChildListID aListID,
|
2009-07-28 12:53:20 +00:00
|
|
|
nsFrameList& aChildList)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2012-06-23 11:11:00 +00:00
|
|
|
nsresult rv = nsContainerFrame::SetInitialChildList(aListID, aChildList);
|
2009-01-29 19:46:17 +00:00
|
|
|
|
2011-08-24 20:54:30 +00:00
|
|
|
nsIFrame* first = GetFirstPrincipalChild();
|
2002-07-26 17:17:00 +00:00
|
|
|
|
|
|
|
// Mark the scroll frame as being a reflow root. This will allow
|
|
|
|
// incremental reflows to be initiated at the scroll frame, rather
|
|
|
|
// than descending from the root frame of the frame hierarchy.
|
2010-08-05 02:13:57 +00:00
|
|
|
if (first) {
|
|
|
|
first->AddStateBits(NS_FRAME_REFLOW_ROOT);
|
2010-09-14 17:34:50 +00:00
|
|
|
|
2010-09-24 19:09:25 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
txtCtrl->InitializeKeyboardEventListeners();
|
2011-02-04 23:28:38 +00:00
|
|
|
|
|
|
|
nsPoint* contentScrollPos = static_cast<nsPoint*>
|
|
|
|
(Properties().Get(ContentScrollPos()));
|
|
|
|
if (contentScrollPos) {
|
|
|
|
// If we have a scroll pos stored to be passed to our anonymous
|
|
|
|
// div, do it here!
|
|
|
|
nsIStatefulFrame* statefulFrame = do_QueryFrame(first);
|
|
|
|
NS_ASSERTION(statefulFrame, "unexpected type of frame for the anonymous div");
|
|
|
|
nsPresState fakePresState;
|
|
|
|
fakePresState.SetScrollState(*contentScrollPos);
|
|
|
|
statefulFrame->RestoreState(&fakePresState);
|
2011-02-09 19:34:56 +00:00
|
|
|
Properties().Remove(ContentScrollPos());
|
2011-02-04 23:28:38 +00:00
|
|
|
delete contentScrollPos;
|
|
|
|
}
|
2010-09-24 19:09:25 +00:00
|
|
|
}
|
2002-07-26 17:17:00 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2002-07-26 20:57:24 +00:00
|
|
|
nsTextControlFrame::IsScrollable() const
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
|
|
|
return !IsSingleLineTextControl();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-09-29 06:19:26 +00:00
|
|
|
nsTextControlFrame::SetValueChanged(bool aValueChanged)
|
2002-07-26 17:17:00 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
2011-01-28 01:19:04 +00:00
|
|
|
|
2012-05-24 10:54:25 +00:00
|
|
|
if (mUsePlaceholder) {
|
2011-01-28 01:19:04 +00:00
|
|
|
PRInt32 textLength;
|
|
|
|
GetTextLength(&textLength);
|
|
|
|
|
|
|
|
nsWeakFrame weakFrame(this);
|
2011-10-17 14:59:28 +00:00
|
|
|
txtCtrl->SetPlaceholderClass(!textLength, true);
|
2011-01-28 01:19:04 +00:00
|
|
|
if (!weakFrame.IsAlive()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
txtCtrl->SetValueChanged(aValueChanged);
|
2002-07-26 17:17:00 +00:00
|
|
|
}
|
|
|
|
|
2010-02-02 15:49:55 +00:00
|
|
|
|
|
|
|
nsresult
|
2011-09-29 06:19:26 +00:00
|
|
|
nsTextControlFrame::UpdateValueDisplay(bool aNotify,
|
|
|
|
bool aBeforeEditorInit,
|
2010-02-02 15:49:55 +00:00
|
|
|
const nsAString *aValue)
|
|
|
|
{
|
|
|
|
if (!IsSingleLineTextControl()) // textareas don't use this
|
|
|
|
return NS_OK;
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
nsIContent* rootNode = txtCtrl->GetRootEditorNode();
|
|
|
|
|
|
|
|
NS_PRECONDITION(rootNode, "Must have a div content\n");
|
2010-02-02 15:49:55 +00:00
|
|
|
NS_PRECONDITION(!mUseEditor,
|
|
|
|
"Do not call this after editor has been initialized");
|
2010-10-19 13:11:07 +00:00
|
|
|
NS_ASSERTION(!mUsePlaceholder || txtCtrl->GetPlaceholderNode(),
|
|
|
|
"A placeholder div must exist");
|
2010-02-02 15:49:55 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsIContent *textContent = rootNode->GetChildAt(0);
|
2010-04-16 01:25:40 +00:00
|
|
|
if (!textContent) {
|
|
|
|
// Set up a textnode with our value
|
|
|
|
nsCOMPtr<nsIContent> textNode;
|
|
|
|
nsresult rv = NS_NewTextNode(getter_AddRefs(textNode),
|
|
|
|
mContent->NodeInfo()->NodeInfoManager());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-02-02 15:49:55 +00:00
|
|
|
|
2010-04-16 01:25:40 +00:00
|
|
|
NS_ASSERTION(textNode, "Must have textcontent!\n");
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
rootNode->AppendChildTo(textNode, aNotify);
|
2010-04-16 01:25:40 +00:00
|
|
|
textContent = textNode;
|
2010-02-02 15:49:55 +00:00
|
|
|
}
|
|
|
|
|
2010-04-16 01:25:40 +00:00
|
|
|
NS_ENSURE_TRUE(textContent, NS_ERROR_UNEXPECTED);
|
|
|
|
|
2010-02-02 15:49:55 +00:00
|
|
|
// Get the current value of the textfield from the content.
|
|
|
|
nsAutoString value;
|
|
|
|
if (aValue) {
|
|
|
|
value = *aValue;
|
|
|
|
} else {
|
2011-10-17 14:59:28 +00:00
|
|
|
txtCtrl->GetTextEditorValue(value, true);
|
2010-02-02 15:49:55 +00:00
|
|
|
}
|
|
|
|
|
2010-04-06 20:43:39 +00:00
|
|
|
// Update the display of the placeholder value if needed.
|
2010-04-13 00:32:29 +00:00
|
|
|
// We don't need to do this if we're about to initialize the
|
|
|
|
// editor, since EnsureEditorInitialized takes care of this.
|
2010-10-19 13:11:07 +00:00
|
|
|
if (mUsePlaceholder && !aBeforeEditorInit)
|
2010-04-06 20:43:39 +00:00
|
|
|
{
|
|
|
|
nsWeakFrame weakFrame(this);
|
2010-04-21 20:17:41 +00:00
|
|
|
txtCtrl->SetPlaceholderClass(value.IsEmpty(), aNotify);
|
2010-04-06 20:43:39 +00:00
|
|
|
NS_ENSURE_STATE(weakFrame.IsAlive());
|
|
|
|
}
|
|
|
|
|
2010-02-02 15:49:55 +00:00
|
|
|
if (aBeforeEditorInit && value.IsEmpty()) {
|
2011-10-17 14:59:28 +00:00
|
|
|
rootNode->RemoveChildAt(0, true);
|
2010-02-02 15:49:55 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-16 01:25:40 +00:00
|
|
|
if (!value.IsEmpty() && IsPasswordTextControl()) {
|
|
|
|
nsTextEditRules::FillBufWithPWChars(&value, value.Length());
|
2010-02-02 15:49:55 +00:00
|
|
|
}
|
2010-04-16 01:25:40 +00:00
|
|
|
return textContent->SetText(value, aNotify);
|
2010-02-02 15:49:55 +00:00
|
|
|
}
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextControlFrame::GetOwnedSelectionController(nsISelectionController** aSelCon)
|
2010-02-26 18:47:38 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aSelCon);
|
2010-02-26 18:47:38 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
2010-02-26 18:47:38 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
*aSelCon = txtCtrl->GetSelectionController();
|
|
|
|
NS_IF_ADDREF(*aSelCon);
|
2010-02-26 18:47:38 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
nsFrameSelection*
|
|
|
|
nsTextControlFrame::GetOwnedFrameSelection()
|
2010-02-07 19:44:32 +00:00
|
|
|
{
|
2010-04-21 20:17:41 +00:00
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
2010-02-07 19:44:32 +00:00
|
|
|
|
2010-04-21 20:17:41 +00:00
|
|
|
return txtCtrl->GetConstFrameSelection();
|
2010-02-07 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
2011-02-04 23:28:38 +00:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextControlFrame::SaveState(nsIStatefulFrame::SpecialStateID aStateID, nsPresState** aState)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
|
|
|
|
|
|
|
*aState = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
|
|
|
|
nsIContent* rootNode = txtCtrl->GetRootEditorNode();
|
|
|
|
if (rootNode) {
|
|
|
|
// Query the nsIStatefulFrame from the HTMLScrollFrame
|
|
|
|
nsIStatefulFrame* scrollStateFrame = do_QueryFrame(rootNode->GetPrimaryFrame());
|
|
|
|
if (scrollStateFrame) {
|
|
|
|
return scrollStateFrame->SaveState(aStateID, aState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextControlFrame::RestoreState(nsPresState* aState)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aState);
|
|
|
|
|
|
|
|
nsCOMPtr<nsITextControlElement> txtCtrl = do_QueryInterface(GetContent());
|
|
|
|
NS_ASSERTION(txtCtrl, "Content not a text control element");
|
|
|
|
|
|
|
|
nsIContent* rootNode = txtCtrl->GetRootEditorNode();
|
|
|
|
if (rootNode) {
|
|
|
|
// Query the nsIStatefulFrame from the HTMLScrollFrame
|
|
|
|
nsIStatefulFrame* scrollStateFrame = do_QueryFrame(rootNode->GetPrimaryFrame());
|
|
|
|
if (scrollStateFrame) {
|
|
|
|
return scrollStateFrame->RestoreState(aState);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Most likely, we don't have our anonymous content constructed yet, which
|
|
|
|
// would cause us to end up here. In this case, we'll just store the scroll
|
|
|
|
// pos ourselves, and forward it to the scroll frame later when it's created.
|
|
|
|
Properties().Set(ContentScrollPos(), new nsPoint(aState->GetScrollState()));
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-06-19 23:31:03 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsTextControlFrame::PeekOffset(nsPeekOffsetStruct *aPos)
|
|
|
|
{
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|