2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-29 14:02:24 +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 .
|
|
|
|
*/
|
2002-05-06 08:59:53 +00:00
|
|
|
|
|
|
|
#include <comphelper/accessibleselectionhelper.hxx>
|
|
|
|
|
2014-02-25 17:52:30 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
namespace comphelper
|
|
|
|
{
|
2014-02-25 17:52:30 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::awt;
|
|
|
|
using namespace ::com::sun::star::lang;
|
2003-04-24 16:27:42 +00:00
|
|
|
using namespace ::com::sun::star::accessibility;
|
2002-05-06 08:59:53 +00:00
|
|
|
|
|
|
|
OCommonAccessibleSelection::OCommonAccessibleSelection( )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-03-14 13:27:56 +01:00
|
|
|
OCommonAccessibleSelection::~OCommonAccessibleSelection() {}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
void SAL_CALL OCommonAccessibleSelection::selectAccessibleChild( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
|
|
|
|
{
|
2014-07-03 11:51:01 +02:00
|
|
|
implSelect( nChildIndex, true );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-16 22:51:15 +01:00
|
|
|
bool SAL_CALL OCommonAccessibleSelection::isAccessibleChildSelected( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2015-02-11 13:20:49 +02:00
|
|
|
return implIsSelected( nChildIndex );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
void SAL_CALL OCommonAccessibleSelection::clearAccessibleSelection( ) throw (RuntimeException)
|
|
|
|
{
|
2014-07-03 11:51:01 +02:00
|
|
|
implSelect( ACCESSIBLE_SELECTION_CHILD_ALL, false );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2003-05-22 12:33:54 +00:00
|
|
|
void SAL_CALL OCommonAccessibleSelection::selectAllAccessibleChildren( ) throw (RuntimeException)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2014-07-03 11:51:01 +02:00
|
|
|
implSelect( ACCESSIBLE_SELECTION_CHILD_ALL, true );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
sal_Int32 SAL_CALL OCommonAccessibleSelection::getSelectedAccessibleChildCount( ) throw (RuntimeException)
|
|
|
|
{
|
|
|
|
sal_Int32 nRet = 0;
|
|
|
|
Reference< XAccessibleContext > xParentContext( implGetAccessibleContext() );
|
|
|
|
|
|
|
|
OSL_ENSURE( xParentContext.is(), "OCommonAccessibleSelection::getSelectedAccessibleChildCount: no parent context!" );
|
|
|
|
|
|
|
|
if( xParentContext.is() )
|
|
|
|
{
|
|
|
|
for( sal_Int32 i = 0, nChildCount = xParentContext->getAccessibleChildCount(); i < nChildCount; i++ )
|
|
|
|
if( implIsSelected( i ) )
|
|
|
|
++nRet;
|
|
|
|
}
|
|
|
|
|
2015-02-11 13:20:49 +02:00
|
|
|
return nRet;
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
Reference< XAccessible > SAL_CALL OCommonAccessibleSelection::getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
|
|
|
|
{
|
|
|
|
Reference< XAccessible > xRet;
|
|
|
|
Reference< XAccessibleContext > xParentContext( implGetAccessibleContext() );
|
|
|
|
|
|
|
|
OSL_ENSURE( xParentContext.is(), "OCommonAccessibleSelection::getSelectedAccessibleChildCount: no parent context!" );
|
|
|
|
|
|
|
|
if( xParentContext.is() )
|
|
|
|
{
|
|
|
|
for( sal_Int32 i = 0, nChildCount = xParentContext->getAccessibleChildCount(), nPos = 0; ( i < nChildCount ) && !xRet.is(); i++ )
|
|
|
|
if( implIsSelected( i ) && ( nPos++ == nSelectedChildIndex ) )
|
|
|
|
xRet = xParentContext->getAccessibleChild( i );
|
|
|
|
}
|
|
|
|
|
2015-02-11 13:20:49 +02:00
|
|
|
return xRet;
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2003-04-24 16:27:42 +00:00
|
|
|
void SAL_CALL OCommonAccessibleSelection::deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2014-07-03 11:51:01 +02:00
|
|
|
implSelect( nSelectedChildIndex, false );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 05:11:34 +00:00
|
|
|
OAccessibleSelectionHelper::OAccessibleSelectionHelper( IMutex* _pExternalLock ) : OAccessibleComponentHelper(_pExternalLock)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
IMPLEMENT_FORWARD_XINTERFACE2( OAccessibleSelectionHelper, OAccessibleComponentHelper, OAccessibleSelectionHelper_Base )
|
|
|
|
IMPLEMENT_FORWARD_XTYPEPROVIDER2( OAccessibleSelectionHelper, OAccessibleComponentHelper, OAccessibleSelectionHelper_Base )
|
|
|
|
// (order matters: the first is the class name, the second is the class doing the ref counting)
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
Reference< XAccessibleContext > OAccessibleSelectionHelper::implGetAccessibleContext() throw ( RuntimeException )
|
|
|
|
{
|
2015-02-11 13:20:49 +02:00
|
|
|
return this;
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OAccessibleSelectionHelper::selectAccessibleChild( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2002-05-06 08:59:53 +00:00
|
|
|
OCommonAccessibleSelection::selectAccessibleChild( nChildIndex );
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Bool SAL_CALL OAccessibleSelectionHelper::isAccessibleChildSelected( sal_Int32 nChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2015-02-11 13:20:49 +02:00
|
|
|
return OCommonAccessibleSelection::isAccessibleChildSelected( nChildIndex );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OAccessibleSelectionHelper::clearAccessibleSelection( ) throw (RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2002-05-06 08:59:53 +00:00
|
|
|
OCommonAccessibleSelection::clearAccessibleSelection();
|
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OAccessibleSelectionHelper::selectAllAccessibleChildren( ) throw (RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2003-05-22 12:33:54 +00:00
|
|
|
OCommonAccessibleSelection::selectAllAccessibleChildren();
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int32 SAL_CALL OAccessibleSelectionHelper::getSelectedAccessibleChildCount( ) throw (RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2015-02-11 13:20:49 +02:00
|
|
|
return OCommonAccessibleSelection::getSelectedAccessibleChildCount();
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
Reference< XAccessible > SAL_CALL OAccessibleSelectionHelper::getSelectedAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2015-02-11 13:20:49 +02:00
|
|
|
return OCommonAccessibleSelection::getSelectedAccessibleChild( nSelectedChildIndex );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-22 21:20:15 +01:00
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
void SAL_CALL OAccessibleSelectionHelper::deselectAccessibleChild( sal_Int32 nSelectedChildIndex ) throw (IndexOutOfBoundsException, RuntimeException, std::exception)
|
2002-05-06 08:59:53 +00:00
|
|
|
{
|
2002-07-30 05:11:34 +00:00
|
|
|
OExternalLockGuard aGuard( this );
|
2003-04-24 16:27:42 +00:00
|
|
|
OCommonAccessibleSelection::deselectAccessibleChild( nSelectedChildIndex );
|
2002-05-06 08:59:53 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 17:52:30 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
} // namespace comphelper
|
2014-02-25 17:52:30 +01:00
|
|
|
|
2002-05-06 08:59:53 +00:00
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|