From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- accessible/xpcom/xpcAccessibleTable.h | 74 +++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 accessible/xpcom/xpcAccessibleTable.h (limited to 'accessible/xpcom/xpcAccessibleTable.h') diff --git a/accessible/xpcom/xpcAccessibleTable.h b/accessible/xpcom/xpcAccessibleTable.h new file mode 100644 index 0000000000..1691ce9e7d --- /dev/null +++ b/accessible/xpcom/xpcAccessibleTable.h @@ -0,0 +1,74 @@ +/* -*- 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_xpcAccessibleTable_h_ +#define mozilla_a11y_xpcAccessibleTable_h_ + +#include "nsIAccessibleTable.h" +#include "xpcAccessibleHyperText.h" + +namespace mozilla { +namespace a11y { +class TableAccessible; + +/** + * XPCOM wrapper around TableAccessible class. + */ +class xpcAccessibleTable : public xpcAccessibleHyperText, + public nsIAccessibleTable { + public: + explicit xpcAccessibleTable(Accessible* aIntl) + : xpcAccessibleHyperText(aIntl) {} + + NS_DECL_ISUPPORTS_INHERITED + + // nsIAccessibleTable + NS_IMETHOD GetCaption(nsIAccessible** aCaption) final; + NS_IMETHOD GetSummary(nsAString& aSummary) final; + NS_IMETHOD GetColumnCount(int32_t* aColumnCount) final; + NS_IMETHOD GetRowCount(int32_t* aRowCount) final; + NS_IMETHOD GetCellAt(int32_t aRowIndex, int32_t aColumnIndex, + nsIAccessible** aCell) final; + NS_IMETHOD GetCellIndexAt(int32_t aRowIndex, int32_t aColumnIndex, + int32_t* aCellIndex) final; + NS_IMETHOD GetColumnIndexAt(int32_t aCellIndex, int32_t* aColumnIndex) final; + NS_IMETHOD GetRowIndexAt(int32_t aCellIndex, int32_t* aRowIndex) final; + NS_IMETHOD GetRowAndColumnIndicesAt(int32_t aCellIndex, int32_t* aRowIndex, + int32_t* aColumnIndex) final; + NS_IMETHOD GetColumnExtentAt(int32_t row, int32_t column, + int32_t* aColumnExtent) final; + NS_IMETHOD GetRowExtentAt(int32_t row, int32_t column, + int32_t* aRowExtent) final; + NS_IMETHOD GetColumnDescription(int32_t aColIdx, + nsAString& aDescription) final; + NS_IMETHOD GetRowDescription(int32_t aRowIdx, nsAString& aDescription) final; + NS_IMETHOD IsColumnSelected(int32_t aColIdx, bool* _retval) final; + NS_IMETHOD IsRowSelected(int32_t aRowIdx, bool* _retval) final; + NS_IMETHOD IsCellSelected(int32_t aRowIdx, int32_t aColIdx, + bool* _retval) final; + NS_IMETHOD GetSelectedCellCount(uint32_t* aSelectedCellCount) final; + NS_IMETHOD GetSelectedColumnCount(uint32_t* aSelectedColumnCount) final; + NS_IMETHOD GetSelectedRowCount(uint32_t* aSelectedRowCount) final; + NS_IMETHOD GetSelectedCells(nsIArray** aSelectedCell) final; + NS_IMETHOD GetSelectedCellIndices(nsTArray& aCellsArray) final; + NS_IMETHOD GetSelectedColumnIndices(nsTArray& aColsArray) final; + NS_IMETHOD GetSelectedRowIndices(nsTArray& aRowsArray) final; + NS_IMETHOD IsProbablyForLayout(bool* aIsForLayout) final; + + protected: + virtual ~xpcAccessibleTable() {} + + private: + TableAccessible* Intl() { return mIntl->AsTable(); } + + xpcAccessibleTable(const xpcAccessibleTable&) = delete; + xpcAccessibleTable& operator=(const xpcAccessibleTable&) = delete; +}; + +} // namespace a11y +} // namespace mozilla + +#endif // mozilla_a11y_xpcAccessibleTable_h_ -- cgit v1.2.3