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

1478 lines
45 KiB
C++
Raw Normal View History

2002-04-11 12:42:31 +00:00
/*************************************************************************
*
* $RCSfile: acctable.cxx,v $
*
* $Revision: 1.9 $
2002-04-11 12:42:31 +00:00
*
* last change: $Author: mib $ $Date: 2002-07-09 12:51:33 $
2002-04-11 12:42:31 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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 for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifdef PRECOMPILED
#include "core_pch.hxx"
#endif
#pragma hdrstop
#ifndef _VOS_MUTEX_HXX_ //autogen
#include <vos/mutex.hxx>
#endif
#ifndef _RTL_USTRBUF_HXX_
#include <rtl/ustrbuf.hxx>
#endif
2002-04-17 13:07:39 +00:00
#include <list>
#include <set>
2002-04-11 12:42:31 +00:00
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEROLE_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleRole.hpp>
#endif
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLESTATETYPE_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleStateType.hpp>
#endif
2002-04-17 13:07:39 +00:00
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLEEVENTID_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleEventId.hpp>
#endif
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLETABLEMODELCHANGE_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleTableModelChange.hpp>
#endif
#ifndef _DRAFTS_COM_SUN_STAR_ACCESSIBILITY_ACCESSIBLETABLEMODELCHANGETYPE_HPP_
#include <drafts/com/sun/star/accessibility/AccessibleTableModelChangeType.hpp>
#endif
2002-04-11 12:42:31 +00:00
#ifndef _UTL_ACCESSIBLESTATESETHELPER_HXX_
#include <unotools/accessiblestatesethelper.hxx>
#endif
#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_
#include <com/sun/star/uno/RuntimeException.hpp>
#endif
#ifndef _SV_SVAPP_HXX //autogen
#include <vcl/svapp.hxx>
#endif
#ifndef _FRMFMT_HXX
#include <frmfmt.hxx>
#endif
#ifndef _TABFRM_HXX
#include <tabfrm.hxx>
#endif
#ifndef _SWTABLE_HXX
#include <swtable.hxx>
#endif
2002-04-17 13:07:39 +00:00
#ifndef _CRSRSH_HXX
#include "crsrsh.hxx"
#endif
#ifndef _VISCRS_HXX
#include "viscrs.hxx"
#endif
#ifndef _ACCFRMOBJSLIST_HXX
#include <accfrmobjslist.hxx>
#endif
#ifndef _ACCMAP_HXX
#include "accmap.hxx"
#endif
2002-04-11 12:42:31 +00:00
#ifndef _ACCESS_HRC
#include "access.hrc"
#endif
#ifndef _ACCTABLE_HXX
#include <acctable.hxx>
#endif
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::uno;
using namespace ::drafts::com::sun::star::accessibility;
using namespace ::rtl;
const sal_Char sServiceName[] = "drafts.com.sun.star.table.AccessibleTableView";
const sal_Char sImplementationName[] = "com.sun.star.comp.Writer.SwAccessibleTableView";
2002-04-11 12:42:31 +00:00
2002-04-17 13:07:39 +00:00
typedef ::std::less < sal_Int32 > Int32Less_Impl;
typedef ::std::set < sal_Int32, Int32Less_Impl > Int32Set_Impl;
2002-05-03 11:34:00 +00:00
typedef ::std::pair < sal_Int32, sal_Int32 > Int32Pair_Impl;
typedef ::std::list < Int32Pair_Impl > Int32PairList_Impl;
2002-04-17 13:07:39 +00:00
class SwAccTableSelHander_Impl
{
public:
virtual void Unselect( sal_Int32 nRowOrCol, sal_Int32 nExt ) = 0;
};
//------------------------------------------------------------------------------
class SwAccessibleTableData_Impl
{
Int32Set_Impl maRows;
Int32Set_Impl maColumns;
2002-05-03 11:34:00 +00:00
Int32PairList_Impl maExtents; // cell extends for event processing only
2002-04-17 13:07:39 +00:00
Point maTabFrmPos;
const SwTabFrm *mpTabFrm;
2002-05-22 10:48:43 +00:00
sal_Bool mbIsInPagePreview;
2002-04-17 13:07:39 +00:00
2002-05-03 11:34:00 +00:00
void CollectData( const SwFrm *pFrm );
void CollectExtents( const SwFrm *pFrm );
sal_Bool CompareExtents( const SwFrm *pFrm,
Int32PairList_Impl::const_iterator& rIter,
const Int32PairList_Impl::const_iterator& rEndIter ) const;
2002-04-17 13:07:39 +00:00
sal_Bool FindCell( const Point& rPos, const SwFrm *pFrm ,
sal_Bool bExact, const SwFrm *& rFrm ) const;
void GetSelection( const Point& rTabPos, const SwRect& rArea,
const SwSelBoxes& rSelBoxes, const SwFrm *pFrm,
SwAccTableSelHander_Impl& rSelHdl,
sal_Bool bColumns ) const;
public:
2002-05-22 10:48:43 +00:00
SwAccessibleTableData_Impl( const SwTabFrm *pTabFrm,
sal_Bool bIsInPagePreview );
2002-04-17 13:07:39 +00:00
const Int32Set_Impl& GetRows() const { return maRows; }
const Int32Set_Impl& GetColumns() const { return maColumns; }
inline Int32Set_Impl::const_iterator GetRowIter( sal_Int32 nRow ) const;
inline Int32Set_Impl::const_iterator GetColumnIter( sal_Int32 nCol ) const;
const SwFrm *GetCell( sal_Int32 nRow, sal_Int32 nColumn, sal_Bool bExact,
SwAccessibleTable *pThis ) const
throw(IndexOutOfBoundsException );
const SwFrm *GetCellAtPos( sal_Int32 nLeft, sal_Int32 nTop,
sal_Bool bExact ) const;
inline sal_Int32 GetRowCount() const;
inline sal_Int32 GetColumnCount() const;
2002-05-03 11:34:00 +00:00
sal_Bool CompareExtents( const SwAccessibleTableData_Impl& r ) const;
2002-04-17 13:07:39 +00:00
void GetSelection( sal_Int32 nStart, sal_Int32 nEnd,
const SwSelBoxes& rSelBoxes,
SwAccTableSelHander_Impl& rSelHdl,
sal_Bool bColumns ) const;
void CheckRowAndCol( sal_Int32 nRow, sal_Int32 nCol,
SwAccessibleTable *pThis ) const
throw(IndexOutOfBoundsException );
void GetRowColumnAndExtent( const SwRect& rBox,
sal_Int32& rRow, sal_Int32& rColumn,
2002-05-03 11:34:00 +00:00
sal_Int32& rRowExtent,
sal_Int32& rColumnExtent ) const;
2002-04-17 13:07:39 +00:00
const Point& GetTablePos() const { return maTabFrmPos; }
void SetTablePos( const Point& rPos ) { maTabFrmPos = rPos; }
};
2002-05-03 11:34:00 +00:00
void SwAccessibleTableData_Impl::CollectData( const SwFrm *pFrm )
2002-04-17 13:07:39 +00:00
{
const SwFrmOrObjSList aList( pFrm );
SwFrmOrObjSList::const_iterator aIter( aList.begin() );
SwFrmOrObjSList::const_iterator aEndIter( aList.end() );
while( aIter != aEndIter )
{
const SwFrmOrObj& rLower = *aIter;
const SwFrm *pLower = rLower.GetSwFrm();
if( pLower )
{
if( pLower->IsRowFrm() )
{
2002-05-03 11:34:00 +00:00
maRows.insert( pLower->Frm().Top() - maTabFrmPos.Y() );
CollectData( pLower );
2002-04-17 13:07:39 +00:00
}
2002-05-22 10:48:43 +00:00
else if( pLower->IsCellFrm() &&
rLower.IsAccessible( mbIsInPagePreview ) )
2002-04-17 13:07:39 +00:00
{
2002-05-03 11:34:00 +00:00
maColumns.insert( pLower->Frm().Left() - maTabFrmPos.X() );
}
else
{
CollectData( pLower );
}
}
++aIter;
}
}
void SwAccessibleTableData_Impl::CollectExtents( const SwFrm *pFrm )
{
const SwFrmOrObjSList aList( pFrm );
SwFrmOrObjSList::const_iterator aIter( aList.begin() );
SwFrmOrObjSList::const_iterator aEndIter( aList.end() );
while( aIter != aEndIter )
{
const SwFrmOrObj& rLower = *aIter;
const SwFrm *pLower = rLower.GetSwFrm();
if( pLower )
{
2002-05-22 10:48:43 +00:00
if( pLower->IsCellFrm() &&
rLower.IsAccessible( mbIsInPagePreview ) )
2002-05-03 11:34:00 +00:00
{
sal_Int32 nRow, nCol;
Int32Pair_Impl aCellExtents;
GetRowColumnAndExtent( pLower->Frm(), nRow, nCol,
aCellExtents.first,
aCellExtents.second );
maExtents.push_back( aCellExtents );
2002-04-17 13:07:39 +00:00
}
else
{
2002-05-03 11:34:00 +00:00
CollectExtents( pLower );
2002-04-17 13:07:39 +00:00
}
}
++aIter;
}
}
2002-05-03 11:34:00 +00:00
sal_Bool SwAccessibleTableData_Impl::CompareExtents( const SwFrm *pFrm,
Int32PairList_Impl::const_iterator& rIter,
const Int32PairList_Impl::const_iterator& rEndIter ) const
{
sal_Bool bRet = sal_True;
const SwFrmOrObjSList aList( pFrm );
SwFrmOrObjSList::const_iterator aIter( aList.begin() );
SwFrmOrObjSList::const_iterator aEndIter( aList.end() );
while( bRet && aIter != aEndIter )
{
const SwFrmOrObj& rLower = *aIter;
const SwFrm *pLower = rLower.GetSwFrm();
if( pLower )
{
2002-05-22 10:48:43 +00:00
if( pLower->IsCellFrm() &&
rLower.IsAccessible( mbIsInPagePreview ) )
2002-05-03 11:34:00 +00:00
{
sal_Int32 nRow, nCol;
Int32Pair_Impl aCellExtents;
GetRowColumnAndExtent( pLower->Frm(), nRow, nCol,
aCellExtents.first,
aCellExtents.second );
if( rIter == rEndIter ||
*rIter != aCellExtents )
{
bRet = sal_False;
}
else
{
rIter++;
}
}
else
{
bRet = CompareExtents( pLower, rIter, rEndIter );
}
}
++aIter;
}
return bRet;
}
2002-04-17 13:07:39 +00:00
sal_Bool SwAccessibleTableData_Impl::FindCell(
const Point& rPos, const SwFrm *pFrm, sal_Bool bExact,
const SwFrm *& rRet ) const
{
sal_Bool bFound = sal_False;
const SwFrmOrObjSList aList( pFrm );
SwFrmOrObjSList::const_iterator aIter( aList.begin() );
SwFrmOrObjSList::const_iterator aEndIter( aList.end() );
while( !bFound && aIter != aEndIter )
{
const SwFrmOrObj& rLower = *aIter;
const SwFrm *pLower = rLower.GetSwFrm();
ASSERT( pLower, "child should be a frame" );
if( pLower )
{
2002-05-22 10:48:43 +00:00
if( rLower.IsAccessible( mbIsInPagePreview ) )
2002-04-17 13:07:39 +00:00
{
ASSERT( pLower->IsCellFrm(), "lower is not a cell frame" );
const SwRect& rFrm = pLower->Frm();
if( rFrm.Right() >= rPos.X() && rFrm.Bottom() >= rPos.Y() )
{
// We have found the cell
ASSERT( rFrm.Left() <= rPos.X() && rFrm.Top() <= rPos.Y(),
"find frame moved to far!" );
bFound = sal_True;
if( !bExact ||
2002-04-19 11:59:38 +00:00
(rFrm.Top() == rPos.Y() && rFrm.Left() == rPos.Y() ) )
2002-04-17 13:07:39 +00:00
{
rRet = pLower;
}
}
}
else
{
bFound = FindCell( rPos, pLower, bExact, rRet );
}
}
++aIter;
}
return bFound;
}
void SwAccessibleTableData_Impl::GetSelection(
const Point& rTabPos,
const SwRect& rArea,
const SwSelBoxes& rSelBoxes,
const SwFrm *pFrm,
SwAccTableSelHander_Impl& rSelHdl,
sal_Bool bColumns ) const
{
const SwFrmOrObjSList aList( pFrm );
SwFrmOrObjSList::const_iterator aIter( aList.begin() );
SwFrmOrObjSList::const_iterator aEndIter( aList.end() );
while( aIter != aEndIter )
{
const SwFrmOrObj& rLower = *aIter;
const SwFrm *pLower = rLower.GetSwFrm();
ASSERT( pLower, "child should be a frame" );
const SwRect& rBox = rLower.GetBox();
if( pLower && rBox.IsOver( rArea ) )
{
2002-05-22 10:48:43 +00:00
if( rLower.IsAccessible( mbIsInPagePreview ) )
2002-04-17 13:07:39 +00:00
{
ASSERT( pLower->IsCellFrm(), "lower is not a cell frame" );
const SwCellFrm *pCFrm =
static_cast < const SwCellFrm * >( pLower );
SwTableBox *pBox =
const_cast< SwTableBox *>( pCFrm->GetTabBox() ); //SVPtrArr!
if( !rSelBoxes.Seek_Entry( pBox ) )
{
const Int32Set_Impl rRowsOrCols =
bColumns ? maColumns : maRows;
sal_Int32 nPos = bColumns ? (rBox.Left() - rTabPos.X())
: (rBox.Top() - rTabPos.Y());
Int32Set_Impl::const_iterator aSttRowOrCol(
rRowsOrCols.lower_bound( nPos ) );
sal_Int32 nRowOrCol =
static_cast< sal_Int32 >( ::std::distance(
rRowsOrCols.begin(), aSttRowOrCol ) );
nPos = bColumns ? (rBox.Right() - rTabPos.X())
: (rBox.Bottom() - rTabPos.Y());
Int32Set_Impl::const_iterator aEndRowOrCol(
rRowsOrCols.upper_bound( nPos ) );
sal_Int32 nExt =
static_cast< sal_Int32 >( ::std::distance(
aSttRowOrCol, aEndRowOrCol ) );
rSelHdl.Unselect( nRowOrCol, nExt );
}
}
else
{
GetSelection( rTabPos, rArea, rSelBoxes, pLower, rSelHdl,
bColumns );
}
}
++aIter;
}
}
const SwFrm *SwAccessibleTableData_Impl::GetCell(
sal_Int32 nRow, sal_Int32 nColumn, sal_Bool bExact,
SwAccessibleTable *pThis ) const
throw(IndexOutOfBoundsException )
{
CheckRowAndCol( nRow, nColumn, pThis );
Int32Set_Impl::const_iterator aSttCol( GetColumnIter( nColumn ) );
Int32Set_Impl::const_iterator aSttRow( GetRowIter( nRow ) );
const SwFrm *pCellFrm = GetCellAtPos( *aSttCol, *aSttRow, sal_False );
return pCellFrm;
}
void SwAccessibleTableData_Impl::GetSelection(
sal_Int32 nStart, sal_Int32 nEnd,
const SwSelBoxes& rSelBoxes,
SwAccTableSelHander_Impl& rSelHdl,
sal_Bool bColumns ) const
{
SwRect aArea( mpTabFrm->Frm() );
Point aPos( aArea.Pos() );
const Int32Set_Impl& rRowsOrColumns = bColumns ? maColumns : maRows;
if( nStart > 0 )
{
Int32Set_Impl::const_iterator aStt( rRowsOrColumns.begin() );
::std::advance( aStt,
static_cast< Int32Set_Impl::difference_type >( nStart ) );
if( bColumns )
aArea.Left( *aStt + aPos.X() );
else
aArea.Top( *aStt + aPos.Y() );
}
if( nEnd < static_cast< sal_Int32 >( rRowsOrColumns.size() ) )
{
Int32Set_Impl::const_iterator aEnd( rRowsOrColumns.begin() );
::std::advance( aEnd,
static_cast< Int32Set_Impl::difference_type >( nEnd ) );
if( bColumns )
aArea.Right( *aEnd + aPos.X() - 1 );
else
aArea.Bottom( *aEnd + aPos.Y() - 1 );
}
GetSelection( aPos, aArea, rSelBoxes, mpTabFrm, rSelHdl, bColumns );
}
const SwFrm *SwAccessibleTableData_Impl::GetCellAtPos(
sal_Int32 nLeft, sal_Int32 nTop, sal_Bool bExact ) const
{
Point aPos( mpTabFrm->Frm().Pos() );
aPos.Move( nLeft, nTop );
const SwFrm *pRet = 0;
FindCell( aPos, mpTabFrm, bExact, pRet );
return pRet;
}
inline sal_Int32 SwAccessibleTableData_Impl::GetRowCount() const
{
return static_cast< sal_Int32 >( maRows.size() );
}
inline sal_Int32 SwAccessibleTableData_Impl::GetColumnCount() const
{
return static_cast< sal_Int32 >( maColumns.size() );
}
2002-05-03 11:34:00 +00:00
sal_Bool SwAccessibleTableData_Impl::CompareExtents(
const SwAccessibleTableData_Impl& rCmp ) const
{
if( maExtents.size() != rCmp.maExtents.size() )
return sal_False;
Int32PairList_Impl::const_iterator aIter( maExtents.begin() );
Int32PairList_Impl::const_iterator aEndIter( maExtents.end() );
Int32PairList_Impl::const_iterator aCmpIter( rCmp.maExtents.begin() );
while( aIter != aEndIter )
{
if( *aIter != *aCmpIter )
return sal_False;
++aIter;
++aCmpIter;
}
return sal_True;
}
2002-04-17 13:07:39 +00:00
SwAccessibleTableData_Impl::SwAccessibleTableData_Impl(
2002-05-22 10:48:43 +00:00
const SwTabFrm *pTabFrm,
sal_Bool bIsInPagePreview ) :
2002-04-17 13:07:39 +00:00
mpTabFrm( pTabFrm ),
2002-05-22 10:48:43 +00:00
maTabFrmPos( pTabFrm->Frm().Pos() ),
mbIsInPagePreview( bIsInPagePreview )
2002-04-17 13:07:39 +00:00
{
2002-05-03 11:34:00 +00:00
CollectData( mpTabFrm );
CollectExtents( mpTabFrm );
2002-04-17 13:07:39 +00:00
}
inline Int32Set_Impl::const_iterator SwAccessibleTableData_Impl::GetRowIter(
sal_Int32 nRow ) const
{
Int32Set_Impl::const_iterator aCol( GetRows().begin() );
if( nRow > 0 )
{
::std::advance( aCol,
static_cast< Int32Set_Impl::difference_type >( nRow ) );
}
return aCol;
}
inline Int32Set_Impl::const_iterator SwAccessibleTableData_Impl::GetColumnIter(
sal_Int32 nColumn ) const
{
Int32Set_Impl::const_iterator aCol = GetColumns().begin();
if( nColumn > 0 )
{
::std::advance( aCol,
static_cast< Int32Set_Impl::difference_type >( nColumn ) );
}
return aCol;
}
void SwAccessibleTableData_Impl::CheckRowAndCol(
sal_Int32 nRow, sal_Int32 nCol, SwAccessibleTable *pThis ) const
throw(IndexOutOfBoundsException )
{
if( ( nRow < 0 || nRow >= static_cast< sal_Int32 >( maRows.size() ) ) ||
( nCol < 0 || nCol >= static_cast< sal_Int32 >( maColumns.size() ) ) )
{
Reference < XAccessibleTable > xThis( pThis );
IndexOutOfBoundsException aExcept(
OUString( RTL_CONSTASCII_USTRINGPARAM(
"row or column index out of range") ),
xThis );
throw aExcept;
}
}
void SwAccessibleTableData_Impl::GetRowColumnAndExtent(
const SwRect& rBox,
sal_Int32& rRow, sal_Int32& rColumn,
2002-05-03 11:34:00 +00:00
sal_Int32& rRowExtent, sal_Int32& rColumnExtent ) const
2002-04-17 13:07:39 +00:00
{
Int32Set_Impl::const_iterator aStt(
maRows.lower_bound( rBox.Top() - maTabFrmPos.Y() ) );
Int32Set_Impl::const_iterator aEnd(
maRows.upper_bound( rBox.Bottom() - maTabFrmPos.Y() ) );
rRow =
static_cast< sal_Int32 >( ::std::distance( maRows.begin(), aStt ) );
rRowExtent =
static_cast< sal_Int32 >( ::std::distance( aStt, aEnd ) );
aStt = maColumns.lower_bound( rBox.Left() - maTabFrmPos.X() );
aEnd = maColumns.upper_bound( rBox.Right() - maTabFrmPos.X() );
rColumn =
static_cast< sal_Int32 >( ::std::distance( maColumns.begin(), aStt ) );
rColumnExtent =
static_cast< sal_Int32 >( ::std::distance( aStt, aEnd ) );
}
//------------------------------------------------------------------------------
class SwAccSingleTableSelHander_Impl : public SwAccTableSelHander_Impl
{
sal_Bool bSelected;
public:
inline SwAccSingleTableSelHander_Impl();
inline sal_Bool IsSelected() const { return bSelected; }
virtual void Unselect( sal_Int32, sal_Int32 );
};
inline SwAccSingleTableSelHander_Impl::SwAccSingleTableSelHander_Impl() :
bSelected( sal_True )
{
}
void SwAccSingleTableSelHander_Impl::Unselect( sal_Int32, sal_Int32 )
{
bSelected = sal_False;
}
//------------------------------------------------------------------------------
class SwAccAllTableSelHander_Impl : public SwAccTableSelHander_Impl
{
::std::vector< sal_Bool > aSelected;
sal_Int32 nCount;
public:
inline SwAccAllTableSelHander_Impl( sal_Int32 nSize );
Sequence < sal_Int32 > GetSelSequence();
virtual void Unselect( sal_Int32 nRowOrCol, sal_Int32 nExt );
};
inline SwAccAllTableSelHander_Impl::SwAccAllTableSelHander_Impl( sal_Int32 nSize ) :
aSelected( nSize, sal_True ),
nCount( nSize )
{
}
Sequence < sal_Int32 > SwAccAllTableSelHander_Impl::GetSelSequence()
{
ASSERT( nCount >= 0, "underflow" );
Sequence < sal_Int32 > aRet( nCount );
sal_Int32 *pRet = aRet.getArray();
sal_Int32 nPos = 0;
size_t nSize = aSelected.size();
for( size_t i=0; i < nSize && nPos < nCount; i++ )
{
if( aSelected[i] )
{
*pRet++ = i;
nPos++;
}
}
ASSERT( nPos == nCount, "count is wrong" );
return aRet;
}
void SwAccAllTableSelHander_Impl::Unselect( sal_Int32 nRowOrCol,
sal_Int32 nExt )
{
ASSERT( static_cast< size_t >( nRowOrCol ) < aSelected.size(),
"index to large" );
ASSERT( static_cast< size_t >( nRowOrCol+nExt ) <= aSelected.size(),
"extent to large" );
while( nExt )
{
if( aSelected[static_cast< size_t >( nRowOrCol )] )
{
aSelected[static_cast< size_t >( nRowOrCol )] = sal_False;
nCount--;
}
nExt--;
nRowOrCol++;
}
}
//------------------------------------------------------------------------------
const SwSelBoxes *SwAccessibleTable::GetSelBoxes() const
{
const SwSelBoxes *pSelBoxes = 0;
const SwCrsrShell *pCSh = GetCrsrShell();
if( (pCSh != NULL) && pCSh->IsTableMode() )
2002-04-17 13:07:39 +00:00
{
pSelBoxes = &pCSh->GetTableCrsr()->GetBoxes();
2002-04-17 13:07:39 +00:00
}
return pSelBoxes;
}
void SwAccessibleTable::FireTableChangeEvent(
2002-05-03 11:34:00 +00:00
const SwAccessibleTableData_Impl& rTableData )
2002-04-17 13:07:39 +00:00
{
AccessibleTableModelChange aModelChange;
aModelChange.Type = AccessibleTableModelChangeType::UPDATE;
aModelChange.FirstRow = 0;
2002-05-03 11:34:00 +00:00
aModelChange.LastRow = rTableData.GetRowCount() - 1;
2002-04-17 13:07:39 +00:00
aModelChange.FirstColumn = 0;
2002-05-03 11:34:00 +00:00
aModelChange.LastColumn = rTableData.GetColumnCount() - 1;
2002-04-17 13:07:39 +00:00
AccessibleEventObject aEvent;
aEvent.EventId = AccessibleEventId::ACCESSIBLE_TABLE_MODEL_EVENT;
2002-04-17 13:07:39 +00:00
aEvent.NewValue <<= aModelChange;
FireAccessibleEvent( aEvent );
}
const SwTableBox* SwAccessibleTable::GetTableBox( sal_Int32 nChildIndex ) const
{
DBG_ASSERT( nChildIndex >= 0, "Illegal child index." );
DBG_ASSERT( nChildIndex < GetChildCount(), "Illegal child index." );
const SwTableBox* pBox = NULL;
// get table box for 'our' table cell
SwFrmOrObj aCell( GetChild( nChildIndex ) );
if( aCell.GetSwFrm() )
{
const SwFrm* pChildFrm = aCell.GetSwFrm();
if( (pChildFrm != NULL) && pChildFrm->IsCellFrm() )
{
const SwCellFrm* pCellFrm =
static_cast<const SwCellFrm*>( pChildFrm );
pBox = pCellFrm->GetTabBox();
}
}
DBG_ASSERT( pBox != NULL, "We need the table box." );
return pBox;
}
2002-04-11 12:42:31 +00:00
void SwAccessibleTable::GetStates(
::utl::AccessibleStateSetHelper& rStateSet )
{
SwAccessibleContext::GetStates( rStateSet );
}
SwAccessibleTable::SwAccessibleTable(
SwAccessibleMap *pMap,
const SwTabFrm *pTabFrm ) :
2002-04-17 13:07:39 +00:00
SwAccessibleContext( pMap, AccessibleRole::TABLE, pTabFrm ),
2002-05-03 11:34:00 +00:00
mpTableData( 0 )
2002-04-11 12:42:31 +00:00
{
vos::OGuard aGuard(Application::GetSolarMutex());
const String& rName = pTabFrm->GetFmt()->GetName();
OUStringBuffer aBuffer( rName.Len() + 4 );
aBuffer.append( OUString(rName) );
aBuffer.append( static_cast<sal_Unicode>( '-' ) );
aBuffer.append( static_cast<sal_Int32>( pTabFrm->GetPhyPageNum() ) );
SetName( aBuffer.makeStringAndClear() );
}
SwAccessibleTable::~SwAccessibleTable()
{
2002-04-17 13:07:39 +00:00
vos::OGuard aGuard(Application::GetSolarMutex());
delete mpTableData;
}
Any SwAccessibleTable::queryInterface( const Type& rType )
throw (RuntimeException)
{
Any aRet;
if ( rType == ::getCppuType((Reference<XAccessibleTable> *)0) )
{
2002-05-03 11:34:00 +00:00
Reference<XAccessibleTable> xThis( this );
aRet <<= xThis;
2002-04-17 13:07:39 +00:00
}
else if ( rType == ::getCppuType((Reference<XAccessibleSelection> *)0) )
{
Reference<XAccessibleSelection> xSelection( this );
aRet <<= xSelection;
}
2002-04-17 13:07:39 +00:00
else
{
aRet = SwAccessibleContext::queryInterface(rType);
}
return aRet;
}
void SwAccessibleTable::UpdateTableData()
{
const SwTabFrm* pTabFrm = static_cast<const SwTabFrm*>( GetFrm() );
delete mpTableData;
2002-05-22 10:48:43 +00:00
mpTableData = new SwAccessibleTableData_Impl( pTabFrm, IsInPagePreview() );
2002-04-17 13:07:39 +00:00
}
void SwAccessibleTable::ClearTableData()
{
delete mpTableData;
mpTableData = 0;
2002-04-11 12:42:31 +00:00
}
OUString SAL_CALL SwAccessibleTable::getAccessibleDescription (void)
throw (::com::sun::star::uno::RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleContext )
OUString sArg1( static_cast< const SwTabFrm * >( GetFrm() )
->GetFmt()->GetName() );
OUString sArg2( GetFormattedPageNumber() );
return GetResource( STR_ACCESS_TABLE_DESC, &sArg1, &sArg2 );
}
2002-04-17 13:07:39 +00:00
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleRowCount()
throw (RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
return GetTableData().GetRowCount();
}
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleColumnCount( )
throw (RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
return GetTableData().GetColumnCount();
}
OUString SAL_CALL SwAccessibleTable::getAccessibleRowDescription(
sal_Int32 nRow )
throw (IndexOutOfBoundsException, RuntimeException)
{
// TODO: Is there any reasonable we can do here?
OUString sDesc;
return sDesc;
}
OUString SAL_CALL SwAccessibleTable::getAccessibleColumnDescription(
sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
// TODO: Is there any reasonable we can do here?
OUString sDesc;
return sDesc;
}
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleRowExtentAt(
sal_Int32 nRow, sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
sal_Int32 nExtend = -1;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
GetTableData().CheckRowAndCol( nRow, nColumn, this );
Int32Set_Impl::const_iterator aSttCol(
GetTableData().GetColumnIter( nColumn ) );
Int32Set_Impl::const_iterator aSttRow(
GetTableData().GetRowIter( nRow ) );
const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow,
sal_False );
if( pCellFrm )
{
sal_Int32 nBottom = pCellFrm->Frm().Bottom();
nBottom -= GetFrm()->Frm().Top();
Int32Set_Impl::const_iterator aEndRow(
GetTableData().GetRows().upper_bound( nBottom ) );
nExtend =
static_cast< sal_Int32 >( ::std::distance( aSttRow, aEndRow ) );
}
return nExtend;
}
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleColumnExtentAt(
sal_Int32 nRow, sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
sal_Int32 nExtend = -1;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
GetTableData().CheckRowAndCol( nRow, nColumn, this );
Int32Set_Impl::const_iterator aSttCol(
GetTableData().GetColumnIter( nColumn ) );
Int32Set_Impl::const_iterator aSttRow(
GetTableData().GetRowIter( nRow ) );
const SwFrm *pCellFrm = GetTableData().GetCellAtPos( *aSttCol, *aSttRow,
sal_False );
if( pCellFrm )
{
sal_Int32 nRight = pCellFrm->Frm().Right();
nRight -= GetFrm()->Frm().Left();
Int32Set_Impl::const_iterator aEndCol(
GetTableData().GetColumns().upper_bound( nRight ) );
nExtend =
static_cast< sal_Int32 >( ::std::distance( aSttCol, aEndCol ) );
}
return nExtend;
}
Reference< XAccessibleTable > SAL_CALL
SwAccessibleTable::getAccessibleRowHeaders( )
throw (RuntimeException)
{
// Column headers aren't supported
Reference< XAccessibleTable > xRet;
return xRet;
}
Reference< XAccessibleTable > SAL_CALL
SwAccessibleTable::getAccessibleColumnHeaders( )
throw (RuntimeException)
{
// TODO Column headers aren't supported, arent they?
Reference< XAccessibleTable > xRet;
return xRet;
}
Sequence< sal_Int32 > SAL_CALL SwAccessibleTable::getSelectedAccessibleRows()
throw (RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
const SwSelBoxes *pSelBoxes = GetSelBoxes();
if( pSelBoxes )
{
sal_Int32 nRows = GetTableData().GetRowCount();
SwAccAllTableSelHander_Impl aSelRows( nRows );
GetTableData().GetSelection( 0, nRows, *pSelBoxes, aSelRows,
sal_False );
return aSelRows.GetSelSequence();
}
else
{
Sequence< sal_Int32 > aRet( 0 );
return aRet;
}
}
Sequence< sal_Int32 > SAL_CALL SwAccessibleTable::getSelectedAccessibleColumns()
throw (RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
const SwSelBoxes *pSelBoxes = GetSelBoxes();
if( pSelBoxes )
{
sal_Int32 nCols = GetTableData().GetColumnCount();
SwAccAllTableSelHander_Impl aSelCols( nCols );
GetTableData().GetSelection( 0, nCols, *pSelBoxes, aSelCols, sal_True );
return aSelCols.GetSelSequence();
}
else
{
Sequence< sal_Int32 > aRet( 0 );
return aRet;
}
}
sal_Bool SAL_CALL SwAccessibleTable::isAccessibleRowSelected( sal_Int32 nRow )
throw (IndexOutOfBoundsException, RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
GetTableData().CheckRowAndCol( nRow, 0, this );
sal_Bool bRet;
const SwSelBoxes *pSelBoxes = GetSelBoxes();
if( pSelBoxes )
{
SwAccSingleTableSelHander_Impl aSelRow;
GetTableData().GetSelection( nRow, nRow+1, *pSelBoxes, aSelRow,
sal_False );
bRet = aSelRow.IsSelected();
}
else
{
bRet = sal_False;
}
return bRet;
}
sal_Bool SAL_CALL SwAccessibleTable::isAccessibleColumnSelected(
sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
GetTableData().CheckRowAndCol( 0, nColumn, this );
sal_Bool bRet;
const SwSelBoxes *pSelBoxes = GetSelBoxes();
if( pSelBoxes )
{
SwAccSingleTableSelHander_Impl aSelCol;
GetTableData().GetSelection( nColumn, nColumn+1, *pSelBoxes, aSelCol,
sal_True );
bRet = aSelCol.IsSelected();
}
else
{
bRet = sal_False;
}
return bRet;
}
Reference< XAccessible > SAL_CALL SwAccessibleTable::getAccessibleCellAt(
sal_Int32 nRow, sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
Reference< XAccessible > xRet;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
const SwFrm *pCellFrm =
GetTableData().GetCell( nRow, nColumn, sal_False, this );
if( pCellFrm )
xRet = GetMap()->GetContext( pCellFrm, sal_True );
return xRet;
}
Reference< XAccessible > SAL_CALL SwAccessibleTable::getAccessibleCaption()
throw (RuntimeException)
{
// captions aren't supported
Reference< XAccessible > xRet;
return xRet;
}
Reference< XAccessible > SAL_CALL SwAccessibleTable::getAccessibleSummary()
throw (RuntimeException)
{
// summaries aren't supported
Reference< XAccessible > xRet;
return xRet;
}
sal_Bool SAL_CALL SwAccessibleTable::isAccessibleSelected(
sal_Int32 nRow, sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
sal_Bool bRet = sal_False;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
const SwFrm *pFrm =
GetTableData().GetCell( nRow, nColumn, sal_False, this );
if( pFrm && pFrm->IsCellFrm() )
{
const SwSelBoxes *pSelBoxes = GetSelBoxes();
if( pSelBoxes )
{
const SwCellFrm *pCFrm = static_cast < const SwCellFrm * >( pFrm );
SwTableBox *pBox =
const_cast< SwTableBox *>( pCFrm->GetTabBox() ); //SVPtrArr!
bRet = pSelBoxes->Seek_Entry( pBox );
}
}
return bRet;
}
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleIndex(
sal_Int32 nRow, sal_Int32 nColumn )
throw (IndexOutOfBoundsException, RuntimeException)
{
sal_Int32 nRet = -1;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
SwFrmOrObj aCell( GetTableData().GetCell( nRow, nColumn, sal_False, this ));
if( aCell.IsValid() )
nRet = GetChildIndex( aCell );
return nRet;
}
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleRow( sal_Int32 nChildIndex )
throw (IndexOutOfBoundsException, RuntimeException)
{
sal_Int32 nRet = -1;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
SwFrmOrObj aCell( GetChild( nChildIndex ) );
if( aCell.GetSwFrm() )
{
sal_Int32 nTop = aCell.GetSwFrm()->Frm().Top();
nTop -= GetFrm()->Frm().Top();
Int32Set_Impl::const_iterator aRow(
GetTableData().GetRows().lower_bound( nTop ) );
nRet = static_cast< sal_Int32 >( ::std::distance(
GetTableData().GetRows().begin(), aRow ) );
}
return nRet;
}
sal_Int32 SAL_CALL SwAccessibleTable::getAccessibleColumn(
sal_Int32 nChildIndex )
throw (IndexOutOfBoundsException, RuntimeException)
{
sal_Int32 nRet = -1;
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable )
SwFrmOrObj aCell( GetChild( nChildIndex ) );
if( aCell.GetSwFrm() )
{
sal_Int32 nLeft = aCell.GetSwFrm()->Frm().Left();
nLeft -= GetFrm()->Frm().Left();
Int32Set_Impl::const_iterator aCol(
GetTableData().GetColumns().lower_bound( nLeft ) );
nRet = static_cast< sal_Int32 >( ::std::distance(
GetTableData().GetColumns().begin(), aCol ) );
}
return nRet;
}
2002-04-11 12:42:31 +00:00
OUString SAL_CALL SwAccessibleTable::getImplementationName()
throw( RuntimeException )
{
return OUString(RTL_CONSTASCII_USTRINGPARAM(sImplementationName));
}
sal_Bool SAL_CALL SwAccessibleTable::supportsService(
const ::rtl::OUString& sTestServiceName)
throw (::com::sun::star::uno::RuntimeException)
{
return sTestServiceName.equalsAsciiL( sServiceName,
sizeof(sServiceName)-1 ) ||
sTestServiceName.equalsAsciiL( sAccessibleServiceName,
sizeof(sAccessibleServiceName)-1 );
2002-04-11 12:42:31 +00:00
}
Sequence< OUString > SAL_CALL SwAccessibleTable::getSupportedServiceNames()
throw( ::com::sun::star::uno::RuntimeException )
{
Sequence< OUString > aRet(2);
2002-04-11 12:42:31 +00:00
OUString* pArray = aRet.getArray();
pArray[0] = OUString( RTL_CONSTASCII_USTRINGPARAM(sServiceName) );
pArray[1] = OUString( RTL_CONSTASCII_USTRINGPARAM(sAccessibleServiceName) );
2002-04-11 12:42:31 +00:00
return aRet;
}
2002-04-17 13:07:39 +00:00
void SwAccessibleTable::InvalidatePosOrSize( const SwRect& rOldBox )
{
vos::OGuard aGuard(Application::GetSolarMutex());
if( HasTableData() )
GetTableData().SetTablePos( GetFrm()->Frm().Pos() );
SwAccessibleContext::InvalidatePosOrSize( rOldBox );
}
2002-05-15 12:22:47 +00:00
void SwAccessibleTable::DisposeChild( const SwFrmOrObj& rChildFrmOrObj,
2002-04-17 13:07:39 +00:00
sal_Bool bRecursive )
{
vos::OGuard aGuard(Application::GetSolarMutex());
2002-05-15 12:22:47 +00:00
const SwFrm *pFrm = rChildFrmOrObj.GetSwFrm();
ASSERT( pFrm, "frame expected" );
2002-04-17 13:07:39 +00:00
if( HasTableData() )
{
2002-05-03 11:34:00 +00:00
FireTableChangeEvent( GetTableData() );
ClearTableData();
2002-04-17 13:07:39 +00:00
}
// There are two reason why this method has been called. The first one
// is there is no context for pFrm. The method is them called by
// the map, and we have to call our superclass.
// The other situation is that we have been call by a call to get notified
// about its change. We then must not call the superclass
Reference< XAccessible > xAcc( GetMap()->GetContext( pFrm, sal_False ) );
if( !xAcc.is() )
2002-05-15 12:22:47 +00:00
SwAccessibleContext::DisposeChild( rChildFrmOrObj, bRecursive );
2002-04-17 13:07:39 +00:00
}
2002-05-15 12:22:47 +00:00
void SwAccessibleTable::InvalidateChildPosOrSize( const SwFrmOrObj& rChildFrmOrObj,
2002-04-17 13:07:39 +00:00
const SwRect& rOldBox )
{
vos::OGuard aGuard(Application::GetSolarMutex());
if( HasTableData() )
{
2002-05-03 11:34:00 +00:00
ASSERT( !HasTableData() ||
GetFrm()->Frm().Pos() == GetTableData().GetTablePos(),
"table has invalid position" );
if( HasTableData() )
2002-04-17 13:07:39 +00:00
{
const SwTabFrm* pTabFrm = static_cast<const SwTabFrm*>( GetFrm() );
2002-05-03 11:34:00 +00:00
SwAccessibleTableData_Impl *pNewTableData =
2002-05-22 10:48:43 +00:00
new SwAccessibleTableData_Impl( pTabFrm, IsInPagePreview() );
2002-05-03 11:34:00 +00:00
if( !pNewTableData->CompareExtents( GetTableData() ) )
{
FireTableChangeEvent( GetTableData() );
ClearTableData();
mpTableData = pNewTableData;
}
else
{
delete pNewTableData;
}
2002-04-17 13:07:39 +00:00
}
}
// There are two reason why this method has been called. The first one
// is there is no context for pFrm. The method is them called by
// the map, and we have to call our superclass.
// The other situation is that we have been call by a call to get notified
// about its change. We then must not call the superclass
2002-05-15 12:22:47 +00:00
ASSERT( rChildFrmOrObj.GetSwFrm(), "frame expected" );
Reference< XAccessible > xAcc( GetMap()->GetContext( rChildFrmOrObj.GetSwFrm(), sal_False ) );
2002-04-17 13:07:39 +00:00
if( !xAcc.is() )
2002-05-15 12:22:47 +00:00
SwAccessibleContext::InvalidateChildPosOrSize( rChildFrmOrObj, rOldBox );
2002-04-17 13:07:39 +00:00
}
//
// XAccessibleSelection
//
void SAL_CALL SwAccessibleTable::selectAccessibleChild(
sal_Int32 nChildIndex )
throw ( IndexOutOfBoundsException, RuntimeException )
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable );
if( (nChildIndex < 0) || (nChildIndex >= GetChildCount()) )
throw IndexOutOfBoundsException();
// preliminaries: get 'our' table box, and get the cursor shell
const SwTableBox* pBox = GetTableBox( nChildIndex );
DBG_ASSERT( pBox != NULL, "We need the table box." );
SwCrsrShell* pCrsrShell = GetCrsrShell();
if( pCrsrShell == NULL )
return;
// now we can start to do the work: check whether we already have
// a table selection (in 'our' table). If so, extend the
// selection, else select the current cell.
// if we have a selection in a table, check if it's in the
// same table that we're trying to select in
const SwTableNode* pSelectedTable = pCrsrShell->IsCrsrInTbl();
if( pSelectedTable != NULL )
{
// get top-most table line
const SwTableLine* pUpper = pBox->GetUpper();
while( pUpper->GetUpper() != NULL )
pUpper = pUpper->GetUpper()->GetUpper();
USHORT nPos =
pSelectedTable->GetTable().GetTabLines().GetPos( pUpper );
if( nPos == USHRT_MAX )
pSelectedTable = NULL;
}
// create the new selection
const SwStartNode* pStartNode = pBox->GetSttNd();
if( (pSelectedTable == NULL) ||
(! pCrsrShell->IsTableMode() ) )
{
// if we're in the wrong table, or there's no table selection
// at all, then select the current table cell.
SwPaM* pPaM = pCrsrShell->GetCrsr();
pPaM->DeleteMark();
*(pPaM->GetPoint()) = SwPosition( *pStartNode );
pPaM->Move( fnMoveForward, fnGoNode );
2002-05-15 12:22:47 +00:00
// pCrsrShell->SelTblBox();
}
else
{
// if the cursor is already in this table, and the cursor is
// in table mode, expand the current selection (i.e., set
// point to new position; keep mark)
SwPaM aPaM( *pStartNode );
aPaM.Move( fnMoveForward, fnGoNode );
aPaM.SetMark();
*(aPaM.GetMark()) = *(pCrsrShell->GetCrsr()->GetMark());
// if only one box is selected, we select this one in
// order to maintain our table selection
if( aPaM.GetPoint()->nNode.GetNode().FindTableBoxStartNode() ==
aPaM.GetMark()->nNode.GetNode().FindTableBoxStartNode() )
{
2002-05-15 12:22:47 +00:00
// pCrsrShell->SelTblBox();
}
else
{
// finally; set the selection. This will call UpdateCursor
// on the cursor shell, too.
pCrsrShell->KillPams();
pCrsrShell->SetSelection( aPaM );
}
}
}
sal_Bool SAL_CALL SwAccessibleTable::isAccessibleChildSelected(
sal_Int32 nChildIndex )
throw ( IndexOutOfBoundsException,
RuntimeException )
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable );
if( (nChildIndex < 0) || (nChildIndex >= GetChildCount()) )
throw IndexOutOfBoundsException();
sal_Bool bRet;
const SwSelBoxes* pSelBoxes = GetSelBoxes();
if( pSelBoxes == NULL )
{
bRet = sal_False;
}
else
{
const SwTableBox* pBox = GetTableBox( nChildIndex );
DBG_ASSERT( pBox != NULL, "We need the table box." );
bRet = pSelBoxes->Seek_Entry( const_cast<SwTableBox*>( pBox ) );
}
return bRet;
}
void SAL_CALL SwAccessibleTable::clearAccessibleSelection( )
throw ( RuntimeException )
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable );
SwCrsrShell* pCrsrShell = GetCrsrShell();
if( pCrsrShell != NULL )
pCrsrShell->ClearMark();
}
void SAL_CALL SwAccessibleTable::selectAllAccessible( )
throw ( RuntimeException )
{
// first clear selection, then select first and last child
clearAccessibleSelection();
selectAccessibleChild( 0 );
selectAccessibleChild( GetChildCount()-1 );
}
sal_Int32 SAL_CALL SwAccessibleTable::getSelectedAccessibleChildCount( )
throw ( RuntimeException )
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable );
// iterate over all children and count isAccessibleChildSelected()
sal_Int32 nCount = 0;
sal_Int32 nChildren = GetChildCount();
for( sal_Int32 n = 0; n < nChildren; n++ )
if( isAccessibleChildSelected( n ) )
nCount++;
return nCount;
}
Reference<XAccessible> SAL_CALL SwAccessibleTable::getSelectedAccessibleChild(
sal_Int32 nSelectedChildIndex )
throw ( IndexOutOfBoundsException,
RuntimeException)
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable );
// paremter checking (part 1): index higher than child count?
sal_Int32 nChildren = GetChildCount();
if( (nSelectedChildIndex < 0) || (nSelectedChildIndex >= nChildren) )
throw IndexOutOfBoundsException();
// iterate over all children to n-th isAccessibleChildSelected()
sal_Int32 nCount = nSelectedChildIndex;
sal_Int32 n = 0;
while( (n < nChildren) && (nCount >= 0) )
{
if( isAccessibleChildSelected( n ) )
nCount--;
n++;
}
// parameter checking (part 2): index higher than selected children?
if( nCount >= 0 )
throw IndexOutOfBoundsException();
return getAccessibleChild( n - 1 );
}
void SAL_CALL SwAccessibleTable::deselectSelectedAccessibleChild(
sal_Int32 nSelectedChildIndex )
throw ( IndexOutOfBoundsException,
RuntimeException )
{
vos::OGuard aGuard(Application::GetSolarMutex());
CHECK_FOR_DEFUNC( XAccessibleTable );
if( (nSelectedChildIndex < 0) || (nSelectedChildIndex >= GetChildCount()) )
throw IndexOutOfBoundsException();
SwCrsrShell* pCrsrShell = GetCrsrShell();
if( pCrsrShell == NULL )
return;
const SwTableBox* pBox = GetTableBox( nSelectedChildIndex );
DBG_ASSERT( pBox != NULL, "We need the table box." );
// check whether child is selected
const SwSelBoxes* pSelBoxes = GetSelBoxes();
if( (pSelBoxes != NULL) &&
pSelBoxes->Seek_Entry( const_cast<SwTableBox*>( pBox ) ) )
{
// If we unselect mark, then clear the whole selection. Otherwise,
// reduce selection to mark.
if( pBox->GetSttNd()->FindTableBoxStartNode() ==
pCrsrShell->GetCrsr()->GetMark()->nNode.GetNode().
FindTableBoxStartNode() )
{
// we're trying to deselect mark -> no more table selection
pCrsrShell->ClearMark();
}
else
{
// reduce selection to mark
pCrsrShell->GetCrsr()->Exchange();
pCrsrShell->GetCrsr()->DeleteMark();
2002-05-15 12:22:47 +00:00
// pCrsrShell->SelTblBox();
}
}
// else: not selected -> ignore
}