Adjust VCLXAccessibleComponent and subclasses to take a vcl::Window arg instead of a VCLXWindow in the ctor and drop the VCLXAccessibleComponent::m_xVCLXWindow member that used to hold a reference to the VCLXWindow. (VCLXAccessibleComponent still holds a VclPtr to the corresponding vcl::Window.) Instead of passing the UNO/toolkit peer (VCLXWindow and subclasses) to the AccessibleFactory to create an XAccessibleContext context for the underlying VCL widget, pass the underlying vcl widget, which can now be passed as is to the corresponding ctors of VCLXAccessibleComponent and specialized subclasses. This follows earlier commits replacing the use of the VCLXWindow classes by direct uses of the vcl::Window subclasses inside VCLXAccessibleComponent and subclasses and is the next step in reducing the UNO/toolkit dependency in the accessibility implementation for vcl widgets. For now, the logic where those accessible objects are created remains in VCLXWindow::CreateAccessibleContext and overrides, but that can change in the future. `IAccessibleFactory::createAccessibleContext(VCLXMultiLineEdit*)` is just dropped and doesn't need its own replacement: The previous VCLXMultiLineEdit variant was creating a VCLXAccessibleEdit like the variant taking a VCLXEdit, but VCLXMultiLineEdit doesn't subclass VCLXEdit. The vcl MultiLineEdit however subclasses Edit, so VCLXMultiLineEdit::CreateAccessibleContext can make use of `IAccessibleFactory::createAccessibleContext(Edit*)` as well now. This also implements what was mentioned in earlier commit Change-Id: I67bb7a6a237e57d0c522790c09a595c02ac06325 Author: Michael Weghorn <m.weghorn@posteo.de> Date: Thu Dec 12 17:16:29 2024 +0100 sw annotation win a11y: Skip VCLXWindow logic : > Drop the comment about the code being dodgy from > SwAnnotationWin::CreateAccessible. This commit partially > addresses it and switching VCLXAccessibleComponent > to using the vcl::Window will take care of the rest, > see upcoming commit > Change-Id If0894e733273eecad268c6a932ecee7c2e34b4c2 > ("a11y: Stop using VCLXWindow in vcl a11y classes"). Now that the VCLXAccessibleComponent ctor takes a vcl::Window, the sw::annotation::SwAnnotationWin can be passed directly. From a user perspective, no change in behavior is intended by this commit. Change-Id: If0894e733273eecad268c6a932ecee7c2e34b4c2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/178385 Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> Tested-by: Jenkins
240 lines
8.7 KiB
C++
240 lines
8.7 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 .
|
|
*/
|
|
|
|
#include <TableWindowAccess.hxx>
|
|
#include <TableWindow.hxx>
|
|
#include <TableWindowListBox.hxx>
|
|
#include <JoinTableView.hxx>
|
|
#include <com/sun/star/accessibility/AccessibleRole.hpp>
|
|
#include <com/sun/star/accessibility/AccessibleRelationType.hpp>
|
|
#include <com/sun/star/lang/IndexOutOfBoundsException.hpp>
|
|
#include <vcl/vclevent.hxx>
|
|
|
|
namespace dbaui
|
|
{
|
|
using namespace ::com::sun::star::accessibility;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star;
|
|
|
|
OTableWindowAccess::OTableWindowAccess(OTableWindow* _pTable)
|
|
:ImplInheritanceHelper(_pTable)
|
|
,m_pTable(_pTable)
|
|
{
|
|
}
|
|
void SAL_CALL OTableWindowAccess::disposing()
|
|
{
|
|
m_pTable = nullptr;
|
|
VCLXAccessibleComponent::disposing();
|
|
}
|
|
void OTableWindowAccess::ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent )
|
|
{
|
|
if ( rVclWindowEvent.GetId() == VclEventId::ObjectDying )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
m_pTable = nullptr;
|
|
}
|
|
|
|
VCLXAccessibleComponent::ProcessWindowEvent( rVclWindowEvent );
|
|
}
|
|
OUString SAL_CALL OTableWindowAccess::getImplementationName()
|
|
{
|
|
return u"org.openoffice.comp.dbu.TableWindowAccessibility"_ustr;
|
|
}
|
|
Sequence< OUString > SAL_CALL OTableWindowAccess::getSupportedServiceNames()
|
|
{
|
|
return { u"com.sun.star.accessibility.Accessible"_ustr,
|
|
u"com.sun.star.accessibility.AccessibleContext"_ustr };
|
|
}
|
|
// XAccessibleContext
|
|
sal_Int64 SAL_CALL OTableWindowAccess::getAccessibleChildCount( )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
sal_Int64 nCount = 0;
|
|
if(m_pTable)
|
|
{
|
|
++nCount;
|
|
if(m_pTable->GetListBox())
|
|
++nCount;
|
|
}
|
|
return nCount;
|
|
}
|
|
Reference< XAccessible > SAL_CALL OTableWindowAccess::getAccessibleChild( sal_Int64 i )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
Reference< XAccessible > aRet;
|
|
if (m_pTable && !m_pTable->isDisposed())
|
|
{
|
|
switch(i)
|
|
{
|
|
case 0:
|
|
{
|
|
VclPtr<OTableWindowTitle> xCtrl(m_pTable->GetTitleCtrl());
|
|
if (xCtrl)
|
|
aRet = xCtrl->GetAccessible();
|
|
break;
|
|
}
|
|
case 1:
|
|
{
|
|
VclPtr<OTableWindowListBox> xCtrl(m_pTable->GetListBox());
|
|
if (xCtrl)
|
|
aRet = xCtrl->GetAccessible();
|
|
break;
|
|
}
|
|
default:
|
|
throw IndexOutOfBoundsException();
|
|
}
|
|
}
|
|
return aRet;
|
|
}
|
|
sal_Int64 SAL_CALL OTableWindowAccess::getAccessibleIndexInParent( )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
sal_Int64 nIndex = -1;
|
|
if( m_pTable )
|
|
{
|
|
// search the position of our table window in the table window map
|
|
bool bFoundElem = false;
|
|
for (auto const& tabWin : m_pTable->getTableView()->GetTabWinMap())
|
|
{
|
|
if (tabWin.second == m_pTable)
|
|
{
|
|
bFoundElem = true;
|
|
break;
|
|
}
|
|
++nIndex;
|
|
}
|
|
nIndex = bFoundElem? nIndex : -1;
|
|
}
|
|
return nIndex;
|
|
}
|
|
sal_Int16 SAL_CALL OTableWindowAccess::getAccessibleRole( )
|
|
{
|
|
return AccessibleRole::PANEL; // ? or may be an AccessibleRole::WINDOW
|
|
}
|
|
Reference< XAccessibleRelationSet > SAL_CALL OTableWindowAccess::getAccessibleRelationSet( )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
return this;
|
|
}
|
|
// XAccessibleComponent
|
|
Reference< XAccessible > SAL_CALL OTableWindowAccess::getAccessibleAtPoint( const awt::Point& _aPoint )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
Reference< XAccessible > aRet;
|
|
if(m_pTable && !m_pTable->isDisposed())
|
|
{
|
|
AbsoluteScreenPixelPoint aPoint(_aPoint.X,_aPoint.Y);
|
|
AbsoluteScreenPixelRectangle aRect(m_pTable->GetDesktopRectPixel());
|
|
if( aRect.Contains(aPoint) )
|
|
aRet = this;
|
|
else if( m_pTable->GetListBox()->GetDesktopRectPixel().Contains(aPoint))
|
|
aRet = m_pTable->GetListBox()->GetAccessible();
|
|
}
|
|
return aRet;
|
|
}
|
|
Reference< XAccessible > OTableWindowAccess::getParentChild(sal_Int64 _nIndex)
|
|
{
|
|
Reference< XAccessible > xReturn;
|
|
Reference< XAccessible > xParent = getAccessibleParent();
|
|
if ( xParent.is() )
|
|
{
|
|
Reference< XAccessibleContext > xParentContext = xParent->getAccessibleContext();
|
|
if ( xParentContext.is() )
|
|
{
|
|
xReturn = xParentContext->getAccessibleChild(_nIndex);
|
|
}
|
|
}
|
|
return xReturn;
|
|
}
|
|
|
|
sal_Int32 SAL_CALL OTableWindowAccess::getRelationCount( )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
return m_pTable ? m_pTable->getTableView()->getConnectionCount(m_pTable) : sal_Int32(0);
|
|
}
|
|
AccessibleRelation SAL_CALL OTableWindowAccess::getRelation( sal_Int32 nIndex )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
if( nIndex < 0 || nIndex >= getRelationCount() )
|
|
throw IndexOutOfBoundsException();
|
|
|
|
AccessibleRelation aRet;
|
|
if( m_pTable )
|
|
{
|
|
OJoinTableView* pView = m_pTable->getTableView();
|
|
auto aIter = pView->getTableConnections(m_pTable) + nIndex;
|
|
aRet.TargetSet = { getParentChild(aIter - pView->getTableConnections().begin()) };
|
|
aRet.RelationType = AccessibleRelationType_CONTROLLER_FOR;
|
|
}
|
|
return aRet;
|
|
}
|
|
sal_Bool SAL_CALL OTableWindowAccess::containsRelation(AccessibleRelationType eRelationType)
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
return AccessibleRelationType_CONTROLLER_FOR == eRelationType
|
|
&& m_pTable && m_pTable->getTableView()->ExistsAConn(m_pTable);
|
|
}
|
|
AccessibleRelation SAL_CALL OTableWindowAccess::getRelationByType(AccessibleRelationType eRelationType)
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
if (AccessibleRelationType_CONTROLLER_FOR == eRelationType && m_pTable)
|
|
{
|
|
OJoinTableView* pView = m_pTable->getTableView();
|
|
const auto& rConnectionList = pView->getTableConnections();
|
|
|
|
auto aIter = pView->getTableConnections(m_pTable);
|
|
auto aEnd = rConnectionList.end();
|
|
std::vector< Reference<css::accessibility::XAccessible> > aRelations;
|
|
aRelations.reserve(5); // just guessing
|
|
// TODO JNA aIter comes from pView->getTableConnections(m_pTable)
|
|
// and aEnd comes from pView->getTableConnections().end()
|
|
for (; aIter != aEnd ; ++aIter )
|
|
{
|
|
uno::Reference<css::accessibility::XAccessible> xAccessible(
|
|
getParentChild(aIter - rConnectionList.begin()));
|
|
aRelations.push_back(xAccessible);
|
|
}
|
|
|
|
Sequence<Reference<css::accessibility::XAccessible>> aSeq(aRelations.data(), aRelations.size());
|
|
return AccessibleRelation(AccessibleRelationType_CONTROLLER_FOR, aSeq);
|
|
}
|
|
return AccessibleRelation();
|
|
}
|
|
OUString SAL_CALL OTableWindowAccess::getTitledBorderText( )
|
|
{
|
|
return getAccessibleName( );
|
|
}
|
|
OUString SAL_CALL OTableWindowAccess::getAccessibleName( )
|
|
{
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
OUString sAccessibleName;
|
|
if ( m_pTable )
|
|
sAccessibleName = m_pTable->getTitle();
|
|
return sAccessibleName;
|
|
}
|
|
Reference< XAccessibleContext > SAL_CALL OTableWindowAccess::getAccessibleContext( )
|
|
{
|
|
return this;
|
|
}
|
|
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|