2010-10-12 15:57:08 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-09-27 13:52:10 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2009-10-30 13:21:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "accessibility/extended/AccessibleGridControlTableCell.hxx"
|
|
|
|
#include <svtools/accessibletable.hxx>
|
|
|
|
#include "accessibility/extended/AccessibleGridControl.hxx"
|
|
|
|
#include <tools/gen.hxx>
|
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
|
|
|
|
|
|
|
|
namespace accessibility
|
|
|
|
{
|
|
|
|
namespace
|
|
|
|
{
|
2011-04-18 16:36:58 +02:00
|
|
|
// FIXME this is a copy'n'paste from
|
|
|
|
// source/extended/AccessibleBrowseBoxTableCell.cxx, get rid of that...
|
2012-09-07 03:36:42 -03:00
|
|
|
static void checkIndex_Impl( sal_Int32 _nIndex, const OUString& _sText ) throw (::com::sun::star::lang::IndexOutOfBoundsException)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
|
|
|
if ( _nIndex >= _sText.getLength() )
|
|
|
|
throw ::com::sun::star::lang::IndexOutOfBoundsException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace utl;
|
|
|
|
using namespace comphelper;
|
|
|
|
using ::accessibility::AccessibleGridControl;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using ::com::sun::star::accessibility::XAccessible;
|
|
|
|
using namespace ::com::sun::star::accessibility;
|
|
|
|
using namespace ::svt;
|
|
|
|
using namespace ::svt::table;
|
|
|
|
|
|
|
|
|
2014-02-25 16:37:07 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
// = AccessibleGridControlCell
|
2014-02-25 16:37:07 +01:00
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
AccessibleGridControlCell::AccessibleGridControlCell(
|
|
|
|
const Reference< XAccessible >& _rxParent, IAccessibleTable& _rTable,
|
|
|
|
sal_Int32 _nRowPos, sal_uInt16 _nColPos, AccessibleTableControlObjType _eType )
|
|
|
|
:AccessibleGridControlBase( _rxParent, _rTable, _eType )
|
|
|
|
,m_nRowPos( _nRowPos )
|
|
|
|
,m_nColPos( _nColPos )
|
|
|
|
{
|
|
|
|
// set accessible name here, because for that we need the position of the cell
|
|
|
|
// and so the base class isn't capable of doing this
|
2012-09-07 03:36:42 -03:00
|
|
|
OUString aAccName;
|
2009-10-30 13:21:18 +00:00
|
|
|
if(_eType == TCTYPE_TABLECELL)
|
|
|
|
aAccName = _rTable.GetAccessibleObjectName( TCTYPE_TABLECELL, _nRowPos, _nColPos );
|
|
|
|
else if(_eType == TCTYPE_ROWHEADERCELL)
|
|
|
|
aAccName = _rTable.GetAccessibleObjectName( TCTYPE_ROWHEADERCELL, _nRowPos, 0 );
|
|
|
|
else if(_eType == TCTYPE_COLUMNHEADERCELL)
|
|
|
|
aAccName = _rTable.GetAccessibleObjectName( TCTYPE_COLUMNHEADERCELL, 0, _nRowPos );
|
|
|
|
implSetName( aAccName );
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
AccessibleGridControlCell::~AccessibleGridControlCell()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL AccessibleGridControlCell::grabFocus() throw ( RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
m_aTable.GoToCell( m_nColPos, m_nRowPos );
|
|
|
|
}
|
2014-02-25 16:37:07 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
// implementation of a table cell
|
2012-09-07 03:36:42 -03:00
|
|
|
OUString AccessibleGridControlTableCell::implGetText()
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
|
|
|
ensureIsAlive();
|
2010-03-22 11:17:10 +01:00
|
|
|
return m_aTable.GetAccessibleCellText( getRowPos(), getColumnPos() );
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::com::sun::star::lang::Locale AccessibleGridControlTableCell::implGetLocale()
|
|
|
|
{
|
|
|
|
ensureIsAlive();
|
|
|
|
return m_aTable.GetAccessible()->getAccessibleContext()->getLocale();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AccessibleGridControlTableCell::implGetSelection( sal_Int32& nStartIndex, sal_Int32& nEndIndex )
|
|
|
|
{
|
|
|
|
nStartIndex = 0;
|
|
|
|
nEndIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
AccessibleGridControlTableCell::AccessibleGridControlTableCell(const Reference<XAccessible >& _rxParent,
|
|
|
|
IAccessibleTable& _rTable,
|
|
|
|
sal_Int32 _nRowPos,
|
|
|
|
sal_uInt16 _nColPos,
|
|
|
|
AccessibleTableControlObjType eObjType)
|
|
|
|
:AccessibleGridControlCell( _rxParent, _rTable, _nRowPos, _nColPos, eObjType )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// XInterface -------------------------------------------------------------
|
|
|
|
|
|
|
|
/** Queries for a new interface. */
|
|
|
|
::com::sun::star::uno::Any SAL_CALL AccessibleGridControlTableCell::queryInterface(
|
|
|
|
const ::com::sun::star::uno::Type& rType )
|
2014-02-25 21:31:58 +01:00
|
|
|
throw ( ::com::sun::star::uno::RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
|
|
|
Any aRet = AccessibleGridControlCell::queryInterface(rType);
|
|
|
|
if ( !aRet.hasValue() )
|
|
|
|
aRet = AccessibleTextHelper_BASE::queryInterface(rType);
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Aquires the object (calls acquire() on base class). */
|
|
|
|
void SAL_CALL AccessibleGridControlTableCell::acquire() throw ()
|
|
|
|
{
|
|
|
|
AccessibleGridControlCell::acquire();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Releases the object (calls release() on base class). */
|
|
|
|
void SAL_CALL AccessibleGridControlTableCell::release() throw ()
|
|
|
|
{
|
|
|
|
AccessibleGridControlCell::release();
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
::com::sun::star::awt::Rectangle SAL_CALL AccessibleGridControlTableCell::getCharacterBounds( sal_Int32 nIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2009-10-30 13:21:18 +00:00
|
|
|
|
|
|
|
ensureIsAlive();
|
|
|
|
if ( !implIsValidIndex( nIndex, implGetText().getLength() ) )
|
|
|
|
throw IndexOutOfBoundsException();
|
|
|
|
|
2014-06-10 11:24:05 +02:00
|
|
|
return AWTRectangle( m_aTable.GetFieldCharacterBounds( getRowPos(), getColumnPos(), nIndex ) );
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getIndexAtPoint( const ::com::sun::star::awt::Point& _aPoint ) throw (RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
ensureIsAlive();
|
|
|
|
|
|
|
|
return m_aTable.GetFieldIndexAtPoint( getRowPos(), getColumnPos(), VCLPoint( _aPoint ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return
|
|
|
|
The name of this class.
|
|
|
|
*/
|
2012-09-07 03:36:42 -03:00
|
|
|
OUString SAL_CALL AccessibleGridControlTableCell::getImplementationName()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw ( ::com::sun::star::uno::RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2012-09-07 03:36:42 -03:00
|
|
|
return OUString( "com.sun.star.accessibility.AccessibleGridControlTableCell" );
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @return The count of visible children. */
|
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getAccessibleChildCount()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw ( ::com::sun::star::uno::RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @return The XAccessible interface of the specified child. */
|
|
|
|
::com::sun::star::uno::Reference<
|
|
|
|
::com::sun::star::accessibility::XAccessible > SAL_CALL
|
|
|
|
AccessibleGridControlTableCell::getAccessibleChild( sal_Int32 )
|
|
|
|
throw ( ::com::sun::star::lang::IndexOutOfBoundsException,
|
2014-02-25 21:31:58 +01:00
|
|
|
::com::sun::star::uno::RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
|
|
|
throw ::com::sun::star::lang::IndexOutOfBoundsException();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Creates a new AccessibleStateSetHelper and fills it with states of the
|
|
|
|
current object.
|
|
|
|
@return
|
|
|
|
A filled AccessibleStateSetHelper.
|
|
|
|
*/
|
|
|
|
::utl::AccessibleStateSetHelper* AccessibleGridControlTableCell::implCreateStateSetHelper()
|
|
|
|
{
|
|
|
|
::utl::AccessibleStateSetHelper* pStateSetHelper = new ::utl::AccessibleStateSetHelper;
|
|
|
|
|
|
|
|
if( isAlive() )
|
|
|
|
{
|
|
|
|
// SHOWING done with mxParent
|
|
|
|
if( implIsShowing() )
|
|
|
|
pStateSetHelper->AddState( AccessibleStateType::SHOWING );
|
|
|
|
|
|
|
|
m_aTable.FillAccessibleStateSetForCell( *pStateSetHelper, getRowPos(), static_cast< sal_uInt16 >( getColumnPos() ) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
pStateSetHelper->AddState( AccessibleStateType::DEFUNC );
|
|
|
|
|
|
|
|
return pStateSetHelper;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// XAccessible ------------------------------------------------------------
|
|
|
|
|
|
|
|
/** @return The XAccessibleContext interface of this object. */
|
2014-02-25 21:31:58 +01:00
|
|
|
Reference< XAccessibleContext > SAL_CALL AccessibleGridControlTableCell::getAccessibleContext() throw ( RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2013-12-16 15:35:59 +01:00
|
|
|
SolarMutexGuard g;
|
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
ensureIsAlive();
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// XAccessibleContext -----------------------------------------------------
|
|
|
|
|
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getAccessibleIndexInParent()
|
2014-02-25 21:31:58 +01:00
|
|
|
throw ( ::com::sun::star::uno::RuntimeException, std::exception )
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
ensureIsAlive();
|
|
|
|
|
|
|
|
return ( getRowPos() * m_aTable.GetColumnCount() ) + getColumnPos();
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getCaretPosition( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Bool SAL_CALL AccessibleGridControlTableCell::setCaretPosition ( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2009-10-30 13:21:18 +00:00
|
|
|
|
|
|
|
if ( !implIsValidRange( nIndex, nIndex, implGetText().getLength() ) )
|
|
|
|
throw IndexOutOfBoundsException();
|
|
|
|
|
2014-09-15 17:24:50 +02:00
|
|
|
return false;
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Unicode SAL_CALL AccessibleGridControlTableCell::getCharacter( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getCharacter( nIndex );
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > SAL_CALL AccessibleGridControlTableCell::getCharacterAttributes( sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< OUString >& ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2009-10-30 13:21:18 +00:00
|
|
|
|
2012-09-07 03:36:42 -03:00
|
|
|
OUString sText( implGetText() );
|
2009-10-30 13:21:18 +00:00
|
|
|
|
|
|
|
if ( !implIsValidIndex( nIndex, sText.getLength() ) )
|
|
|
|
throw IndexOutOfBoundsException();
|
|
|
|
|
|
|
|
return ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >();
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getCharacterCount( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getCharacterCount( );
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
OUString SAL_CALL AccessibleGridControlTableCell::getSelectedText( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getSelectedText( );
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getSelectionStart( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getSelectionStart( );
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int32 SAL_CALL AccessibleGridControlTableCell::getSelectionEnd( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getSelectionEnd( );
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Bool SAL_CALL AccessibleGridControlTableCell::setSelection( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
if ( !implIsValidRange( nStartIndex, nEndIndex, implGetText().getLength() ) )
|
|
|
|
throw IndexOutOfBoundsException();
|
|
|
|
|
2014-09-15 17:24:50 +02:00
|
|
|
return false;
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
OUString SAL_CALL AccessibleGridControlTableCell::getText( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getText( );
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
OUString SAL_CALL AccessibleGridControlTableCell::getTextRange( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getTextRange( nStartIndex, nEndIndex );
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
::com::sun::star::accessibility::TextSegment SAL_CALL AccessibleGridControlTableCell::getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getTextAtIndex( nIndex ,aTextType);
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
::com::sun::star::accessibility::TextSegment SAL_CALL AccessibleGridControlTableCell::getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getTextBeforeIndex( nIndex ,aTextType);
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
::com::sun::star::accessibility::TextSegment SAL_CALL AccessibleGridControlTableCell::getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextType ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
return OCommonAccessibleText::getTextBehindIndex( nIndex ,aTextType);
|
|
|
|
}
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Bool SAL_CALL AccessibleGridControlTableCell::copyText( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
|
2009-10-30 13:21:18 +00:00
|
|
|
{
|
2010-10-14 08:35:22 -05:00
|
|
|
SolarMutexGuard aSolarGuard;
|
2013-12-16 15:35:59 +01:00
|
|
|
|
2012-09-07 03:36:42 -03:00
|
|
|
OUString sText = implGetText();
|
2009-10-30 13:21:18 +00:00
|
|
|
checkIndex_Impl( nStartIndex, sText );
|
|
|
|
checkIndex_Impl( nEndIndex, sText );
|
|
|
|
|
|
|
|
//!!! don't know how to put a string into the clipboard
|
2014-09-15 17:24:50 +02:00
|
|
|
return false;
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
2010-03-22 11:17:10 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
Rectangle AccessibleGridControlTableCell::implGetBoundingBox()
|
|
|
|
{
|
2012-08-31 00:46:39 -05:00
|
|
|
Window* pParent = m_aTable.GetAccessibleParentWindow();
|
|
|
|
DBG_ASSERT( pParent, "implGetBoundingBox - missing parent window" );
|
|
|
|
Rectangle aGridRect = m_aTable.GetWindowExtentsRelative( pParent );
|
|
|
|
sal_Int32 nIndex = getAccessibleIndexInParent();
|
|
|
|
Rectangle aCellRect = m_aTable.calcCellRect(nIndex%m_aTable.GetColumnCount(), nIndex/m_aTable.GetColumnCount());
|
|
|
|
long nX = aGridRect.Left() + aCellRect.Left();
|
|
|
|
long nY = aGridRect.Top() + aCellRect.Top();
|
|
|
|
Rectangle aCell( Point( nX, nY ), aCellRect.GetSize());
|
|
|
|
return aCell;
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2009-10-30 13:21:18 +00:00
|
|
|
Rectangle AccessibleGridControlTableCell::implGetBoundingBoxOnScreen()
|
|
|
|
{
|
2012-08-31 00:46:39 -05:00
|
|
|
Rectangle aGridRect = m_aTable.GetWindowExtentsRelative( NULL );
|
|
|
|
sal_Int32 nIndex = getAccessibleIndexInParent();
|
|
|
|
Rectangle aCellRect = m_aTable.calcCellRect(nIndex%m_aTable.GetColumnCount(), nIndex/m_aTable.GetColumnCount());
|
|
|
|
long nX = aGridRect.Left() + aCellRect.Left();
|
|
|
|
long nY = aGridRect.Top() + aCellRect.Top();
|
|
|
|
Rectangle aCell( Point( nX, nY ), aCellRect.GetSize());
|
|
|
|
return aCell;
|
2009-10-30 13:21:18 +00:00
|
|
|
}
|
|
|
|
}
|
2010-10-12 15:57:08 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|