2011-04-27 13:42:27 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2011-05-27 22:37:24 +00:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2003-05-06 02:23:50 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2005-12-31 12:57:14 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2003-05-06 02:23:50 +00:00
|
|
|
*
|
2005-12-31 12:57:14 +00:00
|
|
|
* 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/
|
2003-05-06 02:23:50 +00:00
|
|
|
*
|
2005-12-31 12:57:14 +00:00
|
|
|
* 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.
|
2003-05-06 02:23:50 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2005-12-31 12:57:14 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Sun Microsystems, Inc.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2003-05-06 02:23:50 +00:00
|
|
|
*
|
|
|
|
* Contributor(s):
|
2005-12-31 12:57:14 +00:00
|
|
|
* Bolian Yin (bolian.yin@sun.com)
|
2003-05-06 02:23:50 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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
|
2005-12-31 12:57:14 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2003-05-06 02:23:50 +00:00
|
|
|
* 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
|
2005-12-31 12:57:14 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2003-05-06 02:23:50 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsMaiInterfaceTable.h"
|
|
|
|
|
2010-04-27 06:52:03 +00:00
|
|
|
#include "nsAccUtils.h"
|
|
|
|
|
2009-09-11 01:07:56 +00:00
|
|
|
#include "nsArrayUtils.h"
|
|
|
|
|
2003-05-06 02:23:50 +00:00
|
|
|
void
|
2006-05-29 05:46:38 +00:00
|
|
|
tableInterfaceInitCB(AtkTableIface *aIface)
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
g_return_if_fail(aIface != NULL);
|
|
|
|
|
|
|
|
aIface->ref_at = refAtCB;
|
|
|
|
aIface->get_index_at = getIndexAtCB;
|
|
|
|
aIface->get_column_at_index = getColumnAtIndexCB;
|
|
|
|
aIface->get_row_at_index = getRowAtIndexCB;
|
|
|
|
aIface->get_n_columns = getColumnCountCB;
|
|
|
|
aIface->get_n_rows = getRowCountCB;
|
|
|
|
aIface->get_column_extent_at = getColumnExtentAtCB;
|
|
|
|
aIface->get_row_extent_at = getRowExtentAtCB;
|
|
|
|
aIface->get_caption = getCaptionCB;
|
|
|
|
aIface->get_column_description = getColumnDescriptionCB;
|
|
|
|
aIface->get_column_header = getColumnHeaderCB;
|
|
|
|
aIface->get_row_description = getRowDescriptionCB;
|
|
|
|
aIface->get_row_header = getRowHeaderCB;
|
|
|
|
aIface->get_summary = getSummaryCB;
|
|
|
|
aIface->get_selected_columns = getSelectedColumnsCB;
|
|
|
|
aIface->get_selected_rows = getSelectedRowsCB;
|
|
|
|
aIface->is_column_selected = isColumnSelectedCB;
|
|
|
|
aIface->is_row_selected = isRowSelectedCB;
|
|
|
|
aIface->is_selected = isCellSelectedCB;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
AtkObject*
|
|
|
|
refAtCB(AtkTable *aTable, gint aRow, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, nsnull);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessible> cell;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetCellAt(aRow, aColumn,getter_AddRefs(cell));
|
2003-05-06 02:23:50 +00:00
|
|
|
if (NS_FAILED(rv) || !cell)
|
|
|
|
return nsnull;
|
|
|
|
|
2007-06-08 09:09:24 +00:00
|
|
|
AtkObject *cellAtkObj = nsAccessibleWrap::GetAtkObject(cell);
|
|
|
|
if (cellAtkObj) {
|
|
|
|
g_object_ref(cellAtkObj);
|
|
|
|
}
|
2007-06-04 09:39:15 +00:00
|
|
|
return cellAtkObj;
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getIndexAtCB(AtkTable *aTable, gint aRow, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 index;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetCellIndexAt(aRow, aColumn, &index);
|
2003-05-06 02:23:50 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(index);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getColumnAtIndexCB(AtkTable *aTable, gint aIndex)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 col;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetColumnIndexAt(aIndex, &col);
|
2003-05-06 02:23:50 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(col);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getRowAtIndexCB(AtkTable *aTable, gint aIndex)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 row;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetRowIndexAt(aIndex, &row);
|
2003-05-06 02:23:50 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(row);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getColumnCountCB(AtkTable *aTable)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 count;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetColumnCount(&count);
|
2003-05-06 02:23:50 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(count);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getRowCountCB(AtkTable *aTable)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 count;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetRowCount(&count);
|
2003-05-06 02:23:50 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(count);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getColumnExtentAtCB(AtkTable *aTable,
|
|
|
|
gint aRow, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 extent;
|
|
|
|
nsresult rv = accTable->GetColumnExtentAt(aRow, aColumn, &extent);
|
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(extent);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getRowExtentAtCB(AtkTable *aTable,
|
|
|
|
gint aRow, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return -1;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, -1);
|
|
|
|
|
|
|
|
PRInt32 extent;
|
|
|
|
nsresult rv = accTable->GetRowExtentAt(aRow, aColumn, &extent);
|
|
|
|
NS_ENSURE_SUCCESS(rv, -1);
|
|
|
|
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<gint>(extent);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtkObject*
|
|
|
|
getCaptionCB(AtkTable *aTable)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, nsnull);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessible> caption;
|
|
|
|
nsresult rv = accTable->GetCaption(getter_AddRefs(caption));
|
|
|
|
if (NS_FAILED(rv) || !caption)
|
|
|
|
return nsnull;
|
|
|
|
|
2007-06-08 09:09:24 +00:00
|
|
|
return nsAccessibleWrap::GetAtkObject(caption);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const gchar*
|
|
|
|
getColumnDescriptionCB(AtkTable *aTable, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, nsnull);
|
|
|
|
|
2006-05-29 05:46:38 +00:00
|
|
|
nsAutoString autoStr;
|
|
|
|
nsresult rv = accTable->GetColumnDescription(aColumn, autoStr);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
|
|
|
|
return nsAccessibleWrap::ReturnString(autoStr);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtkObject*
|
|
|
|
getColumnHeaderCB(AtkTable *aTable, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, nsnull);
|
|
|
|
|
2009-09-11 01:07:56 +00:00
|
|
|
nsCOMPtr<nsIAccessible> accCell;
|
|
|
|
accTable->GetCellAt(0, aColumn, getter_AddRefs(accCell));
|
|
|
|
if (!accCell)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
// If the cell at the first row is column header then assume it is column
|
|
|
|
// header for all rows,
|
|
|
|
if (nsAccUtils::Role(accCell) == nsIAccessibleRole::ROLE_COLUMNHEADER)
|
|
|
|
return nsAccessibleWrap::GetAtkObject(accCell);
|
|
|
|
|
|
|
|
// otherwise get column header for the data cell at the first row.
|
|
|
|
nsCOMPtr<nsIAccessibleTableCell> accTableCell =
|
|
|
|
do_QueryInterface(accCell);
|
|
|
|
|
|
|
|
if (accTableCell) {
|
|
|
|
nsCOMPtr<nsIArray> headerCells;
|
|
|
|
accTableCell->GetColumnHeaderCells(getter_AddRefs(headerCells));
|
|
|
|
if (headerCells) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIAccessible> accHeaderCell =
|
|
|
|
do_QueryElementAt(headerCells, 0, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
|
|
|
|
return nsAccessibleWrap::GetAtkObject(accHeaderCell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const gchar*
|
|
|
|
getRowDescriptionCB(AtkTable *aTable, gint aRow)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, nsnull);
|
|
|
|
|
2005-02-01 09:26:13 +00:00
|
|
|
nsAutoString autoStr;
|
|
|
|
nsresult rv = accTable->GetRowDescription(aRow, autoStr);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
2003-05-06 02:23:50 +00:00
|
|
|
|
2006-05-29 05:46:38 +00:00
|
|
|
return nsAccessibleWrap::ReturnString(autoStr);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtkObject*
|
|
|
|
getRowHeaderCB(AtkTable *aTable, gint aRow)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, nsnull);
|
|
|
|
|
2009-09-11 01:07:56 +00:00
|
|
|
nsCOMPtr<nsIAccessible> accCell;
|
|
|
|
accTable->GetCellAt(aRow, 0, getter_AddRefs(accCell));
|
|
|
|
if (!accCell)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
// If the cell at the first column is row header then assume it is row
|
|
|
|
// header for all columns,
|
|
|
|
if (nsAccUtils::Role(accCell) == nsIAccessibleRole::ROLE_ROWHEADER)
|
|
|
|
return nsAccessibleWrap::GetAtkObject(accCell);
|
|
|
|
|
|
|
|
// otherwise get row header for the data cell at the first column.
|
|
|
|
nsCOMPtr<nsIAccessibleTableCell> accTableCell =
|
|
|
|
do_QueryInterface(accCell);
|
|
|
|
|
|
|
|
if (accTableCell) {
|
|
|
|
nsCOMPtr<nsIArray> headerCells;
|
|
|
|
accTableCell->GetRowHeaderCells(getter_AddRefs(headerCells));
|
|
|
|
if (headerCells) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIAccessible> accHeaderCell =
|
|
|
|
do_QueryElementAt(headerCells, 0, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
|
|
|
|
return nsAccessibleWrap::GetAtkObject(accHeaderCell);
|
|
|
|
}
|
|
|
|
}
|
2003-05-06 02:23:50 +00:00
|
|
|
|
2009-09-11 01:07:56 +00:00
|
|
|
return nsnull;
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtkObject*
|
|
|
|
getSummaryCB(AtkTable *aTable)
|
|
|
|
{
|
2007-12-11 09:06:04 +00:00
|
|
|
// Neither html:table nor xul:tree nor ARIA grid/tree have an ability to
|
|
|
|
// link an accessible object to specify a summary. There is closes method
|
|
|
|
// in nsIAccessibleTable::summary to get a summary as a string which is not
|
|
|
|
// mapped directly to ATK.
|
2003-05-06 02:23:50 +00:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getSelectedColumnsCB(AtkTable *aTable, gint **aSelected)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return 0;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, 0);
|
|
|
|
|
|
|
|
PRUint32 size = 0;
|
|
|
|
PRInt32 *columns = NULL;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetSelectedColumnIndices(&size, &columns);
|
2003-05-06 02:23:50 +00:00
|
|
|
if (NS_FAILED(rv) || (size == 0) || !columns) {
|
|
|
|
*aSelected = nsnull;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint *atkColumns = g_new(gint, size);
|
|
|
|
if (!atkColumns) {
|
|
|
|
NS_WARNING("OUT OF MEMORY");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
//copy
|
|
|
|
for (PRUint32 index = 0; index < size; ++index)
|
2007-07-08 07:08:04 +00:00
|
|
|
atkColumns[index] = static_cast<gint>(columns[index]);
|
2003-05-06 02:23:50 +00:00
|
|
|
nsMemory::Free(columns);
|
|
|
|
|
|
|
|
*aSelected = atkColumns;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
getSelectedRowsCB(AtkTable *aTable, gint **aSelected)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return 0;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, 0);
|
|
|
|
|
|
|
|
PRUint32 size = 0;
|
|
|
|
PRInt32 *rows = NULL;
|
2009-09-11 01:07:56 +00:00
|
|
|
nsresult rv = accTable->GetSelectedRowIndices(&size, &rows);
|
2003-05-06 02:23:50 +00:00
|
|
|
if (NS_FAILED(rv) || (size == 0) || !rows) {
|
|
|
|
*aSelected = nsnull;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gint *atkRows = g_new(gint, size);
|
|
|
|
if (!atkRows) {
|
|
|
|
NS_WARNING("OUT OF MEMORY");
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
//copy
|
|
|
|
for (PRUint32 index = 0; index < size; ++index)
|
2007-07-08 07:08:04 +00:00
|
|
|
atkRows[index] = static_cast<gint>(rows[index]);
|
2003-05-06 02:23:50 +00:00
|
|
|
nsMemory::Free(rows);
|
|
|
|
|
|
|
|
*aSelected = atkRows;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
isColumnSelectedCB(AtkTable *aTable, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return FALSE;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, FALSE);
|
|
|
|
|
|
|
|
PRBool outValue;
|
|
|
|
nsresult rv = accTable->IsColumnSelected(aColumn, &outValue);
|
2007-07-08 07:08:04 +00:00
|
|
|
return NS_FAILED(rv) ? FALSE : static_cast<gboolean>(outValue);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
isRowSelectedCB(AtkTable *aTable, gint aRow)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return FALSE;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, FALSE);
|
|
|
|
|
|
|
|
PRBool outValue;
|
|
|
|
nsresult rv = accTable->IsRowSelected(aRow, &outValue);
|
2007-07-08 07:08:04 +00:00
|
|
|
return NS_FAILED(rv) ? FALSE : static_cast<gboolean>(outValue);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
isCellSelectedCB(AtkTable *aTable, gint aRow, gint aColumn)
|
|
|
|
{
|
|
|
|
nsAccessibleWrap *accWrap = GetAccessibleWrap(ATK_OBJECT(aTable));
|
2007-06-08 09:09:24 +00:00
|
|
|
if (!accWrap)
|
|
|
|
return FALSE;
|
2003-05-06 02:23:50 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAccessibleTable> accTable;
|
|
|
|
accWrap->QueryInterface(NS_GET_IID(nsIAccessibleTable),
|
|
|
|
getter_AddRefs(accTable));
|
|
|
|
NS_ENSURE_TRUE(accTable, FALSE);
|
|
|
|
|
|
|
|
PRBool outValue;
|
|
|
|
nsresult rv = accTable->IsCellSelected(aRow, aColumn, &outValue);
|
2007-07-08 07:08:04 +00:00
|
|
|
return NS_FAILED(rv) ? FALSE : static_cast<gboolean>(outValue);
|
2003-05-06 02:23:50 +00:00
|
|
|
}
|