/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * 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/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 .
*/
class ScTabViewShell; class ScAccessibleDocument; class ScAccessibleCell;
/** @descr This base class provides an implementation of the <code>AccessibleTable</code> service.
*/ class ScAccessibleSpreadsheet final : public ScAccessibleTableBase
{ public:
ScAccessibleSpreadsheet(
ScAccessibleDocument* pAccDoc,
ScTabViewShell* pViewShell,
SCTAB nTab,
ScSplitPos eSplitPos);
/// Returns the row headers as an AccessibleTable. virtual css::uno::Reference< css::accessibility::XAccessibleTable > SAL_CALL
getAccessibleRowHeaders( ) override;
/// Returns the column headers as an AccessibleTable. virtual css::uno::Reference< css::accessibility::XAccessibleTable > SAL_CALL
getAccessibleColumnHeaders( ) override;
/// Returns the selected rows in a table. virtual css::uno::Sequence< sal_Int32 > SAL_CALL
getSelectedAccessibleRows( ) override;
/// Returns the selected columns in a table. virtual css::uno::Sequence< sal_Int32 > SAL_CALL
getSelectedAccessibleColumns( ) override;
/// Returns a boolean value indicating whether the specified row is selected. virtual sal_Bool SAL_CALL
isAccessibleRowSelected( sal_Int32 nRow ) override;
/// Returns a boolean value indicating whether the specified column is selected. virtual sal_Bool SAL_CALL
isAccessibleColumnSelected( sal_Int32 nColumn ) override;
/// Returns the Accessible at a specified row and column in the table. virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL
getAccessibleCellAt( sal_Int32 nRow, sal_Int32 nColumn ) override;
/// Returns a boolean value indicating whether the accessible at a specified row and column is selected. virtual sal_Bool SAL_CALL
isAccessibleSelected( sal_Int32 nRow, sal_Int32 nColumn ) override;
/// Return NULL to indicate that an empty relation set. virtual css::uno::Reference<css::accessibility::XAccessibleRelationSet> SAL_CALL
getAccessibleRelationSet() override;
/// Return the set of current states. virtual sal_Int64 SAL_CALL
getAccessibleStateSet() override;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.