2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Aaron Leventhal (aaronl@netscape.com)
|
|
|
|
* Kyle Yuan (kyle.yuan@sun.com)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsHTMLTextAccessible.h"
|
2010-03-16 23:02:28 -07:00
|
|
|
|
|
|
|
#include "nsDocAccessible.h"
|
2010-09-21 08:05:31 -07:00
|
|
|
#include "nsAccUtils.h"
|
|
|
|
#include "nsRelUtils.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
#include "nsTextEquivUtils.h"
|
2010-03-16 23:02:28 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsPresContext.h"
|
2010-10-14 02:05:22 -07:00
|
|
|
#include "nsBlockFrame.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsISelection.h"
|
|
|
|
#include "nsISelectionController.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
|
|
|
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLTextAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsHTMLTextAccessible::
|
|
|
|
nsHTMLTextAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsTextAccessibleWrap(aContent, aShell)
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-10-26 17:58:36 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsHTMLTextAccessible, nsTextAccessible)
|
|
|
|
|
2008-10-10 05:26:55 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLTextAccessible::GetName(nsAString& aName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-10-10 05:26:55 -07:00
|
|
|
// Text node, ARIA can't be used.
|
2007-03-22 10:30:00 -07:00
|
|
|
aName.Truncate();
|
2007-08-03 18:12:24 -07:00
|
|
|
return AppendTextTo(aName, 0, PR_UINT32_MAX);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLTextAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsIFrame *frame = GetFrame();
|
2007-08-28 14:57:53 -07:00
|
|
|
// Don't return on null frame -- we still return a role
|
|
|
|
// after accessible is shutdown/DEFUNCT
|
|
|
|
if (frame && frame->IsGeneratedContentFrame()) {
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_STATICTEXT;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsTextAccessible::NativeRole();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult
|
|
|
|
nsHTMLTextAccessible::GetStateInternal(PRUint32 *aState, PRUint32 *aExtraState)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult rv = nsTextAccessible::GetStateInternal(aState, aExtraState);
|
2008-11-26 20:04:05 -08:00
|
|
|
NS_ENSURE_A11Y_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-03-16 23:02:28 -07:00
|
|
|
nsDocAccessible *docAccessible = GetDocAccessible();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (docAccessible) {
|
2007-04-02 08:56:24 -07:00
|
|
|
PRUint32 state, extState;
|
2008-11-03 19:37:46 -08:00
|
|
|
docAccessible->GetState(&state, &extState);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (0 == (extState & nsIAccessibleStates::EXT_STATE_EDITABLE)) {
|
|
|
|
*aState |= nsIAccessibleStates::STATE_READONLY; // Links not focusable in editor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-04-07 02:07:24 -07:00
|
|
|
nsresult
|
|
|
|
nsHTMLTextAccessible::GetAttributesInternal(nsIPersistentProperties *aAttributes)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
if (NativeRole() == nsIAccessibleRole::ROLE_STATICTEXT) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsAutoString oldValueUnused;
|
2008-09-10 01:33:24 -07:00
|
|
|
aAttributes->SetStringProperty(NS_LITERAL_CSTRING("auto-generated"),
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_LITERAL_STRING("true"), oldValueUnused);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLHRAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsHTMLHRAccessible::
|
|
|
|
nsHTMLHRAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsLeafAccessible(aContent, aShell)
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLHRAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_SEPARATOR;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLBRAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
nsHTMLBRAccessible::
|
|
|
|
nsHTMLBRAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsLeafAccessible(aContent, aShell)
|
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLBRAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_WHITESPACE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult
|
|
|
|
nsHTMLBRAccessible::GetStateInternal(PRUint32 *aState, PRUint32 *aExtraState)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-11-26 20:04:05 -08:00
|
|
|
*aState = 0;
|
|
|
|
|
|
|
|
if (IsDefunct()) {
|
|
|
|
if (aExtraState)
|
|
|
|
*aExtraState = nsIAccessibleStates::EXT_STATE_DEFUNCT;
|
|
|
|
|
|
|
|
return NS_OK_DEFUNCT_OBJECT;
|
2007-11-15 11:53:40 -08:00
|
|
|
}
|
2008-11-26 20:04:05 -08:00
|
|
|
|
|
|
|
*aState = nsIAccessibleStates::STATE_READONLY;
|
|
|
|
if (aExtraState)
|
|
|
|
*aExtraState = 0;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-10-10 05:26:55 -07:00
|
|
|
nsresult
|
|
|
|
nsHTMLBRAccessible::GetNameInternal(nsAString& aName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
aName = static_cast<PRUnichar>('\n'); // Newline char
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLLabelAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2008-02-22 01:52:01 -08:00
|
|
|
|
2009-10-21 21:45:52 -07:00
|
|
|
nsHTMLLabelAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsHTMLLabelAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsHyperTextAccessibleWrap(aContent, aShell)
|
2009-10-21 21:45:52 -07:00
|
|
|
{
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsHTMLLabelAccessible, nsHyperTextAccessible)
|
|
|
|
|
2008-10-10 05:26:55 -07:00
|
|
|
nsresult
|
2009-02-18 23:06:14 -08:00
|
|
|
nsHTMLLabelAccessible::GetNameInternal(nsAString& aName)
|
|
|
|
{
|
|
|
|
return nsTextEquivUtils::GetNameFromSubtree(this, aName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLLabelAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_LABEL;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-21 08:05:31 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLOuputAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
nsHTMLOutputAccessible::
|
|
|
|
nsHTMLOutputAccessible(nsIContent* aContent, nsIWeakReference* aShell) :
|
|
|
|
nsHyperTextAccessibleWrap(aContent, aShell)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsHTMLOutputAccessible, nsHyperTextAccessible)
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLOutputAccessible::GetRelationByType(PRUint32 aRelationType,
|
|
|
|
nsIAccessibleRelation** aRelation)
|
|
|
|
{
|
|
|
|
nsresult rv = nsAccessibleWrap::GetRelationByType(aRelationType, aRelation);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (rv != NS_OK_NO_RELATION_TARGET)
|
|
|
|
return NS_OK; // XXX bug 381599, avoid performance problems
|
|
|
|
|
|
|
|
if (aRelationType == nsIAccessibleRelation::RELATION_CONTROLLED_BY) {
|
|
|
|
return nsRelUtils::
|
|
|
|
AddTargetFromIDRefsAttr(aRelationType, aRelation, mContent,
|
|
|
|
nsAccessibilityAtoms::_for);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32
|
|
|
|
nsHTMLOutputAccessible::NativeRole()
|
|
|
|
{
|
|
|
|
return nsIAccessibleRole::ROLE_SECTION;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsHTMLOutputAccessible::GetAttributesInternal(nsIPersistentProperties* aAttributes)
|
|
|
|
{
|
|
|
|
nsresult rv = nsAccessibleWrap::GetAttributesInternal(aAttributes);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsAccessibilityAtoms::live,
|
|
|
|
NS_LITERAL_STRING("polite"));
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLLIAccessible
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-22 20:29:36 -07:00
|
|
|
nsHTMLLIAccessible::
|
2010-10-14 02:05:22 -07:00
|
|
|
nsHTMLLIAccessible(nsIContent* aContent, nsIWeakReference* aShell) :
|
2010-06-11 01:23:18 -07:00
|
|
|
nsHyperTextAccessibleWrap(aContent, aShell)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-10-14 02:05:22 -07:00
|
|
|
nsBlockFrame* blockFrame = do_QueryFrame(GetFrame());
|
2010-10-14 07:05:12 -07:00
|
|
|
if (blockFrame && !blockFrame->BulletIsEmptyExternal()) {
|
2010-10-14 02:05:22 -07:00
|
|
|
mBulletAccessible = new nsHTMLListBulletAccessible(mContent, mWeakShell);
|
2010-11-12 11:00:55 -08:00
|
|
|
GetDocAccessible()->BindToDocument(mBulletAccessible, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-22 20:29:36 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsHTMLLIAccessible, nsHyperTextAccessible)
|
|
|
|
|
2010-06-11 21:04:35 -07:00
|
|
|
void
|
2008-10-31 20:58:07 -07:00
|
|
|
nsHTMLLIAccessible::Shutdown()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mBulletAccessible) {
|
2009-09-18 23:30:07 -07:00
|
|
|
// Ensure that pointer to this is nulled out.
|
2007-03-22 10:30:00 -07:00
|
|
|
mBulletAccessible->Shutdown();
|
|
|
|
}
|
2009-09-18 23:30:07 -07:00
|
|
|
|
2010-06-11 21:04:35 -07:00
|
|
|
nsHyperTextAccessibleWrap::Shutdown();
|
2007-03-22 10:30:00 -07:00
|
|
|
mBulletAccessible = nsnull;
|
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLLIAccessible::NativeRole()
|
2009-03-07 07:38:58 -08:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_LISTITEM;
|
2009-03-07 07:38:58 -08:00
|
|
|
}
|
|
|
|
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult
|
|
|
|
nsHTMLLIAccessible::GetStateInternal(PRUint32 *aState, PRUint32 *aExtraState)
|
2007-06-24 15:04:45 -07:00
|
|
|
{
|
2009-10-22 20:29:36 -07:00
|
|
|
nsresult rv = nsHyperTextAccessibleWrap::GetStateInternal(aState,
|
|
|
|
aExtraState);
|
2008-11-26 20:04:05 -08:00
|
|
|
NS_ENSURE_A11Y_SUCCESS(rv, rv);
|
2007-06-24 15:04:45 -07:00
|
|
|
|
|
|
|
*aState |= nsIAccessibleStates::STATE_READONLY;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP nsHTMLLIAccessible::GetBounds(PRInt32 *x, PRInt32 *y, PRInt32 *width, PRInt32 *height)
|
|
|
|
{
|
|
|
|
nsresult rv = nsAccessibleWrap::GetBounds(x, y, width, height);
|
|
|
|
if (NS_FAILED(rv) || !mBulletAccessible) {
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 bulletX, bulletY, bulletWidth, bulletHeight;
|
|
|
|
rv = mBulletAccessible->GetBounds(&bulletX, &bulletY, &bulletWidth, &bulletHeight);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*x = bulletX; // Move x coordinate of list item over to cover bullet as well
|
|
|
|
*width += bulletWidth;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-12-10 11:12:19 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLLIAccessible: nsAccessible protected
|
2009-11-19 08:35:38 -08:00
|
|
|
|
2009-12-10 11:12:19 -08:00
|
|
|
void
|
|
|
|
nsHTMLLIAccessible::CacheChildren()
|
|
|
|
{
|
2010-07-01 18:22:41 -07:00
|
|
|
if (mBulletAccessible)
|
|
|
|
AppendChild(mBulletAccessible);
|
2009-12-10 11:12:19 -08:00
|
|
|
|
|
|
|
// Cache children from subtree.
|
|
|
|
nsAccessibleWrap::CacheChildren();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-04-10 04:52:59 -07:00
|
|
|
// nsHTMLListBulletAccessible
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2007-04-10 04:52:59 -07:00
|
|
|
nsHTMLListBulletAccessible::
|
2010-10-14 02:05:22 -07:00
|
|
|
nsHTMLListBulletAccessible(nsIContent* aContent, nsIWeakReference* aShell) :
|
|
|
|
nsLeafAccessible(aContent, aShell)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mBulletText += ' '; // Otherwise bullets are jammed up against list text
|
|
|
|
}
|
|
|
|
|
2010-10-20 21:16:10 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLListBulletAccessible: nsAccessNode
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-11 21:04:35 -07:00
|
|
|
void
|
2007-04-10 04:52:59 -07:00
|
|
|
nsHTMLListBulletAccessible::Shutdown()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mBulletText.Truncate();
|
2010-06-11 21:04:35 -07:00
|
|
|
nsLeafAccessible::Shutdown();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-10-20 21:16:10 -07:00
|
|
|
bool
|
|
|
|
nsHTMLListBulletAccessible::IsPrimaryForNode() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsHTMLListBulletAccessible: nsAccessible
|
|
|
|
|
2007-04-10 04:52:59 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsHTMLListBulletAccessible::GetName(nsAString &aName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-10-14 02:05:22 -07:00
|
|
|
aName.Truncate();
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Native anonymous content, ARIA can't be used. Get list bullet text.
|
|
|
|
nsBlockFrame* blockFrame = do_QueryFrame(mContent->GetPrimaryFrame());
|
|
|
|
if (blockFrame) {
|
|
|
|
blockFrame->GetBulletText(aName);
|
|
|
|
|
|
|
|
// Append space otherwise bullets are jammed up against list text.
|
|
|
|
aName.Append(' ');
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-04-02 08:56:24 -07:00
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLListBulletAccessible::NativeRole()
|
2007-04-10 04:52:59 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_STATICTEXT;
|
2007-04-10 04:52:59 -07:00
|
|
|
}
|
|
|
|
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult
|
|
|
|
nsHTMLListBulletAccessible::GetStateInternal(PRUint32 *aState, PRUint32 *aExtraState)
|
2007-04-02 08:56:24 -07:00
|
|
|
{
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult rv = nsLeafAccessible::GetStateInternal(aState, aExtraState);
|
2008-11-26 20:04:05 -08:00
|
|
|
NS_ENSURE_A11Y_SUCCESS(rv, rv);
|
2007-04-02 08:56:24 -07:00
|
|
|
|
|
|
|
*aState &= ~nsIAccessibleStates::STATE_FOCUSABLE;
|
|
|
|
*aState |= nsIAccessibleStates::STATE_READONLY;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-06-18 00:37:38 -07:00
|
|
|
nsresult
|
2007-08-03 18:12:24 -07:00
|
|
|
nsHTMLListBulletAccessible::AppendTextTo(nsAString& aText, PRUint32 aStartOffset,
|
|
|
|
PRUint32 aLength)
|
2007-04-10 21:17:33 -07:00
|
|
|
{
|
2010-10-14 02:05:22 -07:00
|
|
|
nsBlockFrame* blockFrame = do_QueryFrame(mContent->GetPrimaryFrame());
|
|
|
|
if (blockFrame) {
|
|
|
|
nsAutoString bulletText;
|
|
|
|
blockFrame->GetBulletText(bulletText);
|
|
|
|
|
|
|
|
PRUint32 maxLength = bulletText.Length() - aStartOffset;
|
|
|
|
if (aLength > maxLength)
|
|
|
|
aLength = maxLength;
|
|
|
|
|
|
|
|
aText += Substring(bulletText, aStartOffset, aLength);
|
2007-08-03 18:12:24 -07:00
|
|
|
}
|
2007-04-10 21:17:33 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-03-07 07:38:58 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-04-02 08:56:24 -07:00
|
|
|
// nsHTMLListAccessible
|
2009-10-21 21:45:52 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-04-02 08:56:24 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsHTMLListAccessible::
|
|
|
|
nsHTMLListAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsHyperTextAccessibleWrap(aContent, aShell)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-22 20:29:36 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsHTMLListAccessible, nsHyperTextAccessible)
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsHTMLListAccessible::NativeRole()
|
2009-03-07 07:38:58 -08:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_LIST;
|
2009-03-07 07:38:58 -08:00
|
|
|
}
|
|
|
|
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult
|
|
|
|
nsHTMLListAccessible::GetStateInternal(PRUint32 *aState, PRUint32 *aExtraState)
|
2007-04-02 08:56:24 -07:00
|
|
|
{
|
2008-11-03 19:37:46 -08:00
|
|
|
nsresult rv = nsHyperTextAccessibleWrap::GetStateInternal(aState,
|
|
|
|
aExtraState);
|
2008-11-26 20:04:05 -08:00
|
|
|
NS_ENSURE_A11Y_SUCCESS(rv, rv);
|
2007-04-02 08:56:24 -07:00
|
|
|
|
|
|
|
*aState |= nsIAccessibleStates::STATE_READONLY;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|