2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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/. */
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "ContentEventHandler.h"
|
|
|
|
#include "mozilla/IMEStateManager.h"
|
|
|
|
#include "mozilla/TextEvents.h"
|
|
|
|
#include "mozilla/dom/Element.h"
|
2015-12-02 04:20:01 +00:00
|
|
|
#include "mozilla/dom/HTMLUnknownElement.h"
|
2015-07-01 15:41:17 +00:00
|
|
|
#include "mozilla/dom/Selection.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsCaret.h"
|
2008-02-20 07:40:04 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsCopySupport.h"
|
2013-12-18 01:43:11 +00:00
|
|
|
#include "nsFocusManager.h"
|
2015-06-06 00:57:42 +00:00
|
|
|
#include "nsFontMetrics.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsFrameSelection.h"
|
|
|
|
#include "nsIContentIterator.h"
|
2008-02-20 07:40:04 +00:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsISelection.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsISelectionController.h"
|
2008-02-20 07:40:04 +00:00
|
|
|
#include "nsIFrame.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsIObjectFrame.h"
|
|
|
|
#include "nsLayoutUtils.h"
|
|
|
|
#include "nsPresContext.h"
|
2015-12-02 04:20:01 +00:00
|
|
|
#include "nsQueryObject.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsRange.h"
|
2008-02-20 07:40:04 +00:00
|
|
|
#include "nsTextFragment.h"
|
|
|
|
#include "nsTextFrame.h"
|
2014-03-11 05:08:02 +00:00
|
|
|
#include "nsView.h"
|
|
|
|
|
2013-01-15 12:22:03 +00:00
|
|
|
#include <algorithm>
|
2012-12-22 08:27:27 +00:00
|
|
|
|
2014-03-11 05:08:02 +00:00
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
using namespace dom;
|
|
|
|
using namespace widget;
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
/******************************************************************/
|
2014-03-11 05:08:02 +00:00
|
|
|
/* ContentEventHandler */
|
2008-02-20 07:40:04 +00:00
|
|
|
/******************************************************************/
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
// NOTE
|
|
|
|
//
|
|
|
|
// ContentEventHandler *creates* ranges as following rules:
|
|
|
|
// 1. Start of range:
|
|
|
|
// 1.1. Cases: [textNode or text[Node or textNode[
|
|
|
|
// When text node is start of a range, start node is the text node and
|
|
|
|
// start offset is any number between 0 and the length of the text.
|
2015-12-02 04:20:00 +00:00
|
|
|
// 1.2. Case: [<element>:
|
|
|
|
// When start of an element node is start of a range, start node is
|
|
|
|
// parent of the element and start offset is the element's index in the
|
|
|
|
// parent.
|
2015-12-02 04:20:00 +00:00
|
|
|
// 1.3. Case: <element/>[
|
|
|
|
// When after an empty element node is start of a range, start node is
|
|
|
|
// parent of the element and start offset is the element's index in the
|
|
|
|
// parent + 1.
|
|
|
|
// 1.4. Case: <element>[
|
|
|
|
// When start of a non-empty element is start of a range, start node is
|
|
|
|
// the element and start offset is 0.
|
2015-12-02 04:20:01 +00:00
|
|
|
// 1.5. Case: <root>[
|
|
|
|
// When start of a range is 0 and there are no nodes causing text,
|
|
|
|
// start node is the root node and start offset is 0.
|
|
|
|
// 1.6. Case: [</root>
|
2015-12-02 04:20:00 +00:00
|
|
|
// When start of a range is out of bounds, start node is the root node
|
|
|
|
// and start offset is number of the children.
|
|
|
|
// 2. End of range:
|
|
|
|
// 2.1. Cases: ]textNode or text]Node or textNode]
|
|
|
|
// When a text node is end of a range, end node is the text node and
|
|
|
|
// end offset is any number between 0 and the length of the text.
|
|
|
|
// 2.2. Case: ]<element>
|
|
|
|
// When before an element node (meaning before the open tag of the
|
|
|
|
// element) is end of a range, end node is previous node causing text.
|
|
|
|
// Note that this case shouldn't be handled directly. If rule 2.1 and
|
|
|
|
// 2.3 are handled correctly, the loop with nsContentIterator shouldn't
|
|
|
|
// reach the element node since the loop should've finished already at
|
|
|
|
// handling the last node which caused some text.
|
2015-12-02 04:20:00 +00:00
|
|
|
// 2.3. Case: <element>]
|
|
|
|
// When a line break is caused before a non-empty element node and it's
|
|
|
|
// end of a range, end node is the element and end offset is 0.
|
|
|
|
// (i.e., including open tag of the element)
|
|
|
|
// 2.4. Cases: <element/>]
|
|
|
|
// When after an empty element node is end of a range, end node is
|
|
|
|
// parent of the element node and end offset is the element's index in
|
|
|
|
// the parent + 1. (i.e., including close tag of the element or empty
|
|
|
|
// element)
|
|
|
|
// 2.5. Case: ]</root>
|
2015-12-02 04:20:00 +00:00
|
|
|
// When end of a range is out of bounds, end node is the root node and
|
|
|
|
// end offset is number of the children.
|
|
|
|
//
|
|
|
|
// ContentEventHandler *treats* ranges as following additional rules:
|
|
|
|
// 1. When the start node is an element node which doesn't have children,
|
|
|
|
// it includes a line break caused before itself (i.e., includes its open
|
|
|
|
// tag). For example, if start position is { <br>, 0 }, the line break
|
|
|
|
// caused by <br> should be included into the flatten text.
|
|
|
|
// 2. When the end node is an element node which doesn't have children,
|
|
|
|
// it includes the end (i.e., includes its close tag except empty element).
|
|
|
|
// Although, currently, any close tags don't cause line break, this also
|
|
|
|
// includes its open tag. For example, if end position is { <br>, 0 }, the
|
|
|
|
// line break caused by the <br> should be included into the flatten text.
|
|
|
|
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::ContentEventHandler(nsPresContext* aPresContext)
|
|
|
|
: mPresContext(aPresContext)
|
|
|
|
, mPresShell(aPresContext->GetPresShell())
|
|
|
|
, mSelection(nullptr)
|
|
|
|
, mFirstSelectedRange(nullptr)
|
|
|
|
, mRootContent(nullptr)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-04-30 16:55:40 +00:00
|
|
|
ContentEventHandler::InitBasic()
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_TRUE(mPresShell, NS_ERROR_NOT_AVAILABLE);
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2009-04-03 07:26:28 +00:00
|
|
|
// If text frame which has overflowing selection underline is dirty,
|
|
|
|
// we need to flush the pending reflow here.
|
2010-03-20 21:54:19 +00:00
|
|
|
mPresShell->FlushPendingNotifications(Flush_Layout);
|
2009-04-03 07:26:28 +00:00
|
|
|
|
2010-08-05 14:42:02 +00:00
|
|
|
// Flushing notifications can cause mPresShell to be destroyed (bug 577963).
|
|
|
|
NS_ENSURE_TRUE(!mPresShell->IsDestroying(), NS_ERROR_FAILURE);
|
|
|
|
|
2014-04-30 16:55:40 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ContentEventHandler::InitCommon()
|
|
|
|
{
|
|
|
|
if (mSelection) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv = InitBasic();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-07-01 15:41:17 +00:00
|
|
|
nsCOMPtr<nsISelection> sel;
|
2010-03-19 18:32:13 +00:00
|
|
|
nsCopySupport::GetSelectionForCopy(mPresShell->GetDocument(),
|
2015-07-01 15:41:17 +00:00
|
|
|
getter_AddRefs(sel));
|
|
|
|
mSelection = static_cast<Selection*>(sel.get());
|
|
|
|
if (NS_WARN_IF(!mSelection)) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
2009-03-18 02:04:01 +00:00
|
|
|
|
2015-07-03 04:20:28 +00:00
|
|
|
if (!mSelection->RangeCount()) {
|
|
|
|
// If there is no selection range, we should compute the selection root
|
|
|
|
// from ancestor limiter or root content of the document.
|
|
|
|
rv = mSelection->GetAncestorLimiter(getter_AddRefs(mRootContent));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
if (!mRootContent) {
|
|
|
|
mRootContent = mPresShell->GetDocument()->GetRootElement();
|
|
|
|
if (NS_WARN_IF(!mRootContent)) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Assume that there is selection at beginning of the root content.
|
|
|
|
rv = nsRange::CreateRange(mRootContent, 0, mRootContent, 0,
|
|
|
|
getter_AddRefs(mFirstSelectedRange));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv)) || NS_WARN_IF(!mFirstSelectedRange)) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-07-03 04:20:28 +00:00
|
|
|
|
2015-07-01 15:41:17 +00:00
|
|
|
mFirstSelectedRange = mSelection->GetRangeAt(0);
|
2015-07-03 04:20:28 +00:00
|
|
|
if (NS_WARN_IF(!mFirstSelectedRange)) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-07-03 04:20:28 +00:00
|
|
|
// If there is a selection, we should retrieve the selection root from
|
|
|
|
// the range since when the window is inactivated, the ancestor limiter
|
|
|
|
// of mSelection was cleared by blur event handler of nsEditor but the
|
|
|
|
// selection range still keeps storing the nodes. If the active element of
|
|
|
|
// the deactive window is <input> or <textarea>, we can compute the selection
|
|
|
|
// root from them.
|
2008-02-20 07:40:04 +00:00
|
|
|
nsINode* startNode = mFirstSelectedRange->GetStartParent();
|
|
|
|
NS_ENSURE_TRUE(startNode, NS_ERROR_FAILURE);
|
2010-01-06 05:55:54 +00:00
|
|
|
nsINode* endNode = mFirstSelectedRange->GetEndParent();
|
|
|
|
NS_ENSURE_TRUE(endNode, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// See bug 537041 comment 5, the range could have removed node.
|
|
|
|
NS_ENSURE_TRUE(startNode->GetCurrentDoc() == mPresShell->GetDocument(),
|
|
|
|
NS_ERROR_NOT_AVAILABLE);
|
|
|
|
NS_ASSERTION(startNode->GetCurrentDoc() == endNode->GetCurrentDoc(),
|
|
|
|
"mFirstSelectedRange crosses the document boundary");
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
mRootContent = startNode->GetSelectionRootContent(mPresShell);
|
|
|
|
NS_ENSURE_TRUE(mRootContent, NS_ERROR_FAILURE);
|
2010-03-19 05:02:53 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::Init(WidgetQueryContentEvent* aEvent)
|
2010-03-19 05:02:53 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aEvent, "aEvent must not be null");
|
|
|
|
|
|
|
|
nsresult rv = InitCommon();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = false;
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
aEvent->mReply.mContentsRoot = mRootContent.get();
|
|
|
|
|
2015-07-01 15:41:17 +00:00
|
|
|
aEvent->mReply.mHasSelection = !mSelection->IsCollapsed();
|
2010-03-19 05:02:53 +00:00
|
|
|
|
2008-08-11 08:27:59 +00:00
|
|
|
nsRect r;
|
2014-08-06 05:19:26 +00:00
|
|
|
nsIFrame* frame = nsCaret::GetGeometry(mSelection, &r);
|
2015-07-01 15:41:17 +00:00
|
|
|
if (!frame) {
|
|
|
|
frame = mRootContent->GetPrimaryFrame();
|
|
|
|
if (NS_WARN_IF(!frame)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
2010-07-02 19:11:04 +00:00
|
|
|
aEvent->mReply.mFocusedWidget = frame->GetNearestWidget();
|
2008-08-11 08:27:59 +00:00
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-03-19 05:02:53 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::Init(WidgetSelectionEvent* aEvent)
|
2010-03-19 05:02:53 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aEvent, "aEvent must not be null");
|
|
|
|
|
|
|
|
nsresult rv = InitCommon();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = false;
|
2010-03-19 05:02:53 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-12-18 01:43:11 +00:00
|
|
|
nsIContent*
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::GetFocusedContent()
|
2013-12-18 01:43:11 +00:00
|
|
|
{
|
|
|
|
nsIDocument* doc = mPresShell->GetDocument();
|
|
|
|
if (!doc) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(doc->GetWindow());
|
|
|
|
nsCOMPtr<nsPIDOMWindow> focusedWindow;
|
|
|
|
return nsFocusManager::GetFocusedDescendant(window, true,
|
|
|
|
getter_AddRefs(focusedWindow));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::IsPlugin(nsIContent* aContent)
|
2013-12-18 01:43:11 +00:00
|
|
|
{
|
|
|
|
return aContent &&
|
|
|
|
aContent->GetDesiredIMEState().mEnabled == IMEState::PLUGIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::QueryContentRect(nsIContent* aContent,
|
|
|
|
WidgetQueryContentEvent* aEvent)
|
2013-12-18 01:43:11 +00:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aContent, "aContent must not be null");
|
|
|
|
|
|
|
|
nsIFrame* frame = aContent->GetPrimaryFrame();
|
|
|
|
NS_ENSURE_TRUE(frame, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// get rect for first frame
|
|
|
|
nsRect resultRect(nsPoint(0, 0), frame->GetRect().Size());
|
2015-10-05 05:46:39 +00:00
|
|
|
nsresult rv = ConvertToRootRelativeOffset(frame, resultRect);
|
2013-12-18 01:43:11 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// account for any additional frames
|
|
|
|
while ((frame = frame->GetNextContinuation()) != nullptr) {
|
|
|
|
nsRect frameRect(nsPoint(0, 0), frame->GetRect().Size());
|
2015-10-05 05:46:39 +00:00
|
|
|
rv = ConvertToRootRelativeOffset(frame, frameRect);
|
2013-12-18 01:43:11 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
resultRect.UnionRect(resultRect, frameRect);
|
|
|
|
}
|
|
|
|
|
2015-11-09 23:22:25 +00:00
|
|
|
aEvent->mReply.mRect = LayoutDeviceIntRect::FromUnknownRect(
|
2015-02-04 20:21:03 +00:00
|
|
|
resultRect.ToOutsidePixels(mPresContext->AppUnitsPerDevPixel()));
|
2013-12-18 01:43:11 +00:00
|
|
|
aEvent->mSucceeded = true;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// Editor places a bogus BR node under its root content if the editor doesn't
|
|
|
|
// have any text. This happens even for single line editors.
|
|
|
|
// When we get text content and when we change the selection,
|
|
|
|
// we don't want to include the bogus BRs at the end.
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool IsContentBR(nsIContent* aContent)
|
2009-02-10 20:56:51 +00:00
|
|
|
{
|
2015-03-03 11:09:00 +00:00
|
|
|
return aContent->IsHTMLElement(nsGkAtoms::br) &&
|
2009-02-10 20:56:51 +00:00
|
|
|
!aContent->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::type,
|
|
|
|
nsGkAtoms::moz,
|
|
|
|
eIgnoreCase) &&
|
|
|
|
!aContent->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsGkAtoms::mozeditorbogusnode,
|
|
|
|
nsGkAtoms::_true,
|
|
|
|
eIgnoreCase);
|
|
|
|
}
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
static void ConvertToNativeNewlines(nsAFlatString& aString)
|
|
|
|
{
|
2015-07-02 01:00:44 +00:00
|
|
|
#if defined(XP_WIN)
|
2008-02-20 07:40:04 +00:00
|
|
|
aString.ReplaceSubstring(NS_LITERAL_STRING("\n"), NS_LITERAL_STRING("\r\n"));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void AppendString(nsAString& aString, nsIContent* aContent)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aContent->IsNodeOfType(nsINode::eTEXT),
|
|
|
|
"aContent is not a text node!");
|
|
|
|
const nsTextFragment* text = aContent->GetText();
|
2014-03-11 05:08:02 +00:00
|
|
|
if (!text) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
text->AppendTo(aString);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void AppendSubString(nsAString& aString, nsIContent* aContent,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aXPOffset, uint32_t aXPLength)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aContent->IsNodeOfType(nsINode::eTEXT),
|
|
|
|
"aContent is not a text node!");
|
|
|
|
const nsTextFragment* text = aContent->GetText();
|
2014-03-11 05:08:02 +00:00
|
|
|
if (!text) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2012-08-22 15:56:38 +00:00
|
|
|
text->AppendTo(aString, int32_t(aXPOffset), int32_t(aXPLength));
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2011-06-27 12:58:43 +00:00
|
|
|
#if defined(XP_WIN)
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t CountNewlinesInXPLength(nsIContent* aContent,
|
|
|
|
uint32_t aXPLength)
|
2011-06-27 12:58:43 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aContent->IsNodeOfType(nsINode::eTEXT),
|
|
|
|
"aContent is not a text node!");
|
|
|
|
const nsTextFragment* text = aContent->GetText();
|
2014-03-11 05:08:02 +00:00
|
|
|
if (!text) {
|
2011-06-27 12:58:43 +00:00
|
|
|
return 0;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2012-02-07 02:32:43 +00:00
|
|
|
// For automated tests, we should abort on debug build.
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(aXPLength == UINT32_MAX || aXPLength <= text->GetLength(),
|
|
|
|
"aXPLength is out-of-bounds");
|
2013-01-15 12:22:03 +00:00
|
|
|
const uint32_t length = std::min(aXPLength, text->GetLength());
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t newlines = 0;
|
|
|
|
for (uint32_t i = 0; i < length; ++i) {
|
2011-06-27 12:58:43 +00:00
|
|
|
if (text->CharAt(i) == '\n') {
|
|
|
|
++newlines;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newlines;
|
|
|
|
}
|
2012-01-31 02:37:26 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t CountNewlinesInNativeLength(nsIContent* aContent,
|
|
|
|
uint32_t aNativeLength)
|
2012-01-31 02:37:26 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aContent->IsNodeOfType(nsINode::eTEXT),
|
|
|
|
"aContent is not a text node!");
|
|
|
|
const nsTextFragment* text = aContent->GetText();
|
|
|
|
if (!text) {
|
|
|
|
return 0;
|
|
|
|
}
|
2012-02-07 02:32:43 +00:00
|
|
|
// For automated tests, we should abort on debug build.
|
2014-04-25 23:52:12 +00:00
|
|
|
MOZ_ASSERT(
|
2012-09-28 06:57:33 +00:00
|
|
|
(aNativeLength == UINT32_MAX || aNativeLength <= text->GetLength() * 2),
|
2012-02-07 02:32:43 +00:00
|
|
|
"aNativeLength is unexpected value");
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint32_t xpLength = text->GetLength();
|
|
|
|
uint32_t newlines = 0;
|
|
|
|
for (uint32_t i = 0, nativeOffset = 0;
|
2012-01-31 02:37:26 +00:00
|
|
|
i < xpLength && nativeOffset < aNativeLength;
|
|
|
|
++i, ++nativeOffset) {
|
2012-02-07 02:32:43 +00:00
|
|
|
// For automated tests, we should abort on debug build.
|
2015-02-09 22:34:50 +00:00
|
|
|
MOZ_ASSERT(i < text->GetLength(), "i is out-of-bounds");
|
2012-01-31 02:37:26 +00:00
|
|
|
if (text->CharAt(i) == '\n') {
|
|
|
|
++newlines;
|
|
|
|
++nativeOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return newlines;
|
|
|
|
}
|
2011-06-27 12:58:43 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-31 04:38:01 +00:00
|
|
|
/* static */ uint32_t
|
|
|
|
ContentEventHandler::GetNativeTextLength(nsIContent* aContent,
|
|
|
|
uint32_t aStartOffset,
|
|
|
|
uint32_t aEndOffset)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aEndOffset >= aStartOffset,
|
|
|
|
"aEndOffset must be equals or larger than aStartOffset");
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!aContent->IsNodeOfType(nsINode::eTEXT))) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-07-31 04:38:01 +00:00
|
|
|
if (aStartOffset == aEndOffset) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return GetTextLength(aContent, LINE_BREAK_TYPE_NATIVE, aEndOffset) -
|
|
|
|
GetTextLength(aContent, LINE_BREAK_TYPE_NATIVE, aStartOffset);
|
|
|
|
}
|
|
|
|
|
2012-12-05 16:09:56 +00:00
|
|
|
/* static */ uint32_t
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::GetNativeTextLength(nsIContent* aContent,
|
|
|
|
uint32_t aMaxLength)
|
2014-04-25 23:52:12 +00:00
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!aContent->IsNodeOfType(nsINode::eTEXT))) {
|
|
|
|
return 0;
|
|
|
|
}
|
2014-04-25 23:52:12 +00:00
|
|
|
return GetTextLength(aContent, LINE_BREAK_TYPE_NATIVE, aMaxLength);
|
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
/* static */ uint32_t
|
2015-12-02 04:20:00 +00:00
|
|
|
ContentEventHandler::GetNativeTextLengthBefore(nsIContent* aContent,
|
|
|
|
nsINode* aRootNode)
|
2015-12-02 04:20:00 +00:00
|
|
|
{
|
|
|
|
if (NS_WARN_IF(aContent->IsNodeOfType(nsINode::eTEXT))) {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
return ShouldBreakLineBefore(aContent, aRootNode) ?
|
|
|
|
GetBRLength(LINE_BREAK_TYPE_NATIVE) : 0;
|
2015-12-02 04:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static inline */ uint32_t
|
|
|
|
ContentEventHandler::GetBRLength(LineBreakType aLineBreakType)
|
2015-01-31 07:17:12 +00:00
|
|
|
{
|
|
|
|
#if defined(XP_WIN)
|
|
|
|
// Length of \r\n
|
|
|
|
return (aLineBreakType == LINE_BREAK_TYPE_NATIVE) ? 2 : 1;
|
|
|
|
#else
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
/* static */ uint32_t
|
|
|
|
ContentEventHandler::GetTextLength(nsIContent* aContent,
|
|
|
|
LineBreakType aLineBreakType,
|
|
|
|
uint32_t aMaxLength)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
MOZ_ASSERT(aContent->IsNodeOfType(nsINode::eTEXT));
|
|
|
|
|
|
|
|
uint32_t textLengthDifference =
|
2015-07-02 01:00:44 +00:00
|
|
|
#if defined(XP_WIN)
|
2015-12-02 04:20:00 +00:00
|
|
|
// On Windows, the length of a native newline ("\r\n") is twice the length
|
|
|
|
// of the XP newline ("\n"), so XP length is equal to the length of the
|
|
|
|
// native offset plus the number of newlines encountered in the string.
|
|
|
|
(aLineBreakType == LINE_BREAK_TYPE_NATIVE) ?
|
|
|
|
CountNewlinesInXPLength(aContent, aMaxLength) : 0;
|
2011-06-27 12:58:43 +00:00
|
|
|
#else
|
2015-12-02 04:20:00 +00:00
|
|
|
// On other platforms, the native and XP newlines are the same.
|
|
|
|
0;
|
2011-06-27 12:58:43 +00:00
|
|
|
#endif
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
const nsTextFragment* text = aContent->GetText();
|
|
|
|
if (!text) {
|
|
|
|
return 0;
|
2011-06-27 12:58:43 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
uint32_t length = std::min(text->GetLength(), aMaxLength);
|
|
|
|
return length + textLengthDifference;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
static uint32_t ConvertToXPOffset(nsIContent* aContent, uint32_t aNativeOffset)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2015-07-02 01:00:44 +00:00
|
|
|
#if defined(XP_WIN)
|
2011-06-27 12:58:43 +00:00
|
|
|
// On Windows, the length of a native newline ("\r\n") is twice the length of
|
|
|
|
// the XP newline ("\n"), so XP offset is equal to the length of the native
|
|
|
|
// offset minus the number of newlines encountered in the string.
|
2012-01-31 02:37:26 +00:00
|
|
|
return aNativeOffset - CountNewlinesInNativeLength(aContent, aNativeOffset);
|
2011-06-27 12:58:43 +00:00
|
|
|
#else
|
|
|
|
// On other platforms, the native and XP newlines are the same.
|
|
|
|
return aNativeOffset;
|
|
|
|
#endif
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
/* static */ bool
|
|
|
|
ContentEventHandler::ShouldBreakLineBefore(nsIContent* aContent,
|
|
|
|
nsINode* aRootNode)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
// We don't need to append linebreak at the start of the root element.
|
|
|
|
if (aContent == aRootNode) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If it's not an HTML element (including other markup language's elements),
|
|
|
|
// we shouldn't insert like break before that for now. Becoming this is a
|
|
|
|
// problem must be edge case. E.g., when ContentEventHandler is used with
|
|
|
|
// MathML or SVG elements.
|
|
|
|
if (!aContent->IsHTMLElement()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the element is <br>, we need to check if the <br> is caused by web
|
|
|
|
// content. Otherwise, i.e., it's caused by internal reason of Gecko,
|
|
|
|
// it shouldn't be exposed as a line break to flatten text.
|
|
|
|
if (aContent->IsHTMLElement(nsGkAtoms::br)) {
|
|
|
|
return IsContentBR(aContent);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Note that ideally, we should refer the style of the primary frame of
|
|
|
|
// aContent for deciding if it's an inline. However, it's difficult
|
|
|
|
// IMEContentObserver to notify IME of text change caused by style change.
|
|
|
|
// Therefore, currently, we should check only from the tag for now.
|
2015-12-02 04:20:01 +00:00
|
|
|
if (aContent->IsAnyOfHTMLElements(nsGkAtoms::a,
|
|
|
|
nsGkAtoms::abbr,
|
|
|
|
nsGkAtoms::acronym,
|
|
|
|
nsGkAtoms::b,
|
|
|
|
nsGkAtoms::bdi,
|
|
|
|
nsGkAtoms::bdo,
|
|
|
|
nsGkAtoms::big,
|
|
|
|
nsGkAtoms::cite,
|
|
|
|
nsGkAtoms::code,
|
|
|
|
nsGkAtoms::data,
|
|
|
|
nsGkAtoms::del,
|
|
|
|
nsGkAtoms::dfn,
|
|
|
|
nsGkAtoms::em,
|
|
|
|
nsGkAtoms::font,
|
|
|
|
nsGkAtoms::i,
|
|
|
|
nsGkAtoms::ins,
|
|
|
|
nsGkAtoms::kbd,
|
|
|
|
nsGkAtoms::mark,
|
|
|
|
nsGkAtoms::s,
|
|
|
|
nsGkAtoms::samp,
|
|
|
|
nsGkAtoms::small,
|
|
|
|
nsGkAtoms::span,
|
|
|
|
nsGkAtoms::strike,
|
|
|
|
nsGkAtoms::strong,
|
|
|
|
nsGkAtoms::sub,
|
|
|
|
nsGkAtoms::sup,
|
|
|
|
nsGkAtoms::time,
|
|
|
|
nsGkAtoms::tt,
|
|
|
|
nsGkAtoms::u,
|
|
|
|
nsGkAtoms::var)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the element is unknown element, we shouldn't insert line breaks before
|
|
|
|
// it since unknown elements should be ignored.
|
|
|
|
RefPtr<HTMLUnknownElement> unknownHTMLElement = do_QueryObject(aContent);
|
|
|
|
return !unknownHTMLElement;
|
2015-12-02 04:20:00 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
nsresult
|
|
|
|
ContentEventHandler::GenerateFlatTextContent(nsRange* aRange,
|
|
|
|
nsAFlatString& aString,
|
|
|
|
LineBreakType aLineBreakType)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aString.IsEmpty(), "aString must be empty string");
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (aRange->Collapsed()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
nsINode* startNode = aRange->GetStartParent();
|
|
|
|
nsINode* endNode = aRange->GetEndParent();
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!startNode) || NS_WARN_IF(!endNode)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
if (startNode == endNode && startNode->IsNodeOfType(nsINode::eTEXT)) {
|
2015-12-02 04:20:00 +00:00
|
|
|
nsIContent* content = startNode->AsContent();
|
2008-02-20 07:40:04 +00:00
|
|
|
AppendSubString(aString, content, aRange->StartOffset(),
|
|
|
|
aRange->EndOffset() - aRange->StartOffset());
|
|
|
|
ConvertToNativeNewlines(aString);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
nsCOMPtr<nsIContentIterator> iter = NS_NewPreContentIterator();
|
2015-12-02 04:20:00 +00:00
|
|
|
nsresult rv = iter->Init(aRange);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
for (; !iter->IsDone(); iter->Next()) {
|
2008-10-15 09:40:28 +00:00
|
|
|
nsINode* node = iter->GetCurrentNode();
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!node)) {
|
2012-05-23 02:05:27 +00:00
|
|
|
break;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
if (!node->IsContent()) {
|
2008-02-20 07:40:04 +00:00
|
|
|
continue;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
nsIContent* content = node->AsContent();
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
if (content->IsNodeOfType(nsINode::eTEXT)) {
|
2014-03-11 05:08:02 +00:00
|
|
|
if (content == startNode) {
|
2008-02-20 07:40:04 +00:00
|
|
|
AppendSubString(aString, content, aRange->StartOffset(),
|
|
|
|
content->TextLength() - aRange->StartOffset());
|
2014-03-11 05:08:02 +00:00
|
|
|
} else if (content == endNode) {
|
2008-02-20 07:40:04 +00:00
|
|
|
AppendSubString(aString, content, 0, aRange->EndOffset());
|
2014-03-11 05:08:02 +00:00
|
|
|
} else {
|
2008-02-20 07:40:04 +00:00
|
|
|
AppendString(aString, content);
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
} else if (ShouldBreakLineBefore(content, mRootContent)) {
|
2014-03-11 05:08:02 +00:00
|
|
|
aString.Append(char16_t('\n'));
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
2014-04-25 23:52:12 +00:00
|
|
|
if (aLineBreakType == LINE_BREAK_TYPE_NATIVE) {
|
|
|
|
ConvertToNativeNewlines(aString);
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-31 07:17:12 +00:00
|
|
|
static FontRange*
|
|
|
|
AppendFontRange(nsTArray<FontRange>& aFontRanges, uint32_t aBaseOffset)
|
|
|
|
{
|
|
|
|
FontRange* fontRange = aFontRanges.AppendElement();
|
|
|
|
fontRange->mStartOffset = aBaseOffset;
|
|
|
|
return fontRange;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ uint32_t
|
|
|
|
ContentEventHandler::GetTextLengthInRange(nsIContent* aContent,
|
|
|
|
uint32_t aXPStartOffset,
|
|
|
|
uint32_t aXPEndOffset,
|
|
|
|
LineBreakType aLineBreakType)
|
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
MOZ_ASSERT(aContent->IsNodeOfType(nsINode::eTEXT));
|
|
|
|
|
2015-01-31 07:17:12 +00:00
|
|
|
return aLineBreakType == LINE_BREAK_TYPE_NATIVE ?
|
|
|
|
GetNativeTextLength(aContent, aXPStartOffset, aXPEndOffset) :
|
|
|
|
aXPEndOffset - aXPStartOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
ContentEventHandler::AppendFontRanges(FontRangeArray& aFontRanges,
|
|
|
|
nsIContent* aContent,
|
|
|
|
int32_t aBaseOffset,
|
|
|
|
int32_t aXPStartOffset,
|
|
|
|
int32_t aXPEndOffset,
|
|
|
|
LineBreakType aLineBreakType)
|
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
MOZ_ASSERT(aContent->IsNodeOfType(nsINode::eTEXT));
|
|
|
|
|
2015-01-31 07:17:12 +00:00
|
|
|
nsIFrame* frame = aContent->GetPrimaryFrame();
|
|
|
|
if (!frame) {
|
|
|
|
// It is a non-rendered content, create an empty range for it.
|
|
|
|
AppendFontRange(aFontRanges, aBaseOffset);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t baseOffset = aBaseOffset;
|
|
|
|
nsTextFrame* curr = do_QueryFrame(frame);
|
|
|
|
MOZ_ASSERT(curr, "Not a text frame");
|
|
|
|
while (curr) {
|
|
|
|
int32_t frameXPStart = std::max(curr->GetContentOffset(), aXPStartOffset);
|
|
|
|
int32_t frameXPEnd = std::min(curr->GetContentEnd(), aXPEndOffset);
|
|
|
|
if (frameXPStart >= frameXPEnd) {
|
|
|
|
curr = static_cast<nsTextFrame*>(curr->GetNextContinuation());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxSkipCharsIterator iter = curr->EnsureTextRun(nsTextFrame::eInflated);
|
|
|
|
gfxTextRun* textRun = curr->GetTextRun(nsTextFrame::eInflated);
|
|
|
|
|
|
|
|
nsTextFrame* next = nullptr;
|
|
|
|
if (frameXPEnd < aXPEndOffset) {
|
|
|
|
next = static_cast<nsTextFrame*>(curr->GetNextContinuation());
|
|
|
|
while (next && next->GetTextRun(nsTextFrame::eInflated) == textRun) {
|
|
|
|
frameXPEnd = std::min(next->GetContentEnd(), aXPEndOffset);
|
|
|
|
next = frameXPEnd < aXPEndOffset ?
|
|
|
|
static_cast<nsTextFrame*>(next->GetNextContinuation()) : nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t skipStart = iter.ConvertOriginalToSkipped(frameXPStart);
|
|
|
|
uint32_t skipEnd = iter.ConvertOriginalToSkipped(frameXPEnd);
|
|
|
|
gfxTextRun::GlyphRunIterator runIter(
|
|
|
|
textRun, skipStart, skipEnd - skipStart);
|
|
|
|
int32_t lastXPEndOffset = frameXPStart;
|
|
|
|
while (runIter.NextRun()) {
|
|
|
|
gfxFont* font = runIter.GetGlyphRun()->mFont.get();
|
|
|
|
int32_t startXPOffset =
|
|
|
|
iter.ConvertSkippedToOriginal(runIter.GetStringStart());
|
|
|
|
// It is possible that the first glyph run has exceeded the frame,
|
|
|
|
// because the whole frame is filled by skipped chars.
|
|
|
|
if (startXPOffset >= frameXPEnd) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (startXPOffset > lastXPEndOffset) {
|
|
|
|
// Create range for skipped leading chars.
|
|
|
|
AppendFontRange(aFontRanges, baseOffset);
|
|
|
|
baseOffset += GetTextLengthInRange(
|
|
|
|
aContent, lastXPEndOffset, startXPOffset, aLineBreakType);
|
|
|
|
lastXPEndOffset = startXPOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
FontRange* fontRange = AppendFontRange(aFontRanges, baseOffset);
|
|
|
|
fontRange->mFontName = font->GetName();
|
|
|
|
fontRange->mFontSize = font->GetAdjustedSize();
|
|
|
|
|
|
|
|
// The converted original offset may exceed the range,
|
|
|
|
// hence we need to clamp it.
|
|
|
|
int32_t endXPOffset =
|
|
|
|
iter.ConvertSkippedToOriginal(runIter.GetStringEnd());
|
|
|
|
endXPOffset = std::min(frameXPEnd, endXPOffset);
|
|
|
|
baseOffset += GetTextLengthInRange(aContent, startXPOffset, endXPOffset,
|
|
|
|
aLineBreakType);
|
|
|
|
lastXPEndOffset = endXPOffset;
|
|
|
|
}
|
|
|
|
if (lastXPEndOffset < frameXPEnd) {
|
|
|
|
// Create range for skipped trailing chars. It also handles case
|
|
|
|
// that the whole frame contains only skipped chars.
|
|
|
|
AppendFontRange(aFontRanges, baseOffset);
|
|
|
|
baseOffset += GetTextLengthInRange(
|
|
|
|
aContent, lastXPEndOffset, frameXPEnd, aLineBreakType);
|
|
|
|
}
|
|
|
|
|
|
|
|
curr = next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
nsresult
|
2015-01-31 07:17:12 +00:00
|
|
|
ContentEventHandler::GenerateFlatFontRanges(nsRange* aRange,
|
|
|
|
FontRangeArray& aFontRanges,
|
|
|
|
uint32_t& aLength,
|
|
|
|
LineBreakType aLineBreakType)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aFontRanges.IsEmpty(), "aRanges must be empty array");
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (aRange->Collapsed()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-01-31 07:17:12 +00:00
|
|
|
nsINode* startNode = aRange->GetStartParent();
|
|
|
|
nsINode* endNode = aRange->GetEndParent();
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!startNode) || NS_WARN_IF(!endNode)) {
|
2015-01-31 07:17:12 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// baseOffset is the flattened offset of each content node.
|
|
|
|
int32_t baseOffset = 0;
|
2015-12-02 04:20:00 +00:00
|
|
|
nsCOMPtr<nsIContentIterator> iter = NS_NewPreContentIterator();
|
2015-12-02 04:20:00 +00:00
|
|
|
nsresult rv = iter->Init(aRange);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
for (; !iter->IsDone(); iter->Next()) {
|
2015-01-31 07:17:12 +00:00
|
|
|
nsINode* node = iter->GetCurrentNode();
|
|
|
|
if (NS_WARN_IF(!node)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!node->IsContent()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
nsIContent* content = node->AsContent();
|
|
|
|
|
|
|
|
if (content->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
int32_t startOffset = content != startNode ? 0 : aRange->StartOffset();
|
|
|
|
int32_t endOffset = content != endNode ?
|
|
|
|
content->TextLength() : aRange->EndOffset();
|
|
|
|
AppendFontRanges(aFontRanges, content, baseOffset,
|
|
|
|
startOffset, endOffset, aLineBreakType);
|
|
|
|
baseOffset += GetTextLengthInRange(content, startOffset, endOffset,
|
|
|
|
aLineBreakType);
|
2015-12-02 04:20:00 +00:00
|
|
|
} else if (ShouldBreakLineBefore(content, mRootContent)) {
|
2015-01-31 07:17:12 +00:00
|
|
|
if (aFontRanges.IsEmpty()) {
|
|
|
|
MOZ_ASSERT(baseOffset == 0);
|
|
|
|
FontRange* fontRange = AppendFontRange(aFontRanges, baseOffset);
|
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
|
|
|
if (frame) {
|
|
|
|
const nsFont& font = frame->GetParent()->StyleFont()->mFont;
|
|
|
|
const FontFamilyList& fontList = font.fontlist;
|
|
|
|
const FontFamilyName& fontName = fontList.IsEmpty() ?
|
|
|
|
FontFamilyName(fontList.GetDefaultFontType()) :
|
|
|
|
fontList.GetFontlist()[0];
|
|
|
|
fontName.AppendToString(fontRange->mFontName, false);
|
|
|
|
fontRange->mFontSize =
|
|
|
|
frame->PresContext()->AppUnitsToDevPixels(font.size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
baseOffset += GetBRLength(aLineBreakType);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aLength = baseOffset;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::ExpandToClusterBoundary(nsIContent* aContent,
|
|
|
|
bool aForward,
|
|
|
|
uint32_t* aXPOffset)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
// XXX This method assumes that the frame boundaries must be cluster
|
|
|
|
// boundaries. It's false, but no problem now, maybe.
|
|
|
|
if (!aContent->IsNodeOfType(nsINode::eTEXT) ||
|
2014-03-11 05:08:02 +00:00
|
|
|
*aXPOffset == 0 || *aXPOffset == aContent->TextLength()) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
2012-04-19 17:38:00 +00:00
|
|
|
NS_ASSERTION(*aXPOffset <= aContent->TextLength(),
|
2009-02-10 20:56:51 +00:00
|
|
|
"offset is out of range.");
|
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsFrameSelection> fs = mPresShell->FrameSelection();
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t offsetInFrame;
|
2014-08-06 05:19:27 +00:00
|
|
|
CaretAssociationHint hint =
|
|
|
|
aForward ? CARET_ASSOCIATE_BEFORE : CARET_ASSOCIATE_AFTER;
|
2012-08-22 15:56:38 +00:00
|
|
|
nsIFrame* frame = fs->GetFrameForNodeOffset(aContent, int32_t(*aXPOffset),
|
2008-02-20 07:40:04 +00:00
|
|
|
hint, &offsetInFrame);
|
|
|
|
if (!frame) {
|
|
|
|
// This content doesn't have any frames, we only can check surrogate pair...
|
|
|
|
const nsTextFragment* text = aContent->GetText();
|
|
|
|
NS_ENSURE_TRUE(text, NS_ERROR_FAILURE);
|
|
|
|
if (NS_IS_LOW_SURROGATE(text->CharAt(*aXPOffset)) &&
|
2014-03-11 05:08:02 +00:00
|
|
|
NS_IS_HIGH_SURROGATE(text->CharAt(*aXPOffset - 1))) {
|
2008-02-20 07:40:04 +00:00
|
|
|
*aXPOffset += aForward ? 1 : -1;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t startOffset, endOffset;
|
2008-02-20 07:40:04 +00:00
|
|
|
nsresult rv = frame->GetOffsets(startOffset, endOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (*aXPOffset == static_cast<uint32_t>(startOffset) ||
|
|
|
|
*aXPOffset == static_cast<uint32_t>(endOffset)) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
|
|
|
if (frame->GetType() != nsGkAtoms::textFrame) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
nsTextFrame* textFrame = static_cast<nsTextFrame*>(frame);
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t newOffsetInFrame = *aXPOffset - startOffset;
|
2008-02-20 07:40:04 +00:00
|
|
|
newOffsetInFrame += aForward ? -1 : 1;
|
|
|
|
textFrame->PeekOffsetCharacter(aForward, &newOffsetInFrame);
|
|
|
|
*aXPOffset = startOffset + newOffsetInFrame;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::SetRangeFromFlatTextOffset(nsRange* aRange,
|
2014-04-25 23:52:13 +00:00
|
|
|
uint32_t aOffset,
|
|
|
|
uint32_t aLength,
|
2014-04-25 23:52:12 +00:00
|
|
|
LineBreakType aLineBreakType,
|
2014-03-11 05:08:02 +00:00
|
|
|
bool aExpandToClusterBoundaries,
|
2014-04-25 23:52:13 +00:00
|
|
|
uint32_t* aNewOffset)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2014-04-25 23:52:13 +00:00
|
|
|
if (aNewOffset) {
|
|
|
|
*aNewOffset = aOffset;
|
2013-07-11 07:46:35 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
// Special case like <br contenteditable>
|
|
|
|
if (!mRootContent->HasChildren()) {
|
|
|
|
nsresult rv = aRange->SetStart(mRootContent, 0);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
rv = aRange->SetEnd(mRootContent, 0);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-05 16:09:55 +00:00
|
|
|
nsCOMPtr<nsIContentIterator> iter = NS_NewPreContentIterator();
|
2012-06-10 23:44:50 +00:00
|
|
|
nsresult rv = iter->Init(mRootContent);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2014-04-25 23:52:13 +00:00
|
|
|
uint32_t offset = 0;
|
|
|
|
uint32_t endOffset = aOffset + aLength;
|
2012-10-19 18:45:54 +00:00
|
|
|
bool startSet = false;
|
2008-02-20 07:40:04 +00:00
|
|
|
for (; !iter->IsDone(); iter->Next()) {
|
2008-10-15 09:40:28 +00:00
|
|
|
nsINode* node = iter->GetCurrentNode();
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!node)) {
|
2012-05-23 02:05:27 +00:00
|
|
|
break;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
// FYI: mRootContent shouldn't cause any text. So, we can skip it simply.
|
|
|
|
if (node == mRootContent || !node->IsContent()) {
|
2008-02-20 07:40:04 +00:00
|
|
|
continue;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
nsIContent* content = node->AsContent();
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
uint32_t textLength =
|
|
|
|
content->IsNodeOfType(nsINode::eTEXT) ?
|
|
|
|
GetTextLength(content, aLineBreakType) :
|
2015-12-02 04:20:00 +00:00
|
|
|
(ShouldBreakLineBefore(content, mRootContent) ?
|
|
|
|
GetBRLength(aLineBreakType) : 0);
|
2014-04-25 23:52:13 +00:00
|
|
|
if (!textLength) {
|
2008-02-20 07:40:04 +00:00
|
|
|
continue;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
// When the start offset is in between accumulated offset and the last
|
|
|
|
// offset of the node, the node is the start node of the range.
|
|
|
|
if (!startSet && aOffset <= offset + textLength) {
|
|
|
|
nsINode* startNode = nullptr;
|
|
|
|
int32_t startNodeOffset = -1;
|
|
|
|
if (content->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
// Rule #1.1: [textNode or text[Node or textNode[
|
|
|
|
uint32_t xpOffset = aOffset - offset;
|
2014-04-25 23:52:12 +00:00
|
|
|
if (aLineBreakType == LINE_BREAK_TYPE_NATIVE) {
|
|
|
|
xpOffset = ConvertToXPOffset(content, xpOffset);
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (aExpandToClusterBoundaries) {
|
|
|
|
uint32_t oldXPOffset = xpOffset;
|
|
|
|
rv = ExpandToClusterBoundary(content, false, &xpOffset);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if (aNewOffset) {
|
|
|
|
// This is correct since a cluster shouldn't include line break.
|
|
|
|
*aNewOffset -= (oldXPOffset - xpOffset);
|
|
|
|
}
|
2013-07-11 07:46:35 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
startNode = content;
|
|
|
|
startNodeOffset = static_cast<int32_t>(xpOffset);
|
|
|
|
} else if (aOffset < offset + textLength) {
|
|
|
|
// Rule #1.2 [<element>
|
|
|
|
startNode = content->GetParent();
|
|
|
|
if (NS_WARN_IF(!startNode)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
startNodeOffset = startNode->IndexOf(content);
|
|
|
|
if (NS_WARN_IF(startNodeOffset == -1)) {
|
|
|
|
// The content is being removed from the parent!
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
} else if (!content->HasChildren()) {
|
|
|
|
// Rule #1.3: <element/>[
|
|
|
|
startNode = content->GetParent();
|
|
|
|
if (NS_WARN_IF(!startNode)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
startNodeOffset = startNode->IndexOf(content) + 1;
|
|
|
|
if (NS_WARN_IF(startNodeOffset == 0)) {
|
|
|
|
// The content is being removed from the parent!
|
|
|
|
return NS_ERROR_FAILURE;
|
2013-07-11 07:46:35 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
} else {
|
|
|
|
// Rule #1.4: <element>[
|
|
|
|
startNode = content;
|
|
|
|
startNodeOffset = 0;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
NS_ASSERTION(startNode, "startNode must not be nullptr");
|
|
|
|
NS_ASSERTION(startNodeOffset >= 0,
|
|
|
|
"startNodeOffset must not be negative");
|
|
|
|
rv = aRange->SetStart(startNode, startNodeOffset);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
2012-10-19 18:45:54 +00:00
|
|
|
startSet = true;
|
2015-12-02 04:20:00 +00:00
|
|
|
|
|
|
|
if (!aLength) {
|
|
|
|
rv = aRange->SetEnd(startNode, startNodeOffset);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
|
|
|
|
// When the end offset is in the content, the node is the end node of the
|
|
|
|
// range.
|
2014-04-25 23:52:13 +00:00
|
|
|
if (endOffset <= offset + textLength) {
|
2015-12-02 04:20:00 +00:00
|
|
|
MOZ_ASSERT(startSet,
|
|
|
|
"The start of the range should've been set already");
|
2008-02-20 07:40:04 +00:00
|
|
|
if (content->IsNodeOfType(nsINode::eTEXT)) {
|
2015-12-02 04:20:00 +00:00
|
|
|
// Rule #2.1: ]textNode or text]Node or textNode]
|
|
|
|
uint32_t xpOffset = endOffset - offset;
|
2014-04-25 23:52:12 +00:00
|
|
|
if (aLineBreakType == LINE_BREAK_TYPE_NATIVE) {
|
|
|
|
xpOffset = ConvertToXPOffset(content, xpOffset);
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
if (aExpandToClusterBoundaries) {
|
2011-10-17 14:59:28 +00:00
|
|
|
rv = ExpandToClusterBoundary(content, true, &xpOffset);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
NS_ASSERTION(xpOffset <= INT32_MAX,
|
|
|
|
"The end node offset is too large");
|
|
|
|
rv = aRange->SetEnd(content, static_cast<int32_t>(xpOffset));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
return NS_OK;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (endOffset == offset) {
|
|
|
|
// Rule #2.2: ]<element>
|
|
|
|
// NOTE: Please don't crash on release builds because it must be
|
|
|
|
// overreaction but we shouldn't allow this bug when some
|
|
|
|
// automated tests find this.
|
|
|
|
MOZ_ASSERT(false, "This case should've already been handled at "
|
|
|
|
"the last node which caused some text");
|
|
|
|
return NS_ERROR_FAILURE;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (content->HasChildren() &&
|
|
|
|
ShouldBreakLineBefore(content, mRootContent)) {
|
|
|
|
// Rule #2.3: </element>]
|
|
|
|
rv = aRange->SetEnd(content, 0);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rule #2.4: <element/>]
|
2015-12-02 04:20:00 +00:00
|
|
|
nsINode* endNode = content->GetParent();
|
|
|
|
if (NS_WARN_IF(!endNode)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
int32_t indexInParent = endNode->IndexOf(content);
|
|
|
|
if (NS_WARN_IF(indexInParent == -1)) {
|
|
|
|
// The content is being removed from the parent!
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
rv = aRange->SetEnd(endNode, indexInParent + 1);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-04-25 23:52:13 +00:00
|
|
|
offset += textLength;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2012-10-19 18:45:54 +00:00
|
|
|
if (!startSet) {
|
2013-04-04 21:28:37 +00:00
|
|
|
MOZ_ASSERT(!mRootContent->IsNodeOfType(nsINode::eTEXT));
|
2015-12-02 04:20:01 +00:00
|
|
|
if (!offset) {
|
|
|
|
// Rule #1.5: <root>[</root>
|
|
|
|
// When there are no nodes causing text, the start of the DOM range
|
|
|
|
// should be start of the root node since clicking on such editor (e.g.,
|
|
|
|
// <div contenteditable><span></span></div>) sets caret to the start of
|
|
|
|
// the editor (i.e., before <span> in the example).
|
|
|
|
rv = aRange->SetStart(mRootContent, 0);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if (!aLength) {
|
|
|
|
rv = aRange->SetEnd(mRootContent, 0);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Rule #1.5: [</root>
|
|
|
|
rv = aRange->SetStart(mRootContent,
|
|
|
|
static_cast<int32_t>(mRootContent->GetChildCount()));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
}
|
2014-04-25 23:52:13 +00:00
|
|
|
if (aNewOffset) {
|
|
|
|
*aNewOffset = offset;
|
2013-07-11 07:46:35 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
// Rule #2.5: ]</root>
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = aRange->SetEnd(mRootContent,
|
|
|
|
static_cast<int32_t>(mRootContent->GetChildCount()));
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
/* static */ LineBreakType
|
|
|
|
ContentEventHandler::GetLineBreakType(WidgetQueryContentEvent* aEvent)
|
|
|
|
{
|
|
|
|
return GetLineBreakType(aEvent->mUseNativeLineBreak);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ LineBreakType
|
|
|
|
ContentEventHandler::GetLineBreakType(WidgetSelectionEvent* aEvent)
|
|
|
|
{
|
|
|
|
return GetLineBreakType(aEvent->mUseNativeLineBreak);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ LineBreakType
|
|
|
|
ContentEventHandler::GetLineBreakType(bool aUseNativeLineBreak)
|
|
|
|
{
|
|
|
|
return aUseNativeLineBreak ?
|
|
|
|
LINE_BREAK_TYPE_NATIVE : LINE_BREAK_TYPE_XP;
|
|
|
|
}
|
|
|
|
|
2015-09-08 03:54:14 +00:00
|
|
|
nsresult
|
|
|
|
ContentEventHandler::HandleQueryContentEvent(WidgetQueryContentEvent* aEvent)
|
|
|
|
{
|
|
|
|
switch (aEvent->mMessage) {
|
2015-09-10 01:40:05 +00:00
|
|
|
case eQuerySelectedText:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQuerySelectedText(aEvent);
|
2015-09-10 01:40:05 +00:00
|
|
|
case eQueryTextContent:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryTextContent(aEvent);
|
2015-09-10 01:40:06 +00:00
|
|
|
case eQueryCaretRect:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryCaretRect(aEvent);
|
2015-09-11 12:21:26 +00:00
|
|
|
case eQueryTextRect:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryTextRect(aEvent);
|
2015-09-10 01:40:06 +00:00
|
|
|
case eQueryEditorRect:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryEditorRect(aEvent);
|
2015-09-10 01:40:06 +00:00
|
|
|
case eQueryContentState:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryContentState(aEvent);
|
2015-09-10 01:40:05 +00:00
|
|
|
case eQuerySelectionAsTransferable:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQuerySelectionAsTransferable(aEvent);
|
2015-09-10 01:40:06 +00:00
|
|
|
case eQueryCharacterAtPoint:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryCharacterAtPoint(aEvent);
|
2015-09-10 01:40:06 +00:00
|
|
|
case eQueryDOMWidgetHittest:
|
2015-09-08 03:54:14 +00:00
|
|
|
return OnQueryDOMWidgetHittest(aEvent);
|
|
|
|
default:
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-11-22 14:39:03 +00:00
|
|
|
// Similar to nsFrameSelection::GetFrameForNodeOffset,
|
|
|
|
// but this is more flexible for OnQueryTextRect to use
|
|
|
|
static nsresult GetFrameForTextRect(nsINode* aNode,
|
|
|
|
int32_t aNodeOffset,
|
|
|
|
bool aHint,
|
|
|
|
nsIFrame** aReturnFrame)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(aNode && aNode->IsNodeOfType(nsINode::eCONTENT),
|
|
|
|
NS_ERROR_UNEXPECTED);
|
|
|
|
nsIContent* content = static_cast<nsIContent*>(aNode);
|
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
|
|
|
NS_ENSURE_TRUE(frame, NS_ERROR_FAILURE);
|
|
|
|
int32_t childNodeOffset = 0;
|
|
|
|
return frame->GetChildFrameContainingOffset(aNodeOffset, aHint,
|
|
|
|
&childNodeOffset, aReturnFrame);
|
|
|
|
}
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQuerySelectedText(WidgetQueryContentEvent* aEvent)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(aEvent->mReply.mString.IsEmpty(),
|
|
|
|
"The reply string must be empty");
|
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
LineBreakType lineBreakType = GetLineBreakType(aEvent);
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = GetFlatTextLengthBefore(mFirstSelectedRange,
|
|
|
|
&aEvent->mReply.mOffset, lineBreakType);
|
2008-02-20 07:40:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-07-07 02:06:37 +00:00
|
|
|
nsCOMPtr<nsINode> anchorNode, focusNode;
|
|
|
|
int32_t anchorOffset, focusOffset;
|
|
|
|
if (mSelection->RangeCount()) {
|
|
|
|
anchorNode = mSelection->GetAnchorNode();
|
|
|
|
focusNode = mSelection->GetFocusNode();
|
|
|
|
if (NS_WARN_IF(!anchorNode) || NS_WARN_IF(!focusNode)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
anchorOffset = static_cast<int32_t>(mSelection->AnchorOffset());
|
|
|
|
focusOffset = static_cast<int32_t>(mSelection->FocusOffset());
|
|
|
|
if (NS_WARN_IF(anchorOffset < 0) || NS_WARN_IF(focusOffset < 0)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-07-07 02:06:37 +00:00
|
|
|
int16_t compare = nsContentUtils::ComparePoints(anchorNode, anchorOffset,
|
|
|
|
focusNode, focusOffset);
|
|
|
|
aEvent->mReply.mReversed = compare > 0;
|
2009-02-10 20:56:51 +00:00
|
|
|
|
2015-07-07 02:06:37 +00:00
|
|
|
if (compare) {
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsRange> range;
|
2015-07-07 02:06:37 +00:00
|
|
|
if (mSelection->RangeCount() == 1) {
|
|
|
|
range = mFirstSelectedRange;
|
|
|
|
} else {
|
|
|
|
rv = nsRange::CreateRange(anchorNode, anchorOffset,
|
|
|
|
focusNode, focusOffset,
|
|
|
|
getter_AddRefs(range));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
if (NS_WARN_IF(!range)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rv = GenerateFlatTextContent(range, aEvent->mReply.mString,
|
|
|
|
lineBreakType);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
aEvent->mReply.mString.Truncate();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(mFirstSelectedRange->Collapsed(),
|
|
|
|
"When mSelection doesn't have selection, mFirstSelectedRange must be "
|
|
|
|
"collapsed");
|
|
|
|
anchorNode = focusNode = mFirstSelectedRange->GetStartParent();
|
|
|
|
if (NS_WARN_IF(!anchorNode)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
anchorOffset = focusOffset =
|
|
|
|
static_cast<int32_t>(mFirstSelectedRange->StartOffset());
|
|
|
|
if (NS_WARN_IF(anchorOffset < 0)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-07-07 02:06:37 +00:00
|
|
|
aEvent->mReply.mReversed = false;
|
|
|
|
aEvent->mReply.mString.Truncate();
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 02:06:37 +00:00
|
|
|
|
2014-11-22 14:39:03 +00:00
|
|
|
nsIFrame* frame = nullptr;
|
|
|
|
rv = GetFrameForTextRect(focusNode, focusOffset, true, &frame);
|
|
|
|
if (NS_SUCCEEDED(rv) && frame) {
|
|
|
|
aEvent->mReply.mWritingMode = frame->GetWritingMode();
|
|
|
|
} else {
|
|
|
|
aEvent->mReply.mWritingMode = WritingMode();
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryTextContent(WidgetQueryContentEvent* aEvent)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(aEvent->mReply.mString.IsEmpty(),
|
|
|
|
"The reply string must be empty");
|
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
LineBreakType lineBreakType = GetLineBreakType(aEvent);
|
|
|
|
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsRange> range = new nsRange(mRootContent);
|
2008-02-20 07:40:04 +00:00
|
|
|
rv = SetRangeFromFlatTextOffset(range, aEvent->mInput.mOffset,
|
2014-04-25 23:52:12 +00:00
|
|
|
aEvent->mInput.mLength, lineBreakType, false,
|
2013-07-11 07:46:35 +00:00
|
|
|
&aEvent->mReply.mOffset);
|
2008-02-20 07:40:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
rv = GenerateFlatTextContent(range, aEvent->mReply.mString, lineBreakType);
|
2008-02-20 07:40:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-01-31 07:17:12 +00:00
|
|
|
if (aEvent->mWithFontRanges) {
|
|
|
|
uint32_t fontRangeLength;
|
|
|
|
rv = GenerateFlatFontRanges(range, aEvent->mReply.mFontRanges,
|
|
|
|
fontRangeLength, lineBreakType);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(fontRangeLength == aEvent->mReply.mString.Length(),
|
|
|
|
"Font ranges doesn't match the string");
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2008-02-20 07:40:04 +00:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// Adjust to use a child node if possible
|
|
|
|
// to make the returned rect more accurate
|
|
|
|
static nsINode* AdjustTextRectNode(nsINode* aNode,
|
2014-04-25 23:52:13 +00:00
|
|
|
int32_t& aNodeOffset)
|
2009-02-10 20:56:51 +00:00
|
|
|
{
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t childCount = int32_t(aNode->GetChildCount());
|
2009-02-10 20:56:51 +00:00
|
|
|
nsINode* node = aNode;
|
|
|
|
if (childCount) {
|
2014-04-25 23:52:13 +00:00
|
|
|
if (aNodeOffset < childCount) {
|
|
|
|
node = aNode->GetChildAt(aNodeOffset);
|
|
|
|
aNodeOffset = 0;
|
|
|
|
} else if (aNodeOffset == childCount) {
|
2009-02-10 20:56:51 +00:00
|
|
|
node = aNode->GetChildAt(childCount - 1);
|
2014-04-25 23:52:13 +00:00
|
|
|
aNodeOffset = node->IsNodeOfType(nsINode::eTEXT) ?
|
|
|
|
static_cast<int32_t>(static_cast<nsIContent*>(node)->TextLength()) : 1;
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
2008-02-20 07:40:04 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryTextRect(WidgetQueryContentEvent* aEvent)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2009-02-10 20:56:51 +00:00
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2009-02-10 20:56:51 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
LineBreakType lineBreakType = GetLineBreakType(aEvent);
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsRange> range = new nsRange(mRootContent);
|
2009-02-10 20:56:51 +00:00
|
|
|
rv = SetRangeFromFlatTextOffset(range, aEvent->mInput.mOffset,
|
2014-04-25 23:52:12 +00:00
|
|
|
aEvent->mInput.mLength, lineBreakType, true,
|
2013-07-11 07:46:35 +00:00
|
|
|
&aEvent->mReply.mOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2014-04-25 23:52:12 +00:00
|
|
|
rv = GenerateFlatTextContent(range, aEvent->mReply.mString, lineBreakType);
|
2009-02-07 09:52:59 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// used to iterate over all contents and their frames
|
2012-06-10 23:44:50 +00:00
|
|
|
nsCOMPtr<nsIContentIterator> iter = NS_NewContentIterator();
|
2009-02-10 20:56:51 +00:00
|
|
|
iter->Init(range);
|
2009-02-10 11:15:36 +00:00
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// get the starting frame
|
2014-04-25 23:52:13 +00:00
|
|
|
int32_t nodeOffset = range->StartOffset();
|
2009-02-10 20:56:51 +00:00
|
|
|
nsINode* node = iter->GetCurrentNode();
|
|
|
|
if (!node) {
|
2014-04-25 23:52:13 +00:00
|
|
|
node = AdjustTextRectNode(range->GetStartParent(), nodeOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* firstFrame = nullptr;
|
2014-04-25 23:52:13 +00:00
|
|
|
rv = GetFrameForTextRect(node, nodeOffset, true, &firstFrame);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// get the starting frame rect
|
|
|
|
nsRect rect(nsPoint(0, 0), firstFrame->GetRect().Size());
|
2015-10-05 05:46:39 +00:00
|
|
|
rv = ConvertToRootRelativeOffset(firstFrame, rect);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsRect frameRect = rect;
|
|
|
|
nsPoint ptOffset;
|
2014-04-25 23:52:13 +00:00
|
|
|
firstFrame->GetPointFromOffset(nodeOffset, &ptOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
// minus 1 to avoid creating an empty rect
|
2015-02-10 15:28:05 +00:00
|
|
|
if (firstFrame->GetWritingMode().IsVertical()) {
|
|
|
|
rect.y += ptOffset.y - 1;
|
|
|
|
rect.height -= ptOffset.y - 1;
|
|
|
|
} else {
|
|
|
|
rect.x += ptOffset.x - 1;
|
|
|
|
rect.width -= ptOffset.x - 1;
|
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
|
|
|
// get the ending frame
|
2014-04-25 23:52:13 +00:00
|
|
|
nodeOffset = range->EndOffset();
|
|
|
|
node = AdjustTextRectNode(range->GetEndParent(), nodeOffset);
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIFrame* lastFrame = nullptr;
|
2014-04-25 23:52:13 +00:00
|
|
|
rv = GetFrameForTextRect(node, nodeOffset, range->Collapsed(), &lastFrame);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// iterate over all covered frames
|
|
|
|
for (nsIFrame* frame = firstFrame; frame != lastFrame;) {
|
|
|
|
frame = frame->GetNextContinuation();
|
|
|
|
if (!frame) {
|
|
|
|
do {
|
|
|
|
iter->Next();
|
|
|
|
node = iter->GetCurrentNode();
|
2014-03-11 05:08:02 +00:00
|
|
|
if (!node) {
|
2012-05-23 02:05:27 +00:00
|
|
|
break;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
|
|
|
if (!node->IsNodeOfType(nsINode::eCONTENT)) {
|
2009-02-10 20:56:51 +00:00
|
|
|
continue;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2009-12-24 21:20:05 +00:00
|
|
|
frame = static_cast<nsIContent*>(node)->GetPrimaryFrame();
|
2009-02-10 20:56:51 +00:00
|
|
|
} while (!frame && !iter->IsDone());
|
|
|
|
if (!frame) {
|
|
|
|
// this can happen when the end offset of the range is 0.
|
|
|
|
frame = lastFrame;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
frameRect.SetRect(nsPoint(0, 0), frame->GetRect().Size());
|
2015-10-05 05:46:39 +00:00
|
|
|
rv = ConvertToRootRelativeOffset(frame, frameRect);
|
2008-02-20 07:40:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-02-10 20:56:51 +00:00
|
|
|
if (frame != lastFrame) {
|
|
|
|
// not last frame, so just add rect to previous result
|
|
|
|
rect.UnionRect(rect, frameRect);
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
// get the ending frame rect
|
2014-04-25 23:52:13 +00:00
|
|
|
lastFrame->GetPointFromOffset(nodeOffset, &ptOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
// minus 1 to avoid creating an empty rect
|
2015-02-10 15:28:05 +00:00
|
|
|
if (lastFrame->GetWritingMode().IsVertical()) {
|
|
|
|
frameRect.height -= lastFrame->GetRect().height - ptOffset.y - 1;
|
|
|
|
} else {
|
|
|
|
frameRect.width -= lastFrame->GetRect().width - ptOffset.x - 1;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
if (firstFrame == lastFrame) {
|
|
|
|
rect.IntersectRect(rect, frameRect);
|
|
|
|
} else {
|
|
|
|
rect.UnionRect(rect, frameRect);
|
|
|
|
}
|
2015-11-09 23:22:25 +00:00
|
|
|
aEvent->mReply.mRect = LayoutDeviceIntRect::FromUnknownRect(
|
2015-02-04 20:21:03 +00:00
|
|
|
rect.ToOutsidePixels(mPresContext->AppUnitsPerDevPixel()));
|
2015-02-10 15:28:05 +00:00
|
|
|
aEvent->mReply.mWritingMode = lastFrame->GetWritingMode();
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryEditorRect(WidgetQueryContentEvent* aEvent)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2013-12-18 01:43:11 +00:00
|
|
|
nsIContent* focusedContent = GetFocusedContent();
|
|
|
|
rv = QueryContentRect(IsPlugin(focusedContent) ?
|
|
|
|
focusedContent : mRootContent.get(), aEvent);
|
2008-02-20 07:40:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-02-10 20:56:51 +00:00
|
|
|
return NS_OK;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryCaretRect(WidgetQueryContentEvent* aEvent)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
LineBreakType lineBreakType = GetLineBreakType(aEvent);
|
|
|
|
|
2014-08-06 05:19:26 +00:00
|
|
|
nsRect caretRect;
|
|
|
|
|
2015-07-01 15:41:17 +00:00
|
|
|
// When the selection is collapsed and the queried offset is current caret
|
|
|
|
// position, we should return the "real" caret rect.
|
|
|
|
if (mSelection->IsCollapsed()) {
|
2015-07-01 15:41:17 +00:00
|
|
|
nsIFrame* caretFrame = nsCaret::GetGeometry(mSelection, &caretRect);
|
|
|
|
if (caretFrame) {
|
|
|
|
uint32_t offset;
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = GetFlatTextLengthBefore(mFirstSelectedRange,
|
|
|
|
&offset, lineBreakType);
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2015-07-01 15:41:17 +00:00
|
|
|
if (offset == aEvent->mInput.mOffset) {
|
2015-10-05 05:46:39 +00:00
|
|
|
rv = ConvertToRootRelativeOffset(caretFrame, caretRect);
|
2015-07-01 15:41:17 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nscoord appUnitsPerDevPixel =
|
|
|
|
caretFrame->PresContext()->AppUnitsPerDevPixel();
|
2015-11-09 23:22:25 +00:00
|
|
|
aEvent->mReply.mRect = LayoutDeviceIntRect::FromUnknownRect(
|
2015-07-01 15:41:17 +00:00
|
|
|
caretRect.ToOutsidePixels(appUnitsPerDevPixel));
|
|
|
|
aEvent->mReply.mWritingMode = caretFrame->GetWritingMode();
|
|
|
|
aEvent->mReply.mOffset = aEvent->mInput.mOffset;
|
|
|
|
aEvent->mSucceeded = true;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, we should set the guessed caret rect.
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsRange> range = new nsRange(mRootContent);
|
2014-04-25 23:52:12 +00:00
|
|
|
rv = SetRangeFromFlatTextOffset(range, aEvent->mInput.mOffset, 0,
|
|
|
|
lineBreakType, true,
|
2013-07-11 07:46:35 +00:00
|
|
|
&aEvent->mReply.mOffset);
|
2008-02-20 07:40:04 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-06-04 01:09:56 +00:00
|
|
|
rv = AdjustCollapsedRangeMaybeIntoTextNode(range);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-04-25 23:52:13 +00:00
|
|
|
int32_t xpOffsetInFrame;
|
2009-02-10 20:56:51 +00:00
|
|
|
nsIFrame* frame;
|
2015-06-04 01:09:56 +00:00
|
|
|
rv = GetStartFrameAndOffset(range, frame, xpOffsetInFrame);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsPoint posInFrame;
|
|
|
|
rv = frame->GetPointFromOffset(range->StartOffset(), &posInFrame);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-06-06 00:57:42 +00:00
|
|
|
aEvent->mReply.mWritingMode = frame->GetWritingMode();
|
|
|
|
bool isVertical = aEvent->mReply.mWritingMode.IsVertical();
|
|
|
|
|
2009-02-10 20:56:51 +00:00
|
|
|
nsRect rect;
|
|
|
|
rect.x = posInFrame.x;
|
|
|
|
rect.y = posInFrame.y;
|
2015-06-06 00:57:42 +00:00
|
|
|
|
|
|
|
nscoord fontHeight = 0;
|
|
|
|
float inflation = nsLayoutUtils::FontSizeInflationFor(frame);
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsFontMetrics> fontMetrics;
|
2015-06-06 00:57:42 +00:00
|
|
|
rv = nsLayoutUtils::GetFontMetricsForFrame(frame, getter_AddRefs(fontMetrics),
|
|
|
|
inflation);
|
|
|
|
if (NS_WARN_IF(!fontMetrics)) {
|
|
|
|
// If we cannot get font height, use frame size instead.
|
|
|
|
fontHeight = isVertical ? frame->GetSize().width : frame->GetSize().height;
|
|
|
|
} else {
|
|
|
|
fontHeight = fontMetrics->MaxAscent() + fontMetrics->MaxDescent();
|
|
|
|
}
|
|
|
|
if (isVertical) {
|
|
|
|
rect.width = fontHeight;
|
|
|
|
rect.height = caretRect.height;
|
|
|
|
} else {
|
|
|
|
rect.width = caretRect.width;
|
|
|
|
rect.height = fontHeight;
|
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
2015-10-05 05:46:39 +00:00
|
|
|
rv = ConvertToRootRelativeOffset(frame, rect);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-11-09 23:22:25 +00:00
|
|
|
aEvent->mReply.mRect = LayoutDeviceIntRect::FromUnknownRect(
|
2015-02-04 20:21:03 +00:00
|
|
|
rect.ToOutsidePixels(mPresContext->AppUnitsPerDevPixel()));
|
2015-06-06 00:57:42 +00:00
|
|
|
// If the caret rect is empty, let's make it non-empty rect.
|
|
|
|
if (!aEvent->mReply.mRect.width) {
|
|
|
|
aEvent->mReply.mRect.width = 1;
|
|
|
|
}
|
|
|
|
if (!aEvent->mReply.mRect.height) {
|
|
|
|
aEvent->mReply.mRect.height = 1;
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2009-02-10 20:56:51 +00:00
|
|
|
return NS_OK;
|
2008-02-20 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2009-03-18 02:04:01 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryContentState(WidgetQueryContentEvent* aEvent)
|
2009-03-18 02:04:01 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2009-03-18 02:04:01 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2009-03-18 02:04:01 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQuerySelectionAsTransferable(
|
|
|
|
WidgetQueryContentEvent* aEvent)
|
2009-03-18 02:04:01 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2009-03-18 02:04:01 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2009-03-18 02:04:01 +00:00
|
|
|
|
|
|
|
if (!aEvent->mReply.mHasSelection) {
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2012-07-30 14:20:58 +00:00
|
|
|
aEvent->mReply.mTransferable = nullptr;
|
2009-03-18 02:04:01 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc = mPresShell->GetDocument();
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
|
2014-03-11 05:08:02 +00:00
|
|
|
rv = nsCopySupport::GetTransferableForSelection(
|
|
|
|
mSelection, doc, getter_AddRefs(aEvent->mReply.mTransferable));
|
2009-03-18 02:04:01 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2009-03-18 02:04:01 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-05-15 00:46:24 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryCharacterAtPoint(WidgetQueryContentEvent* aEvent)
|
2009-05-15 00:46:24 +00:00
|
|
|
{
|
|
|
|
nsresult rv = Init(aEvent);
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2009-05-15 00:46:24 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2009-05-15 00:46:24 +00:00
|
|
|
|
2015-04-14 05:27:37 +00:00
|
|
|
aEvent->mReply.mOffset = aEvent->mReply.mTentativeCaretOffset =
|
|
|
|
WidgetQueryContentEvent::NOT_FOUND;
|
|
|
|
|
2009-05-15 00:46:24 +00:00
|
|
|
nsIFrame* rootFrame = mPresShell->GetRootFrame();
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_TRUE(rootFrame, NS_ERROR_FAILURE);
|
2010-07-02 19:11:04 +00:00
|
|
|
nsIWidget* rootWidget = rootFrame->GetNearestWidget();
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_TRUE(rootWidget, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// The root frame's widget might be different, e.g., the event was fired on
|
|
|
|
// a popup but the rootFrame is the document root.
|
|
|
|
if (rootWidget != aEvent->widget) {
|
|
|
|
NS_PRECONDITION(aEvent->widget, "The event must have the widget");
|
2013-01-03 13:23:11 +00:00
|
|
|
nsView* view = nsView::GetViewFor(aEvent->widget);
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_TRUE(view, NS_ERROR_FAILURE);
|
2012-01-09 09:56:04 +00:00
|
|
|
rootFrame = view->GetFrame();
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_TRUE(rootFrame, NS_ERROR_FAILURE);
|
2010-07-02 19:11:04 +00:00
|
|
|
rootWidget = rootFrame->GetNearestWidget();
|
2010-03-19 05:02:53 +00:00
|
|
|
NS_ENSURE_TRUE(rootWidget, NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
|
2015-09-10 01:40:06 +00:00
|
|
|
WidgetQueryContentEvent eventOnRoot(true, eQueryCharacterAtPoint,
|
2013-10-01 07:23:00 +00:00
|
|
|
rootWidget);
|
2014-04-25 23:52:12 +00:00
|
|
|
eventOnRoot.mUseNativeLineBreak = aEvent->mUseNativeLineBreak;
|
2010-03-19 05:02:53 +00:00
|
|
|
eventOnRoot.refPoint = aEvent->refPoint;
|
|
|
|
if (rootWidget != aEvent->widget) {
|
2015-02-04 20:21:03 +00:00
|
|
|
eventOnRoot.refPoint += aEvent->widget->WidgetToScreenOffset() -
|
|
|
|
rootWidget->WidgetToScreenOffset();
|
2010-03-19 05:02:53 +00:00
|
|
|
}
|
2009-05-15 00:46:24 +00:00
|
|
|
nsPoint ptInRoot =
|
2010-03-19 05:02:53 +00:00
|
|
|
nsLayoutUtils::GetEventCoordinatesRelativeTo(&eventOnRoot, rootFrame);
|
|
|
|
|
2009-05-15 00:46:24 +00:00
|
|
|
nsIFrame* targetFrame = nsLayoutUtils::GetFrameForPoint(rootFrame, ptInRoot);
|
2015-04-14 05:27:37 +00:00
|
|
|
if (!targetFrame || !targetFrame->GetContent() ||
|
2010-04-02 02:11:59 +00:00
|
|
|
!nsContentUtils::ContentIsDescendantOf(targetFrame->GetContent(),
|
|
|
|
mRootContent)) {
|
2015-04-14 05:27:37 +00:00
|
|
|
// There is no character at the point.
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2009-05-15 00:46:24 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-07-19 02:23:48 +00:00
|
|
|
nsPoint ptInTarget = ptInRoot + rootFrame->GetOffsetToCrossDoc(targetFrame);
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t rootAPD = rootFrame->PresContext()->AppUnitsPerDevPixel();
|
|
|
|
int32_t targetAPD = targetFrame->PresContext()->AppUnitsPerDevPixel();
|
2015-03-26 21:44:40 +00:00
|
|
|
ptInTarget = ptInTarget.ScaleToOtherAppUnits(rootAPD, targetAPD);
|
2010-07-19 02:23:48 +00:00
|
|
|
|
2015-04-14 05:27:37 +00:00
|
|
|
nsIFrame::ContentOffsets tentativeCaretOffsets =
|
|
|
|
targetFrame->GetContentOffsetsFromPoint(ptInTarget);
|
|
|
|
if (!tentativeCaretOffsets.content ||
|
|
|
|
!nsContentUtils::ContentIsDescendantOf(tentativeCaretOffsets.content,
|
|
|
|
mRootContent)) {
|
|
|
|
// There is no character nor tentative caret point at the point.
|
|
|
|
aEvent->mSucceeded = true;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = GetFlatTextLengthInRange(NodePosition(mRootContent, 0),
|
|
|
|
NodePosition(tentativeCaretOffsets),
|
|
|
|
mRootContent,
|
2015-04-14 05:27:37 +00:00
|
|
|
&aEvent->mReply.mTentativeCaretOffset,
|
|
|
|
GetLineBreakType(aEvent));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (targetFrame->GetType() != nsGkAtoms::textFrame) {
|
|
|
|
// There is no character at the point but there is tentative caret point.
|
|
|
|
aEvent->mSucceeded = true;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
MOZ_ASSERT(
|
|
|
|
aEvent->mReply.mTentativeCaretOffset != WidgetQueryContentEvent::NOT_FOUND,
|
|
|
|
"The point is inside a character bounding box. Why tentative caret point "
|
|
|
|
"hasn't been found?");
|
|
|
|
|
2009-05-15 00:46:24 +00:00
|
|
|
nsTextFrame* textframe = static_cast<nsTextFrame*>(targetFrame);
|
2014-04-25 23:52:13 +00:00
|
|
|
nsIFrame::ContentOffsets contentOffsets =
|
2009-05-15 00:46:24 +00:00
|
|
|
textframe->GetCharacterOffsetAtFramePoint(ptInTarget);
|
2014-04-25 23:52:13 +00:00
|
|
|
NS_ENSURE_TRUE(contentOffsets.content, NS_ERROR_FAILURE);
|
|
|
|
uint32_t offset;
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = GetFlatTextLengthInRange(NodePosition(mRootContent, 0),
|
|
|
|
NodePosition(contentOffsets),
|
|
|
|
mRootContent, &offset,
|
2014-04-25 23:52:13 +00:00
|
|
|
GetLineBreakType(aEvent));
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2009-05-15 00:46:24 +00:00
|
|
|
|
2015-09-11 12:21:26 +00:00
|
|
|
WidgetQueryContentEvent textRect(true, eQueryTextRect, aEvent->widget);
|
2014-04-25 23:52:13 +00:00
|
|
|
textRect.InitForQueryTextRect(offset, 1, aEvent->mUseNativeLineBreak);
|
2009-05-15 00:46:24 +00:00
|
|
|
rv = OnQueryTextRect(&textRect);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(textRect.mSucceeded, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
// currently, we don't need to get the actual text.
|
2014-04-25 23:52:13 +00:00
|
|
|
aEvent->mReply.mOffset = offset;
|
2009-05-15 00:46:24 +00:00
|
|
|
aEvent->mReply.mRect = textRect.mReply.mRect;
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2009-05-15 00:46:24 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-03-01 21:15:23 +00:00
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnQueryDOMWidgetHittest(WidgetQueryContentEvent* aEvent)
|
2011-03-01 21:15:23 +00:00
|
|
|
{
|
2014-04-30 16:55:40 +00:00
|
|
|
NS_ASSERTION(aEvent, "aEvent must not be null");
|
|
|
|
|
|
|
|
nsresult rv = InitBasic();
|
2014-03-11 05:08:02 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2011-03-01 21:15:23 +00:00
|
|
|
return rv;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2011-03-01 21:15:23 +00:00
|
|
|
|
2014-04-30 16:55:40 +00:00
|
|
|
aEvent->mSucceeded = false;
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mReply.mWidgetIsHit = false;
|
2011-03-01 21:15:23 +00:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(aEvent->widget, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsIDocument* doc = mPresShell->GetDocument();
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_FAILURE);
|
|
|
|
nsIFrame* docFrame = mPresShell->GetRootFrame();
|
|
|
|
NS_ENSURE_TRUE(docFrame, NS_ERROR_FAILURE);
|
|
|
|
|
2015-02-04 20:21:03 +00:00
|
|
|
LayoutDeviceIntPoint eventLoc = aEvent->refPoint + aEvent->widget->WidgetToScreenOffset();
|
2011-03-01 21:15:23 +00:00
|
|
|
nsIntRect docFrameRect = docFrame->GetScreenRect(); // Returns CSS pixels
|
2013-08-02 07:05:16 +00:00
|
|
|
CSSIntPoint eventLocCSS(
|
|
|
|
mPresContext->DevPixelsToIntCSSPixels(eventLoc.x) - docFrameRect.x,
|
|
|
|
mPresContext->DevPixelsToIntCSSPixels(eventLoc.y) - docFrameRect.y);
|
2011-03-01 21:15:23 +00:00
|
|
|
|
2012-12-22 08:27:27 +00:00
|
|
|
Element* contentUnderMouse =
|
2013-08-02 07:05:16 +00:00
|
|
|
doc->ElementFromPointHelper(eventLocCSS.x, eventLocCSS.y, false, false);
|
2011-03-01 21:15:23 +00:00
|
|
|
if (contentUnderMouse) {
|
2012-07-30 14:20:58 +00:00
|
|
|
nsIWidget* targetWidget = nullptr;
|
2011-03-01 21:15:23 +00:00
|
|
|
nsIFrame* targetFrame = contentUnderMouse->GetPrimaryFrame();
|
|
|
|
nsIObjectFrame* pluginFrame = do_QueryFrame(targetFrame);
|
|
|
|
if (pluginFrame) {
|
|
|
|
targetWidget = pluginFrame->GetWidget();
|
|
|
|
} else if (targetFrame) {
|
|
|
|
targetWidget = targetFrame->GetNearestWidget();
|
|
|
|
}
|
2014-03-11 05:08:02 +00:00
|
|
|
if (aEvent->widget == targetWidget) {
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mReply.mWidgetIsHit = true;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2011-03-01 21:15:23 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2011-03-01 21:15:23 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2014-04-25 23:52:12 +00:00
|
|
|
/* static */ nsresult
|
2015-12-02 04:20:00 +00:00
|
|
|
ContentEventHandler::GetFlatTextLengthInRange(
|
|
|
|
const NodePosition& aStartPosition,
|
|
|
|
const NodePosition& aEndPosition,
|
|
|
|
nsIContent* aRootContent,
|
|
|
|
uint32_t* aLength,
|
2015-12-02 04:20:00 +00:00
|
|
|
LineBreakType aLineBreakType,
|
|
|
|
bool aIsRemovingNode /* = false */)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!aRootContent) || NS_WARN_IF(!aStartPosition.IsValid()) ||
|
|
|
|
NS_WARN_IF(!aEndPosition.IsValid()) || NS_WARN_IF(!aLength)) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (aStartPosition == aEndPosition) {
|
|
|
|
*aLength = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
// Don't create nsContentIterator instance until it's really necessary since
|
|
|
|
// destroying without initializing causes unexpected NS_ASSERTION() call.
|
|
|
|
nsCOMPtr<nsIContentIterator> iter;
|
|
|
|
|
|
|
|
// This may be called for retrieving the text of removed nodes. Even in this
|
|
|
|
// case, the node thinks it's still in the tree because UnbindFromTree() will
|
|
|
|
// be called after here. However, the node was already removed from the
|
|
|
|
// array of children of its parent. So, be careful to handle this case.
|
|
|
|
if (aIsRemovingNode) {
|
|
|
|
DebugOnly<nsIContent*> parent = aStartPosition.mNode->GetParent();
|
|
|
|
MOZ_ASSERT(parent && parent->IndexOf(aStartPosition.mNode) == -1,
|
|
|
|
"At removing the node, the node shouldn't be in the array of children "
|
|
|
|
"of its parent");
|
|
|
|
MOZ_ASSERT(aStartPosition.mNode == aEndPosition.mNode,
|
|
|
|
"At removing the node, start and end node should be same");
|
|
|
|
MOZ_ASSERT(aStartPosition.mOffset == 0,
|
|
|
|
"When the node is being removed, the start offset should be 0");
|
|
|
|
MOZ_ASSERT(static_cast<uint32_t>(aEndPosition.mOffset) ==
|
|
|
|
aEndPosition.mNode->GetChildCount(),
|
|
|
|
"When the node is being removed, the end offset should be child count");
|
2015-12-02 04:20:00 +00:00
|
|
|
iter = NS_NewPreContentIterator();
|
2015-12-02 04:20:00 +00:00
|
|
|
nsresult rv = iter->Init(aStartPosition.mNode);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2014-03-11 16:04:33 +00:00
|
|
|
} else {
|
2015-12-02 04:20:00 +00:00
|
|
|
RefPtr<nsRange> prev = new nsRange(aRootContent);
|
|
|
|
nsresult rv = aStartPosition.SetToRangeStart(prev);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
// When the end position is immediately after non-root element's open tag,
|
|
|
|
// we need to include a line break caused by the open tag.
|
|
|
|
NodePosition endPosition;
|
|
|
|
if (aEndPosition.mNode != aRootContent &&
|
|
|
|
aEndPosition.IsImmediatelyAfterOpenTag()) {
|
|
|
|
if (aEndPosition.mNode->HasChildren()) {
|
|
|
|
// When the end node has some children, move the end position to the
|
|
|
|
// start of its first child.
|
|
|
|
nsINode* firstChild = aEndPosition.mNode->GetFirstChild();
|
|
|
|
if (NS_WARN_IF(!firstChild)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
endPosition = NodePosition(firstChild, 0);
|
|
|
|
} else {
|
|
|
|
// When the end node is empty, move the end position after the node.
|
|
|
|
nsIContent* parentContent = aEndPosition.mNode->GetParent();
|
|
|
|
if (NS_WARN_IF(!parentContent)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
int32_t indexInParent = parentContent->IndexOf(aEndPosition.mNode);
|
|
|
|
if (NS_WARN_IF(indexInParent < 0)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
endPosition = NodePosition(parentContent, indexInParent + 1);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
endPosition = aEndPosition;
|
|
|
|
}
|
2014-03-11 16:04:33 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
if (endPosition.OffsetIsValid()) {
|
2015-12-02 04:20:00 +00:00
|
|
|
// Offset is within node's length; set end of range to that offset
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = endPosition.SetToRangeEnd(prev);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
iter = NS_NewPreContentIterator();
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = iter->Init(prev);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
} else if (endPosition.mNode != aRootContent) {
|
2015-12-02 04:20:00 +00:00
|
|
|
// Offset is past node's length; set end of range to end of node
|
2015-12-02 04:20:00 +00:00
|
|
|
rv = endPosition.SetToRangeEndAfter(prev);
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
iter = NS_NewPreContentIterator();
|
|
|
|
rv = iter->Init(prev);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Offset is past the root node; set end of range to end of root node
|
|
|
|
iter = NS_NewPreContentIterator();
|
|
|
|
rv = iter->Init(aRootContent);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
2014-03-11 16:04:33 +00:00
|
|
|
}
|
2011-06-27 12:59:01 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
*aLength = 0;
|
2011-06-27 12:59:01 +00:00
|
|
|
for (; !iter->IsDone(); iter->Next()) {
|
|
|
|
nsINode* node = iter->GetCurrentNode();
|
2015-12-02 04:20:00 +00:00
|
|
|
if (NS_WARN_IF(!node)) {
|
2012-05-23 02:05:27 +00:00
|
|
|
break;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
if (!node->IsContent()) {
|
2011-06-27 12:59:01 +00:00
|
|
|
continue;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
nsIContent* content = node->AsContent();
|
2011-06-27 12:59:01 +00:00
|
|
|
|
|
|
|
if (node->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
// Note: our range always starts from offset 0
|
2015-12-02 04:20:00 +00:00
|
|
|
if (node == aEndPosition.mNode) {
|
|
|
|
*aLength += GetTextLength(content, aLineBreakType,
|
|
|
|
aEndPosition.mOffset);
|
2014-03-11 05:08:02 +00:00
|
|
|
} else {
|
2015-12-02 04:20:00 +00:00
|
|
|
*aLength += GetTextLength(content, aLineBreakType);
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
} else if (ShouldBreakLineBefore(content, aRootContent)) {
|
|
|
|
// If the start position is start of this node but doesn't include the
|
|
|
|
// open tag, don't append the line break length.
|
|
|
|
if (node == aStartPosition.mNode && !aStartPosition.IsBeforeOpenTag()) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
*aLength += GetBRLength(aLineBreakType);
|
2011-06-27 12:59:01 +00:00
|
|
|
}
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
nsresult
|
|
|
|
ContentEventHandler::GetFlatTextLengthBefore(nsRange* aRange,
|
|
|
|
uint32_t* aOffset,
|
|
|
|
LineBreakType aLineBreakType)
|
2009-02-10 20:56:51 +00:00
|
|
|
{
|
2015-12-02 04:20:00 +00:00
|
|
|
MOZ_ASSERT(aRange);
|
|
|
|
return GetFlatTextLengthInRange(
|
|
|
|
NodePosition(mRootContent, 0),
|
2015-12-02 04:20:00 +00:00
|
|
|
NodePositionBefore(aRange->GetStartParent(), aRange->StartOffset()),
|
2015-12-02 04:20:00 +00:00
|
|
|
mRootContent, aOffset, aLineBreakType);
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2015-06-04 01:09:56 +00:00
|
|
|
ContentEventHandler::AdjustCollapsedRangeMaybeIntoTextNode(nsRange* aRange)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
2015-06-04 01:09:56 +00:00
|
|
|
MOZ_ASSERT(aRange);
|
|
|
|
MOZ_ASSERT(aRange->Collapsed());
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-06-04 01:09:56 +00:00
|
|
|
if (!aRange || !aRange->Collapsed()) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> parentNode = aRange->GetStartParent();
|
|
|
|
int32_t offsetInParentNode = aRange->StartOffset();
|
|
|
|
if (NS_WARN_IF(!parentNode) || NS_WARN_IF(offsetInParentNode < 0)) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the node is text node, we don't need to modify aRange.
|
|
|
|
if (parentNode->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the parent is not a text node but it has a text node at the offset,
|
|
|
|
// we should adjust the range into the text node.
|
|
|
|
// NOTE: This is emulating similar situation of nsEditor.
|
|
|
|
nsINode* childNode = nullptr;
|
|
|
|
int32_t offsetInChildNode = -1;
|
|
|
|
if (!offsetInParentNode && parentNode->HasChildren()) {
|
|
|
|
// If the range is the start of the parent, adjusted the range to the
|
|
|
|
// start of the first child.
|
|
|
|
childNode = parentNode->GetFirstChild();
|
|
|
|
offsetInChildNode = 0;
|
|
|
|
} else if (static_cast<uint32_t>(offsetInParentNode) <
|
|
|
|
parentNode->GetChildCount()) {
|
|
|
|
// If the range is next to a child node, adjust the range to the end of
|
|
|
|
// the previous child.
|
|
|
|
childNode = parentNode->GetChildAt(offsetInParentNode - 1);
|
|
|
|
offsetInChildNode = childNode->Length();
|
|
|
|
}
|
|
|
|
|
|
|
|
// But if the found node isn't a text node, we cannot modify the range.
|
|
|
|
if (!childNode || !childNode->IsNodeOfType(nsINode::eTEXT) ||
|
|
|
|
NS_WARN_IF(offsetInChildNode < 0)) {
|
|
|
|
return NS_OK;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
|
2015-06-04 01:09:56 +00:00
|
|
|
nsresult rv = aRange->Set(childNode, offsetInChildNode,
|
|
|
|
childNode, offsetInChildNode);
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ContentEventHandler::GetStartFrameAndOffset(const nsRange* aRange,
|
|
|
|
nsIFrame*& aFrame,
|
|
|
|
int32_t& aOffsetInFrame)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aRange);
|
|
|
|
|
|
|
|
aFrame = nullptr;
|
|
|
|
aOffsetInFrame = -1;
|
|
|
|
|
|
|
|
nsINode* node = aRange->GetStartParent();
|
|
|
|
if (NS_WARN_IF(!node) ||
|
|
|
|
NS_WARN_IF(!node->IsNodeOfType(nsINode::eCONTENT))) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
nsIContent* content = static_cast<nsIContent*>(node);
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsFrameSelection> fs = mPresShell->FrameSelection();
|
2015-06-04 01:09:56 +00:00
|
|
|
aFrame = fs->GetFrameForNodeOffset(content, aRange->StartOffset(),
|
|
|
|
fs->GetHint(), &aOffsetInFrame);
|
|
|
|
if (NS_WARN_IF(!aFrame)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2015-10-05 05:46:39 +00:00
|
|
|
ContentEventHandler::ConvertToRootRelativeOffset(nsIFrame* aFrame,
|
|
|
|
nsRect& aRect)
|
2008-02-20 07:40:04 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aFrame, "aFrame must not be null");
|
|
|
|
|
2015-10-05 05:46:39 +00:00
|
|
|
nsPresContext* rootPresContext = aFrame->PresContext()->GetRootPresContext();
|
|
|
|
if (NS_WARN_IF(!rootPresContext)) {
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
2014-03-11 05:08:02 +00:00
|
|
|
}
|
2015-10-05 05:46:39 +00:00
|
|
|
nsIFrame* rootFrame = rootPresContext->PresShell()->GetRootFrame();
|
|
|
|
if (NS_WARN_IF(!rootFrame)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
aRect = nsLayoutUtils::TransformFrameRectToAncestor(aFrame, aRect, rootFrame);
|
2008-02-20 07:40:04 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
|
|
|
static void AdjustRangeForSelection(nsIContent* aRoot,
|
|
|
|
nsINode** aNode,
|
2014-04-25 23:52:13 +00:00
|
|
|
int32_t* aNodeOffset)
|
2009-02-10 20:56:51 +00:00
|
|
|
{
|
|
|
|
nsINode* node = *aNode;
|
2014-04-25 23:52:13 +00:00
|
|
|
int32_t nodeOffset = *aNodeOffset;
|
2015-12-02 04:20:00 +00:00
|
|
|
if (aRoot == node || NS_WARN_IF(!node->GetParent()) ||
|
|
|
|
!node->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
return;
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
2013-06-26 21:28:20 +00:00
|
|
|
|
2015-12-02 04:20:00 +00:00
|
|
|
// When the offset is at the end of the text node, set it to after the
|
|
|
|
// text node, to make sure the caret is drawn on a new line when the last
|
|
|
|
// character of the text node is '\n' in <textarea>.
|
|
|
|
int32_t textLength =
|
|
|
|
static_cast<int32_t>(static_cast<nsIContent*>(node)->TextLength());
|
|
|
|
MOZ_ASSERT(nodeOffset <= textLength, "Offset is past length of text node");
|
|
|
|
if (nodeOffset != textLength) {
|
|
|
|
return;
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
|
|
|
|
nsIContent* aRootParent = aRoot->GetParent();
|
|
|
|
if (NS_WARN_IF(!aRootParent)) {
|
|
|
|
return;
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
2015-12-02 04:20:00 +00:00
|
|
|
// If the root node is not an anonymous div of <textarea>, we don't need to
|
|
|
|
// do this hack. If you did this, ContentEventHandler couldn't distinguish
|
|
|
|
// if the range includes open tag of the next node in some cases, e.g.,
|
|
|
|
// textNode]<p></p> vs. textNode<p>]</p>
|
|
|
|
if (!aRootParent->IsHTMLElement(nsGkAtoms::textarea)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aNode = node->GetParent();
|
|
|
|
MOZ_ASSERT((*aNode)->IndexOf(node) != -1);
|
|
|
|
*aNodeOffset = (*aNode)->IndexOf(node) + 1;
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2014-03-11 05:08:02 +00:00
|
|
|
ContentEventHandler::OnSelectionEvent(WidgetSelectionEvent* aEvent)
|
2009-02-10 20:56:51 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = false;
|
2009-02-10 20:56:51 +00:00
|
|
|
|
|
|
|
// Get selection to manipulate
|
2010-03-19 05:02:53 +00:00
|
|
|
// XXX why do we need to get them from ISM? This method should work fine
|
|
|
|
// without ISM.
|
2015-07-01 15:41:17 +00:00
|
|
|
nsCOMPtr<nsISelection> sel;
|
2014-03-08 01:20:07 +00:00
|
|
|
nsresult rv =
|
2015-07-01 15:41:17 +00:00
|
|
|
IMEStateManager::GetFocusSelectionAndRoot(getter_AddRefs(sel),
|
2014-03-08 01:20:07 +00:00
|
|
|
getter_AddRefs(mRootContent));
|
2015-07-01 15:41:17 +00:00
|
|
|
mSelection = static_cast<Selection*>(sel.get());
|
2010-03-19 05:02:53 +00:00
|
|
|
if (rv != NS_ERROR_NOT_AVAILABLE) {
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
} else {
|
|
|
|
rv = Init(aEvent);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
|
|
|
// Get range from offset and length
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsRange> range = new nsRange(mRootContent);
|
2010-03-24 15:04:39 +00:00
|
|
|
rv = SetRangeFromFlatTextOffset(range, aEvent->mOffset, aEvent->mLength,
|
2014-04-25 23:52:12 +00:00
|
|
|
GetLineBreakType(aEvent),
|
2010-03-24 15:04:39 +00:00
|
|
|
aEvent->mExpandToClusterBoundary);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsINode* startNode = range->GetStartParent();
|
|
|
|
nsINode* endNode = range->GetEndParent();
|
2014-04-25 23:52:13 +00:00
|
|
|
int32_t startNodeOffset = range->StartOffset();
|
|
|
|
int32_t endNodeOffset = range->EndOffset();
|
|
|
|
AdjustRangeForSelection(mRootContent, &startNode, &startNodeOffset);
|
|
|
|
AdjustRangeForSelection(mRootContent, &endNode, &endNodeOffset);
|
2015-07-01 15:41:17 +00:00
|
|
|
if (NS_WARN_IF(!startNode) || NS_WARN_IF(!endNode) ||
|
|
|
|
NS_WARN_IF(startNodeOffset < 0) || NS_WARN_IF(endNodeOffset < 0)) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
2009-02-10 20:56:51 +00:00
|
|
|
|
2015-07-01 15:41:17 +00:00
|
|
|
mSelection->StartBatchChanges();
|
2009-02-10 20:56:51 +00:00
|
|
|
|
|
|
|
// Clear selection first before setting
|
2010-03-19 05:02:53 +00:00
|
|
|
rv = mSelection->RemoveAllRanges();
|
2009-02-10 20:56:51 +00:00
|
|
|
// Need to call EndBatchChanges at the end even if call failed
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
if (aEvent->mReversed) {
|
2015-07-01 15:41:17 +00:00
|
|
|
rv = mSelection->Collapse(endNode, endNodeOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
} else {
|
2015-07-01 15:41:17 +00:00
|
|
|
rv = mSelection->Collapse(startNode, startNodeOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
|
|
|
if (NS_SUCCEEDED(rv) &&
|
2015-07-01 15:41:17 +00:00
|
|
|
(startNode != endNode || startNodeOffset != endNodeOffset)) {
|
2009-02-10 20:56:51 +00:00
|
|
|
if (aEvent->mReversed) {
|
2015-07-01 15:41:17 +00:00
|
|
|
rv = mSelection->Extend(startNode, startNodeOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
} else {
|
2015-07-01 15:41:17 +00:00
|
|
|
rv = mSelection->Extend(endNode, endNodeOffset);
|
2009-02-10 20:56:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-01 20:25:06 +00:00
|
|
|
|
|
|
|
// Pass the eSetSelection events reason along with the BatchChange-end
|
|
|
|
// selection change notifications.
|
|
|
|
mSelection->EndBatchChangesInternal(aEvent->mReason);
|
2009-02-10 20:56:51 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2015-07-01 15:41:17 +00:00
|
|
|
mSelection->ScrollIntoViewInternal(
|
2012-03-20 02:09:50 +00:00
|
|
|
nsISelectionController::SELECTION_FOCUS_REGION,
|
|
|
|
false, nsIPresShell::ScrollAxis(), nsIPresShell::ScrollAxis());
|
2011-10-17 14:59:28 +00:00
|
|
|
aEvent->mSucceeded = true;
|
2009-02-10 20:56:51 +00:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2014-03-11 05:08:02 +00:00
|
|
|
|
|
|
|
} // namespace mozilla
|