2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsHyperTextAccessible.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
|
2012-04-13 07:17:03 -07:00
|
|
|
#include "Accessible-inl.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsAccessibilityService.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
#include "nsAccUtils.h"
|
2012-02-07 14:38:54 -08:00
|
|
|
#include "nsDocAccessible.h"
|
2012-01-11 19:07:35 -08:00
|
|
|
#include "Role.h"
|
|
|
|
#include "States.h"
|
2012-03-09 23:29:51 -08:00
|
|
|
#include "TextAttrs.h"
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIClipboard.h"
|
2012-03-06 09:08:02 -08:00
|
|
|
#include "nsContentUtils.h"
|
2011-10-15 20:38:19 -07:00
|
|
|
#include "nsFocusManager.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMCharacterData.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDOMRange.h"
|
|
|
|
#include "nsIDOMXULDocument.h"
|
2007-08-14 09:25:24 -07:00
|
|
|
#include "nsIEditingSession.h"
|
|
|
|
#include "nsIEditor.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIFrame.h"
|
2007-12-04 23:34:47 -08:00
|
|
|
#include "nsFrameSelection.h"
|
2007-12-11 06:15:21 -08:00
|
|
|
#include "nsILineIterator.h"
|
2007-08-14 09:25:24 -07:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIPlaintextEditor.h"
|
2007-12-11 06:15:21 -08:00
|
|
|
#include "nsIScrollableFrame.h"
|
2007-12-04 23:34:47 -08:00
|
|
|
#include "nsISelectionPrivate.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsTextFragment.h"
|
2012-04-06 14:54:38 -07:00
|
|
|
#include "nsTypedSelection.h"
|
2007-08-03 18:12:24 -07:00
|
|
|
#include "gfxSkipChars.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-07-27 05:43:01 -07:00
|
|
|
using namespace mozilla::a11y;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsHyperTextAccessible
|
2010-06-11 01:23:18 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
nsHyperTextAccessible::
|
2012-02-07 14:38:54 -08:00
|
|
|
nsHyperTextAccessible(nsIContent* aNode, nsDocAccessible* aDoc) :
|
|
|
|
nsAccessibleWrap(aNode, aDoc)
|
2010-06-11 01:23:18 -07:00
|
|
|
{
|
2011-01-27 21:15:22 -08:00
|
|
|
mFlags |= eHyperTextAccessible;
|
2010-06-11 01:23:18 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-14 09:25:24 -07:00
|
|
|
NS_IMPL_ADDREF_INHERITED(nsHyperTextAccessible, nsAccessibleWrap)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsHyperTextAccessible, nsAccessibleWrap)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult nsHyperTextAccessible::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
*aInstancePtr = nsnull;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsHyperTextAccessible))) {
|
|
|
|
*aInstancePtr = static_cast<nsHyperTextAccessible*>(this);
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-08-17 11:25:13 -07:00
|
|
|
|
2012-04-13 18:19:41 -07:00
|
|
|
// ARIA roles that these interfaces are not appropriate for.
|
|
|
|
if (!IsTextRole())
|
2010-06-11 01:23:18 -07:00
|
|
|
return nsAccessible::QueryInterface(aIID, aInstancePtr);
|
2007-08-20 20:18:26 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIAccessibleText))) {
|
|
|
|
*aInstancePtr = static_cast<nsIAccessibleText*>(this);
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIAccessibleHyperText))) {
|
|
|
|
*aInstancePtr = static_cast<nsIAccessibleHyperText*>(this);
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIAccessibleEditableText))) {
|
|
|
|
*aInstancePtr = static_cast<nsIAccessibleEditableText*>(this);
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nsAccessible::QueryInterface(aIID, aInstancePtr);
|
|
|
|
}
|
|
|
|
|
2012-01-11 19:07:35 -08:00
|
|
|
role
|
2010-09-04 19:14:01 -07:00
|
|
|
nsHyperTextAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
nsIAtom *tag = mContent->Tag();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-04-24 11:35:23 -07:00
|
|
|
if (tag == nsGkAtoms::dd)
|
|
|
|
return roles::DEFINITION;
|
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::form)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::FORM;
|
2010-09-04 19:14:01 -07:00
|
|
|
|
2012-01-11 19:07:35 -08:00
|
|
|
if (tag == nsGkAtoms::blockquote || tag == nsGkAtoms::div ||
|
2012-03-28 01:20:50 -07:00
|
|
|
tag == nsGkAtoms::section || tag == nsGkAtoms::nav)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::SECTION;
|
2010-09-04 19:14:01 -07:00
|
|
|
|
2012-01-11 19:07:35 -08:00
|
|
|
if (tag == nsGkAtoms::h1 || tag == nsGkAtoms::h2 ||
|
|
|
|
tag == nsGkAtoms::h3 || tag == nsGkAtoms::h4 ||
|
|
|
|
tag == nsGkAtoms::h5 || tag == nsGkAtoms::h6)
|
|
|
|
return roles::HEADING;
|
2010-09-04 19:14:01 -07:00
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::article)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::DOCUMENT;
|
2010-11-29 10:32:19 -08:00
|
|
|
|
2010-11-08 05:33:34 -08:00
|
|
|
// Deal with html landmark elements
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::header)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::HEADER;
|
2010-11-08 05:33:34 -08:00
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::footer)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::FOOTER;
|
2010-11-08 05:33:34 -08:00
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::aside)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::NOTE;
|
2010-11-15 10:30:44 -08:00
|
|
|
|
2010-11-08 05:33:34 -08:00
|
|
|
// Treat block frames as paragraphs
|
2010-09-04 19:14:01 -07:00
|
|
|
nsIFrame *frame = GetFrame();
|
2011-11-30 04:36:20 -08:00
|
|
|
if (frame && frame->GetType() == nsGkAtoms::blockFrame)
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::PARAGRAPH;
|
2010-09-04 19:14:01 -07:00
|
|
|
|
2012-01-11 19:07:35 -08:00
|
|
|
return roles::TEXT_CONTAINER; // In ATK this works
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64
|
|
|
|
nsHyperTextAccessible::NativeState()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64 states = nsAccessibleWrap::NativeState();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-07 19:28:38 -08:00
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (editor) {
|
2012-03-14 10:48:01 -07:00
|
|
|
states |= states::EDITABLE;
|
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
} else if (mContent->Tag() == nsGkAtoms::article) {
|
2010-11-29 10:32:19 -08:00
|
|
|
// We want <article> to behave like a document in terms of readonly state.
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::READONLY;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-05-25 03:53:45 -07:00
|
|
|
if (HasChildren())
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::SELECTABLE_TEXT;
|
2007-04-02 08:56:24 -07:00
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
return states;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Substring must be entirely within the same text node
|
2007-08-10 12:24:10 -07:00
|
|
|
nsIntRect nsHyperTextAccessible::GetBoundsForString(nsIFrame *aFrame, PRUint32 aStartRenderedOffset,
|
|
|
|
PRUint32 aEndRenderedOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsIntRect screenRect;
|
2007-08-03 18:12:24 -07:00
|
|
|
NS_ENSURE_TRUE(aFrame, screenRect);
|
2011-06-03 14:35:17 -07:00
|
|
|
if (aFrame->GetType() != nsGkAtoms::textFrame) {
|
2007-09-05 06:31:33 -07:00
|
|
|
// XXX fallback for non-text frames, happens for bullets right now
|
|
|
|
// but in the future bullets will have proper text frames
|
|
|
|
return aFrame->GetScreenRectExternal();
|
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
|
2007-08-10 12:24:10 -07:00
|
|
|
PRInt32 startContentOffset, endContentOffset;
|
|
|
|
nsresult rv = RenderedToContentOffset(aFrame, aStartRenderedOffset, &startContentOffset);
|
2007-08-03 18:12:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, screenRect);
|
2007-08-10 12:24:10 -07:00
|
|
|
rv = RenderedToContentOffset(aFrame, aEndRenderedOffset, &endContentOffset);
|
2007-08-03 18:12:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, screenRect);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame *frame;
|
2007-08-10 12:24:10 -07:00
|
|
|
PRInt32 startContentOffsetInFrame;
|
2007-08-03 18:12:24 -07:00
|
|
|
// Get the right frame continuation -- not really a child, but a sibling of
|
|
|
|
// the primary frame passed in
|
2011-10-17 07:59:28 -07:00
|
|
|
rv = aFrame->GetChildFrameContainingOffset(startContentOffset, false,
|
2007-08-10 12:24:10 -07:00
|
|
|
&startContentOffsetInFrame, &frame);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, screenRect);
|
|
|
|
|
2012-04-10 20:42:42 -07:00
|
|
|
nsPresContext* context = mDoc->PresContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-10 12:24:10 -07:00
|
|
|
while (frame && startContentOffset < endContentOffset) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// Start with this frame's screen rect, which we will
|
|
|
|
// shrink based on the substring we care about within it.
|
|
|
|
// We will then add that frame to the total screenRect we
|
|
|
|
// are returning.
|
|
|
|
nsIntRect frameScreenRect = frame->GetScreenRectExternal();
|
|
|
|
|
|
|
|
// Get the length of the substring in this frame that we want the bounds for
|
|
|
|
PRInt32 startFrameTextOffset, endFrameTextOffset;
|
|
|
|
frame->GetOffsets(startFrameTextOffset, endFrameTextOffset);
|
|
|
|
PRInt32 frameTotalTextLength = endFrameTextOffset - startFrameTextOffset;
|
2007-08-10 12:24:10 -07:00
|
|
|
PRInt32 seekLength = endContentOffset - startContentOffset;
|
2009-12-13 09:32:09 -08:00
|
|
|
PRInt32 frameSubStringLength = NS_MIN(frameTotalTextLength - startContentOffsetInFrame, seekLength);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Add the point where the string starts to the frameScreenRect
|
|
|
|
nsPoint frameTextStartPoint;
|
2007-08-16 20:43:00 -07:00
|
|
|
rv = frame->GetPointFromOffset(startContentOffset, &frameTextStartPoint);
|
2009-01-14 19:27:09 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsIntRect());
|
2007-03-22 10:30:00 -07:00
|
|
|
frameScreenRect.x += context->AppUnitsToDevPixels(frameTextStartPoint.x);
|
|
|
|
|
|
|
|
// Use the point for the end offset to calculate the width
|
|
|
|
nsPoint frameTextEndPoint;
|
2007-08-16 20:43:00 -07:00
|
|
|
rv = frame->GetPointFromOffset(startContentOffset + frameSubStringLength, &frameTextEndPoint);
|
2009-01-14 19:27:09 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsIntRect());
|
2007-03-22 10:30:00 -07:00
|
|
|
frameScreenRect.width = context->AppUnitsToDevPixels(frameTextEndPoint.x - frameTextStartPoint.x);
|
|
|
|
|
|
|
|
screenRect.UnionRect(frameScreenRect, screenRect);
|
|
|
|
|
|
|
|
// Get ready to loop back for next frame continuation
|
2007-08-10 12:24:10 -07:00
|
|
|
startContentOffset += frameSubStringLength;
|
|
|
|
startContentOffsetInFrame = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
frame = frame->GetNextContinuation();
|
|
|
|
}
|
|
|
|
|
|
|
|
return screenRect;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the specified text.
|
|
|
|
*/
|
2007-08-13 22:30:15 -07:00
|
|
|
nsIFrame*
|
|
|
|
nsHyperTextAccessible::GetPosAndText(PRInt32& aStartOffset, PRInt32& aEndOffset,
|
|
|
|
nsAString *aText, nsIFrame **aEndFrame,
|
2007-08-23 21:54:45 -07:00
|
|
|
nsIntRect *aBoundsRect,
|
2010-05-25 01:16:04 -07:00
|
|
|
nsAccessible **aStartAcc,
|
|
|
|
nsAccessible **aEndAcc)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-12-04 23:34:47 -08:00
|
|
|
if (aStartOffset == nsIAccessibleText::TEXT_OFFSET_END_OF_TEXT) {
|
2011-01-24 19:33:47 -08:00
|
|
|
aStartOffset = CharacterCount();
|
2007-09-18 15:31:06 -07:00
|
|
|
}
|
2007-12-04 23:34:47 -08:00
|
|
|
if (aStartOffset == nsIAccessibleText::TEXT_OFFSET_CARET) {
|
|
|
|
GetCaretOffset(&aStartOffset);
|
|
|
|
}
|
|
|
|
if (aEndOffset == nsIAccessibleText::TEXT_OFFSET_END_OF_TEXT) {
|
2011-01-24 19:33:47 -08:00
|
|
|
aEndOffset = CharacterCount();
|
2007-09-18 15:31:06 -07:00
|
|
|
}
|
2007-12-04 23:34:47 -08:00
|
|
|
if (aEndOffset == nsIAccessibleText::TEXT_OFFSET_CARET) {
|
|
|
|
GetCaretOffset(&aEndOffset);
|
|
|
|
}
|
2007-09-18 15:31:06 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 startOffset = aStartOffset;
|
|
|
|
PRInt32 endOffset = aEndOffset;
|
2008-02-11 04:22:56 -08:00
|
|
|
// XXX this prevents text interface usage on <input type="password">
|
2012-01-11 19:07:35 -08:00
|
|
|
bool isPassword = (Role() == roles::PASSWORD_TEXT);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Clear out parameters and set up loop
|
|
|
|
if (aText) {
|
|
|
|
aText->Truncate();
|
|
|
|
}
|
|
|
|
if (endOffset < 0) {
|
|
|
|
const PRInt32 kMaxTextLength = 32767;
|
|
|
|
endOffset = kMaxTextLength; // Max end offset
|
|
|
|
}
|
|
|
|
else if (startOffset > endOffset) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIFrame *startFrame = nsnull;
|
|
|
|
if (aEndFrame) {
|
|
|
|
*aEndFrame = nsnull;
|
|
|
|
}
|
|
|
|
if (aBoundsRect) {
|
2011-04-18 20:07:23 -07:00
|
|
|
aBoundsRect->SetEmpty();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-08-23 21:54:45 -07:00
|
|
|
if (aStartAcc)
|
|
|
|
*aStartAcc = nsnull;
|
|
|
|
if (aEndAcc)
|
|
|
|
*aEndAcc = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsIntRect unionRect;
|
2010-04-19 06:39:57 -07:00
|
|
|
nsAccessible *lastAccessible = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-03 18:12:24 -07:00
|
|
|
gfxSkipChars skipChars;
|
|
|
|
gfxSkipCharsIterator iter;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Loop through children and collect valid offsets, text and bounds
|
2010-04-19 06:39:57 -07:00
|
|
|
// depending on what we need for out parameters.
|
2012-05-25 03:53:45 -07:00
|
|
|
PRUint32 childCount = ChildCount();
|
|
|
|
for (PRUint32 childIdx = 0; childIdx < childCount; childIdx++) {
|
2010-04-19 06:39:57 -07:00
|
|
|
nsAccessible *childAcc = mChildren[childIdx];
|
|
|
|
lastAccessible = childAcc;
|
2008-10-31 20:58:07 -07:00
|
|
|
|
2010-04-19 06:39:57 -07:00
|
|
|
nsIFrame *frame = childAcc->GetFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!frame) {
|
|
|
|
continue;
|
|
|
|
}
|
2007-08-13 22:30:15 -07:00
|
|
|
nsIFrame *primaryFrame = frame;
|
2010-04-19 06:39:57 -07:00
|
|
|
if (nsAccUtils::IsText(childAcc)) {
|
2007-08-13 22:30:15 -07:00
|
|
|
// We only need info up to rendered offset -- that is what we're
|
|
|
|
// converting to content offset
|
2007-09-05 06:31:33 -07:00
|
|
|
PRInt32 substringEndOffset = -1;
|
|
|
|
PRUint32 ourRenderedStart = 0;
|
|
|
|
PRInt32 ourContentStart = 0;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (frame->GetType() == nsGkAtoms::textFrame) {
|
2007-09-05 06:31:33 -07:00
|
|
|
nsresult rv = frame->GetRenderedText(nsnull, &skipChars, &iter);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
ourRenderedStart = iter.GetSkippedOffset();
|
|
|
|
ourContentStart = iter.GetOriginalOffset();
|
|
|
|
substringEndOffset =
|
|
|
|
iter.ConvertOriginalToSkipped(skipChars.GetOriginalCharCount() +
|
|
|
|
ourContentStart) - ourRenderedStart;
|
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
}
|
2007-09-05 06:31:33 -07:00
|
|
|
if (substringEndOffset < 0) {
|
2007-08-13 22:30:15 -07:00
|
|
|
// XXX for non-textframe text like list bullets,
|
|
|
|
// should go away after list bullet rewrite
|
2010-04-19 06:39:57 -07:00
|
|
|
substringEndOffset = nsAccUtils::TextLength(childAcc);
|
2007-08-03 18:12:24 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
if (startOffset < substringEndOffset) {
|
|
|
|
// Our start is within this substring
|
|
|
|
if (startOffset > 0 || endOffset < substringEndOffset) {
|
2007-08-03 18:12:24 -07:00
|
|
|
// We don't want the whole string for this accessible
|
|
|
|
// Get out the continuing text frame with this offset
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 outStartLineUnused;
|
2007-09-05 06:31:33 -07:00
|
|
|
PRInt32 contentOffset;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (frame->GetType() == nsGkAtoms::textFrame) {
|
2007-09-05 08:22:36 -07:00
|
|
|
contentOffset = iter.ConvertSkippedToOriginal(startOffset) +
|
|
|
|
ourRenderedStart - ourContentStart;
|
2007-09-05 06:31:33 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
contentOffset = startOffset;
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
frame->GetChildFrameContainingOffset(contentOffset, true,
|
2007-08-13 22:30:15 -07:00
|
|
|
&outStartLineUnused, &frame);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aEndFrame) {
|
|
|
|
*aEndFrame = frame; // We ended in the current frame
|
2007-08-23 21:54:45 -07:00
|
|
|
if (aEndAcc)
|
2010-04-19 06:39:57 -07:00
|
|
|
NS_ADDREF(*aEndAcc = childAcc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
if (substringEndOffset > endOffset) {
|
|
|
|
// Need to stop before the end of the available text
|
|
|
|
substringEndOffset = endOffset;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
aEndOffset = endOffset;
|
|
|
|
}
|
|
|
|
if (aText) {
|
2008-02-11 04:22:56 -08:00
|
|
|
if (isPassword) {
|
|
|
|
for (PRInt32 count = startOffset; count < substringEndOffset; count ++)
|
|
|
|
*aText += '*'; // Show *'s only for password text
|
|
|
|
}
|
|
|
|
else {
|
2010-04-19 06:39:57 -07:00
|
|
|
childAcc->AppendTextTo(*aText, startOffset,
|
|
|
|
substringEndOffset - startOffset);
|
2008-02-11 04:22:56 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
if (aBoundsRect) { // Caller wants the bounds of the text
|
2007-08-13 22:30:15 -07:00
|
|
|
aBoundsRect->UnionRect(*aBoundsRect,
|
|
|
|
GetBoundsForString(primaryFrame, startOffset,
|
|
|
|
substringEndOffset));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (!startFrame) {
|
|
|
|
startFrame = frame;
|
|
|
|
aStartOffset = startOffset;
|
2007-08-23 21:54:45 -07:00
|
|
|
if (aStartAcc)
|
2010-04-19 06:39:57 -07:00
|
|
|
NS_ADDREF(*aStartAcc = childAcc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
// We already started copying in this accessible's string,
|
|
|
|
// for the next accessible we'll start at offset 0
|
2007-03-22 10:30:00 -07:00
|
|
|
startOffset = 0;
|
|
|
|
}
|
|
|
|
else {
|
2007-08-03 18:12:24 -07:00
|
|
|
// We have not found the start position yet, get the new startOffset
|
|
|
|
// that is relative to next accessible
|
2007-03-22 10:30:00 -07:00
|
|
|
startOffset -= substringEndOffset;
|
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
// The endOffset needs to be relative to the new startOffset
|
2007-03-22 10:30:00 -07:00
|
|
|
endOffset -= substringEndOffset;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Embedded object, append marker
|
|
|
|
// XXX Append \n for <br>'s
|
|
|
|
if (startOffset >= 1) {
|
|
|
|
-- startOffset;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (endOffset > 0) {
|
|
|
|
if (aText) {
|
2010-06-09 20:29:56 -07:00
|
|
|
// XXX: should use nsIAccessible::AppendTextTo.
|
2011-06-03 14:35:17 -07:00
|
|
|
if (frame->GetType() == nsGkAtoms::brFrame) {
|
2007-11-16 19:44:49 -08:00
|
|
|
*aText += kForcedNewLineChar;
|
2008-10-17 03:10:43 -07:00
|
|
|
} else if (nsAccUtils::MustPrune(this)) {
|
2007-11-16 19:44:49 -08:00
|
|
|
*aText += kImaginaryEmbeddedObjectChar;
|
|
|
|
// Expose imaginary embedded object character if the accessible
|
|
|
|
// hans't children.
|
|
|
|
} else {
|
|
|
|
*aText += kEmbeddedObjectChar;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
if (aBoundsRect) {
|
2007-08-13 22:30:15 -07:00
|
|
|
aBoundsRect->UnionRect(*aBoundsRect,
|
|
|
|
frame->GetScreenRectExternal());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!startFrame) {
|
|
|
|
startFrame = frame;
|
|
|
|
aStartOffset = 0;
|
2007-08-23 21:54:45 -07:00
|
|
|
if (aStartAcc)
|
2010-04-19 06:39:57 -07:00
|
|
|
NS_ADDREF(*aStartAcc = childAcc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
-- endOffset;
|
|
|
|
}
|
|
|
|
if (endOffset <= 0 && startFrame) {
|
|
|
|
break; // If we don't have startFrame yet, get that in next loop iteration
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-18 15:31:06 -07:00
|
|
|
if (aStartAcc && !*aStartAcc) {
|
|
|
|
NS_IF_ADDREF(*aStartAcc = lastAccessible);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aEndFrame && !*aEndFrame) {
|
|
|
|
*aEndFrame = startFrame;
|
2007-08-23 21:54:45 -07:00
|
|
|
if (aStartAcc && aEndAcc)
|
2007-09-18 15:31:06 -07:00
|
|
|
NS_IF_ADDREF(*aEndAcc = *aStartAcc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return startFrame;
|
|
|
|
}
|
|
|
|
|
2011-02-01 08:08:36 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetText(PRInt32 aStartOffset, PRInt32 aEndOffset,
|
|
|
|
nsAString &aText)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-02-01 08:08:36 -08:00
|
|
|
aText.Truncate();
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2010-06-11 01:23:18 -07:00
|
|
|
|
2011-02-03 06:29:12 -08:00
|
|
|
PRInt32 startOffset = ConvertMagicOffset(aStartOffset);
|
2012-05-23 11:06:07 -07:00
|
|
|
PRInt32 endOffset = ConvertMagicOffset(aEndOffset);
|
|
|
|
|
2011-02-03 06:29:12 -08:00
|
|
|
PRInt32 startChildIdx = GetChildIndexAtOffset(startOffset);
|
2012-05-23 11:06:07 -07:00
|
|
|
if (startChildIdx == -1) {
|
|
|
|
// 0 offsets are considered valid for empty text.
|
|
|
|
return (startOffset == 0 && endOffset == 0) ? NS_OK : NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
2011-02-01 08:08:36 -08:00
|
|
|
|
2011-02-03 06:29:12 -08:00
|
|
|
PRInt32 endChildIdx = GetChildIndexAtOffset(endOffset);
|
2011-02-01 08:08:36 -08:00
|
|
|
if (endChildIdx == -1)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
if (startChildIdx == endChildIdx) {
|
|
|
|
PRInt32 childOffset = GetChildOffset(startChildIdx);
|
|
|
|
NS_ENSURE_STATE(childOffset != -1);
|
|
|
|
|
|
|
|
nsAccessible* child = GetChildAt(startChildIdx);
|
2011-02-03 06:29:12 -08:00
|
|
|
child->AppendTextTo(aText, startOffset - childOffset,
|
|
|
|
endOffset - startOffset);
|
2011-02-01 08:08:36 -08:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 startChildOffset = GetChildOffset(startChildIdx);
|
|
|
|
NS_ENSURE_STATE(startChildOffset != -1);
|
|
|
|
|
|
|
|
nsAccessible* startChild = GetChildAt(startChildIdx);
|
2011-02-03 06:29:12 -08:00
|
|
|
startChild->AppendTextTo(aText, startOffset - startChildOffset);
|
2011-02-01 08:08:36 -08:00
|
|
|
|
|
|
|
for (PRInt32 childIdx = startChildIdx + 1; childIdx < endChildIdx; childIdx++) {
|
|
|
|
nsAccessible* child = GetChildAt(childIdx);
|
|
|
|
child->AppendTextTo(aText);
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 endChildOffset = GetChildOffset(endChildIdx);
|
|
|
|
NS_ENSURE_STATE(endChildOffset != -1);
|
|
|
|
|
|
|
|
nsAccessible* endChild = GetChildAt(endChildIdx);
|
2011-02-03 06:29:12 -08:00
|
|
|
endChild->AppendTextTo(aText, 0, endOffset - endChildOffset);
|
2011-02-01 08:08:36 -08:00
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the character count.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetCharacterCount(PRInt32 *aCharacterCount)
|
|
|
|
{
|
2010-04-19 06:39:57 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aCharacterCount);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aCharacterCount = 0;
|
2010-04-19 06:39:57 -07:00
|
|
|
|
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2011-01-24 19:33:47 -08:00
|
|
|
*aCharacterCount = CharacterCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the specified character.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetCharacterAtOffset(PRInt32 aOffset, PRUnichar *aCharacter)
|
|
|
|
{
|
2011-02-03 06:29:12 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aCharacter);
|
|
|
|
*aCharacter = nsnull;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2010-06-11 01:23:18 -07:00
|
|
|
|
2011-02-03 06:29:12 -08:00
|
|
|
nsAutoString character;
|
|
|
|
if (GetCharAt(aOffset, eGetAt, character)) {
|
|
|
|
*aCharacter = character.First();
|
|
|
|
return NS_OK;
|
2007-08-06 23:10:31 -07:00
|
|
|
}
|
|
|
|
|
2011-02-03 06:29:12 -08:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
nsAccessible*
|
2010-06-11 01:23:18 -07:00
|
|
|
nsHyperTextAccessible::DOMPointToHypertextOffset(nsINode *aNode,
|
2010-05-17 09:16:52 -07:00
|
|
|
PRInt32 aNodeOffset,
|
|
|
|
PRInt32 *aHyperTextOffset,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aIsEndOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-17 09:16:52 -07:00
|
|
|
if (!aHyperTextOffset)
|
|
|
|
return nsnull;
|
2007-08-03 18:12:24 -07:00
|
|
|
*aHyperTextOffset = 0;
|
2008-01-25 05:47:48 -08:00
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
if (!aNode)
|
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-03 18:12:24 -07:00
|
|
|
PRUint32 addTextOffset = 0;
|
2010-06-11 01:23:18 -07:00
|
|
|
nsINode* findNode = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-08-28 14:57:53 -07:00
|
|
|
if (aNodeOffset == -1) {
|
|
|
|
findNode = aNode;
|
2010-06-11 01:23:18 -07:00
|
|
|
|
|
|
|
} else if (aNode->IsNodeOfType(nsINode::eTEXT)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// For text nodes, aNodeOffset comes in as a character offset
|
|
|
|
// Text offset will be added at the end, if we find the offset in this hypertext
|
2007-08-03 18:12:24 -07:00
|
|
|
// We want the "skipped" offset into the text (rendered text without the extra whitespace)
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aNode);
|
|
|
|
NS_ASSERTION(content, "No nsIContent for dom node");
|
2009-12-24 13:20:05 -08:00
|
|
|
nsIFrame *frame = content->GetPrimaryFrame();
|
2010-05-17 09:16:52 -07:00
|
|
|
NS_ENSURE_TRUE(frame, nsnull);
|
2007-08-03 18:12:24 -07:00
|
|
|
nsresult rv = ContentToRenderedOffset(frame, aNodeOffset, &addTextOffset);
|
2010-05-17 09:16:52 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
// Get the child node and
|
|
|
|
findNode = aNode;
|
2010-06-11 01:23:18 -07:00
|
|
|
|
|
|
|
} else {
|
|
|
|
// findNode could be null if aNodeOffset == # of child nodes, which means
|
|
|
|
// one of two things:
|
|
|
|
// 1) we're at the end of the children, keep findNode = null, so that we get
|
|
|
|
// the last possible offset
|
|
|
|
// 2) there are no children and the passed-in node is mContent, which means
|
|
|
|
// we're an aempty nsIAccessibleText
|
|
|
|
// 3) there are no children, and the passed-in node is not mContent -- use
|
|
|
|
// parentContent for the node to find
|
|
|
|
|
|
|
|
findNode = aNode->GetChildAt(aNodeOffset);
|
2007-04-19 06:56:09 -07:00
|
|
|
if (!findNode && !aNodeOffset) {
|
2010-06-11 01:23:18 -07:00
|
|
|
if (aNode == GetNode()) {
|
2007-08-10 18:44:44 -07:00
|
|
|
// There are no children, which means this is an empty nsIAccessibleText, in which
|
|
|
|
// case we can only be at hypertext offset 0
|
|
|
|
*aHyperTextOffset = 0;
|
2010-05-17 09:16:52 -07:00
|
|
|
return nsnull;
|
2007-08-10 18:44:44 -07:00
|
|
|
}
|
2010-06-11 01:23:18 -07:00
|
|
|
findNode = aNode; // Case #2: there are no children
|
2007-04-19 06:56:09 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get accessible for this findNode, or if that node isn't accessible, use the
|
|
|
|
// accessible for the next DOM node which has one (based on forward depth first search)
|
2010-05-25 01:05:52 -07:00
|
|
|
nsAccessible *descendantAcc = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (findNode) {
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIContent> findContent(do_QueryInterface(findNode));
|
|
|
|
if (findContent && findContent->IsHTML() &&
|
2011-06-03 14:35:17 -07:00
|
|
|
findContent->NodeInfo()->Equals(nsGkAtoms::br) &&
|
2010-02-08 13:02:18 -08:00
|
|
|
findContent->AttrValueIs(kNameSpaceID_None,
|
2011-06-03 14:35:17 -07:00
|
|
|
nsGkAtoms::mozeditorbogusnode,
|
|
|
|
nsGkAtoms::_true,
|
2010-02-08 13:02:18 -08:00
|
|
|
eIgnoreCase)) {
|
|
|
|
// This <br> is the hacky "bogus node" used when there is no text in a control
|
|
|
|
*aHyperTextOffset = 0;
|
2010-05-17 09:16:52 -07:00
|
|
|
return nsnull;
|
2008-01-21 17:32:11 -08:00
|
|
|
}
|
2010-04-23 17:40:51 -07:00
|
|
|
descendantAcc = GetFirstAvailableAccessible(findNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-19 06:39:57 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// From the descendant, go up and get the immediate child of this hypertext
|
2011-07-23 01:38:33 -07:00
|
|
|
nsAccessible* childAccAtOffset = nsnull;
|
2010-04-19 06:39:57 -07:00
|
|
|
while (descendantAcc) {
|
2011-07-23 01:38:33 -07:00
|
|
|
nsAccessible* parentAcc = descendantAcc->Parent();
|
2010-04-19 06:39:57 -07:00
|
|
|
if (parentAcc == this) {
|
|
|
|
childAccAtOffset = descendantAcc;
|
2007-03-22 10:30:00 -07:00
|
|
|
break;
|
|
|
|
}
|
2010-04-19 06:39:57 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// This offset no longer applies because the passed-in text object is not a child
|
|
|
|
// of the hypertext. This happens when there are nested hypertexts, e.g.
|
|
|
|
// <div>abc<h1>def</h1>ghi</div>
|
|
|
|
// If the passed-in DOM point was not on a direct child of the hypertext, we will
|
|
|
|
// return the offset for that entire hypertext
|
2007-09-18 15:28:26 -07:00
|
|
|
if (aIsEndOffset) {
|
|
|
|
// Not inclusive, the indicated char comes at index before this offset
|
|
|
|
// If the end offset is after the first character of the passed in object, use 1 for
|
2007-05-09 10:42:42 -07:00
|
|
|
// addTextOffset, to put us after the embedded object char. We'll only treat the offset as
|
|
|
|
// before the embedded object char if we end at the very beginning of the child.
|
|
|
|
addTextOffset = addTextOffset > 0;
|
2007-09-18 15:28:26 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Start offset, inclusive
|
|
|
|
// Make sure the offset lands on the embedded object character in order to indicate
|
|
|
|
// the true inner offset is inside the subtree for that link
|
2008-10-17 03:10:43 -07:00
|
|
|
addTextOffset =
|
2010-05-25 01:40:54 -07:00
|
|
|
(nsAccUtils::TextLength(descendantAcc) == addTextOffset) ? 1 : 0;
|
2007-09-18 15:28:26 -07:00
|
|
|
}
|
2010-04-19 06:39:57 -07:00
|
|
|
|
2010-05-25 01:05:52 -07:00
|
|
|
descendantAcc = parentAcc;
|
2010-04-19 06:39:57 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Loop through, adding offsets until we reach childAccessible
|
|
|
|
// If childAccessible is null we will end up adding up the entire length of
|
|
|
|
// the hypertext, which is good -- it just means our offset node
|
|
|
|
// came after the last accessible child's node
|
2012-05-25 03:53:45 -07:00
|
|
|
PRUint32 childCount = ChildCount();
|
2010-04-19 06:39:57 -07:00
|
|
|
|
2012-05-25 03:53:45 -07:00
|
|
|
PRUint32 childIdx = 0;
|
2010-04-19 06:39:57 -07:00
|
|
|
nsAccessible *childAcc = nsnull;
|
|
|
|
for (; childIdx < childCount; childIdx++) {
|
|
|
|
childAcc = mChildren[childIdx];
|
|
|
|
if (childAcc == childAccAtOffset)
|
|
|
|
break;
|
|
|
|
|
2010-05-25 01:40:54 -07:00
|
|
|
*aHyperTextOffset += nsAccUtils::TextLength(childAcc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-04-19 06:39:57 -07:00
|
|
|
|
|
|
|
if (childIdx < childCount) {
|
2007-08-03 18:12:24 -07:00
|
|
|
*aHyperTextOffset += addTextOffset;
|
2010-04-19 06:39:57 -07:00
|
|
|
NS_ASSERTION(childAcc == childAccAtOffset,
|
|
|
|
"These should be equal whenever we exit loop and childAcc != nsnull");
|
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
if (childIdx < childCount - 1 ||
|
2010-05-25 01:40:54 -07:00
|
|
|
addTextOffset < nsAccUtils::TextLength(childAccAtOffset)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
// If not at end of last text node, we will return the accessible we were in
|
2010-05-17 09:16:52 -07:00
|
|
|
return childAccAtOffset;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2007-08-28 14:57:53 -07:00
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
return nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-07-17 05:06:24 -07:00
|
|
|
nsresult
|
|
|
|
nsHyperTextAccessible::HypertextOffsetToDOMPoint(PRInt32 aHTOffset,
|
|
|
|
nsIDOMNode **aNode,
|
|
|
|
PRInt32 *aOffset)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> endNode;
|
|
|
|
PRInt32 endOffset;
|
|
|
|
|
|
|
|
return HypertextOffsetsToDOMRange(aHTOffset, aHTOffset, aNode, aOffset,
|
|
|
|
getter_AddRefs(endNode), &endOffset);
|
|
|
|
}
|
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
nsresult
|
|
|
|
nsHyperTextAccessible::HypertextOffsetsToDOMRange(PRInt32 aStartHTOffset,
|
|
|
|
PRInt32 aEndHTOffset,
|
|
|
|
nsIDOMNode **aStartNode,
|
|
|
|
PRInt32 *aStartOffset,
|
|
|
|
nsIDOMNode **aEndNode,
|
|
|
|
PRInt32 *aEndOffset)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aStartNode);
|
|
|
|
*aStartNode = nsnull;
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aStartOffset);
|
|
|
|
*aStartOffset = -1;
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aEndNode);
|
|
|
|
*aEndNode = nsnull;
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aEndOffset);
|
|
|
|
*aEndOffset = -1;
|
|
|
|
|
2008-08-28 07:48:41 -07:00
|
|
|
// If the given offsets are 0 and associated editor is empty then return
|
|
|
|
// collapsed range with editor root element as range container.
|
|
|
|
if (aStartHTOffset == 0 && aEndHTOffset == 0) {
|
2012-03-07 19:28:38 -08:00
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2008-08-28 07:48:41 -07:00
|
|
|
if (editor) {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isEmpty = false;
|
2008-08-28 07:48:41 -07:00
|
|
|
editor->GetDocumentIsEmpty(&isEmpty);
|
|
|
|
if (isEmpty) {
|
|
|
|
nsCOMPtr<nsIDOMElement> editorRootElm;
|
|
|
|
editor->GetRootElement(getter_AddRefs(editorRootElm));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> editorRoot(do_QueryInterface(editorRootElm));
|
|
|
|
if (editorRoot) {
|
|
|
|
*aStartOffset = *aEndOffset = 0;
|
|
|
|
NS_ADDREF(*aStartNode = editorRoot);
|
|
|
|
NS_ADDREF(*aEndNode = editorRoot);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-25 01:16:04 -07:00
|
|
|
nsRefPtr<nsAccessible> startAcc, endAcc;
|
2007-09-24 22:48:51 -07:00
|
|
|
PRInt32 startOffset = aStartHTOffset, endOffset = aEndHTOffset;
|
|
|
|
nsIFrame *startFrame = nsnull, *endFrame = nsnull;
|
|
|
|
|
|
|
|
startFrame = GetPosAndText(startOffset, endOffset, nsnull, &endFrame, nsnull,
|
|
|
|
getter_AddRefs(startAcc), getter_AddRefs(endAcc));
|
|
|
|
if (!startAcc || !endAcc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> startNode, endNode;
|
|
|
|
nsresult rv = GetDOMPointByFrameOffset(startFrame, startOffset, startAcc,
|
|
|
|
getter_AddRefs(startNode),
|
|
|
|
&startOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aStartHTOffset != aEndHTOffset) {
|
|
|
|
rv = GetDOMPointByFrameOffset(endFrame, endOffset, endAcc,
|
|
|
|
getter_AddRefs(endNode), &endOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
} else {
|
|
|
|
endNode = startNode;
|
|
|
|
endOffset = startOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(*aStartNode = startNode);
|
|
|
|
*aStartOffset = startOffset;
|
|
|
|
|
|
|
|
NS_ADDREF(*aEndNode = endNode);
|
|
|
|
*aEndOffset = endOffset;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-08-29 00:12:09 -07:00
|
|
|
PRInt32
|
|
|
|
nsHyperTextAccessible::GetRelativeOffset(nsIPresShell *aPresShell,
|
|
|
|
nsIFrame *aFromFrame,
|
|
|
|
PRInt32 aFromOffset,
|
2010-06-11 21:04:50 -07:00
|
|
|
nsAccessible *aFromAccessible,
|
2007-08-29 00:12:09 -07:00
|
|
|
nsSelectionAmount aAmount,
|
|
|
|
nsDirection aDirection,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aNeedsStart)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
const bool kIsJumpLinesOk = true; // okay to jump lines
|
|
|
|
const bool kIsScrollViewAStop = false; // do not stop at scroll views
|
|
|
|
const bool kIsKeyboardSelect = true; // is keyboard selection
|
|
|
|
const bool kIsVisualBidi = false; // use visual order for bidi text
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
EWordMovementType wordMovementType = aNeedsStart ? eStartWord : eEndWord;
|
|
|
|
if (aAmount == eSelectLine) {
|
|
|
|
aAmount = (aDirection == eDirNext) ? eSelectEndLine : eSelectBeginLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask layout for the new node and offset, after moving the appropriate amount
|
2007-08-03 18:12:24 -07:00
|
|
|
|
2007-08-29 00:12:09 -07:00
|
|
|
nsresult rv;
|
|
|
|
PRInt32 contentOffset = aFromOffset;
|
2008-10-17 03:10:43 -07:00
|
|
|
if (nsAccUtils::IsText(aFromAccessible)) {
|
2010-06-11 21:04:50 -07:00
|
|
|
nsIFrame *frame = aFromAccessible->GetFrame();
|
2007-08-29 00:12:09 -07:00
|
|
|
NS_ENSURE_TRUE(frame, -1);
|
2008-10-31 20:58:07 -07:00
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
if (frame->GetType() == nsGkAtoms::textFrame) {
|
2007-09-05 06:31:33 -07:00
|
|
|
rv = RenderedToContentOffset(frame, aFromOffset, &contentOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
}
|
2007-08-29 00:12:09 -07:00
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
|
2012-03-26 09:09:38 -07:00
|
|
|
nsPeekOffsetStruct pos(aAmount, aDirection, contentOffset,
|
|
|
|
0, kIsJumpLinesOk, kIsScrollViewAStop, kIsKeyboardSelect, kIsVisualBidi,
|
|
|
|
wordMovementType);
|
2007-08-03 18:12:24 -07:00
|
|
|
rv = aFromFrame->PeekOffset(&pos);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
if (aDirection == eDirPrevious) {
|
|
|
|
// Use passed-in frame as starting point in failure case for now,
|
|
|
|
// this is a hack to deal with starting on a list bullet frame,
|
|
|
|
// which fails in PeekOffset() because the line iterator doesn't see it.
|
|
|
|
// XXX Need to look at our overall handling of list bullets, which are an odd case
|
|
|
|
pos.mResultContent = aFromFrame->GetContent();
|
|
|
|
PRInt32 endOffsetUnused;
|
|
|
|
aFromFrame->GetOffsets(pos.mContentOffset, endOffsetUnused);
|
|
|
|
}
|
|
|
|
else {
|
2007-08-03 18:12:24 -07:00
|
|
|
return -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Turn the resulting node and offset into a hyperTextOffset
|
|
|
|
PRInt32 hyperTextOffset;
|
2010-06-11 01:23:18 -07:00
|
|
|
if (!pos.mResultContent)
|
|
|
|
return -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
// If finalAccessible is nsnull, then DOMPointToHypertextOffset() searched
|
|
|
|
// through the hypertext children without finding the node/offset position.
|
|
|
|
nsAccessible *finalAccessible =
|
2010-06-11 01:23:18 -07:00
|
|
|
DOMPointToHypertextOffset(pos.mResultContent, pos.mContentOffset,
|
|
|
|
&hyperTextOffset, aDirection == eDirNext);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!finalAccessible && aDirection == eDirPrevious) {
|
|
|
|
// If we reached the end during search, this means we didn't find the DOM point
|
|
|
|
// and we're actually at the start of the paragraph
|
|
|
|
hyperTextOffset = 0;
|
|
|
|
}
|
|
|
|
else if (aAmount == eSelectBeginLine) {
|
2010-01-11 06:14:06 -08:00
|
|
|
nsAccessible *firstChild = mChildren.SafeElementAt(0, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
// For line selection with needsStart, set start of line exactly to line break
|
2009-12-10 11:12:19 -08:00
|
|
|
if (pos.mContentOffset == 0 && firstChild &&
|
2012-01-11 19:07:35 -08:00
|
|
|
firstChild->Role() == roles::STATICTEXT &&
|
2010-07-16 07:15:07 -07:00
|
|
|
static_cast<PRInt32>(nsAccUtils::TextLength(firstChild)) == hyperTextOffset) {
|
2007-04-24 11:25:00 -07:00
|
|
|
// XXX Bullet hack -- we should remove this once list bullets use anonymous content
|
|
|
|
hyperTextOffset = 0;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!aNeedsStart && hyperTextOffset > 0) {
|
|
|
|
-- hyperTextOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (aAmount == eSelectEndLine && finalAccessible) {
|
|
|
|
// If not at very end of hypertext, we may need change the end of line offset by 1,
|
|
|
|
// to make sure we are in the right place relative to the line ending
|
2012-01-11 19:07:35 -08:00
|
|
|
if (finalAccessible->Role() == roles::WHITESPACE) { // Landed on <br> hard line break
|
2007-03-22 10:30:00 -07:00
|
|
|
// if aNeedsStart, set end of line exactly 1 character past line break
|
|
|
|
// XXX It would be cleaner if we did not have to have the hard line break check,
|
|
|
|
// and just got the correct results from PeekOffset() for the <br> case -- the returned offset should
|
|
|
|
// come after the new line, as it does in other cases.
|
|
|
|
++ hyperTextOffset; // Get past hard line break
|
|
|
|
}
|
|
|
|
// We are now 1 character past the line break
|
|
|
|
if (!aNeedsStart) {
|
|
|
|
-- hyperTextOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hyperTextOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Gets the specified text relative to aBoundaryType, which means:
|
|
|
|
BOUNDARY_CHAR The character before/at/after the offset is returned.
|
|
|
|
BOUNDARY_WORD_START From the word start before/at/after the offset to the next word start.
|
|
|
|
BOUNDARY_WORD_END From the word end before/at/after the offset to the next work end.
|
|
|
|
BOUNDARY_LINE_START From the line start before/at/after the offset to the next line start.
|
|
|
|
BOUNDARY_LINE_END From the line end before/at/after the offset to the next line start.
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsresult nsHyperTextAccessible::GetTextHelper(EGetTextType aType, nsAccessibleTextBoundary aBoundaryType,
|
|
|
|
PRInt32 aOffset, PRInt32 *aStartOffset, PRInt32 *aEndOffset,
|
|
|
|
nsAString &aText)
|
|
|
|
{
|
|
|
|
aText.Truncate();
|
2008-07-24 08:20:39 -07:00
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aStartOffset);
|
|
|
|
NS_ENSURE_ARG_POINTER(aEndOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aStartOffset = *aEndOffset = 0;
|
|
|
|
|
2012-02-07 14:38:54 -08:00
|
|
|
if (!mDoc)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsIPresShell* presShell = mDoc->PresShell();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!presShell) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2007-12-04 23:34:47 -08:00
|
|
|
if (aOffset == nsIAccessibleText::TEXT_OFFSET_END_OF_TEXT) {
|
2011-01-24 19:33:47 -08:00
|
|
|
aOffset = CharacterCount();
|
2007-12-04 23:34:47 -08:00
|
|
|
}
|
|
|
|
if (aOffset == nsIAccessibleText::TEXT_OFFSET_CARET) {
|
|
|
|
GetCaretOffset(&aOffset);
|
|
|
|
if (aOffset > 0 && (aBoundaryType == BOUNDARY_LINE_START ||
|
|
|
|
aBoundaryType == BOUNDARY_LINE_END)) {
|
|
|
|
// It is the same character offset when the caret is visually at the very end of a line
|
|
|
|
// or the start of a new line. Getting text at the line should provide the line with the visual caret,
|
|
|
|
// otherwise screen readers will announce the wrong line as the user presses up or down arrow and land
|
|
|
|
// at the end of a line.
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
if (frameSelection &&
|
|
|
|
frameSelection->GetHint() == nsFrameSelection::HINTLEFT) {
|
2007-12-04 23:34:47 -08:00
|
|
|
-- aOffset; // We are at the start of a line
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-12-04 23:34:47 -08:00
|
|
|
else if (aOffset < 0) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2008-07-24 08:20:39 -07:00
|
|
|
nsSelectionAmount amount;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool needsStart = false;
|
2008-07-24 08:20:39 -07:00
|
|
|
switch (aBoundaryType) {
|
|
|
|
case BOUNDARY_CHAR:
|
2010-12-16 14:17:41 -08:00
|
|
|
amount = eSelectCluster;
|
2008-07-24 08:20:39 -07:00
|
|
|
if (aType == eGetAt)
|
|
|
|
aType = eGetAfter; // Avoid returning 2 characters
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOUNDARY_WORD_START:
|
2011-10-17 07:59:28 -07:00
|
|
|
needsStart = true;
|
2008-07-24 08:20:39 -07:00
|
|
|
amount = eSelectWord;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOUNDARY_WORD_END:
|
|
|
|
amount = eSelectWord;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOUNDARY_LINE_START:
|
|
|
|
// Newlines are considered at the end of a line. Since getting
|
|
|
|
// the BOUNDARY_LINE_START gets the text from the line-start to the next
|
|
|
|
// line-start, the newline is included at the end of the string.
|
2011-10-17 07:59:28 -07:00
|
|
|
needsStart = true;
|
2008-07-24 08:20:39 -07:00
|
|
|
amount = eSelectLine;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOUNDARY_LINE_END:
|
|
|
|
// Newlines are considered at the end of a line. Since getting
|
|
|
|
// the BOUNDARY_END_START gets the text from the line-end to the next
|
|
|
|
//line-end, the newline is included at the beginning of the string.
|
|
|
|
amount = eSelectLine;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case BOUNDARY_ATTRIBUTE_RANGE:
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
nsresult rv = GetTextAttributes(false, aOffset,
|
2008-07-24 08:20:39 -07:00
|
|
|
aStartOffset, aEndOffset, nsnull);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return GetText(*aStartOffset, *aEndOffset, aText);
|
|
|
|
}
|
|
|
|
|
|
|
|
default: // Note, sentence support is deprecated and falls through to here
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
2007-12-04 23:34:47 -08:00
|
|
|
PRInt32 startOffset = aOffset + (aBoundaryType == BOUNDARY_LINE_END); // Avoid getting the previous line
|
|
|
|
PRInt32 endOffset = startOffset;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Convert offsets to frame-relative
|
2010-05-25 01:16:04 -07:00
|
|
|
nsRefPtr<nsAccessible> startAcc;
|
2007-08-29 00:12:09 -07:00
|
|
|
nsIFrame *startFrame = GetPosAndText(startOffset, endOffset, nsnull, nsnull,
|
|
|
|
nsnull, getter_AddRefs(startAcc));
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!startFrame) {
|
2011-01-24 19:33:47 -08:00
|
|
|
PRInt32 textLength = CharacterCount();
|
2007-09-18 15:34:50 -07:00
|
|
|
if (aBoundaryType == BOUNDARY_LINE_START && aOffset > 0 && aOffset == textLength) {
|
|
|
|
// Asking for start of line, while on last character
|
2010-06-11 21:04:50 -07:00
|
|
|
if (startAcc)
|
|
|
|
startFrame = startAcc->GetFrame();
|
2007-09-18 15:34:50 -07:00
|
|
|
}
|
|
|
|
if (!startFrame) {
|
2007-12-04 23:34:47 -08:00
|
|
|
return aOffset > textLength ? NS_ERROR_FAILURE : NS_OK;
|
2007-09-18 15:34:50 -07:00
|
|
|
}
|
2007-12-04 21:16:26 -08:00
|
|
|
else {
|
|
|
|
// We're on the last continuation since we're on the last character
|
|
|
|
startFrame = startFrame->GetLastContinuation();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 finalStartOffset, finalEndOffset;
|
|
|
|
|
|
|
|
// If aType == eGetAt we'll change both the start and end offset from
|
|
|
|
// the original offset
|
|
|
|
if (aType == eGetAfter) {
|
|
|
|
finalStartOffset = aOffset;
|
|
|
|
}
|
|
|
|
else {
|
2007-08-29 00:12:09 -07:00
|
|
|
finalStartOffset = GetRelativeOffset(presShell, startFrame, startOffset,
|
|
|
|
startAcc, amount, eDirPrevious,
|
|
|
|
needsStart);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_TRUE(finalStartOffset >= 0, NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aType == eGetBefore) {
|
2011-05-20 23:59:58 -07:00
|
|
|
finalEndOffset = aOffset;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Start moving forward from the start so that we don't get
|
2010-05-13 05:19:50 -07:00
|
|
|
// 2 words/lines if the offset occurred on whitespace boundary
|
2007-03-22 10:30:00 -07:00
|
|
|
// Careful, startOffset and endOffset are passed by reference to GetPosAndText() and changed
|
2007-12-04 23:34:47 -08:00
|
|
|
// For BOUNDARY_LINE_END, make sure we start of this line
|
|
|
|
startOffset = endOffset = finalStartOffset + (aBoundaryType == BOUNDARY_LINE_END);
|
2010-05-25 01:16:04 -07:00
|
|
|
nsRefPtr<nsAccessible> endAcc;
|
2007-08-29 00:12:09 -07:00
|
|
|
nsIFrame *endFrame = GetPosAndText(startOffset, endOffset, nsnull, nsnull,
|
|
|
|
nsnull, getter_AddRefs(endAcc));
|
2012-01-11 19:07:35 -08:00
|
|
|
if (endAcc && endAcc->Role() == roles::STATICTEXT) {
|
2008-01-21 17:26:49 -08:00
|
|
|
// Static text like list bullets will ruin our forward calculation,
|
|
|
|
// since the caret cannot be in the static text. Start just after the static text.
|
2008-10-17 03:10:43 -07:00
|
|
|
startOffset = endOffset = finalStartOffset +
|
|
|
|
(aBoundaryType == BOUNDARY_LINE_END) +
|
|
|
|
nsAccUtils::TextLength(endAcc);
|
|
|
|
|
2008-01-21 17:26:49 -08:00
|
|
|
endFrame = GetPosAndText(startOffset, endOffset, nsnull, nsnull,
|
|
|
|
nsnull, getter_AddRefs(endAcc));
|
|
|
|
}
|
2008-01-28 19:59:50 -08:00
|
|
|
if (!endFrame) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2007-08-29 00:12:09 -07:00
|
|
|
finalEndOffset = GetRelativeOffset(presShell, endFrame, endOffset, endAcc,
|
|
|
|
amount, eDirNext, needsStart);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_TRUE(endOffset >= 0, NS_ERROR_FAILURE);
|
|
|
|
if (finalEndOffset == aOffset) {
|
2007-09-18 14:36:41 -07:00
|
|
|
if (aType == eGetAt && amount == eSelectWord) {
|
|
|
|
// Fix word error for the first character in word: PeekOffset() will return the previous word when
|
|
|
|
// aOffset points to the first character of the word, but accessibility APIs want the current word
|
|
|
|
// that the first character is in
|
|
|
|
return GetTextHelper(eGetAfter, aBoundaryType, aOffset, aStartOffset, aEndOffset, aText);
|
|
|
|
}
|
2011-01-24 19:33:47 -08:00
|
|
|
PRInt32 textLength = CharacterCount();
|
2007-09-18 15:34:50 -07:00
|
|
|
if (finalEndOffset < textLength) {
|
|
|
|
// This happens sometimes when current character at finalStartOffset
|
|
|
|
// is an embedded object character representing another hypertext, that
|
|
|
|
// the AT really needs to dig into separately
|
|
|
|
++ finalEndOffset;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aStartOffset = finalStartOffset;
|
|
|
|
*aEndOffset = finalEndOffset;
|
|
|
|
|
|
|
|
NS_ASSERTION((finalStartOffset < aOffset && finalEndOffset >= aOffset) || aType != eGetBefore, "Incorrect results for GetTextHelper");
|
|
|
|
NS_ASSERTION((finalStartOffset <= aOffset && finalEndOffset > aOffset) || aType == eGetBefore, "Incorrect results for GetTextHelper");
|
|
|
|
|
2007-09-18 15:34:50 -07:00
|
|
|
GetPosAndText(finalStartOffset, finalEndOffset, &aText);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsIAccessibleText impl.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetTextBeforeOffset(PRInt32 aOffset, nsAccessibleTextBoundary aBoundaryType,
|
|
|
|
PRInt32 *aStartOffset, PRInt32 *aEndOffset, nsAString & aText)
|
|
|
|
{
|
2011-02-03 06:29:12 -08:00
|
|
|
if (aBoundaryType == BOUNDARY_CHAR) {
|
|
|
|
GetCharAt(aOffset, eGetBefore, aText, aStartOffset, aEndOffset);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return GetTextHelper(eGetBefore, aBoundaryType, aOffset, aStartOffset, aEndOffset, aText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetTextAtOffset(PRInt32 aOffset, nsAccessibleTextBoundary aBoundaryType,
|
|
|
|
PRInt32 *aStartOffset, PRInt32 *aEndOffset, nsAString & aText)
|
|
|
|
{
|
2011-02-03 06:29:12 -08:00
|
|
|
if (aBoundaryType == BOUNDARY_CHAR) {
|
|
|
|
GetCharAt(aOffset, eGetAt, aText, aStartOffset, aEndOffset);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return GetTextHelper(eGetAt, aBoundaryType, aOffset, aStartOffset, aEndOffset, aText);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetTextAfterOffset(PRInt32 aOffset, nsAccessibleTextBoundary aBoundaryType,
|
|
|
|
PRInt32 *aStartOffset, PRInt32 *aEndOffset, nsAString & aText)
|
|
|
|
{
|
2011-02-03 06:29:12 -08:00
|
|
|
if (aBoundaryType == BOUNDARY_CHAR) {
|
|
|
|
GetCharAt(aOffset, eGetAfter, aText, aStartOffset, aEndOffset);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return GetTextHelper(eGetAfter, aBoundaryType, aOffset, aStartOffset, aEndOffset, aText);
|
|
|
|
}
|
|
|
|
|
2008-07-17 05:06:24 -07:00
|
|
|
// nsIPersistentProperties
|
|
|
|
// nsIAccessibleText::getTextAttributes(in boolean includeDefAttrs,
|
|
|
|
// in long offset,
|
|
|
|
// out long rangeStartOffset,
|
|
|
|
// out long rangeEndOffset);
|
|
|
|
NS_IMETHODIMP
|
2011-09-28 23:19:26 -07:00
|
|
|
nsHyperTextAccessible::GetTextAttributes(bool aIncludeDefAttrs,
|
2008-07-17 05:06:24 -07:00
|
|
|
PRInt32 aOffset,
|
|
|
|
PRInt32 *aStartOffset,
|
|
|
|
PRInt32 *aEndOffset,
|
|
|
|
nsIPersistentProperties **aAttributes)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-25 01:40:26 -07:00
|
|
|
// 1. Get each attribute and its ranges one after another.
|
2008-07-17 05:06:24 -07:00
|
|
|
// 2. As we get each new attribute, we pass the current start and end offsets
|
|
|
|
// as in/out parameters. In other words, as attributes are collected,
|
|
|
|
// the attribute range itself can only stay the same or get smaller.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-07-17 05:06:24 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aStartOffset);
|
|
|
|
*aStartOffset = 0;
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aEndOffset);
|
2010-05-25 01:40:26 -07:00
|
|
|
*aEndOffset = 0;
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2010-05-21 04:27:00 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2008-07-24 08:20:39 -07:00
|
|
|
if (aAttributes) {
|
|
|
|
*aAttributes = nsnull;
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2008-07-24 08:20:39 -07:00
|
|
|
nsCOMPtr<nsIPersistentProperties> attributes =
|
|
|
|
do_CreateInstance(NS_PERSISTENTPROPERTIES_CONTRACTID);
|
|
|
|
NS_ENSURE_TRUE(attributes, NS_ERROR_OUT_OF_MEMORY);
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2008-07-24 08:20:39 -07:00
|
|
|
NS_ADDREF(*aAttributes = attributes);
|
|
|
|
}
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
nsAccessible* accAtOffset = GetChildAtOffset(aOffset);
|
|
|
|
if (!accAtOffset) {
|
2010-05-25 01:40:26 -07:00
|
|
|
// Offset 0 is correct offset when accessible has empty text. Include
|
|
|
|
// default attributes if they were requested, otherwise return empty set.
|
|
|
|
if (aOffset == 0) {
|
2010-05-21 04:27:00 -07:00
|
|
|
if (aIncludeDefAttrs) {
|
2012-03-09 23:29:51 -08:00
|
|
|
TextAttrsMgr textAttrsMgr(this);
|
|
|
|
textAttrsMgr.GetAttributes(*aAttributes);
|
2010-05-21 04:27:00 -07:00
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-05-25 01:40:26 -07:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
2010-05-21 04:27:00 -07:00
|
|
|
}
|
|
|
|
|
2011-06-13 02:08:40 -07:00
|
|
|
PRInt32 accAtOffsetIdx = accAtOffset->IndexInParent();
|
2010-08-15 04:28:49 -07:00
|
|
|
PRInt32 startOffset = GetChildOffset(accAtOffsetIdx);
|
|
|
|
PRInt32 endOffset = GetChildOffset(accAtOffsetIdx + 1);
|
2010-05-25 01:40:26 -07:00
|
|
|
PRInt32 offsetInAcc = aOffset - startOffset;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-09 23:29:51 -08:00
|
|
|
TextAttrsMgr textAttrsMgr(this, aIncludeDefAttrs, accAtOffset,
|
|
|
|
accAtOffsetIdx);
|
|
|
|
textAttrsMgr.GetAttributes(*aAttributes, &startOffset, &endOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-05-25 01:40:26 -07:00
|
|
|
// Compute spelling attributes on text accessible only.
|
2010-08-15 04:28:49 -07:00
|
|
|
nsIFrame *offsetFrame = accAtOffset->GetFrame();
|
2011-06-03 14:35:17 -07:00
|
|
|
if (offsetFrame && offsetFrame->GetType() == nsGkAtoms::textFrame) {
|
2010-05-25 01:40:26 -07:00
|
|
|
PRInt32 nodeOffset = 0;
|
|
|
|
nsresult rv = RenderedToContentOffset(offsetFrame, offsetInAcc,
|
|
|
|
&nodeOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2010-05-25 01:40:26 -07:00
|
|
|
// Set 'misspelled' text attribute.
|
2012-03-06 09:08:02 -08:00
|
|
|
rv = GetSpellTextAttribute(accAtOffset->GetNode(), nodeOffset,
|
|
|
|
&startOffset, &endOffset,
|
2010-05-25 01:40:26 -07:00
|
|
|
aAttributes ? *aAttributes : nsnull);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2010-05-25 01:40:26 -07:00
|
|
|
*aStartOffset = startOffset;
|
|
|
|
*aEndOffset = endOffset;
|
|
|
|
return NS_OK;
|
2008-07-17 05:06:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// nsIPersistentProperties
|
|
|
|
// nsIAccessibleText::defaultTextAttributes
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetDefaultTextAttributes(nsIPersistentProperties **aAttributes)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAttributes);
|
|
|
|
*aAttributes = nsnull;
|
|
|
|
|
2010-05-25 01:40:26 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2008-07-17 05:06:24 -07:00
|
|
|
nsCOMPtr<nsIPersistentProperties> attributes =
|
|
|
|
do_CreateInstance(NS_PERSISTENTPROPERTIES_CONTRACTID);
|
|
|
|
NS_ENSURE_TRUE(attributes, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
NS_ADDREF(*aAttributes = attributes);
|
|
|
|
|
2012-03-09 23:29:51 -08:00
|
|
|
TextAttrsMgr textAttrsMgr(this);
|
|
|
|
textAttrsMgr.GetAttributes(*aAttributes);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-06 02:36:50 -08:00
|
|
|
PRInt32
|
|
|
|
nsHyperTextAccessible::GetLevelInternal()
|
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
nsIAtom *tag = mContent->Tag();
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::h1)
|
2010-01-06 02:36:50 -08:00
|
|
|
return 1;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::h2)
|
2010-01-06 02:36:50 -08:00
|
|
|
return 2;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::h3)
|
2010-01-06 02:36:50 -08:00
|
|
|
return 3;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::h4)
|
2010-01-06 02:36:50 -08:00
|
|
|
return 4;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::h5)
|
2010-01-06 02:36:50 -08:00
|
|
|
return 5;
|
2011-06-03 14:35:17 -07:00
|
|
|
if (tag == nsGkAtoms::h6)
|
2010-01-06 02:36:50 -08:00
|
|
|
return 6;
|
|
|
|
|
|
|
|
return nsAccessibleWrap::GetLevelInternal();
|
|
|
|
}
|
|
|
|
|
2007-04-07 02:07:24 -07:00
|
|
|
nsresult
|
|
|
|
nsHyperTextAccessible::GetAttributesInternal(nsIPersistentProperties *aAttributes)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-04-07 02:07:24 -07:00
|
|
|
nsresult rv = nsAccessibleWrap::GetAttributesInternal(aAttributes);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2007-10-10 08:31:52 -07:00
|
|
|
// Indicate when the current object uses block-level formatting
|
|
|
|
// via formatting: block
|
2008-07-02 21:12:45 -07:00
|
|
|
// XXX: 'formatting' attribute is deprecated and will be removed in Mozilla2,
|
|
|
|
// use 'display' attribute instead.
|
2007-10-10 08:31:52 -07:00
|
|
|
nsIFrame *frame = GetFrame();
|
2011-06-03 14:35:17 -07:00
|
|
|
if (frame && frame->GetType() == nsGkAtoms::blockFrame) {
|
2007-10-10 08:31:52 -07:00
|
|
|
nsAutoString oldValueUnused;
|
|
|
|
aAttributes->SetStringProperty(NS_LITERAL_CSTRING("formatting"), NS_LITERAL_STRING("block"),
|
|
|
|
oldValueUnused);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-27 18:46:11 -07:00
|
|
|
if (FocusMgr()->IsFocused(this)) {
|
2012-03-23 11:54:55 -07:00
|
|
|
PRInt32 lineNumber = CaretLineNumber();
|
2007-12-11 06:15:21 -08:00
|
|
|
if (lineNumber >= 1) {
|
|
|
|
nsAutoString strLineNumber;
|
|
|
|
strLineNumber.AppendInt(lineNumber);
|
2011-06-03 14:35:17 -07:00
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsGkAtoms::lineNumber,
|
2008-10-16 02:12:05 -07:00
|
|
|
strLineNumber);
|
2007-12-11 06:15:21 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-08 05:33:34 -08:00
|
|
|
// For the html landmark elements we expose them like we do aria landmarks to
|
2011-07-05 07:28:53 -07:00
|
|
|
// make AT navigation schemes "just work". Note html:header is redundant as
|
|
|
|
// a landmark since it usually contains headings. We're not yet sure how the
|
|
|
|
// web will use html:footer but our best bet right now is as contentinfo.
|
2011-06-03 14:35:17 -07:00
|
|
|
if (mContent->Tag() == nsGkAtoms::nav)
|
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsGkAtoms::xmlroles,
|
2010-11-08 05:33:34 -08:00
|
|
|
NS_LITERAL_STRING("navigation"));
|
2012-03-28 01:20:50 -07:00
|
|
|
else if (mContent->Tag() == nsGkAtoms::section)
|
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsGkAtoms::xmlroles,
|
|
|
|
NS_LITERAL_STRING("region"));
|
2011-06-03 14:35:17 -07:00
|
|
|
else if (mContent->Tag() == nsGkAtoms::footer)
|
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsGkAtoms::xmlroles,
|
2010-11-08 05:33:34 -08:00
|
|
|
NS_LITERAL_STRING("contentinfo"));
|
2011-06-03 14:35:17 -07:00
|
|
|
else if (mContent->Tag() == nsGkAtoms::aside)
|
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsGkAtoms::xmlroles,
|
2011-07-05 07:28:53 -07:00
|
|
|
NS_LITERAL_STRING("complementary"));
|
2010-11-08 05:33:34 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given an offset, the x, y, width, and height values are filled appropriately.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetCharacterExtents(PRInt32 aOffset, PRInt32 *aX, PRInt32 *aY,
|
|
|
|
PRInt32 *aWidth, PRInt32 *aHeight,
|
2007-04-23 05:00:45 -07:00
|
|
|
PRUint32 aCoordType)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return GetRangeExtents(aOffset, aOffset + 1, aX, aY, aWidth, aHeight, aCoordType);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given a start & end offset, the x, y, width, and height values are filled appropriately.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::GetRangeExtents(PRInt32 aStartOffset, PRInt32 aEndOffset,
|
|
|
|
PRInt32 *aX, PRInt32 *aY,
|
|
|
|
PRInt32 *aWidth, PRInt32 *aHeight,
|
2007-04-23 05:00:45 -07:00
|
|
|
PRUint32 aCoordType)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsIntRect boundsRect;
|
|
|
|
nsIFrame *endFrameUnused;
|
2007-06-14 10:12:50 -07:00
|
|
|
if (!GetPosAndText(aStartOffset, aEndOffset, nsnull, &endFrameUnused, &boundsRect) ||
|
|
|
|
boundsRect.IsEmpty()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aX = boundsRect.x;
|
|
|
|
*aY = boundsRect.y;
|
|
|
|
*aWidth = boundsRect.width;
|
|
|
|
*aHeight = boundsRect.height;
|
|
|
|
|
2008-10-16 02:12:05 -07:00
|
|
|
return nsAccUtils::ConvertScreenCoordsTo(aX, aY, aCoordType, this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the offset of the character located at coordinates x and y. x and y are interpreted as being relative to
|
|
|
|
* the screen or this widget's window depending on coords.
|
|
|
|
*/
|
2007-04-23 05:00:45 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetOffsetAtPoint(PRInt32 aX, PRInt32 aY,
|
|
|
|
PRUint32 aCoordType, PRInt32 *aOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aOffset = -1;
|
2012-02-07 14:38:54 -08:00
|
|
|
|
2012-04-10 20:42:42 -07:00
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2012-04-10 20:42:42 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIFrame *hyperFrame = GetFrame();
|
|
|
|
if (!hyperFrame) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
nsIntRect frameScreenRect = hyperFrame->GetScreenRectExternal();
|
|
|
|
|
2007-12-01 09:30:09 -08:00
|
|
|
nsIntPoint coords;
|
2008-10-16 02:12:05 -07:00
|
|
|
nsresult rv = nsAccUtils::ConvertToScreenCoords(aX, aY, aCoordType,
|
|
|
|
this, &coords);
|
2007-12-01 09:30:09 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-12-01 09:30:09 -08:00
|
|
|
// coords are currently screen coordinates, and we need to turn them into
|
2007-03-22 10:30:00 -07:00
|
|
|
// frame coordinates relative to the current accessible
|
2007-12-01 09:30:09 -08:00
|
|
|
if (!frameScreenRect.Contains(coords.x, coords.y)) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK; // Not found, will return -1
|
|
|
|
}
|
2009-01-14 19:27:09 -08:00
|
|
|
nsIntPoint pxInHyperText(coords.x - frameScreenRect.x,
|
2007-12-01 09:30:09 -08:00
|
|
|
coords.y - frameScreenRect.y);
|
2012-04-10 20:42:42 -07:00
|
|
|
nsPresContext* context = mDoc->PresContext();
|
2009-01-14 19:27:09 -08:00
|
|
|
nsPoint pointInHyperText(context->DevPixelsToAppUnits(pxInHyperText.x),
|
|
|
|
context->DevPixelsToAppUnits(pxInHyperText.y));
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Go through the frames to check if each one has the point.
|
|
|
|
// When one does, add up the character offsets until we have a match
|
|
|
|
|
|
|
|
// We have an point in an accessible child of this, now we need to add up the
|
|
|
|
// offsets before it to what we already have
|
|
|
|
PRInt32 offset = 0;
|
2012-05-25 03:53:45 -07:00
|
|
|
PRUint32 childCount = ChildCount();
|
|
|
|
for (PRUint32 childIdx = 0; childIdx < childCount; childIdx++) {
|
2010-04-19 06:39:57 -07:00
|
|
|
nsAccessible *childAcc = mChildren[childIdx];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-04-19 06:39:57 -07:00
|
|
|
nsIFrame *primaryFrame = childAcc->GetFrame();
|
2007-08-20 21:24:21 -07:00
|
|
|
NS_ENSURE_TRUE(primaryFrame, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsIFrame *frame = primaryFrame;
|
2007-03-22 10:30:00 -07:00
|
|
|
while (frame) {
|
|
|
|
nsIContent *content = frame->GetContent();
|
|
|
|
NS_ENSURE_TRUE(content, NS_ERROR_FAILURE);
|
|
|
|
nsPoint pointInFrame = pointInHyperText - frame->GetOffsetToExternal(hyperFrame);
|
|
|
|
nsSize frameSize = frame->GetSize();
|
|
|
|
if (pointInFrame.x < frameSize.width && pointInFrame.y < frameSize.height) {
|
|
|
|
// Finished
|
2011-06-03 14:35:17 -07:00
|
|
|
if (frame->GetType() == nsGkAtoms::textFrame) {
|
2011-10-17 07:59:28 -07:00
|
|
|
nsIFrame::ContentOffsets contentOffsets = frame->GetContentOffsetsFromPointExternal(pointInFrame, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (contentOffsets.IsNull() || contentOffsets.content != content) {
|
|
|
|
return NS_OK; // Not found, will return -1
|
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
PRUint32 addToOffset;
|
2007-08-20 21:24:21 -07:00
|
|
|
nsresult rv = ContentToRenderedOffset(primaryFrame,
|
|
|
|
contentOffsets.offset,
|
|
|
|
&addToOffset);
|
2007-08-03 18:12:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
offset += addToOffset;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
*aOffset = offset;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
frame = frame->GetNextContinuation();
|
|
|
|
}
|
2010-05-25 01:40:54 -07:00
|
|
|
|
|
|
|
offset += nsAccUtils::TextLength(childAcc);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK; // Not found, will return -1
|
|
|
|
}
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsIAccessibleHyperText
|
|
|
|
|
2008-04-11 00:22:32 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetLinkCount(PRInt32 *aLinkCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-04-11 00:22:32 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aLinkCount);
|
|
|
|
*aLinkCount = 0;
|
2010-06-21 06:08:27 -07:00
|
|
|
|
2010-04-19 06:39:57 -07:00
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
*aLinkCount = GetLinkCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-03-29 20:24:02 -07:00
|
|
|
NS_IMETHODIMP
|
2010-06-21 06:08:27 -07:00
|
|
|
nsHyperTextAccessible::GetLinkAt(PRInt32 aIndex, nsIAccessibleHyperLink** aLink)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-03-29 20:24:02 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aLink);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aLink = nsnull;
|
2008-03-29 20:24:02 -07:00
|
|
|
|
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
nsAccessible* link = GetLinkAt(aIndex);
|
|
|
|
if (link)
|
|
|
|
CallQueryInterface(link, aLink);
|
2010-04-19 06:39:57 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetLinkIndex(nsIAccessibleHyperLink* aLink,
|
|
|
|
PRInt32* aIndex)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aLink);
|
2008-03-29 20:24:02 -07:00
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsRefPtr<nsAccessible> link(do_QueryObject(aLink));
|
|
|
|
*aIndex = GetLinkIndex(link);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-04-11 00:22:32 -07:00
|
|
|
NS_IMETHODIMP
|
2010-08-15 04:28:49 -07:00
|
|
|
nsHyperTextAccessible::GetLinkIndexAtOffset(PRInt32 aOffset,
|
2010-06-21 06:08:27 -07:00
|
|
|
PRInt32* aLinkIndex)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-04-11 00:22:32 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aLinkIndex);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aLinkIndex = -1; // API says this magic value means 'not found'
|
|
|
|
|
2010-04-19 06:39:57 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
*aLinkIndex = GetLinkIndexAtOffset(aOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsIAccessibleEditableText impl.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::SetAttributes(PRInt32 aStartPos, PRInt32 aEndPos,
|
|
|
|
nsISupports *aAttributes)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsHyperTextAccessible::SetTextContents(const nsAString &aText)
|
|
|
|
{
|
2011-01-24 19:33:47 -08:00
|
|
|
PRInt32 numChars = CharacterCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (numChars == 0 || NS_SUCCEEDED(DeleteText(0, numChars))) {
|
|
|
|
return InsertText(aText, 0);
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::InsertText(const nsAString &aText, PRInt32 aPosition)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-07 19:28:38 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
nsCOMPtr<nsIPlaintextEditor> peditor(do_QueryInterface(editor));
|
|
|
|
NS_ENSURE_STATE(peditor);
|
|
|
|
|
|
|
|
nsresult rv = SetSelectionRange(aPosition, aPosition);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return peditor->InsertText(aText);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::CopyText(PRInt32 aStartPos, PRInt32 aEndPos)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-07 19:28:38 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_ENSURE_STATE(editor);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
nsresult rv = SetSelectionRange(aStartPos, aEndPos);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return editor->Copy();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::CutText(PRInt32 aStartPos, PRInt32 aEndPos)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-07 19:28:38 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_ENSURE_STATE(editor);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
nsresult rv = SetSelectionRange(aStartPos, aEndPos);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return editor->Cut();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::DeleteText(PRInt32 aStartPos, PRInt32 aEndPos)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-07 19:28:38 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_ENSURE_STATE(editor);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
nsresult rv = SetSelectionRange(aStartPos, aEndPos);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2012-05-10 07:54:33 -07:00
|
|
|
return editor->DeleteSelection(nsIEditor::eNone, nsIEditor::eStrip);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::PasteText(PRInt32 aPosition)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-07 19:28:38 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_ENSURE_STATE(editor);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
nsresult rv = SetSelectionRange(aPosition, aPosition);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return editor->Paste(nsIClipboard::kGlobalClipboard);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-03-07 19:28:38 -08:00
|
|
|
already_AddRefed<nsIEditor>
|
|
|
|
nsHyperTextAccessible::GetEditor() const
|
2007-07-05 10:12:28 -07:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
if (!mContent->HasFlag(NODE_IS_EDITABLE)) {
|
2007-09-05 21:18:22 -07:00
|
|
|
// If we're inside an editable container, then return that container's editor
|
2012-03-07 19:28:38 -08:00
|
|
|
nsAccessible* ancestor = Parent();
|
|
|
|
while (ancestor) {
|
|
|
|
nsHyperTextAccessible* hyperText = ancestor->AsHyperText();
|
|
|
|
if (hyperText) {
|
2007-09-05 21:18:22 -07:00
|
|
|
// Recursion will stop at container doc because it has its own impl
|
2012-03-07 19:28:38 -08:00
|
|
|
// of GetEditor()
|
|
|
|
return hyperText->GetEditor();
|
2007-09-05 21:18:22 -07:00
|
|
|
}
|
2012-03-07 19:28:38 -08:00
|
|
|
|
|
|
|
ancestor = ancestor->Parent();
|
2007-09-05 21:18:22 -07:00
|
|
|
}
|
2012-03-07 19:28:38 -08:00
|
|
|
|
|
|
|
return nsnull;
|
2007-08-14 09:25:24 -07:00
|
|
|
}
|
|
|
|
|
2007-09-05 00:39:09 -07:00
|
|
|
nsCOMPtr<nsIDocShellTreeItem> docShellTreeItem =
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCoreUtils::GetDocShellTreeItemFor(mContent);
|
2007-08-14 09:25:24 -07:00
|
|
|
nsCOMPtr<nsIEditingSession> editingSession(do_GetInterface(docShellTreeItem));
|
|
|
|
if (!editingSession)
|
2012-03-07 19:28:38 -08:00
|
|
|
return nsnull; // No editing session interface
|
2007-08-14 09:25:24 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIEditor> editor;
|
2012-03-07 19:28:38 -08:00
|
|
|
nsIDocument* docNode = mDoc->GetDocumentNode();
|
|
|
|
editingSession->GetEditorForWindow(docNode->GetWindow(),
|
|
|
|
getter_AddRefs(editor));
|
|
|
|
return editor.forget();
|
2007-07-05 10:12:28 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* =================== Caret & Selection ======================
|
|
|
|
*/
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
nsresult
|
|
|
|
nsHyperTextAccessible::SetSelectionRange(PRInt32 aStartPos, PRInt32 aEndPos)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-02-07 20:31:18 -08:00
|
|
|
bool isFocusable = State() & states::FOCUSABLE;
|
|
|
|
|
|
|
|
// If accessible is focusable then focus it before setting the selection to
|
|
|
|
// neglect control's selection changes on focus if any (for example, inputs
|
|
|
|
// that do select all on focus).
|
|
|
|
// some input controls
|
|
|
|
if (isFocusable)
|
|
|
|
TakeFocus();
|
2010-02-20 16:50:50 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Set the selection
|
2010-02-20 16:50:50 -08:00
|
|
|
SetSelectionBounds(0, aStartPos, aEndPos);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// If range 0 was successfully set, clear any additional selection
|
|
|
|
// ranges remaining from previous selection
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
NS_ENSURE_STATE(frameSelection);
|
|
|
|
|
|
|
|
nsCOMPtr<nsISelection> domSel =
|
|
|
|
frameSelection->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
NS_ENSURE_STATE(domSel);
|
|
|
|
|
|
|
|
PRInt32 numRanges = 0;
|
|
|
|
domSel->GetRangeCount(&numRanges);
|
|
|
|
|
|
|
|
for (PRInt32 count = 0; count < numRanges - 1; count ++) {
|
|
|
|
nsCOMPtr<nsIDOMRange> range;
|
|
|
|
domSel->GetRangeAt(1, getter_AddRefs(range));
|
|
|
|
domSel->RemoveRange(range);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-02-07 20:31:18 -08:00
|
|
|
// When selection is done, move the focus to the selection if accessible is
|
|
|
|
// not focusable. That happens when selection is set within hypertext
|
|
|
|
// accessible.
|
|
|
|
if (isFocusable)
|
|
|
|
return NS_OK;
|
|
|
|
|
2011-10-15 20:38:19 -07:00
|
|
|
nsFocusManager* DOMFocusManager = nsFocusManager::GetFocusManager();
|
|
|
|
if (DOMFocusManager) {
|
2012-02-07 14:38:54 -08:00
|
|
|
NS_ENSURE_TRUE(mDoc, NS_ERROR_FAILURE);
|
|
|
|
nsIDocument* docNode = mDoc->GetDocumentNode();
|
|
|
|
NS_ENSURE_TRUE(docNode, NS_ERROR_FAILURE);
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = docNode->GetWindow();
|
2011-10-15 20:38:19 -07:00
|
|
|
nsCOMPtr<nsIDOMElement> result;
|
|
|
|
DOMFocusManager->MoveFocus(window, nsnull, nsIFocusManager::MOVEFOCUS_CARET,
|
|
|
|
nsIFocusManager::FLAG_BYMOVEFOCUS, getter_AddRefs(result));
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-02-20 16:50:50 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::SetCaretOffset(PRInt32 aCaretOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return SetSelectionRange(aCaretOffset, aCaretOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the offset position of the caret (cursor).
|
|
|
|
*/
|
2008-12-16 02:14:20 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetCaretOffset(PRInt32 *aCaretOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-02-12 19:37:52 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aCaretOffset);
|
2008-12-16 02:14:20 -08:00
|
|
|
*aCaretOffset = -1;
|
|
|
|
|
2012-02-15 07:11:00 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2012-02-12 19:37:52 -08:00
|
|
|
// Not focused focusable accessible except document accessible doesn't have
|
|
|
|
// a caret.
|
|
|
|
if (!IsDoc() && !FocusMgr()->IsFocused(this) &&
|
|
|
|
(State() & states::FOCUSABLE)) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-12-16 02:14:20 -08:00
|
|
|
// No caret if the focused node is not inside this DOM node and this DOM node
|
|
|
|
// is not inside of focused node.
|
2011-09-27 18:46:11 -07:00
|
|
|
FocusManager::FocusDisposition focusDisp =
|
|
|
|
FocusMgr()->IsInOrContainsFocus(this);
|
|
|
|
if (focusDisp == FocusManager::eNone)
|
2008-12-16 02:14:20 -08:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-12-16 02:14:20 -08:00
|
|
|
// Turn the focus node and offset of the selection into caret hypretext
|
|
|
|
// offset.
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
NS_ENSURE_STATE(frameSelection);
|
|
|
|
|
|
|
|
nsISelection* domSel =
|
|
|
|
frameSelection->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
NS_ENSURE_STATE(domSel);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-05-25 01:12:43 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> focusDOMNode;
|
2011-10-12 00:39:58 -07:00
|
|
|
nsresult rv = domSel->GetFocusNode(getter_AddRefs(focusDOMNode));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-12-16 02:14:20 -08:00
|
|
|
PRInt32 focusOffset;
|
|
|
|
rv = domSel->GetFocusOffset(&focusOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// No caret if this DOM node is inside of focused node but the selection's
|
|
|
|
// focus point is not inside of this DOM node.
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsINode> focusNode(do_QueryInterface(focusDOMNode));
|
2011-09-27 18:46:11 -07:00
|
|
|
if (focusDisp == FocusManager::eContainedByFocus) {
|
2010-05-25 01:12:43 -07:00
|
|
|
nsINode *resultNode =
|
2008-12-16 02:14:20 -08:00
|
|
|
nsCoreUtils::GetDOMNodeFromDOMPoint(focusNode, focusOffset);
|
2010-01-27 03:43:25 -08:00
|
|
|
|
2011-09-27 18:46:11 -07:00
|
|
|
nsINode* thisNode = GetNode();
|
2010-01-27 03:43:25 -08:00
|
|
|
if (resultNode != thisNode &&
|
|
|
|
!nsCoreUtils::IsAncestorOf(thisNode, resultNode))
|
2008-12-16 02:14:20 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
DOMPointToHypertextOffset(focusNode, focusOffset, aCaretOffset);
|
2010-05-17 09:16:52 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
PRInt32
|
2012-03-23 11:54:55 -07:00
|
|
|
nsHyperTextAccessible::CaretLineNumber()
|
2007-12-11 06:15:21 -08:00
|
|
|
{
|
|
|
|
// Provide the line number for the caret, relative to the
|
|
|
|
// currently focused node. Use a 1-based index
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
if (!frameSelection)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
nsISelection* domSel =
|
|
|
|
frameSelection->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
if (!domSel)
|
|
|
|
return - 1;
|
2007-12-11 06:15:21 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> caretNode;
|
|
|
|
domSel->GetFocusNode(getter_AddRefs(caretNode));
|
|
|
|
nsCOMPtr<nsIContent> caretContent = do_QueryInterface(caretNode);
|
2010-06-11 01:23:18 -07:00
|
|
|
if (!caretContent || !nsCoreUtils::IsAncestorOf(GetNode(), caretContent))
|
2007-12-11 06:15:21 -08:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
PRInt32 caretOffset, returnOffsetUnused;
|
|
|
|
domSel->GetFocusOffset(&caretOffset);
|
|
|
|
nsFrameSelection::HINT hint = frameSelection->GetHint();
|
|
|
|
nsIFrame *caretFrame = frameSelection->GetFrameForNodeOffset(caretContent, caretOffset,
|
|
|
|
hint, &returnOffsetUnused);
|
|
|
|
NS_ENSURE_TRUE(caretFrame, -1);
|
|
|
|
|
|
|
|
PRInt32 lineNumber = 1;
|
2008-10-30 12:17:59 -07:00
|
|
|
nsAutoLineIterator lineIterForCaret;
|
2010-06-11 02:54:18 -07:00
|
|
|
nsIContent *hyperTextContent = IsContent() ? mContent.get() : nsnull;
|
2007-12-11 06:15:21 -08:00
|
|
|
while (caretFrame) {
|
|
|
|
if (hyperTextContent == caretFrame->GetContent()) {
|
|
|
|
return lineNumber; // Must be in a single line hyper text, there is no line iterator
|
|
|
|
}
|
|
|
|
nsIFrame *parentFrame = caretFrame->GetParent();
|
|
|
|
if (!parentFrame)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Add lines for the sibling frames before the caret
|
2011-08-24 13:54:30 -07:00
|
|
|
nsIFrame *sibling = parentFrame->GetFirstPrincipalChild();
|
2007-12-11 06:15:21 -08:00
|
|
|
while (sibling && sibling != caretFrame) {
|
2008-10-30 12:17:59 -07:00
|
|
|
nsAutoLineIterator lineIterForSibling = sibling->GetLineIterator();
|
2007-12-11 06:15:21 -08:00
|
|
|
if (lineIterForSibling) {
|
|
|
|
// For the frames before that grab all the lines
|
2008-10-30 12:17:59 -07:00
|
|
|
PRInt32 addLines = lineIterForSibling->GetNumLines();
|
2007-12-11 06:15:21 -08:00
|
|
|
lineNumber += addLines;
|
|
|
|
}
|
|
|
|
sibling = sibling->GetNextSibling();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the line number relative to the container with lines
|
|
|
|
if (!lineIterForCaret) { // Add the caret line just once
|
2008-10-30 12:17:59 -07:00
|
|
|
lineIterForCaret = parentFrame->GetLineIterator();
|
2007-12-11 06:15:21 -08:00
|
|
|
if (lineIterForCaret) {
|
|
|
|
// Ancestor of caret
|
2008-10-30 12:17:59 -07:00
|
|
|
PRInt32 addLines = lineIterForCaret->FindLineContaining(caretFrame);
|
2007-12-11 06:15:21 -08:00
|
|
|
lineNumber += addLines;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
caretFrame = parentFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_NOTREACHED("DOM ancestry had this hypertext but frame ancestry didn't");
|
|
|
|
return lineNumber;
|
|
|
|
}
|
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
already_AddRefed<nsFrameSelection>
|
|
|
|
nsHyperTextAccessible::FrameSelection()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-12 00:39:58 -07:00
|
|
|
nsIFrame* frame = GetFrame();
|
2011-10-18 01:45:31 -07:00
|
|
|
return frame ? frame->GetFrameSelection() : nsnull;
|
2011-10-12 00:39:58 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
void
|
|
|
|
nsHyperTextAccessible::GetSelectionDOMRanges(PRInt16 aType,
|
2012-01-10 06:19:54 -08:00
|
|
|
nsTArray<nsRange*>* aRanges)
|
2011-10-12 00:39:58 -07:00
|
|
|
{
|
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
if (!frameSelection)
|
|
|
|
return;
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
nsISelection* domSel = frameSelection->GetSelection(aType);
|
|
|
|
if (!domSel)
|
|
|
|
return;
|
2007-09-18 15:28:26 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
nsCOMPtr<nsINode> startNode = GetNode();
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2012-03-07 19:28:38 -08:00
|
|
|
nsCOMPtr<nsIEditor> editor = GetEditor();
|
2011-10-12 00:39:58 -07:00
|
|
|
if (editor) {
|
|
|
|
nsCOMPtr<nsIDOMElement> editorRoot;
|
|
|
|
editor->GetRootElement(getter_AddRefs(editorRoot));
|
|
|
|
startNode = do_QueryInterface(editorRoot);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!startNode)
|
|
|
|
return;
|
|
|
|
|
|
|
|
PRUint32 childCount = startNode->GetChildCount();
|
|
|
|
nsCOMPtr<nsISelectionPrivate> privSel(do_QueryInterface(domSel));
|
|
|
|
nsresult rv = privSel->
|
2012-01-10 06:19:54 -08:00
|
|
|
GetRangesForIntervalArray(startNode, 0, startNode, childCount, true, aRanges);
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv,);
|
|
|
|
|
|
|
|
// Remove collapsed ranges
|
2012-01-10 06:19:54 -08:00
|
|
|
PRUint32 numRanges = aRanges->Length();
|
2012-03-06 09:08:02 -08:00
|
|
|
for (PRUint32 idx = 0; idx < numRanges; idx ++) {
|
|
|
|
if ((*aRanges)[idx]->Collapsed()) {
|
|
|
|
aRanges->RemoveElementAt(idx);
|
2011-10-12 00:39:58 -07:00
|
|
|
--numRanges;
|
2012-03-06 09:08:02 -08:00
|
|
|
--idx;
|
2007-09-18 15:28:26 -07:00
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the number of selected regions.
|
|
|
|
*/
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetSelectionCount(PRInt32* aSelectionCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aSelectionCount);
|
|
|
|
*aSelectionCount = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-01-10 06:19:54 -08:00
|
|
|
nsTArray<nsRange*> ranges;
|
2011-10-12 00:39:58 -07:00
|
|
|
GetSelectionDOMRanges(nsISelectionController::SELECTION_NORMAL, &ranges);
|
2012-01-10 06:19:54 -08:00
|
|
|
*aSelectionCount = PRInt32(ranges.Length());
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-18 15:28:26 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Gets the start and end offset of the specified selection.
|
|
|
|
*/
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::GetSelectionBounds(PRInt32 aSelectionNum,
|
|
|
|
PRInt32* aStartOffset,
|
|
|
|
PRInt32* aEndOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aStartOffset);
|
|
|
|
NS_ENSURE_ARG_POINTER(aEndOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
*aStartOffset = *aEndOffset = 0;
|
|
|
|
|
2012-01-10 06:19:54 -08:00
|
|
|
nsTArray<nsRange*> ranges;
|
2011-10-12 00:39:58 -07:00
|
|
|
GetSelectionDOMRanges(nsISelectionController::SELECTION_NORMAL, &ranges);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-01-10 06:19:54 -08:00
|
|
|
PRUint32 rangeCount = ranges.Length();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aSelectionNum < 0 || aSelectionNum >= rangeCount)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
2012-01-10 06:19:54 -08:00
|
|
|
nsRange* range = ranges[aSelectionNum];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-03-06 09:08:02 -08:00
|
|
|
// Get start and end points.
|
|
|
|
nsINode* startNode = range->GetStartParent();
|
|
|
|
nsINode* endNode = range->GetEndParent();
|
|
|
|
PRInt32 startOffset = range->StartOffset(), endOffset = range->EndOffset();
|
|
|
|
|
|
|
|
// Make sure start is before end, by swapping DOM points. This occurs when
|
|
|
|
// the user selects backwards in the text.
|
|
|
|
PRInt32 rangeCompare = nsContentUtils::ComparePoints(endNode, endOffset,
|
|
|
|
startNode, startOffset);
|
|
|
|
if (rangeCompare < 0) {
|
|
|
|
nsINode* tempNode = startNode;
|
|
|
|
startNode = endNode;
|
|
|
|
endNode = tempNode;
|
2007-09-18 15:28:26 -07:00
|
|
|
PRInt32 tempOffset = startOffset;
|
|
|
|
startOffset = endOffset;
|
|
|
|
endOffset = tempOffset;
|
|
|
|
}
|
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
nsAccessible *startAccessible =
|
|
|
|
DOMPointToHypertextOffset(startNode, startOffset, aStartOffset);
|
2007-09-18 15:28:26 -07:00
|
|
|
if (!startAccessible) {
|
|
|
|
*aStartOffset = 0; // Could not find start point within this hypertext, so starts before
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-09-18 15:28:26 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
DOMPointToHypertextOffset(endNode, endOffset, aEndOffset, true);
|
2010-05-17 09:16:52 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Changes the start and end offset of the specified selection.
|
|
|
|
*/
|
2007-09-24 22:48:51 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::SetSelectionBounds(PRInt32 aSelectionNum,
|
|
|
|
PRInt32 aStartOffset,
|
|
|
|
PRInt32 aEndOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
NS_ENSURE_STATE(frameSelection);
|
|
|
|
|
|
|
|
nsCOMPtr<nsISelection> domSel =
|
|
|
|
frameSelection->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
NS_ENSURE_STATE(domSel);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
// Caret is a collapsed selection
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isOnlyCaret = (aStartOffset == aEndOffset);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
PRInt32 rangeCount = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
domSel->GetRangeCount(&rangeCount);
|
|
|
|
nsCOMPtr<nsIDOMRange> range;
|
|
|
|
if (aSelectionNum == rangeCount) { // Add a range
|
2012-01-10 06:19:54 -08:00
|
|
|
range = new nsRange();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (aSelectionNum < 0 || aSelectionNum > rangeCount) {
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
domSel->GetRangeAt(aSelectionNum, getter_AddRefs(range));
|
|
|
|
NS_ENSURE_TRUE(range, NS_ERROR_FAILURE);
|
|
|
|
}
|
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
PRInt32 startOffset = 0, endOffset = 0;
|
2007-09-24 22:48:51 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> startNode, endNode;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
nsresult rv = HypertextOffsetsToDOMRange(aStartOffset, aEndOffset,
|
|
|
|
getter_AddRefs(startNode), &startOffset,
|
|
|
|
getter_AddRefs(endNode), &endOffset);
|
2007-09-24 22:48:51 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-09-05 09:38:20 -07:00
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
rv = range->SetStart(startNode, startOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
rv = isOnlyCaret ? range->Collapse(true) :
|
2007-09-24 22:48:51 -07:00
|
|
|
range->SetEnd(endNode, endOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
// If new range was created then add it, otherwise notify selection listeners
|
|
|
|
// that existing selection range was changed.
|
|
|
|
if (aSelectionNum == rangeCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
return domSel->AddRange(range);
|
2011-10-12 00:39:58 -07:00
|
|
|
|
|
|
|
domSel->RemoveRange(range);
|
|
|
|
domSel->AddRange(range);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Adds a selection bounded by the specified offsets.
|
|
|
|
*/
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::AddSelection(PRInt32 aStartOffset, PRInt32 aEndOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
NS_ENSURE_STATE(frameSelection);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-12 00:39:58 -07:00
|
|
|
nsCOMPtr<nsISelection> domSel =
|
|
|
|
frameSelection->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
NS_ENSURE_STATE(domSel);
|
|
|
|
|
|
|
|
PRInt32 rangeCount = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
domSel->GetRangeCount(&rangeCount);
|
|
|
|
|
|
|
|
return SetSelectionBounds(rangeCount, aStartOffset, aEndOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Removes the specified selection.
|
|
|
|
*/
|
2011-10-12 00:39:58 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::RemoveSelection(PRInt32 aSelectionNum)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-12 00:39:58 -07:00
|
|
|
nsRefPtr<nsFrameSelection> frameSelection = FrameSelection();
|
|
|
|
NS_ENSURE_STATE(frameSelection);
|
|
|
|
|
|
|
|
nsCOMPtr<nsISelection> domSel =
|
|
|
|
frameSelection->GetSelection(nsISelectionController::SELECTION_NORMAL);
|
|
|
|
NS_ENSURE_STATE(domSel);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 rangeCount;
|
|
|
|
domSel->GetRangeCount(&rangeCount);
|
|
|
|
if (aSelectionNum < 0 || aSelectionNum >= rangeCount)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMRange> range;
|
|
|
|
domSel->GetRangeAt(aSelectionNum, getter_AddRefs(range));
|
|
|
|
return domSel->RemoveRange(range);
|
|
|
|
}
|
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
// void nsIAccessibleText::
|
|
|
|
// scrollSubstringTo(in long startIndex, in long endIndex,
|
|
|
|
// in unsigned long scrollType);
|
2007-08-23 21:54:45 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::ScrollSubstringTo(PRInt32 aStartIndex, PRInt32 aEndIndex,
|
|
|
|
PRUint32 aScrollType)
|
|
|
|
{
|
2007-09-24 22:48:51 -07:00
|
|
|
PRInt32 startOffset, endOffset;
|
|
|
|
nsCOMPtr<nsIDOMNode> startNode, endNode;
|
|
|
|
|
|
|
|
nsresult rv = HypertextOffsetsToDOMRange(aStartIndex, aEndIndex,
|
|
|
|
getter_AddRefs(startNode),
|
|
|
|
&startOffset,
|
|
|
|
getter_AddRefs(endNode),
|
|
|
|
&endOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-08-23 21:54:45 -07:00
|
|
|
|
2008-10-15 18:52:58 -07:00
|
|
|
return nsCoreUtils::ScrollSubstringTo(GetFrame(), startNode, startOffset,
|
|
|
|
endNode, endOffset, aScrollType);
|
2007-09-24 22:48:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// void nsIAccessibleText::
|
|
|
|
// scrollSubstringToPoint(in long startIndex, in long endIndex,
|
|
|
|
// in unsigned long coordinateType,
|
|
|
|
// in long x, in long y);
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHyperTextAccessible::ScrollSubstringToPoint(PRInt32 aStartIndex,
|
|
|
|
PRInt32 aEndIndex,
|
|
|
|
PRUint32 aCoordinateType,
|
|
|
|
PRInt32 aX, PRInt32 aY)
|
|
|
|
{
|
|
|
|
nsIFrame *frame = GetFrame();
|
|
|
|
if (!frame)
|
2007-08-23 21:54:45 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
nsIntPoint coords;
|
2008-10-16 02:12:05 -07:00
|
|
|
nsresult rv = nsAccUtils::ConvertToScreenCoords(aX, aY, aCoordinateType,
|
|
|
|
this, &coords);
|
2007-09-24 22:48:51 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-08-23 21:54:45 -07:00
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
PRInt32 startOffset, endOffset;
|
|
|
|
nsCOMPtr<nsIDOMNode> startNode, endNode;
|
2007-08-23 21:54:45 -07:00
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
rv = HypertextOffsetsToDOMRange(aStartIndex, aEndIndex,
|
|
|
|
getter_AddRefs(startNode), &startOffset,
|
|
|
|
getter_AddRefs(endNode), &endOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-08-23 21:54:45 -07:00
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
nsPresContext *presContext = frame->PresContext();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool initialScrolled = false;
|
2007-09-24 22:48:51 -07:00
|
|
|
nsIFrame *parentFrame = frame;
|
2008-02-08 01:35:42 -08:00
|
|
|
while ((parentFrame = parentFrame->GetParent())) {
|
2009-01-12 11:20:59 -08:00
|
|
|
nsIScrollableFrame *scrollableFrame = do_QueryFrame(parentFrame);
|
2007-09-24 22:48:51 -07:00
|
|
|
if (scrollableFrame) {
|
|
|
|
if (!initialScrolled) {
|
|
|
|
// Scroll substring to the given point. Turn the point into percents
|
2008-10-15 18:52:58 -07:00
|
|
|
// relative scrollable area to use nsCoreUtils::ScrollSubstringTo.
|
2007-09-24 22:48:51 -07:00
|
|
|
nsIntRect frameRect = parentFrame->GetScreenRectExternal();
|
|
|
|
PRInt32 devOffsetX = coords.x - frameRect.x;
|
|
|
|
PRInt32 devOffsetY = coords.y - frameRect.y;
|
|
|
|
|
|
|
|
nsPoint offsetPoint(presContext->DevPixelsToAppUnits(devOffsetX),
|
|
|
|
presContext->DevPixelsToAppUnits(devOffsetY));
|
|
|
|
|
|
|
|
nsSize size(parentFrame->GetSize());
|
2009-11-10 06:07:19 -08:00
|
|
|
|
|
|
|
// avoid divide by zero
|
|
|
|
size.width = size.width ? size.width : 1;
|
|
|
|
size.height = size.height ? size.height : 1;
|
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
PRInt16 hPercent = offsetPoint.x * 100 / size.width;
|
|
|
|
PRInt16 vPercent = offsetPoint.y * 100 / size.height;
|
|
|
|
|
2008-10-15 18:52:58 -07:00
|
|
|
rv = nsCoreUtils::ScrollSubstringTo(GetFrame(), startNode, startOffset,
|
|
|
|
endNode, endOffset,
|
|
|
|
vPercent, hPercent);
|
2007-09-24 22:48:51 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
initialScrolled = true;
|
2007-09-24 22:48:51 -07:00
|
|
|
} else {
|
|
|
|
// Substring was scrolled to the given point already inside its closest
|
|
|
|
// scrollable area. If there are nested scrollable areas then make
|
|
|
|
// sure we scroll lower areas to the given point inside currently
|
|
|
|
// traversed scrollable area.
|
2008-10-15 18:52:58 -07:00
|
|
|
nsCoreUtils::ScrollFrameToPoint(parentFrame, frame, coords);
|
2007-09-24 22:48:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
frame = parentFrame;
|
2007-08-23 21:54:45 -07:00
|
|
|
}
|
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
return NS_OK;
|
2007-08-23 21:54:45 -07:00
|
|
|
}
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsAccessible public
|
|
|
|
|
2011-11-24 03:31:25 -08:00
|
|
|
nsresult
|
|
|
|
nsHyperTextAccessible::GetNameInternal(nsAString& aName)
|
|
|
|
{
|
|
|
|
nsresult rv = nsAccessibleWrap::GetNameInternal(aName);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Get name from title attribute for HTML abbr and acronym elements making it
|
|
|
|
// a valid name from markup. Otherwise their name isn't picked up by recursive
|
|
|
|
// name computation algorithm. See NS_OK_NAME_FROM_TOOLTIP.
|
2011-11-24 03:31:34 -08:00
|
|
|
if (aName.IsEmpty() && IsAbbreviation()) {
|
2011-11-24 03:31:25 -08:00
|
|
|
nsAutoString name;
|
|
|
|
if (mContent->GetAttr(kNameSpaceID_None, nsGkAtoms::title, name)) {
|
|
|
|
name.CompressWhitespace();
|
|
|
|
aName = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
void
|
|
|
|
nsHyperTextAccessible::InvalidateChildren()
|
|
|
|
{
|
2010-07-01 18:50:03 -07:00
|
|
|
mOffsets.Clear();
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
nsAccessibleWrap::InvalidateChildren();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2011-02-02 09:02:48 -08:00
|
|
|
nsHyperTextAccessible::RemoveChild(nsAccessible* aAccessible)
|
|
|
|
{
|
2011-06-13 02:08:40 -07:00
|
|
|
PRInt32 childIndex = aAccessible->IndexInParent();
|
2011-02-02 09:02:48 -08:00
|
|
|
PRInt32 count = mOffsets.Length() - childIndex;
|
|
|
|
if (count > 0)
|
|
|
|
mOffsets.RemoveElementsAt(childIndex, count);
|
|
|
|
|
|
|
|
return nsAccessible::RemoveChild(aAccessible);
|
|
|
|
}
|
|
|
|
|
2010-06-21 06:08:27 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHyperTextAccessible public static
|
|
|
|
|
2007-08-03 18:12:24 -07:00
|
|
|
nsresult nsHyperTextAccessible::ContentToRenderedOffset(nsIFrame *aFrame, PRInt32 aContentOffset,
|
|
|
|
PRUint32 *aRenderedOffset)
|
|
|
|
{
|
2007-11-27 10:12:15 -08:00
|
|
|
if (!aFrame) {
|
|
|
|
// Current frame not rendered -- this can happen if text is set on
|
|
|
|
// something with display: none
|
|
|
|
*aRenderedOffset = 0;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2011-06-03 14:35:17 -07:00
|
|
|
NS_ASSERTION(aFrame->GetType() == nsGkAtoms::textFrame,
|
2007-09-05 06:31:33 -07:00
|
|
|
"Need text frame for offset conversion");
|
|
|
|
NS_ASSERTION(aFrame->GetPrevContinuation() == nsnull,
|
|
|
|
"Call on primary frame only");
|
|
|
|
|
2007-08-03 18:12:24 -07:00
|
|
|
gfxSkipChars skipChars;
|
|
|
|
gfxSkipCharsIterator iter;
|
2009-01-11 10:46:17 -08:00
|
|
|
// Only get info up to original offset, we know that will be larger than skipped offset
|
2007-08-03 18:12:24 -07:00
|
|
|
nsresult rv = aFrame->GetRenderedText(nsnull, &skipChars, &iter, 0, aContentOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 ourRenderedStart = iter.GetSkippedOffset();
|
|
|
|
PRInt32 ourContentStart = iter.GetOriginalOffset();
|
|
|
|
|
|
|
|
*aRenderedOffset = iter.ConvertOriginalToSkipped(aContentOffset + ourContentStart) -
|
|
|
|
ourRenderedStart;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult nsHyperTextAccessible::RenderedToContentOffset(nsIFrame *aFrame, PRUint32 aRenderedOffset,
|
|
|
|
PRInt32 *aContentOffset)
|
|
|
|
{
|
2007-11-27 10:12:15 -08:00
|
|
|
*aContentOffset = 0;
|
|
|
|
NS_ENSURE_TRUE(aFrame, NS_ERROR_FAILURE);
|
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
NS_ASSERTION(aFrame->GetType() == nsGkAtoms::textFrame,
|
2007-09-05 06:31:33 -07:00
|
|
|
"Need text frame for offset conversion");
|
|
|
|
NS_ASSERTION(aFrame->GetPrevContinuation() == nsnull,
|
|
|
|
"Call on primary frame only");
|
|
|
|
|
2007-08-03 18:12:24 -07:00
|
|
|
gfxSkipChars skipChars;
|
|
|
|
gfxSkipCharsIterator iter;
|
|
|
|
// We only need info up to skipped offset -- that is what we're converting to original offset
|
|
|
|
nsresult rv = aFrame->GetRenderedText(nsnull, &skipChars, &iter, 0, aRenderedOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 ourRenderedStart = iter.GetSkippedOffset();
|
|
|
|
PRInt32 ourContentStart = iter.GetOriginalOffset();
|
|
|
|
|
|
|
|
*aContentOffset = iter.ConvertSkippedToOriginal(aRenderedOffset + ourRenderedStart) - ourContentStart;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-01 18:50:03 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHyperTextAccessible public
|
|
|
|
|
2011-02-03 06:29:12 -08:00
|
|
|
bool
|
|
|
|
nsHyperTextAccessible::GetCharAt(PRInt32 aOffset, EGetTextType aShift,
|
|
|
|
nsAString& aChar, PRInt32* aStartOffset,
|
|
|
|
PRInt32* aEndOffset)
|
|
|
|
{
|
|
|
|
aChar.Truncate();
|
|
|
|
|
|
|
|
PRInt32 offset = ConvertMagicOffset(aOffset) + static_cast<PRInt32>(aShift);
|
|
|
|
PRInt32 childIdx = GetChildIndexAtOffset(offset);
|
|
|
|
if (childIdx == -1)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nsAccessible* child = GetChildAt(childIdx);
|
|
|
|
child->AppendTextTo(aChar, offset - GetChildOffset(childIdx), 1);
|
|
|
|
|
|
|
|
if (aStartOffset)
|
|
|
|
*aStartOffset = offset;
|
|
|
|
if (aEndOffset)
|
|
|
|
*aEndOffset = aChar.IsEmpty() ? offset : offset + 1;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-07-01 18:50:03 -07:00
|
|
|
PRInt32
|
2010-08-15 04:28:49 -07:00
|
|
|
nsHyperTextAccessible::GetChildOffset(PRUint32 aChildIndex,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aInvalidateAfter)
|
2010-07-01 18:50:03 -07:00
|
|
|
{
|
2011-01-20 00:02:10 -08:00
|
|
|
if (aChildIndex == 0) {
|
|
|
|
if (aInvalidateAfter)
|
|
|
|
mOffsets.Clear();
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
return aChildIndex;
|
2011-01-20 00:02:10 -08:00
|
|
|
}
|
2010-07-01 18:50:03 -07:00
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
PRInt32 count = mOffsets.Length() - aChildIndex;
|
2010-07-01 18:50:03 -07:00
|
|
|
if (count > 0) {
|
|
|
|
if (aInvalidateAfter)
|
2010-08-15 04:28:49 -07:00
|
|
|
mOffsets.RemoveElementsAt(aChildIndex, count);
|
2010-07-01 18:50:03 -07:00
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
return mOffsets[aChildIndex - 1];
|
2010-07-01 18:50:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 lastOffset = mOffsets.IsEmpty() ?
|
|
|
|
0 : mOffsets[mOffsets.Length() - 1];
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
while (mOffsets.Length() < aChildIndex) {
|
2010-07-01 18:50:03 -07:00
|
|
|
nsAccessible* child = mChildren[mOffsets.Length()];
|
|
|
|
lastOffset += nsAccUtils::TextLength(child);
|
|
|
|
mOffsets.AppendElement(lastOffset);
|
|
|
|
}
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
return mOffsets[aChildIndex - 1];
|
2010-07-01 18:50:03 -07:00
|
|
|
}
|
2010-05-25 01:40:26 -07:00
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
PRInt32
|
|
|
|
nsHyperTextAccessible::GetChildIndexAtOffset(PRUint32 aOffset)
|
2010-06-21 06:08:27 -07:00
|
|
|
{
|
2010-08-15 04:28:49 -07:00
|
|
|
PRUint32 lastOffset = 0;
|
|
|
|
PRUint32 offsetCount = mOffsets.Length();
|
|
|
|
if (offsetCount > 0) {
|
|
|
|
lastOffset = mOffsets[offsetCount - 1];
|
|
|
|
if (aOffset < lastOffset) {
|
|
|
|
PRUint32 low = 0, high = offsetCount;
|
|
|
|
while (high > low) {
|
|
|
|
PRUint32 mid = (high + low) >> 1;
|
|
|
|
if (mOffsets[mid] == aOffset)
|
|
|
|
return mid < offsetCount - 1 ? mid + 1 : mid;
|
|
|
|
|
|
|
|
if (mOffsets[mid] < aOffset)
|
|
|
|
low = mid + 1;
|
|
|
|
else
|
|
|
|
high = mid;
|
|
|
|
}
|
|
|
|
if (high == offsetCount)
|
|
|
|
return -1;
|
2010-06-21 06:08:27 -07:00
|
|
|
|
2010-08-18 19:14:14 -07:00
|
|
|
return low;
|
2010-05-25 01:40:26 -07:00
|
|
|
}
|
2010-08-15 04:28:49 -07:00
|
|
|
}
|
2010-05-25 01:40:26 -07:00
|
|
|
|
2012-05-25 03:53:45 -07:00
|
|
|
PRUint32 childCount = ChildCount();
|
2010-08-15 04:28:49 -07:00
|
|
|
while (mOffsets.Length() < childCount) {
|
|
|
|
nsAccessible* child = GetChildAt(mOffsets.Length());
|
|
|
|
lastOffset += nsAccUtils::TextLength(child);
|
|
|
|
mOffsets.AppendElement(lastOffset);
|
|
|
|
if (aOffset < lastOffset)
|
|
|
|
return mOffsets.Length() - 1;
|
2010-05-25 01:40:26 -07:00
|
|
|
}
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
if (aOffset == lastOffset)
|
|
|
|
return mOffsets.Length() - 1;
|
|
|
|
|
|
|
|
return -1;
|
2010-05-25 01:40:26 -07:00
|
|
|
}
|
|
|
|
|
2010-08-15 04:28:49 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHyperTextAccessible protected
|
|
|
|
|
2007-09-24 22:48:51 -07:00
|
|
|
nsresult
|
2012-04-14 19:24:37 -07:00
|
|
|
nsHyperTextAccessible::GetDOMPointByFrameOffset(nsIFrame* aFrame,
|
2007-09-24 22:48:51 -07:00
|
|
|
PRInt32 aOffset,
|
2012-04-14 19:24:37 -07:00
|
|
|
nsAccessible* aAccessible,
|
|
|
|
nsIDOMNode** aNode,
|
|
|
|
PRInt32* aNodeOffset)
|
2007-09-24 22:48:51 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aAccessible);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> node;
|
|
|
|
|
|
|
|
if (!aFrame) {
|
|
|
|
// If the given frame is null then set offset after the DOM node of the
|
|
|
|
// given accessible.
|
2012-04-14 19:24:37 -07:00
|
|
|
NS_ASSERTION(!aAccessible->IsDoc(),
|
|
|
|
"Shouldn't be called on document accessible!");
|
|
|
|
|
|
|
|
nsIContent* content = aAccessible->GetContent();
|
|
|
|
NS_ASSERTION(content, "Shouldn't operate on defunct accessible!");
|
2007-09-24 22:48:51 -07:00
|
|
|
|
2012-04-14 19:24:37 -07:00
|
|
|
nsIContent* parent = content->GetParent();
|
2007-09-24 22:48:51 -07:00
|
|
|
|
|
|
|
*aNodeOffset = parent->IndexOf(content) + 1;
|
|
|
|
node = do_QueryInterface(parent);
|
|
|
|
|
2011-06-03 14:35:17 -07:00
|
|
|
} else if (aFrame->GetType() == nsGkAtoms::textFrame) {
|
2007-09-24 22:48:51 -07:00
|
|
|
nsCOMPtr<nsIContent> content(aFrame->GetContent());
|
|
|
|
NS_ENSURE_STATE(content);
|
|
|
|
|
2009-12-24 13:20:05 -08:00
|
|
|
nsIFrame *primaryFrame = content->GetPrimaryFrame();
|
2007-09-24 22:48:51 -07:00
|
|
|
nsresult rv = RenderedToContentOffset(primaryFrame, aOffset, aNodeOffset);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
node = do_QueryInterface(content);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
nsCOMPtr<nsIContent> content(aFrame->GetContent());
|
|
|
|
NS_ENSURE_STATE(content);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> parent(content->GetParent());
|
|
|
|
NS_ENSURE_STATE(parent);
|
|
|
|
|
|
|
|
*aNodeOffset = parent->IndexOf(content);
|
|
|
|
node = do_QueryInterface(parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IF_ADDREF(*aNode = node);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-08-03 18:12:24 -07:00
|
|
|
|
2008-07-17 05:06:24 -07:00
|
|
|
// nsHyperTextAccessible
|
|
|
|
nsresult
|
2012-01-10 06:19:54 -08:00
|
|
|
nsHyperTextAccessible::RangeBoundToHypertextOffset(nsRange *aRange,
|
|
|
|
bool aIsStartBound,
|
|
|
|
bool aIsStartHTOffset,
|
|
|
|
PRInt32 *aHTOffset)
|
2008-07-17 05:06:24 -07:00
|
|
|
{
|
2012-03-06 09:08:02 -08:00
|
|
|
nsINode* node = nsnull;
|
2008-07-17 05:06:24 -07:00
|
|
|
PRInt32 nodeOffset = 0;
|
|
|
|
|
|
|
|
if (aIsStartBound) {
|
2012-03-06 09:08:02 -08:00
|
|
|
node = aRange->GetStartParent();
|
|
|
|
nodeOffset = aRange->StartOffset();
|
2008-07-17 05:06:24 -07:00
|
|
|
} else {
|
2012-03-06 09:08:02 -08:00
|
|
|
node = aRange->GetEndParent();
|
|
|
|
nodeOffset = aRange->EndOffset();
|
2008-07-17 05:06:24 -07:00
|
|
|
}
|
|
|
|
|
2010-05-17 09:16:52 -07:00
|
|
|
nsAccessible *startAcc =
|
|
|
|
DOMPointToHypertextOffset(node, nodeOffset, aHTOffset);
|
2008-07-17 05:06:24 -07:00
|
|
|
|
|
|
|
if (aIsStartHTOffset && !startAcc)
|
|
|
|
*aHTOffset = 0;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsHyperTextAccessible
|
|
|
|
nsresult
|
2012-03-06 09:08:02 -08:00
|
|
|
nsHyperTextAccessible::GetSpellTextAttribute(nsINode* aNode,
|
2008-07-17 05:06:24 -07:00
|
|
|
PRInt32 aNodeOffset,
|
|
|
|
PRInt32 *aHTStartOffset,
|
|
|
|
PRInt32 *aHTEndOffset,
|
|
|
|
nsIPersistentProperties *aAttributes)
|
|
|
|
{
|
2012-01-10 06:19:54 -08:00
|
|
|
nsTArray<nsRange*> ranges;
|
2011-10-12 00:39:58 -07:00
|
|
|
GetSelectionDOMRanges(nsISelectionController::SELECTION_SPELLCHECK, &ranges);
|
2008-07-17 05:06:24 -07:00
|
|
|
|
2012-01-10 06:19:54 -08:00
|
|
|
PRUint32 rangeCount = ranges.Length();
|
2008-07-17 05:06:24 -07:00
|
|
|
if (!rangeCount)
|
|
|
|
return NS_OK;
|
|
|
|
|
2012-03-06 09:08:02 -08:00
|
|
|
nsCOMPtr<nsIDOMNode> DOMNode = do_QueryInterface(aNode);
|
2012-01-10 06:19:54 -08:00
|
|
|
for (PRUint32 index = 0; index < rangeCount; index++) {
|
|
|
|
nsRange* range = ranges[index];
|
2008-07-17 05:06:24 -07:00
|
|
|
|
|
|
|
PRInt16 result;
|
2012-03-06 09:08:02 -08:00
|
|
|
nsresult rv = range->ComparePoint(DOMNode, aNodeOffset, &result);
|
2008-07-17 05:06:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-10-19 13:41:21 -07:00
|
|
|
// ComparePoint checks boundary points, but we need to check that
|
|
|
|
// text at aNodeOffset is inside the range.
|
|
|
|
// See also bug 460690.
|
|
|
|
if (result == 0) {
|
2012-03-06 09:08:02 -08:00
|
|
|
if (aNode == range->GetEndParent() && aNodeOffset == range->EndOffset())
|
2008-10-19 13:41:21 -07:00
|
|
|
result = 1;
|
|
|
|
}
|
2008-07-17 05:06:24 -07:00
|
|
|
|
|
|
|
if (result == 1) { // range is before point
|
|
|
|
PRInt32 startHTOffset = 0;
|
2012-01-10 06:19:54 -08:00
|
|
|
nsresult rv = RangeBoundToHypertextOffset(range, false, true,
|
|
|
|
&startHTOffset);
|
2008-07-17 05:06:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (startHTOffset > *aHTStartOffset)
|
|
|
|
*aHTStartOffset = startHTOffset;
|
|
|
|
|
|
|
|
} else if (result == -1) { // range is after point
|
|
|
|
PRInt32 endHTOffset = 0;
|
2012-01-10 06:19:54 -08:00
|
|
|
nsresult rv = RangeBoundToHypertextOffset(range, true, false,
|
|
|
|
&endHTOffset);
|
2008-07-17 05:06:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (endHTOffset < *aHTEndOffset)
|
|
|
|
*aHTEndOffset = endHTOffset;
|
|
|
|
|
|
|
|
} else { // point is in range
|
|
|
|
PRInt32 startHTOffset = 0;
|
2012-01-10 06:19:54 -08:00
|
|
|
nsresult rv = RangeBoundToHypertextOffset(range, true, true,
|
|
|
|
&startHTOffset);
|
2008-07-17 05:06:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRInt32 endHTOffset = 0;
|
2012-01-10 06:19:54 -08:00
|
|
|
rv = RangeBoundToHypertextOffset(range, false, false,
|
|
|
|
&endHTOffset);
|
2008-07-17 05:06:24 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (startHTOffset > *aHTStartOffset)
|
|
|
|
*aHTStartOffset = startHTOffset;
|
|
|
|
if (endHTOffset < *aHTEndOffset)
|
|
|
|
*aHTEndOffset = endHTOffset;
|
|
|
|
|
2008-07-24 08:20:39 -07:00
|
|
|
if (aAttributes) {
|
2011-06-03 14:35:17 -07:00
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsGkAtoms::invalid,
|
2008-10-16 02:12:05 -07:00
|
|
|
NS_LITERAL_STRING("spelling"));
|
2008-07-24 08:20:39 -07:00
|
|
|
}
|
2008-07-17 05:06:24 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-04-13 18:19:41 -07:00
|
|
|
|
|
|
|
bool
|
|
|
|
nsHyperTextAccessible::IsTextRole()
|
|
|
|
{
|
|
|
|
if (mRoleMapEntry &&
|
|
|
|
(mRoleMapEntry->role == roles::GRAPHIC ||
|
|
|
|
mRoleMapEntry->role == roles::IMAGE_MAP ||
|
|
|
|
mRoleMapEntry->role == roles::SLIDER ||
|
|
|
|
mRoleMapEntry->role == roles::PROGRESSBAR ||
|
|
|
|
mRoleMapEntry->role == roles::SEPARATOR))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|