mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9fa8928f84
--HG-- extra : rebase_source : 63d565637b64a0f1ebdd6bfb8f0b0ed0ab651157
74 lines
2.8 KiB
C++
74 lines
2.8 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#ifndef MOZILLA_A11Y_XPCOM_XPACCESSIBLETABLE_H_
|
|
#define MOZILLA_A11Y_XPCOM_XPACCESSIBLETABLE_H_
|
|
|
|
#include "nsAString.h"
|
|
#include "nscore.h"
|
|
|
|
class nsIAccessible;
|
|
class nsIArray;
|
|
|
|
namespace mozilla {
|
|
namespace a11y {
|
|
|
|
class TableAccessible;
|
|
|
|
class xpcAccessibleTable
|
|
{
|
|
public:
|
|
explicit xpcAccessibleTable(TableAccessible* aTable) :
|
|
mTable(aTable)
|
|
{
|
|
}
|
|
|
|
nsresult GetCaption(nsIAccessible** aCaption);
|
|
nsresult GetSummary(nsAString& aSummary);
|
|
nsresult GetColumnCount(int32_t* aColumnCount);
|
|
nsresult GetRowCount(int32_t* aRowCount);
|
|
nsresult GetCellAt(int32_t aRowIndex, int32_t aColumnIndex,
|
|
nsIAccessible** aCell);
|
|
nsresult GetCellIndexAt(int32_t aRowIndex, int32_t aColumnIndex,
|
|
int32_t* aCellIndex);
|
|
nsresult GetColumnIndexAt(int32_t aCellIndex, int32_t* aColumnIndex);
|
|
nsresult GetRowIndexAt(int32_t aCellIndex, int32_t* aRowIndex);
|
|
nsresult GetRowAndColumnIndicesAt(int32_t aCellIndex, int32_t* aRowIndex,
|
|
int32_t* aColumnIndex);
|
|
nsresult GetColumnExtentAt(int32_t row, int32_t column,
|
|
int32_t* aColumnExtent);
|
|
nsresult GetRowExtentAt(int32_t row, int32_t column,
|
|
int32_t* aRowExtent);
|
|
nsresult GetColumnDescription(int32_t aColIdx, nsAString& aDescription);
|
|
nsresult GetRowDescription(int32_t aRowIdx, nsAString& aDescription);
|
|
nsresult IsColumnSelected(int32_t aColIdx, bool* _retval);
|
|
nsresult IsRowSelected(int32_t aRowIdx, bool* _retval);
|
|
nsresult IsCellSelected(int32_t aRowIdx, int32_t aColIdx, bool* _retval);
|
|
nsresult GetSelectedCellCount(uint32_t* aSelectedCellCount);
|
|
nsresult GetSelectedColumnCount(uint32_t* aSelectedColumnCount);
|
|
nsresult GetSelectedRowCount(uint32_t* aSelectedRowCount);
|
|
nsresult GetSelectedCells(nsIArray** aSelectedCell);
|
|
nsresult GetSelectedCellIndices(uint32_t* aCellsArraySize,
|
|
int32_t** aCellsArray);
|
|
nsresult GetSelectedColumnIndices(uint32_t* aColsArraySize,
|
|
int32_t** aColsArray);
|
|
nsresult GetSelectedRowIndices(uint32_t* aRowsArraySize,
|
|
int32_t** aRowsArray);
|
|
nsresult SelectColumn(int32_t aColIdx);
|
|
nsresult SelectRow(int32_t aRowIdx);
|
|
nsresult UnselectColumn(int32_t aColIdx);
|
|
nsresult UnselectRow(int32_t aRowIdx);
|
|
nsresult IsProbablyForLayout(bool* aIsForLayout);
|
|
|
|
protected:
|
|
mozilla::a11y::TableAccessible* mTable;
|
|
};
|
|
|
|
} // namespace a11y
|
|
} // namespace mozilla
|
|
|
|
#endif // MOZILLA_A11Y_XPCOM_XPACCESSIBLETABLE_H_
|