mirror of
https://github.com/LibreOffice/core.git
synced 2025-08-07 11:19:28 +00:00

The helper class used to implement less functionality
in the past and was used less than it is now.
But by now it is the central helper/base class used
by most a11y classes.
Since
commit 22049f633b
Author: Michael Weghorn <m.weghorn@posteo.de>
Date: Mon May 26 12:24:52 2025 +0200
vcl a11y: Let OAccessibleComponentHelper implement XAccessible
it also implements the XAccessible interface.
That will allow to switch parameters and class members
from the abstract XAccessible interface to using this
more concrete C++ base class in various places.
Rename the class to OAccessible to account for the
new responsibilities, and adjust its doc accordingly.
Renaming source and header file will be done in a
separate commit to simplify (git) keeping track.
Change-Id: I33210b47cda5f71820a3c0fa657e4c3548d45732
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/186952
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
68 lines
2.4 KiB
C++
68 lines
2.4 KiB
C++
/* -*- 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 .
|
|
*/
|
|
#pragma once
|
|
|
|
#include <AccessibleBase.hxx>
|
|
|
|
#include <cppuhelper/implbase.hxx>
|
|
#include <svx/AccessibleShapeTreeInfo.hxx>
|
|
|
|
namespace accessibility
|
|
{
|
|
class AccessibleShape;
|
|
}
|
|
|
|
namespace chart
|
|
{
|
|
|
|
class AccessibleChartShape : public AccessibleBase
|
|
{
|
|
public:
|
|
explicit AccessibleChartShape( const AccessibleElementInfo& rAccInfo );
|
|
virtual ~AccessibleChartShape() override;
|
|
|
|
// ________ XAccessibleContext ________
|
|
virtual sal_Int64 SAL_CALL getAccessibleChildCount() override;
|
|
virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL
|
|
getAccessibleChild( sal_Int64 i ) override;
|
|
virtual sal_Int16 SAL_CALL getAccessibleRole() override;
|
|
virtual OUString SAL_CALL getAccessibleDescription() override;
|
|
virtual OUString SAL_CALL getAccessibleName() override;
|
|
|
|
// OAccessible
|
|
virtual css::awt::Rectangle implGetBounds() override;
|
|
|
|
// ________ XAccessibleComponent ________
|
|
virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL getAccessibleAtPoint( const css::awt::Point& aPoint ) override;
|
|
virtual sal_Int32 SAL_CALL getForeground() override;
|
|
virtual sal_Int32 SAL_CALL getBackground() override;
|
|
|
|
// ________ XAccessibleExtendedComponent ________
|
|
virtual OUString SAL_CALL getTitledBorderText() override;
|
|
virtual OUString SAL_CALL getToolTipText() override;
|
|
|
|
private:
|
|
rtl::Reference<accessibility::AccessibleShape> m_pAccShape;
|
|
::accessibility::AccessibleShapeTreeInfo m_aShapeTreeInfo;
|
|
};
|
|
|
|
} // namespace chart
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|