Files
libreoffice/sw/source/core/access/accselectionhelper.cxx

338 lines
11 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
#include <com/sun/star/accessibility/XAccessibleSelection.hpp>
#include <accselectionhelper.hxx>
#include <acccontext.hxx>
#include <accmap.hxx>
2002-05-15 12:22:47 +00:00
#include <svx/AccessibleShape.hxx>
#include <viewsh.hxx>
#include <fesh.hxx>
#include <vcl/svapp.hxx> // for SolarMutex
#include <tools/debug.hxx>
#include <flyfrm.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using ::com::sun::star::accessibility::XAccessible;
using ::com::sun::star::accessibility::XAccessibleContext;
using ::com::sun::star::accessibility::XAccessibleSelection;
using namespace ::sw::access;
SwAccessibleSelectionHelper::SwAccessibleSelectionHelper(
SwAccessibleContext& rCtxt ) :
rContext( rCtxt )
{
}
SwAccessibleSelectionHelper::~SwAccessibleSelectionHelper()
{
}
SwFEShell* SwAccessibleSelectionHelper::GetFEShell()
{
DBG_ASSERT( rContext.GetMap() != NULL, "no map?" );
ViewShell* pViewShell = rContext.GetMap()->GetShell();
DBG_ASSERT( pViewShell != NULL,
"No view shell? Then what are you looking at?" );
SwFEShell* pFEShell = NULL;
if( pViewShell->ISA( SwFEShell ) )
{
pFEShell = static_cast<SwFEShell*>( pViewShell );
}
return pFEShell;
}
void SwAccessibleSelectionHelper::throwIndexOutOfBoundsException()
throw ( lang::IndexOutOfBoundsException )
{
Reference < XAccessibleContext > xThis( &rContext );
Reference < XAccessibleSelection >xSelThis( xThis, UNO_QUERY );
lang::IndexOutOfBoundsException aExcept(
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("index out of bounds") ),
xSelThis ); \
throw aExcept;
}
//===== XAccessibleSelection ============================================
void SwAccessibleSelectionHelper::selectAccessibleChild(
sal_Int32 nChildIndex )
throw ( lang::IndexOutOfBoundsException,
RuntimeException )
{
SolarMutexGuard aGuard;
// Get the respective child as SwFrm (also do index checking), ...
const SwAccessibleChild aChild = rContext.GetChild( *(rContext.GetMap()),
nChildIndex );
if( !aChild.IsValid() )
throwIndexOutOfBoundsException();
// we can only select fly frames, so we ignore (should: return
// false) all other attempts at child selection
sal_Bool bRet = sal_False;
SwFEShell* pFEShell = GetFEShell();
2002-05-15 12:22:47 +00:00
if( pFEShell != NULL )
{
const SdrObject *pObj = aChild.GetDrawObject();
2002-05-15 12:22:47 +00:00
if( pObj )
{
bRet = rContext.Select( const_cast< SdrObject *>( pObj ), 0==aChild.GetSwFrm());
2002-05-15 12:22:47 +00:00
}
}
// no frame shell, or no frame, or no fly frame -> can't select
// return bRet;
}
sal_Bool SwAccessibleSelectionHelper::isAccessibleChildSelected(
sal_Int32 nChildIndex )
throw ( lang::IndexOutOfBoundsException,
RuntimeException )
{
SolarMutexGuard aGuard;
// Get the respective child as SwFrm (also do index checking), ...
const SwAccessibleChild aChild = rContext.GetChild( *(rContext.GetMap()),
nChildIndex );
if( !aChild.IsValid() )
throwIndexOutOfBoundsException();
// ... and compare to the currently selected frame
2002-05-15 12:22:47 +00:00
sal_Bool bRet = sal_False;
SwFEShell* pFEShell = GetFEShell();
if( pFEShell )
{
if ( aChild.GetSwFrm() != 0 )
2002-05-15 12:22:47 +00:00
{
bRet = (pFEShell->GetCurrFlyFrm() == aChild.GetSwFrm());
}
else if ( aChild.GetDrawObject() )
2002-05-15 12:22:47 +00:00
{
bRet = pFEShell->IsObjSelected( *aChild.GetDrawObject() );
2002-05-15 12:22:47 +00:00
}
}
return bRet;
}
void SwAccessibleSelectionHelper::clearAccessibleSelection( )
throw ( RuntimeException )
{
// return sal_False // we can't deselect
}
void SwAccessibleSelectionHelper::selectAllAccessibleChildren( )
throw ( RuntimeException )
{
SolarMutexGuard aGuard;
// We can select only one. So iterate over the children to find
// the first we can select, and select it.
2002-05-15 12:22:47 +00:00
SwFEShell* pFEShell = GetFEShell();
if( pFEShell )
{
::std::list< SwAccessibleChild > aChildren;
rContext.GetChildren( *(rContext.GetMap()), aChildren );
2002-05-15 12:22:47 +00:00
::std::list< SwAccessibleChild >::const_iterator aIter = aChildren.begin();
::std::list< SwAccessibleChild >::const_iterator aEndIter = aChildren.end();
2002-05-15 12:22:47 +00:00
while( aIter != aEndIter )
{
const SwAccessibleChild& rChild = *aIter;
const SdrObject* pObj = rChild.GetDrawObject();
2002-05-15 12:22:47 +00:00
const SwFrm* pFrm = rChild.GetSwFrm();
if( pObj && !(pFrm != 0 && pFEShell->IsObjSelected()) )
{
rContext.Select( const_cast< SdrObject *>( pObj ), 0==pFrm );
2002-05-15 12:22:47 +00:00
if( pFrm )
break;
}
2002-05-15 12:22:47 +00:00
++aIter;
}
}
}
sal_Int32 SwAccessibleSelectionHelper::getSelectedAccessibleChildCount( )
throw ( RuntimeException )
{
SolarMutexGuard aGuard;
2002-05-15 12:22:47 +00:00
sal_Int32 nCount = 0;
// Only one frame can be selected at a time, and we only frames
// for selectable children.
2002-05-15 12:22:47 +00:00
SwFEShell* pFEShell = GetFEShell();
if( pFEShell != 0 )
{
const SwFlyFrm* pFlyFrm = pFEShell->GetCurrFlyFrm();
2002-05-15 12:22:47 +00:00
if( pFlyFrm )
{
if( rContext.GetParent( SwAccessibleChild(pFlyFrm), rContext.IsInPagePreview()) ==
rContext.GetFrm() )
2002-05-22 10:48:43 +00:00
{
2002-05-15 12:22:47 +00:00
nCount = 1;
2002-05-22 10:48:43 +00:00
}
2002-05-15 12:22:47 +00:00
}
else
{
sal_uInt16 nSelObjs = pFEShell->IsObjSelected();
if( nSelObjs > 0 )
{
::std::list< SwAccessibleChild > aChildren;
rContext.GetChildren( *(rContext.GetMap()), aChildren );
2002-05-15 12:22:47 +00:00
::std::list< SwAccessibleChild >::const_iterator aIter =
2002-05-15 12:22:47 +00:00
aChildren.begin();
::std::list< SwAccessibleChild >::const_iterator aEndIter =
2002-05-15 12:22:47 +00:00
aChildren.end();
while( aIter != aEndIter && nCount < nSelObjs )
{
const SwAccessibleChild& rChild = *aIter;
if( rChild.GetDrawObject() && !rChild.GetSwFrm() &&
2002-05-22 10:48:43 +00:00
rContext.GetParent(rChild, rContext.IsInPagePreview())
== rContext.GetFrm() &&
pFEShell->IsObjSelected( *rChild.GetDrawObject() ) )
2002-05-15 12:22:47 +00:00
{
nCount++;
}
++aIter;
}
}
}
}
return nCount;
}
Reference<XAccessible> SwAccessibleSelectionHelper::getSelectedAccessibleChild(
sal_Int32 nSelectedChildIndex )
throw ( lang::IndexOutOfBoundsException,
RuntimeException)
{
SolarMutexGuard aGuard;
// Since the index is relative to the selected children, and since
// there can be at most one selected frame child, the index must
// be 0, and a selection must exist, otherwise we have to throw an
// lang::IndexOutOfBoundsException
2002-05-15 12:22:47 +00:00
SwFEShell* pFEShell = GetFEShell();
if( 0 == pFEShell )
throwIndexOutOfBoundsException();
SwAccessibleChild aChild;
2002-05-15 12:22:47 +00:00
const SwFlyFrm *pFlyFrm = pFEShell->GetCurrFlyFrm();
if( pFlyFrm )
{
if( 0 == nSelectedChildIndex &&
rContext.GetParent( SwAccessibleChild(pFlyFrm), rContext.IsInPagePreview()) ==
2002-05-22 10:48:43 +00:00
rContext.GetFrm() )
{
2002-05-15 12:22:47 +00:00
aChild = pFlyFrm;
2002-05-22 10:48:43 +00:00
}
2002-05-15 12:22:47 +00:00
}
else
{
sal_uInt16 nSelObjs = pFEShell->IsObjSelected();
if( 0 == nSelObjs || nSelectedChildIndex >= nSelObjs )
throwIndexOutOfBoundsException();
2002-05-15 12:22:47 +00:00
::std::list< SwAccessibleChild > aChildren;
rContext.GetChildren( *(rContext.GetMap()), aChildren );
2002-05-15 12:22:47 +00:00
::std::list< SwAccessibleChild >::const_iterator aIter = aChildren.begin();
::std::list< SwAccessibleChild >::const_iterator aEndIter = aChildren.end();
2002-05-15 12:22:47 +00:00
while( aIter != aEndIter && !aChild.IsValid() )
{
const SwAccessibleChild& rChild = *aIter;
if( rChild.GetDrawObject() && !rChild.GetSwFrm() &&
2002-05-22 10:48:43 +00:00
rContext.GetParent(rChild, rContext.IsInPagePreview()) ==
rContext.GetFrm() &&
pFEShell->IsObjSelected( *rChild.GetDrawObject() ) )
2002-05-15 12:22:47 +00:00
{
if( 0 == nSelectedChildIndex )
aChild = rChild;
else
--nSelectedChildIndex;
}
++aIter;
}
}
if( !aChild.IsValid() )
throwIndexOutOfBoundsException();
2002-05-15 12:22:47 +00:00
DBG_ASSERT( rContext.GetMap() != NULL, "We need the map." );
Reference< XAccessible > xChild;
if( aChild.GetSwFrm() )
{
::vos::ORef < SwAccessibleContext > xChildImpl(
rContext.GetMap()->GetContextImpl( aChild.GetSwFrm(),
sal_True ) );
if( xChildImpl.isValid() )
{
xChildImpl->SetParent( &rContext );
xChild = xChildImpl.getBodyPtr();
}
}
else if ( aChild.GetDrawObject() )
2002-05-15 12:22:47 +00:00
{
::vos::ORef < ::accessibility::AccessibleShape > xChildImpl(
rContext.GetMap()->GetContextImpl( aChild.GetDrawObject(),
2002-05-15 12:22:47 +00:00
&rContext, sal_True ) );
if( xChildImpl.isValid() )
xChild = xChildImpl.getBodyPtr();
}
return xChild;
}
// --> OD 2004-11-16 #111714# - index has to be treated as global child index.
void SwAccessibleSelectionHelper::deselectAccessibleChild(
sal_Int32 nChildIndex )
throw ( lang::IndexOutOfBoundsException,
RuntimeException )
{
// return sal_False // we can't deselect
if( nChildIndex < 0 ||
nChildIndex >= rContext.GetChildCount( *(rContext.GetMap()) ) )
throwIndexOutOfBoundsException();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */