224 lines
8.9 KiB
C++
224 lines
8.9 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 <accessibility/extended/accessibleeditbrowseboxcell.hxx>
|
|
#include <svtools/editbrowsebox.hxx>
|
|
#include <comphelper/processfactory.hxx>
|
|
#include <com/sun/star/accessibility/XAccessibleText.hpp>
|
|
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
|
|
|
|
namespace accessibility
|
|
{
|
|
using namespace com::sun::star::accessibility;
|
|
using namespace ::com::sun::star::uno;
|
|
using namespace ::com::sun::star::lang;
|
|
using namespace ::com::sun::star::awt;
|
|
using namespace ::comphelper;
|
|
using namespace ::svt;
|
|
|
|
EditBrowseBoxTableCell::EditBrowseBoxTableCell(
|
|
const com::sun::star::uno::Reference< XAccessible >& _rxParent,
|
|
const com::sun::star::uno::Reference< XAccessible >& _rxOwningAccessible,
|
|
const com::sun::star::uno::Reference< XAccessibleContext >& _xControlChild,
|
|
IAccessibleTableProvider& _rBrowseBox,
|
|
const Reference< XWindow >& _xFocusWindow,
|
|
sal_Int32 _nRowPos,
|
|
sal_uInt16 _nColPos)
|
|
:AccessibleBrowseBoxCell( _rxParent, _rBrowseBox, _xFocusWindow, _nRowPos, _nColPos )
|
|
,OAccessibleContextWrapperHelper( ::comphelper::getProcessComponentContext(), rBHelper, _xControlChild, _rxOwningAccessible, _rxParent )
|
|
{
|
|
aggregateProxy( m_refCount, *this );
|
|
}
|
|
|
|
EditBrowseBoxTableCell::~EditBrowseBoxTableCell()
|
|
{
|
|
if ( !rBHelper.bDisposed )
|
|
{
|
|
acquire(); // to prevent duplicate dtor calls
|
|
dispose();
|
|
}
|
|
}
|
|
|
|
OUString SAL_CALL EditBrowseBoxTableCell::getImplementationName() throw ( ::com::sun::star::uno::RuntimeException, std::exception )
|
|
{
|
|
return OUString( "com.sun.star.comp.svtools.TableCellProxy" );
|
|
}
|
|
|
|
IMPLEMENT_FORWARD_XINTERFACE2( EditBrowseBoxTableCell, AccessibleBrowseBoxCell, OAccessibleContextWrapperHelper )
|
|
|
|
IMPLEMENT_FORWARD_XTYPEPROVIDER2( EditBrowseBoxTableCell, AccessibleBrowseBoxCell, OAccessibleContextWrapperHelper )
|
|
|
|
void EditBrowseBoxTableCell::notifyTranslatedEvent( const AccessibleEventObject& _rEvent ) throw (RuntimeException)
|
|
{
|
|
commitEvent( _rEvent.EventId, _rEvent.NewValue, _rEvent.OldValue );
|
|
}
|
|
|
|
// XAccessibleComponent
|
|
sal_Int32 SAL_CALL EditBrowseBoxTableCell::getForeground( ) throw (RuntimeException, std::exception)
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
Reference< XAccessibleComponent > xAccComp( m_xInnerContext, UNO_QUERY );
|
|
if ( xAccComp.is() )
|
|
return xAccComp->getForeground();
|
|
return 0;
|
|
}
|
|
|
|
sal_Int32 SAL_CALL EditBrowseBoxTableCell::getBackground( ) throw (RuntimeException, std::exception)
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
Reference< XAccessibleComponent > xAccComp( m_xInnerContext, UNO_QUERY );
|
|
if ( xAccComp.is() )
|
|
return xAccComp->getBackground();
|
|
return 0;
|
|
}
|
|
|
|
Reference< XAccessible > SAL_CALL EditBrowseBoxTableCell::getAccessibleParent( ) throw (RuntimeException, std::exception)
|
|
{
|
|
return m_xParentAccessible;
|
|
}
|
|
|
|
OUString SAL_CALL EditBrowseBoxTableCell::getAccessibleDescription() throw ( RuntimeException, std::exception )
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
return m_xInnerContext->getAccessibleDescription();
|
|
}
|
|
|
|
OUString SAL_CALL EditBrowseBoxTableCell::getAccessibleName() throw ( RuntimeException, std::exception )
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
|
|
// TODO: localize this!
|
|
return "Column " + OUString::number(getColumnPos()-1) + ", Row " + OUString::number(getRowPos());
|
|
}
|
|
|
|
Reference< XAccessibleRelationSet > SAL_CALL EditBrowseBoxTableCell::getAccessibleRelationSet() throw ( RuntimeException, std::exception )
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
return baseGetAccessibleRelationSet( );
|
|
}
|
|
|
|
Reference<XAccessibleStateSet > SAL_CALL EditBrowseBoxTableCell::getAccessibleStateSet() throw ( RuntimeException, std::exception )
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
return m_xInnerContext->getAccessibleStateSet();
|
|
// TODO: shouldn't we add an ACTIVE here? Isn't the EditBrowseBoxTableCell always ACTIVE?
|
|
}
|
|
|
|
sal_Int32 SAL_CALL EditBrowseBoxTableCell::getAccessibleChildCount( ) throw (RuntimeException, std::exception)
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
return baseGetAccessibleChildCount();
|
|
}
|
|
|
|
Reference< XAccessible > SAL_CALL EditBrowseBoxTableCell::getAccessibleChild( sal_Int32 i ) throw (::com::sun::star::lang::IndexOutOfBoundsException, RuntimeException, std::exception)
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
return baseGetAccessibleChild( i );
|
|
}
|
|
|
|
sal_Int16 SAL_CALL EditBrowseBoxTableCell::getAccessibleRole() throw ( RuntimeException, std::exception )
|
|
{
|
|
SolarMethodGuard aGuard( *this );
|
|
return m_xInnerContext->getAccessibleRole( );
|
|
}
|
|
|
|
void SAL_CALL EditBrowseBoxTableCell::dispose() throw( RuntimeException, std::exception )
|
|
{
|
|
// simply disambiguate. Note that the OComponentHelper base in AccessibleBrowseBoxCell
|
|
// will call our "disposing()", which will call "dispose()" on the OAccessibleContextWrapperHelper
|
|
// so there is no need to do this here.
|
|
AccessibleBrowseBoxCell::dispose();
|
|
}
|
|
|
|
void SAL_CALL EditBrowseBoxTableCell::disposing( const EventObject& _rSource ) throw (RuntimeException, std::exception)
|
|
{
|
|
AccessibleBrowseBoxCell::disposing( _rSource );
|
|
OAccessibleContextWrapperHelper::disposing( _rSource );
|
|
}
|
|
|
|
void SAL_CALL EditBrowseBoxTableCell::disposing()
|
|
{
|
|
SolarMethodGuard aGuard( *this, false );
|
|
OAccessibleContextWrapperHelper::dispose();
|
|
// TODO: do we need to dispose our inner object? The base class does this, but is it a good idea?
|
|
AccessibleBrowseBoxCell::disposing();
|
|
}
|
|
|
|
// EditBrowseBoxTableCell
|
|
EditBrowseBoxTableCellAccess::EditBrowseBoxTableCellAccess(
|
|
const Reference< XAccessible >& _rxParent, const Reference< XAccessible >& _rxControlAccessible,
|
|
const Reference< XWindow >& _rxFocusWindow,
|
|
IAccessibleTableProvider& _rBrowseBox, sal_Int32 _nRowPos, sal_uInt16 _nColPos )
|
|
:EditBrowseBoxTableCellAccess_Base( m_aMutex )
|
|
,m_xParent( _rxParent )
|
|
,m_xControlAccessible( _rxControlAccessible )
|
|
,m_xFocusWindow( _rxFocusWindow )
|
|
,m_pBrowseBox( &_rBrowseBox )
|
|
,m_nRowPos( _nRowPos )
|
|
,m_nColPos( _nColPos )
|
|
{
|
|
}
|
|
|
|
EditBrowseBoxTableCellAccess::~EditBrowseBoxTableCellAccess( )
|
|
{
|
|
}
|
|
|
|
Reference< XAccessibleContext > SAL_CALL EditBrowseBoxTableCellAccess::getAccessibleContext( ) throw (RuntimeException, std::exception)
|
|
{
|
|
if ( !m_pBrowseBox || !m_xControlAccessible.is() )
|
|
throw DisposedException();
|
|
Reference< XAccessibleContext > xMyContext( m_aContext );
|
|
if ( !xMyContext.is() )
|
|
{
|
|
Reference< XAccessibleContext > xInnerContext = m_xControlAccessible->getAccessibleContext();
|
|
Reference< XAccessible > xMe( this );
|
|
|
|
xMyContext = new EditBrowseBoxTableCell( m_xParent, xMe, xInnerContext, *m_pBrowseBox, m_xFocusWindow, m_nRowPos, m_nColPos );
|
|
m_aContext = xMyContext;
|
|
}
|
|
return xMyContext;
|
|
}
|
|
|
|
void SAL_CALL EditBrowseBoxTableCellAccess::disposing()
|
|
{
|
|
// dispose our context, if it still alive
|
|
Reference< XComponent > xMyContext( m_aContext.get(), UNO_QUERY );
|
|
if ( xMyContext.is() )
|
|
{
|
|
try
|
|
{
|
|
xMyContext->dispose();
|
|
}
|
|
catch( const Exception& e )
|
|
{
|
|
(void)e;
|
|
OSL_FAIL( "EditBrowseBoxTableCellAccess::disposing: caught an exception while disposing the context!" );
|
|
}
|
|
}
|
|
|
|
m_pBrowseBox = NULL;
|
|
m_xControlAccessible.clear();
|
|
m_aContext.clear();
|
|
// NO dispose of the inner object there: it is the XAccessible of an window, and disposing
|
|
// it would delete the respective VCL window
|
|
}
|
|
} // namespace accessibility
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|