2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; 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):
|
2009-09-10 18:07:56 -07:00
|
|
|
* Aaron Leventhal <aaronl@netscape.com> (original author)
|
|
|
|
* Kyle Yuan <kyle.yuan@sun.com>
|
|
|
|
* Alexander Surkov <surkov.alexander@gmail.com>
|
2007-03-22 10:30:00 -07:00
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
#include "nsXULListboxAccessible.h"
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
#include "States.h"
|
2010-04-26 23:52:03 -07:00
|
|
|
#include "nsAccessibilityService.h"
|
|
|
|
#include "nsAccUtils.h"
|
|
|
|
|
2008-01-23 15:49:10 -08:00
|
|
|
#include "nsIDOMXULPopupElement.h"
|
2008-03-05 20:14:10 -08:00
|
|
|
#include "nsIDOMXULMultSelectCntrlEl.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMXULSelectCntrlItemEl.h"
|
|
|
|
|
2007-09-18 20:31:14 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULColumnsAccessible
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-09-18 20:31:14 -07:00
|
|
|
|
|
|
|
nsXULColumnsAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULColumnsAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsAccessibleWrap(aContent, aShell)
|
2007-09-18 20:31:14 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsXULColumnsAccessible::NativeRole()
|
2007-09-18 20:31:14 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_LIST;
|
2007-09-18 20:31:14 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64
|
|
|
|
nsXULColumnsAccessible::NativeState()
|
2007-09-18 20:31:14 -07:00
|
|
|
{
|
2011-04-09 16:38:06 -07:00
|
|
|
return IsDefunct() ? states::DEFUNCT : states::READONLY;
|
2007-09-18 20:31:14 -07:00
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2007-09-18 20:31:14 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULColumnItemAccessible
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-09-18 20:31:14 -07:00
|
|
|
|
|
|
|
nsXULColumnItemAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULColumnItemAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsLeafAccessible(aContent, aShell)
|
2007-09-18 20:31:14 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsXULColumnItemAccessible::NativeRole()
|
2007-09-18 20:31:14 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_COLUMNHEADER;
|
2007-09-18 20:31:14 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64
|
|
|
|
nsXULColumnItemAccessible::NativeState()
|
2007-09-18 20:31:14 -07:00
|
|
|
{
|
2011-04-09 16:38:06 -07:00
|
|
|
return IsDefunct() ? states::DEFUNCT : states::READONLY;
|
2007-09-18 20:31:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULColumnItemAccessible::GetNumActions(PRUint8 *aNumActions)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNumActions);
|
|
|
|
|
|
|
|
*aNumActions = 1;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULColumnItemAccessible::GetActionName(PRUint8 aIndex, nsAString& aName)
|
|
|
|
{
|
|
|
|
if (aIndex != eAction_Click)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
|
|
|
aName.AssignLiteral("click");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULColumnItemAccessible::DoAction(PRUint8 aIndex)
|
|
|
|
{
|
|
|
|
if (aIndex != eAction_Click)
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
|
2010-01-25 07:09:25 -08:00
|
|
|
DoCommand();
|
|
|
|
return NS_OK;
|
2007-09-18 20:31:14 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-09-18 20:31:14 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListboxAccessible
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
nsXULListboxAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULListboxAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsXULSelectableAccessible(aContent, aShell)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_IMPL_ADDREF_INHERITED(nsXULListboxAccessible, nsXULSelectableAccessible)
|
|
|
|
NS_IMPL_RELEASE_INHERITED(nsXULListboxAccessible, nsXULSelectableAccessible)
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXULListboxAccessible::QueryInterface(REFNSIID aIID, void** aInstancePtr)
|
|
|
|
{
|
|
|
|
nsresult rv = nsXULSelectableAccessible::QueryInterface(aIID, aInstancePtr);
|
|
|
|
if (*aInstancePtr)
|
|
|
|
return rv;
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (aIID.Equals(NS_GET_IID(nsIAccessibleTable)) && IsMulticolumn()) {
|
2008-02-19 01:07:35 -08:00
|
|
|
*aInstancePtr = static_cast<nsIAccessibleTable*>(this);
|
|
|
|
NS_ADDREF_THIS();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_NO_INTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRBool
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::IsMulticolumn()
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
PRInt32 numColumns = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
nsresult rv = GetColumnCount(&numColumns);
|
2008-02-19 01:07:35 -08:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return PR_FALSE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
return numColumns > 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListboxAccessible. nsIAccessible
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64
|
|
|
|
nsXULListboxAccessible::NativeState()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-02-19 01:07:35 -08:00
|
|
|
// As a nsXULListboxAccessible we can have the following states:
|
2011-04-09 16:38:06 -07:00
|
|
|
// FOCUSED, READONLY, FOCUSABLE
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Get focus status from base class
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64 states = nsAccessible::NativeState();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
// see if we are multiple select if so set ourselves as such
|
|
|
|
|
|
|
|
if (mContent->AttrValueIs(kNameSpaceID_None, nsAccessibilityAtoms::seltype,
|
|
|
|
nsAccessibilityAtoms::multiple, eCaseMatters)) {
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::MULTISELECTABLE | states::EXTSELECTABLE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
return states;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Our value is the label of our ( first ) selected child.
|
|
|
|
*/
|
|
|
|
NS_IMETHODIMP nsXULListboxAccessible::GetValue(nsAString& _retval)
|
|
|
|
{
|
|
|
|
_retval.Truncate();
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULSelectControlElement> select(do_QueryInterface(mContent));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (select) {
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> selectedItem;
|
|
|
|
select->GetSelectedItem(getter_AddRefs(selectedItem));
|
|
|
|
if (selectedItem)
|
|
|
|
return selectedItem->GetLabel(_retval);
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsXULListboxAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
// A richlistbox is used with the new autocomplete URL bar, and has a parent
|
|
|
|
// popup <panel>.
|
|
|
|
nsCOMPtr<nsIDOMXULPopupElement> xulPopup =
|
|
|
|
do_QueryInterface(mContent->GetParent());
|
2010-09-04 19:14:01 -07:00
|
|
|
if (xulPopup)
|
|
|
|
return nsIAccessibleRole::ROLE_COMBOBOX_LIST;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsMulticolumn())
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_TABLE;
|
|
|
|
return nsIAccessibleRole::ROLE_LISTBOX;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListboxAccessible. nsIAccessibleTable
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetCaption(nsIAccessible **aCaption)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCaption);
|
|
|
|
*aCaption = nsnull;
|
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetSummary(nsAString &aSummary)
|
|
|
|
{
|
|
|
|
aSummary.Truncate();
|
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetColumnCount(PRInt32 *aColumnsCout)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aColumnsCout);
|
|
|
|
*aColumnsCout = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
2008-02-19 01:07:35 -08:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsIContent* headContent = nsnull;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
PRUint32 count = mContent->GetChildCount();
|
2008-02-19 01:07:35 -08:00
|
|
|
for (PRUint32 index = 0; index < count; ++index) {
|
2010-06-11 01:23:18 -07:00
|
|
|
nsIContent* childContent = mContent->GetChildAt(index);
|
2008-03-05 20:14:10 -08:00
|
|
|
if (childContent->NodeInfo()->Equals(nsAccessibilityAtoms::listcols,
|
2008-02-19 01:07:35 -08:00
|
|
|
kNameSpaceID_XUL)) {
|
|
|
|
headContent = childContent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!headContent)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRUint32 columnCount = 0;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
count = headContent->GetChildCount();
|
2008-02-19 01:07:35 -08:00
|
|
|
for (PRUint32 index = 0; index < count; ++index) {
|
2010-06-11 01:23:18 -07:00
|
|
|
nsIContent* childContent = headContent->GetChildAt(index);
|
2008-03-05 20:14:10 -08:00
|
|
|
if (childContent->NodeInfo()->Equals(nsAccessibilityAtoms::listcol,
|
2008-02-19 01:07:35 -08:00
|
|
|
kNameSpaceID_XUL)) {
|
|
|
|
columnCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
*aColumnsCout = columnCount;
|
2008-02-19 01:07:35 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULListboxAccessible::GetRowCount(PRInt32 *aRowCount)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aRowCount);
|
|
|
|
*aRowCount = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
2008-02-19 01:07:35 -08:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIDOMXULSelectControlElement> element(do_QueryInterface(mContent));
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_STATE(element);
|
|
|
|
|
|
|
|
PRUint32 itemCount = 0;
|
|
|
|
nsresult rv = element->GetItemCount(&itemCount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
*aRowCount = itemCount;
|
2008-02-19 01:07:35 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetCellAt(PRInt32 aRow, PRInt32 aColumn,
|
2008-02-19 01:07:35 -08:00
|
|
|
nsIAccessible **aAccessibleCell)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAccessibleCell);
|
|
|
|
*aAccessibleCell = nsnull;
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-02-19 01:07:35 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> item;
|
|
|
|
control->GetItemAtIndex(aRow, getter_AddRefs(item));
|
|
|
|
NS_ENSURE_TRUE(item, NS_ERROR_INVALID_ARG);
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIContent> itemContent(do_QueryInterface(item));
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2010-05-25 01:05:52 -07:00
|
|
|
nsAccessible *row =
|
2010-06-11 01:23:18 -07:00
|
|
|
GetAccService()->GetAccessibleInWeakShell(itemContent, mWeakShell);
|
2010-05-25 01:05:52 -07:00
|
|
|
NS_ENSURE_STATE(row);
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2010-05-25 01:05:52 -07:00
|
|
|
nsresult rv = row->GetChildAt(aColumn, aAccessibleCell);
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_INVALID_ARG);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetCellIndexAt(PRInt32 aRow, PRInt32 aColumn,
|
|
|
|
PRInt32 *aIndex)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aIndex);
|
|
|
|
*aIndex = -1;
|
|
|
|
|
|
|
|
PRInt32 rowCount = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
nsresult rv = GetRowCount(&rowCount);
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(0 <= aRow && aRow <= rowCount, NS_ERROR_INVALID_ARG);
|
|
|
|
|
|
|
|
PRInt32 columnCount = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
rv = GetColumnCount(&columnCount);
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(0 <= aColumn && aColumn <= columnCount, NS_ERROR_INVALID_ARG);
|
|
|
|
|
|
|
|
*aIndex = aRow * columnCount + aColumn;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetColumnIndexAt(PRInt32 aIndex, PRInt32 *aColumn)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aColumn);
|
|
|
|
*aColumn = -1;
|
|
|
|
|
|
|
|
PRInt32 columnCount = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
nsresult rv = GetColumnCount(&columnCount);
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aColumn = aIndex % columnCount;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetRowIndexAt(PRInt32 aIndex, PRInt32 *aRow)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRow);
|
|
|
|
*aRow = -1;
|
|
|
|
|
|
|
|
PRInt32 columnCount = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
nsresult rv = GetColumnCount(&columnCount);
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aRow = aIndex / columnCount;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-02 20:16:52 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetRowAndColumnIndicesAt(PRInt32 aCellIndex,
|
|
|
|
PRInt32* aRowIndex,
|
|
|
|
PRInt32* aColumnIndex)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRowIndex);
|
|
|
|
*aRowIndex = -1;
|
|
|
|
NS_ENSURE_ARG_POINTER(aColumnIndex);
|
|
|
|
*aColumnIndex = -1;
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRInt32 columnCount = 0;
|
|
|
|
nsresult rv = GetColumnCount(&columnCount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aColumnIndex = aCellIndex % columnCount;
|
|
|
|
*aRowIndex = aCellIndex / columnCount;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetColumnExtentAt(PRInt32 aRow, PRInt32 aColumn,
|
|
|
|
PRInt32 *aCellSpans)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCellSpans);
|
|
|
|
*aCellSpans = 1;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetRowExtentAt(PRInt32 aRow, PRInt32 aColumn,
|
|
|
|
PRInt32 *aCellSpans)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCellSpans);
|
|
|
|
*aCellSpans = 1;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetColumnDescription(PRInt32 aColumn,
|
|
|
|
nsAString& aDescription)
|
|
|
|
{
|
2008-03-05 20:14:10 -08:00
|
|
|
aDescription.Truncate();
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetRowDescription(PRInt32 aRow, nsAString& aDescription)
|
|
|
|
{
|
2008-03-05 20:14:10 -08:00
|
|
|
aDescription.Truncate();
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::IsColumnSelected(PRInt32 aColumn, PRBool *aIsSelected)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aIsSelected);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aIsSelected = PR_FALSE;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 selectedrowCount = 0;
|
|
|
|
nsresult rv = control->GetSelectedCount(&selectedrowCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 rowCount = 0;
|
|
|
|
rv = GetRowCount(&rowCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
*aIsSelected = (selectedrowCount == rowCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::IsRowSelected(PRInt32 aRow, PRBool *aIsSelected)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aIsSelected);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aIsSelected = PR_FALSE;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> item;
|
|
|
|
control->GetItemAtIndex(aRow, getter_AddRefs(item));
|
|
|
|
NS_ENSURE_TRUE(item, NS_ERROR_INVALID_ARG);
|
|
|
|
|
|
|
|
return item->GetSelected(aIsSelected);
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::IsCellSelected(PRInt32 aRowIndex, PRInt32 aColumnIndex,
|
2008-02-19 01:07:35 -08:00
|
|
|
PRBool *aIsSelected)
|
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
return IsRowSelected(aRowIndex, aIsSelected);
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetSelectedCellCount(PRUint32* aCount)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aCount = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList> selectedItems;
|
|
|
|
control->GetSelectedItems(getter_AddRefs(selectedItems));
|
|
|
|
if (!selectedItems)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRUint32 selectedItemsCount = 0;
|
|
|
|
nsresult rv = selectedItems->GetLength(&selectedItemsCount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!selectedItemsCount)
|
|
|
|
return NS_OK;
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 columnCount = 0;
|
|
|
|
rv = GetColumnCount(&columnCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
*aCount = selectedItemsCount * columnCount;
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetSelectedColumnCount(PRUint32* aCount)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aCount = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 selectedrowCount = 0;
|
|
|
|
nsresult rv = control->GetSelectedCount(&selectedrowCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 rowCount = 0;
|
|
|
|
rv = GetRowCount(&rowCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (selectedrowCount != rowCount)
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 columnCount = 0;
|
|
|
|
rv = GetColumnCount(&columnCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
*aCount = columnCount;
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetSelectedRowCount(PRUint32* aCount)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aCount = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 selectedrowCount = 0;
|
|
|
|
nsresult rv = control->GetSelectedCount(&selectedrowCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
*aCount = selectedrowCount;
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetSelectedCells(nsIArray **aCells)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aCells);
|
|
|
|
*aCells = nsnull;
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIMutableArray> selCells =
|
|
|
|
do_CreateInstance(NS_ARRAY_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList> selectedItems;
|
|
|
|
control->GetSelectedItems(getter_AddRefs(selectedItems));
|
|
|
|
if (!selectedItems)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRUint32 selectedItemsCount = 0;
|
|
|
|
rv = selectedItems->GetLength(&selectedItemsCount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 index = 0;
|
|
|
|
for (; index < selectedItemsCount; index++) {
|
|
|
|
nsCOMPtr<nsIDOMNode> itemNode;
|
|
|
|
selectedItems->Item(index, getter_AddRefs(itemNode));
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIContent> itemContent(do_QueryInterface(itemNode));
|
2010-05-25 01:05:52 -07:00
|
|
|
nsAccessible *item =
|
2010-06-11 01:23:18 -07:00
|
|
|
GetAccService()->GetAccessibleInWeakShell(itemContent, mWeakShell);
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
if (item) {
|
2010-04-23 17:40:51 -07:00
|
|
|
PRInt32 cellCount = item->GetChildCount();
|
|
|
|
for (PRInt32 cellIdx = 0; cellIdx < cellCount; cellIdx++) {
|
|
|
|
nsAccessible *cell = mChildren[cellIdx];
|
2010-09-06 19:41:53 -07:00
|
|
|
if (cell->Role() == nsIAccessibleRole::ROLE_CELL)
|
2010-04-23 17:40:51 -07:00
|
|
|
selCells->AppendElement(static_cast<nsIAccessible*>(cell), PR_FALSE);
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(*aCells = selCells);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::GetSelectedCellIndices(PRUint32 *aNumCells,
|
|
|
|
PRInt32 **aCells)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNumCells);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aNumCells = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aCells);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aCells = nsnull;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList> selectedItems;
|
|
|
|
control->GetSelectedItems(getter_AddRefs(selectedItems));
|
|
|
|
if (!selectedItems)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRUint32 selectedItemsCount = 0;
|
|
|
|
nsresult rv = selectedItems->GetLength(&selectedItemsCount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRInt32 columnCount = 0;
|
|
|
|
rv = GetColumnCount(&columnCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRUint32 cellsCount = selectedItemsCount * columnCount;
|
2008-03-05 20:14:10 -08:00
|
|
|
|
|
|
|
PRInt32 *cellsIdxArray =
|
|
|
|
static_cast<PRInt32*>(nsMemory::Alloc((cellsCount) * sizeof(PRInt32)));
|
|
|
|
NS_ENSURE_TRUE(cellsIdxArray, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
PRUint32 index = 0, cellsIdx = 0;
|
|
|
|
for (; index < selectedItemsCount; index++) {
|
|
|
|
nsCOMPtr<nsIDOMNode> itemNode;
|
|
|
|
selectedItems->Item(index, getter_AddRefs(itemNode));
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> item =
|
|
|
|
do_QueryInterface(itemNode);
|
|
|
|
|
|
|
|
if (item) {
|
|
|
|
PRInt32 itemIdx = -1;
|
|
|
|
control->GetIndexOfItem(item, &itemIdx);
|
|
|
|
if (itemIdx != -1) {
|
|
|
|
PRInt32 colIdx = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
for (; colIdx < columnCount; colIdx++)
|
|
|
|
cellsIdxArray[cellsIdx++] = itemIdx * columnCount + colIdx;
|
2008-03-05 20:14:10 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aNumCells = cellsCount;
|
|
|
|
*aCells = cellsIdxArray;
|
|
|
|
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetSelectedColumnIndices(PRUint32 *aNumColumns,
|
|
|
|
PRInt32 **aColumns)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNumColumns);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aNumColumns = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aColumns);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aColumns = nsnull;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
PRUint32 columnCount = 0;
|
|
|
|
nsresult rv = GetSelectedColumnCount(&columnCount);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (!columnCount)
|
2008-03-05 20:14:10 -08:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRInt32 *colsIdxArray =
|
2009-09-10 18:07:56 -07:00
|
|
|
static_cast<PRInt32*>(nsMemory::Alloc((columnCount) * sizeof(PRInt32)));
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ENSURE_TRUE(colsIdxArray, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
PRUint32 colIdx = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
for (; colIdx < columnCount; colIdx++)
|
2008-03-05 20:14:10 -08:00
|
|
|
colsIdxArray[colIdx] = colIdx;
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
*aNumColumns = columnCount;
|
2008-03-05 20:14:10 -08:00
|
|
|
*aColumns = colsIdxArray;
|
|
|
|
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2009-09-10 18:07:56 -07:00
|
|
|
nsXULListboxAccessible::GetSelectedRowIndices(PRUint32 *aNumRows,
|
|
|
|
PRInt32 **aRows)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNumRows);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aNumRows = 0;
|
2008-02-19 01:07:35 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aRows);
|
2008-03-05 20:14:10 -08:00
|
|
|
*aRows = nsnull;
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList> selectedItems;
|
|
|
|
control->GetSelectedItems(getter_AddRefs(selectedItems));
|
|
|
|
if (!selectedItems)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRUint32 selectedItemsCount = 0;
|
|
|
|
nsresult rv = selectedItems->GetLength(&selectedItemsCount);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!selectedItemsCount)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
PRInt32 *rowsIdxArray =
|
|
|
|
static_cast<PRInt32*>(nsMemory::Alloc((selectedItemsCount) * sizeof(PRInt32)));
|
|
|
|
NS_ENSURE_TRUE(rowsIdxArray, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
PRUint32 index = 0;
|
|
|
|
for (; index < selectedItemsCount; index++) {
|
|
|
|
nsCOMPtr<nsIDOMNode> itemNode;
|
|
|
|
selectedItems->Item(index, getter_AddRefs(itemNode));
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> item =
|
|
|
|
do_QueryInterface(itemNode);
|
|
|
|
|
|
|
|
if (item) {
|
|
|
|
PRInt32 itemIdx = -1;
|
|
|
|
control->GetIndexOfItem(item, &itemIdx);
|
|
|
|
if (itemIdx != -1)
|
|
|
|
rowsIdxArray[index] = itemIdx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aNumRows = selectedItemsCount;
|
|
|
|
*aRows = rowsIdxArray;
|
|
|
|
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::SelectRow(PRInt32 aRow)
|
|
|
|
{
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> item;
|
|
|
|
control->GetItemAtIndex(aRow, getter_AddRefs(item));
|
|
|
|
NS_ENSURE_TRUE(item, NS_ERROR_INVALID_ARG);
|
|
|
|
|
|
|
|
return control->SelectItem(item);
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::SelectColumn(PRInt32 aColumn)
|
|
|
|
{
|
2008-03-05 20:14:10 -08:00
|
|
|
// xul:listbox and xul:richlistbox support row selection only.
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::UnselectRow(PRInt32 aRow)
|
|
|
|
{
|
2008-03-05 20:14:10 -08:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULMultiSelectControlElement> control =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-03-05 20:14:10 -08:00
|
|
|
NS_ASSERTION(control,
|
|
|
|
"Doesn't implement nsIDOMXULMultiSelectControlElement.");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> item;
|
|
|
|
control->GetItemAtIndex(aRow, getter_AddRefs(item));
|
|
|
|
NS_ENSURE_TRUE(item, NS_ERROR_INVALID_ARG);
|
|
|
|
|
|
|
|
return control->RemoveItemFromSelection(item);
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::UnselectColumn(PRInt32 aColumn)
|
|
|
|
{
|
2008-03-05 20:14:10 -08:00
|
|
|
// xul:listbox and xul:richlistbox support row selection only.
|
|
|
|
return NS_OK;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListboxAccessible::IsProbablyForLayout(PRBool *aIsProbablyForLayout)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aIsProbablyForLayout);
|
|
|
|
*aIsProbablyForLayout = PR_FALSE;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListitemAccessible
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
2008-02-19 01:07:35 -08:00
|
|
|
|
|
|
|
nsXULListitemAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULListitemAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsXULMenuitemAccessible(aContent, aShell)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
mIsCheckbox = mContent->AttrValueIs(kNameSpaceID_None,
|
|
|
|
nsAccessibilityAtoms::type,
|
|
|
|
nsAccessibilityAtoms::checkbox,
|
|
|
|
eCaseMatters);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(nsXULListitemAccessible, nsAccessible)
|
|
|
|
|
2010-05-25 01:05:52 -07:00
|
|
|
nsAccessible *
|
2008-02-19 01:07:35 -08:00
|
|
|
nsXULListitemAccessible::GetListAccessible()
|
|
|
|
{
|
|
|
|
if (IsDefunct())
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> listItem =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2008-02-22 03:07:54 -08:00
|
|
|
if (!listItem)
|
|
|
|
return nsnull;
|
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
nsCOMPtr<nsIDOMXULSelectControlElement> list;
|
|
|
|
listItem->GetControl(getter_AddRefs(list));
|
2008-06-11 01:36:57 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
nsCOMPtr<nsIContent> listContent(do_QueryInterface(list));
|
|
|
|
if (!listContent)
|
2008-02-19 01:07:35 -08:00
|
|
|
return nsnull;
|
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
return GetAccService()->GetAccessibleInWeakShell(listContent, mWeakShell);
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListitemAccessible. nsIAccessible
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* If there is a Listcell as a child ( not anonymous ) use it, otherwise
|
|
|
|
* default to getting the name from GetXULName
|
|
|
|
*/
|
2008-10-10 05:26:55 -07:00
|
|
|
nsresult
|
|
|
|
nsXULListitemAccessible::GetNameInternal(nsAString& aName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
nsIContent* child = mContent->GetChildAt(0);
|
|
|
|
if (child) {
|
|
|
|
if (child->NodeInfo()->Equals(nsAccessibilityAtoms::listcell,
|
|
|
|
kNameSpaceID_XUL)) {
|
|
|
|
child->GetAttr(kNameSpaceID_None, nsAccessibilityAtoms::label, aName);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2008-08-24 09:45:56 -07:00
|
|
|
return GetXULName(aName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsXULListitemAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-05-25 01:05:52 -07:00
|
|
|
nsAccessible *list = GetListAccessible();
|
2010-09-04 19:14:01 -07:00
|
|
|
if (!list) {
|
|
|
|
NS_ERROR("No list accessible for listitem accessible!");
|
|
|
|
return nsIAccessibleRole::ROLE_NOTHING;
|
2008-02-19 01:07:35 -08:00
|
|
|
}
|
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
if (list->Role() == nsIAccessibleRole::ROLE_TABLE)
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_ROW;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (mIsCheckbox)
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_CHECKBUTTON;
|
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
if (mParent && mParent->Role() == nsIAccessibleRole::ROLE_COMBOBOX_LIST)
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_COMBOBOX_OPTION;
|
|
|
|
|
|
|
|
return nsIAccessibleRole::ROLE_RICH_OPTION;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64
|
|
|
|
nsXULListitemAccessible::NativeState()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mIsCheckbox) {
|
2011-04-09 16:38:06 -07:00
|
|
|
return nsXULMenuitemAccessible::NativeState();
|
2007-11-15 11:53:40 -08:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return states::DEFUNCT;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64 states = states::FOCUSABLE | states::SELECTABLE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMXULSelectControlItemElement> listItem =
|
2010-06-11 01:23:18 -07:00
|
|
|
do_QueryInterface(mContent);
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (listItem) {
|
|
|
|
PRBool isSelected;
|
|
|
|
listItem->GetSelected(&isSelected);
|
|
|
|
if (isSelected)
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::SELECTED;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-11 01:23:18 -07:00
|
|
|
if (gLastFocusedNode == mContent)
|
2011-04-09 16:38:06 -07:00
|
|
|
states |= states::FOCUSED;
|
2010-06-11 01:23:18 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
return states;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP nsXULListitemAccessible::GetActionName(PRUint8 aIndex, nsAString& aName)
|
|
|
|
{
|
|
|
|
if (aIndex == eAction_Click && mIsCheckbox) {
|
|
|
|
// check or uncheck
|
2011-04-09 16:38:06 -07:00
|
|
|
PRUint64 states = NativeState();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-09 16:38:06 -07:00
|
|
|
if (states & states::CHECKED)
|
2007-03-22 10:30:00 -07:00
|
|
|
aName.AssignLiteral("uncheck");
|
|
|
|
else
|
|
|
|
aName.AssignLiteral("check");
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
|
2009-06-18 00:37:38 -07:00
|
|
|
PRBool
|
|
|
|
nsXULListitemAccessible::GetAllowsAnonChildAccessibles()
|
2007-04-30 23:03:08 -07:00
|
|
|
{
|
|
|
|
// That indicates we should walk anonymous children for listitems
|
2009-06-18 00:37:38 -07:00
|
|
|
return PR_TRUE;
|
2007-04-30 23:03:08 -07:00
|
|
|
}
|
|
|
|
|
2010-01-06 02:36:50 -08:00
|
|
|
void
|
|
|
|
nsXULListitemAccessible::GetPositionAndSizeInternal(PRInt32 *aPosInSet,
|
|
|
|
PRInt32 *aSetSize)
|
2008-02-19 05:47:19 -08:00
|
|
|
{
|
2010-06-11 01:23:18 -07:00
|
|
|
nsAccUtils::GetPositionAndSizeForXULSelectControlItem(mContent, aPosInSet,
|
2010-01-06 02:36:50 -08:00
|
|
|
aSetSize);
|
2008-02-19 05:47:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListCellAccessible
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-02-19 01:07:35 -08:00
|
|
|
nsXULListCellAccessible::
|
2010-06-11 01:23:18 -07:00
|
|
|
nsXULListCellAccessible(nsIContent *aContent, nsIWeakReference *aShell) :
|
|
|
|
nsHyperTextAccessibleWrap(aContent, aShell)
|
2008-02-19 01:07:35 -08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsISupports
|
2008-02-19 01:07:35 -08:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED1(nsXULListCellAccessible,
|
|
|
|
nsHyperTextAccessible,
|
|
|
|
nsIAccessibleTableCell)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListCellAccessible: nsIAccessibleTableCell implementation
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetTable(nsIAccessibleTable **aTable)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aTable);
|
|
|
|
*aTable = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
nsAccessible* thisRow = GetParent();
|
|
|
|
if (!thisRow || thisRow->Role() != nsIAccessibleRole::ROLE_ROW)
|
2009-09-10 18:07:56 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
nsAccessible* table = thisRow->GetParent();
|
|
|
|
if (!table || table->Role() != nsIAccessibleRole::ROLE_TABLE)
|
2009-09-10 18:07:56 -07:00
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
CallQueryInterface(table, aTable);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetColumnIndex(PRInt32 *aColumnIndex)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aColumnIndex);
|
|
|
|
*aColumnIndex = -1;
|
|
|
|
|
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
nsAccessible* row = GetParent();
|
|
|
|
if (!row)
|
|
|
|
return NS_OK;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
*aColumnIndex = 0;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
PRInt32 indexInRow = GetIndexInParent();
|
|
|
|
for (PRInt32 idx = 0; idx < indexInRow; idx++) {
|
|
|
|
nsAccessible* cell = row->GetChildAt(idx);
|
|
|
|
PRUint32 role = cell->Role();
|
2009-09-10 18:07:56 -07:00
|
|
|
if (role == nsIAccessibleRole::ROLE_CELL ||
|
|
|
|
role == nsIAccessibleRole::ROLE_GRID_CELL ||
|
|
|
|
role == nsIAccessibleRole::ROLE_ROWHEADER ||
|
|
|
|
role == nsIAccessibleRole::ROLE_COLUMNHEADER)
|
|
|
|
(*aColumnIndex)++;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetRowIndex(PRInt32 *aRowIndex)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aRowIndex);
|
|
|
|
*aRowIndex = -1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
nsAccessible* row = GetParent();
|
|
|
|
if (!row)
|
|
|
|
return NS_OK;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
nsAccessible* table = row->GetParent();
|
|
|
|
if (!table)
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-09-06 19:41:53 -07:00
|
|
|
*aRowIndex = 0;
|
|
|
|
|
|
|
|
PRInt32 indexInTable = row->GetIndexInParent();
|
|
|
|
for (PRInt32 idx = 0; idx < indexInTable; idx++) {
|
|
|
|
row = table->GetChildAt(idx);
|
|
|
|
if (row->Role() == nsIAccessibleRole::ROLE_ROW)
|
|
|
|
(*aRowIndex)++;
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetColumnExtent(PRInt32 *aExtentCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aExtentCount);
|
|
|
|
*aExtentCount = 0;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
*aExtentCount = 1;
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetRowExtent(PRInt32 *aExtentCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aExtentCount);
|
|
|
|
*aExtentCount = 0;
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
*aExtentCount = 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetColumnHeaderCells(nsIArray **aHeaderCells)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aHeaderCells);
|
|
|
|
*aHeaderCells = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> table;
|
|
|
|
GetTable(getter_AddRefs(table));
|
2009-11-17 13:14:45 -08:00
|
|
|
NS_ENSURE_STATE(table); // we expect to be in a listbox (table)
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
// Get column header cell from XUL listhead.
|
2010-05-18 07:03:56 -07:00
|
|
|
nsAccessible *list = nsnull;
|
|
|
|
|
|
|
|
nsRefPtr<nsAccessible> tableAcc(do_QueryObject(table));
|
|
|
|
PRInt32 tableChildCount = tableAcc->GetChildCount();
|
|
|
|
for (PRInt32 childIdx = 0; childIdx < tableChildCount; childIdx++) {
|
|
|
|
nsAccessible *child = tableAcc->GetChildAt(childIdx);
|
2010-09-06 19:41:53 -07:00
|
|
|
if (child->Role() == nsIAccessibleRole::ROLE_LIST) {
|
2010-05-18 07:03:56 -07:00
|
|
|
list = child;
|
2009-09-10 18:07:56 -07:00
|
|
|
break;
|
2010-05-18 07:03:56 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-06-18 00:37:38 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (list) {
|
|
|
|
PRInt32 colIdx = -1;
|
|
|
|
GetColumnIndex(&colIdx);
|
|
|
|
|
2010-05-18 07:03:56 -07:00
|
|
|
nsIAccessible *headerCell = list->GetChildAt(colIdx);
|
2009-09-10 18:07:56 -07:00
|
|
|
if (headerCell) {
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIMutableArray> headerCells =
|
|
|
|
do_CreateInstance(NS_ARRAY_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
headerCells->AppendElement(headerCell, PR_FALSE);
|
|
|
|
NS_ADDREF(*aHeaderCells = headerCells);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No column header cell from XUL markup, try to get it from ARIA markup.
|
|
|
|
return nsAccUtils::GetHeaderCellsFor(table, this,
|
|
|
|
nsAccUtils::eColumnHeaderCells,
|
|
|
|
aHeaderCells);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::GetRowHeaderCells(nsIArray **aHeaderCells)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aHeaderCells);
|
|
|
|
*aHeaderCells = nsnull;
|
|
|
|
|
|
|
|
if (IsDefunct())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> table;
|
|
|
|
GetTable(getter_AddRefs(table));
|
2009-11-17 13:14:45 -08:00
|
|
|
NS_ENSURE_STATE(table); // we expect to be in a listbox (table)
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
// Calculate row header cells from ARIA markup.
|
|
|
|
return nsAccUtils::GetHeaderCellsFor(table, this,
|
|
|
|
nsAccUtils::eRowHeaderCells,
|
|
|
|
aHeaderCells);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXULListCellAccessible::IsSelected(PRBool *aIsSelected)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-09-10 18:07:56 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aIsSelected);
|
|
|
|
*aIsSelected = PR_FALSE;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> table;
|
|
|
|
GetTable(getter_AddRefs(table));
|
2009-11-17 13:14:45 -08:00
|
|
|
NS_ENSURE_STATE(table); // we expect to be in a listbox (table)
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
PRInt32 rowIdx = -1;
|
|
|
|
GetRowIndex(&rowIdx);
|
|
|
|
|
|
|
|
return table->IsRowSelected(rowIdx, aIsSelected);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// nsXULListCellAccessible. nsAccessible implementation
|
|
|
|
|
2010-09-04 19:14:01 -07:00
|
|
|
PRUint32
|
|
|
|
nsXULListCellAccessible::NativeRole()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-09-04 19:14:01 -07:00
|
|
|
return nsIAccessibleRole::ROLE_CELL;
|
2009-09-10 18:07:56 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-09-10 18:07:56 -07:00
|
|
|
nsresult
|
|
|
|
nsXULListCellAccessible::GetAttributesInternal(nsIPersistentProperties *aAttributes)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aAttributes);
|
|
|
|
|
|
|
|
if (IsDefunct())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_FAILURE;
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
// "table-cell-index" attribute
|
|
|
|
nsCOMPtr<nsIAccessibleTable> table;
|
|
|
|
GetTable(getter_AddRefs(table));
|
2009-11-17 13:14:45 -08:00
|
|
|
NS_ENSURE_STATE(table); // we expect to be in a listbox (table)
|
2009-09-10 18:07:56 -07:00
|
|
|
|
|
|
|
PRInt32 rowIdx = -1;
|
|
|
|
GetRowIndex(&rowIdx);
|
|
|
|
PRInt32 colIdx = -1;
|
|
|
|
GetColumnIndex(&colIdx);
|
|
|
|
|
|
|
|
PRInt32 cellIdx = -1;
|
|
|
|
table->GetCellIndexAt(rowIdx, colIdx, &cellIdx);
|
|
|
|
|
|
|
|
nsAutoString stringIdx;
|
|
|
|
stringIdx.AppendInt(cellIdx);
|
|
|
|
nsAccUtils::SetAccAttr(aAttributes, nsAccessibilityAtoms::tableCellIndex,
|
|
|
|
stringIdx);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|