Files
libreoffice/svx/source/unoedit/unoedprx.cxx

1285 lines
40 KiB
C++
Raw Normal View History

/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2008 by Sun Microsystems, Inc.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: unoedprx.cxx,v $
* $Revision: 1.22 $
*
* 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_svx.hxx"
//------------------------------------------------------------------------
//
// Global header
//
//------------------------------------------------------------------------
#include <limits.h>
#include <vector>
#include <algorithm>
#include <vos/mutex.hxx>
#include <vcl/window.hxx>
#include <vcl/svapp.hxx>
#include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/uno/Reference.hxx>
//------------------------------------------------------------------------
//
// Project-local header
//
//------------------------------------------------------------------------
#include "unoedprx.hxx"
#include <svx/unotext.hxx>
#include "unoedhlp.hxx"
#include <svx/svdmodel.hxx>
#include <svx/svdpntv.hxx>
#include <svx/editdata.hxx>
#include <svx/editeng.hxx>
#include <svx/editview.hxx>
#include "AccessibleStringWrap.hxx"
using namespace ::com::sun::star;
class SvxAccessibleTextIndex
{
public:
SvxAccessibleTextIndex() :
mnPara(0),
mnIndex(0),
mnEEIndex(0),
mnFieldOffset(0),
mnFieldLen(0),
mbInField(sal_False),
mnBulletOffset(0),
mnBulletLen(0),
mbInBullet(sal_False) {};
~SvxAccessibleTextIndex() {};
// Get/Set current paragraph
void SetParagraph( USHORT nPara )
{
mnPara = nPara;
}
USHORT GetParagraph() const { return mnPara; }
/** Set the index in the UAA semantic
@param nIndex
The index from the UA API (fields and bullets are expanded)
@param rTF
The text forwarder to use in the calculations
*/
void SetIndex( sal_Int32 nIndex, const SvxTextForwarder& rTF );
void SetIndex( USHORT nPara, sal_Int32 nIndex, const SvxTextForwarder& rTF ) { SetParagraph(nPara); SetIndex(nIndex, rTF); }
sal_Int32 GetIndex() const { return mnIndex; }
/** Set the index in the edit engine semantic
Update the object state to reflect the given index position in
EditEngine/Outliner index values
@param nEEIndex
The index from the edit engine (fields span exactly one index increment)
@param rTF
The text forwarder to use in the calculations
*/
void SetEEIndex( USHORT nEEIndex, const SvxTextForwarder& rTF );
void SetEEIndex( USHORT nPara, USHORT nEEIndex, const SvxTextForwarder& rTF ) { SetParagraph(nPara); SetEEIndex(nEEIndex, rTF); }
USHORT GetEEIndex() const;
void SetFieldOffset( sal_Int32 nOffset, sal_Int32 nLen ) { mnFieldOffset = nOffset; mnFieldLen = nLen; }
sal_Int32 GetFieldOffset() const { return mnFieldOffset; }
sal_Int32 GetFieldLen() const { return mnFieldLen; }
void AreInField( sal_Bool bInField = sal_True ) { mbInField = bInField; }
sal_Bool InField() const { return mbInField; }
void SetBulletOffset( sal_Int32 nOffset, sal_Int32 nLen ) { mnBulletOffset = nOffset; mnBulletLen = nLen; }
sal_Int32 GetBulletOffset() const { return mnBulletOffset; }
sal_Int32 GetBulletLen() const { return mnBulletLen; }
void AreInBullet( sal_Bool bInBullet = sal_True ) { mbInBullet = bInBullet; }
sal_Bool InBullet() const { return mbInBullet; }
/// returns false if the current index contains non-editable text (e.g. bullets)
sal_Bool IsEditable() const;
/// returns false if the given range is non-editable (e.g. contains bullets or _parts_ of fields)
sal_Bool IsEditableRange( const SvxAccessibleTextIndex& rEnd ) const;
private:
USHORT mnPara;
sal_Int32 mnIndex;
sal_Int32 mnEEIndex;
sal_Int32 mnFieldOffset;
sal_Int32 mnFieldLen;
sal_Bool mbInField;
sal_Int32 mnBulletOffset;
sal_Int32 mnBulletLen;
sal_Bool mbInBullet;
};
ESelection MakeEESelection( const SvxAccessibleTextIndex& rStart, const SvxAccessibleTextIndex& rEnd )
{
// deal with field special case: to really get a field contained
// within a selection, the start index must be before or on the
// field, the end index after it.
// The SvxAccessibleTextIndex.GetEEIndex method gives the index on
// the field, as long the input index is on the field. Thus,
// correction necessary for the end index
// Therefore, for _ranges_, if part of the field is touched, all
// of the field must be selected
if( rStart.GetParagraph() <= rEnd.GetParagraph() ||
(rStart.GetParagraph() == rEnd.GetParagraph() &&
rStart.GetEEIndex() <= rEnd.GetEEIndex()) )
{
if( rEnd.InField() && rEnd.GetFieldOffset() )
return ESelection( rStart.GetParagraph(), rStart.GetEEIndex(),
rEnd.GetParagraph(), rEnd.GetEEIndex()+1 );
}
else if( rStart.GetParagraph() > rEnd.GetParagraph() ||
(rStart.GetParagraph() == rEnd.GetParagraph() &&
rStart.GetEEIndex() > rEnd.GetEEIndex()) )
{
if( rStart.InField() && rStart.GetFieldOffset() )
return ESelection( rStart.GetParagraph(), rStart.GetEEIndex()+1,
rEnd.GetParagraph(), rEnd.GetEEIndex() );
}
return ESelection( rStart.GetParagraph(), rStart.GetEEIndex(),
rEnd.GetParagraph(), rEnd.GetEEIndex() );
}
ESelection MakeEESelection( const SvxAccessibleTextIndex& rIndex )
{
return ESelection( rIndex.GetParagraph(), rIndex.GetEEIndex(),
rIndex.GetParagraph(), rIndex.GetEEIndex() + 1 );
}
USHORT SvxAccessibleTextIndex::GetEEIndex() const
{
DBG_ASSERT(mnEEIndex >= 0 && mnEEIndex <= USHRT_MAX,
"SvxAccessibleTextIndex::GetEEIndex: index value overflow");
return static_cast< USHORT > (mnEEIndex);
}
void SvxAccessibleTextIndex::SetEEIndex( USHORT nEEIndex, const SvxTextForwarder& rTF )
{
// reset
mnFieldOffset = 0;
mbInField = sal_False;
mnFieldLen = 0;
mnBulletOffset = 0;
mbInBullet = sal_False;
mnBulletLen = 0;
// set known values
mnEEIndex = nEEIndex;
// calculate unknowns
USHORT nCurrField, nFieldCount = rTF.GetFieldCount( GetParagraph() );
mnIndex = nEEIndex;
EBulletInfo aBulletInfo = rTF.GetBulletInfo( GetParagraph() );
// any text bullets?
if( aBulletInfo.nParagraph != EE_PARA_NOT_FOUND &&
aBulletInfo.bVisible &&
aBulletInfo.nType != SVX_NUM_BITMAP )
{
mnIndex += aBulletInfo.aText.Len();
}
for( nCurrField=0; nCurrField < nFieldCount; ++nCurrField )
{
EFieldInfo aFieldInfo( rTF.GetFieldInfo( GetParagraph(), nCurrField ) );
if( aFieldInfo.aPosition.nIndex > nEEIndex )
break;
if( aFieldInfo.aPosition.nIndex == nEEIndex )
{
AreInField();
break;
}
// #106010#
mnIndex += ::std::max(aFieldInfo.aCurrentText.Len()-1, 0);
}
}
void SvxAccessibleTextIndex::SetIndex( sal_Int32 nIndex, const SvxTextForwarder& rTF )
{
// reset
mnFieldOffset = 0;
mbInField = sal_False;
mnFieldLen = 0;
mnBulletOffset = 0;
mbInBullet = sal_False;
mnBulletLen = 0;
// set known values
mnIndex = nIndex;
// calculate unknowns
USHORT nCurrField, nFieldCount = rTF.GetFieldCount( GetParagraph() );
DBG_ASSERT(nIndex >= 0 && nIndex <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
mnEEIndex = nIndex;
EBulletInfo aBulletInfo = rTF.GetBulletInfo( GetParagraph() );
// any text bullets?
if( aBulletInfo.nParagraph != EE_PARA_NOT_FOUND &&
aBulletInfo.bVisible &&
aBulletInfo.nType != SVX_NUM_BITMAP )
{
sal_Int32 nBulletLen = aBulletInfo.aText.Len();
if( nIndex < nBulletLen )
{
AreInBullet();
SetBulletOffset( nIndex, nBulletLen );
mnEEIndex = 0;
return;
}
mnEEIndex = mnEEIndex - nBulletLen;
}
for( nCurrField=0; nCurrField < nFieldCount; ++nCurrField )
{
EFieldInfo aFieldInfo( rTF.GetFieldInfo( GetParagraph(), nCurrField ) );
// we're before a field
if( aFieldInfo.aPosition.nIndex > mnEEIndex )
break;
// #106010#
mnEEIndex -= ::std::max(aFieldInfo.aCurrentText.Len()-1, 0);
// we're within a field
if( aFieldInfo.aPosition.nIndex >= mnEEIndex )
{
AreInField();
SetFieldOffset( ::std::max(aFieldInfo.aCurrentText.Len()-1, 0) - (aFieldInfo.aPosition.nIndex - mnEEIndex),
aFieldInfo.aCurrentText.Len() );
mnEEIndex = aFieldInfo.aPosition.nIndex ;
break;
}
}
}
sal_Bool SvxAccessibleTextIndex::IsEditable() const
{
if( InBullet() || InField() )
return sal_False;
return sal_True;
}
sal_Bool SvxAccessibleTextIndex::IsEditableRange( const SvxAccessibleTextIndex& rEnd ) const
{
if( GetIndex() > rEnd.GetIndex() )
return rEnd.IsEditableRange( *this );
if( InBullet() || rEnd.InBullet() )
return sal_False;
if( InField() && GetFieldOffset() )
return sal_False; // within field
if( rEnd.InField() && rEnd.GetFieldOffset() >= rEnd.GetFieldLen() - 1 )
return sal_False; // within field
return sal_True;
}
//---------------------------------------------------------------------------------
SvxEditSourceAdapter::SvxEditSourceAdapter() : mbEditSourceValid( sal_False )
{
}
SvxEditSourceAdapter::~SvxEditSourceAdapter()
{
}
SvxEditSource* SvxEditSourceAdapter::Clone() const
{
if( mbEditSourceValid && mpAdaptee.get() )
{
::std::auto_ptr< SvxEditSource > pClonedAdaptee( mpAdaptee->Clone() );
if( pClonedAdaptee.get() )
{
SvxEditSourceAdapter* pClone = new SvxEditSourceAdapter();
if( pClone )
{
pClone->SetEditSource( pClonedAdaptee );
return pClone;
}
}
}
return NULL;
}
SvxAccessibleTextAdapter* SvxEditSourceAdapter::GetTextForwarderAdapter()
{
if( mbEditSourceValid && mpAdaptee.get() )
{
SvxTextForwarder* pTextForwarder = mpAdaptee->GetTextForwarder();
if( pTextForwarder )
{
maTextAdapter.SetForwarder(*pTextForwarder);
return &maTextAdapter;
}
}
return NULL;
}
SvxTextForwarder* SvxEditSourceAdapter::GetTextForwarder()
{
return GetTextForwarderAdapter();
}
SvxViewForwarder* SvxEditSourceAdapter::GetViewForwarder()
{
if( mbEditSourceValid && mpAdaptee.get() )
return mpAdaptee->GetViewForwarder();
return NULL;
}
SvxAccessibleTextEditViewAdapter* SvxEditSourceAdapter::GetEditViewForwarderAdapter( sal_Bool bCreate )
{
if( mbEditSourceValid && mpAdaptee.get() )
{
SvxEditViewForwarder* pEditViewForwarder = mpAdaptee->GetEditViewForwarder(bCreate);
if( pEditViewForwarder )
{
SvxAccessibleTextAdapter* pTextAdapter = GetTextForwarderAdapter();
if( pTextAdapter )
{
maEditViewAdapter.SetForwarder(*pEditViewForwarder, *pTextAdapter);
return &maEditViewAdapter;
}
}
}
return NULL;
}
SvxEditViewForwarder* SvxEditSourceAdapter::GetEditViewForwarder( sal_Bool bCreate )
{
return GetEditViewForwarderAdapter( bCreate );
}
void SvxEditSourceAdapter::UpdateData()
{
if( mbEditSourceValid && mpAdaptee.get() )
mpAdaptee->UpdateData();
}
SfxBroadcaster& SvxEditSourceAdapter::GetBroadcaster() const
{
if( mbEditSourceValid && mpAdaptee.get() )
return mpAdaptee->GetBroadcaster();
return maDummyBroadcaster;
}
void SvxEditSourceAdapter::SetEditSource( ::std::auto_ptr< SvxEditSource > pAdaptee )
{
if( pAdaptee.get() )
{
mpAdaptee = pAdaptee;
mbEditSourceValid = sal_True;
}
else
{
// do a lazy delete (prevents us from deleting the broadcaster
// from within a broadcast in
// AccessibleTextHelper_Impl::Notify)
mbEditSourceValid = sal_False;
}
}
sal_Bool SvxEditSourceAdapter::IsValid() const
{
return mbEditSourceValid;
}
//--------------------------------------------------------------------------------------
SvxAccessibleTextAdapter::SvxAccessibleTextAdapter() : mrTextForwarder( NULL )
{
}
SvxAccessibleTextAdapter::~SvxAccessibleTextAdapter()
{
}
USHORT SvxAccessibleTextAdapter::GetParagraphCount() const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetParagraphCount();
}
USHORT SvxAccessibleTextAdapter::GetTextLen( USHORT nParagraph ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aIndex;
aIndex.SetEEIndex( nParagraph, mrTextForwarder->GetTextLen( nParagraph ), *this );
return static_cast< USHORT >(aIndex.GetIndex());
}
String SvxAccessibleTextAdapter::GetText( const ESelection& rSel ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
// normalize selection
if( rSel.nStartPara > rSel.nEndPara ||
(rSel.nStartPara == rSel.nEndPara && rSel.nStartPos > rSel.nEndPos) )
{
::std::swap( aStartIndex, aEndIndex );
}
String sStr = mrTextForwarder->GetText( MakeEESelection(aStartIndex, aEndIndex) );
// trim field text, if necessary
if( aStartIndex.InField() )
{
DBG_ASSERT(aStartIndex.GetFieldOffset() >= 0 &&
aStartIndex.GetFieldOffset() <= USHRT_MAX,
"SvxAccessibleTextIndex::GetText: index value overflow");
sStr.Erase(0, static_cast< USHORT > (aStartIndex.GetFieldOffset()) );
}
if( aEndIndex.InField() && aEndIndex.GetFieldOffset() )
{
DBG_ASSERT(sStr.Len() - (aEndIndex.GetFieldLen() - aEndIndex.GetFieldOffset()) >= 0 &&
sStr.Len() - (aEndIndex.GetFieldLen() - aEndIndex.GetFieldOffset()) <= USHRT_MAX,
"SvxAccessibleTextIndex::GetText: index value overflow");
sStr = sStr.Copy(0, static_cast< USHORT > (sStr.Len() - (aEndIndex.GetFieldLen() - aEndIndex.GetFieldOffset())) );
}
EBulletInfo aBulletInfo1 = GetBulletInfo( static_cast< USHORT >(aStartIndex.GetParagraph()) );
EBulletInfo aBulletInfo2 = GetBulletInfo( static_cast< USHORT >(aEndIndex.GetParagraph()) );
if( aStartIndex.InBullet() )
{
// prepend leading bullet
String sBullet = aBulletInfo1.aText;
DBG_ASSERT(aStartIndex.GetBulletOffset() >= 0 &&
aStartIndex.GetBulletOffset() <= USHRT_MAX,
"SvxAccessibleTextIndex::GetText: index value overflow");
sBullet.Erase(0, static_cast< USHORT > (aStartIndex.GetBulletOffset()) );
sBullet += sStr;
sStr = sBullet;
}
if( aEndIndex.InBullet() )
{
// append trailing bullet
sStr += aBulletInfo2.aText;;
DBG_ASSERT(sStr.Len() - (aEndIndex.GetBulletLen() - aEndIndex.GetBulletOffset()) >= 0 &&
sStr.Len() - (aEndIndex.GetBulletLen() - aEndIndex.GetBulletOffset()) <= USHRT_MAX,
"SvxAccessibleTextIndex::GetText: index value overflow");
sStr = sStr.Copy(0, static_cast< USHORT > (sStr.Len() - (aEndIndex.GetBulletLen() - aEndIndex.GetBulletOffset())) );
}
else if( aStartIndex.GetParagraph() != aEndIndex.GetParagraph() &&
HaveTextBullet( aEndIndex.GetParagraph() ) )
{
String sBullet = aBulletInfo2.aText;
DBG_ASSERT(sBullet.Len() - (aEndIndex.GetBulletLen() - aEndIndex.GetBulletOffset()) >= 0 &&
sBullet.Len() - (aEndIndex.GetBulletLen() - aEndIndex.GetBulletOffset()) <= USHRT_MAX,
"SvxAccessibleTextIndex::GetText: index value overflow");
sBullet = sBullet.Copy(0, static_cast< USHORT > (sBullet.Len() - (aEndIndex.GetBulletLen() - aEndIndex.GetBulletOffset())) );
// insert bullet
sStr.Insert( sBullet,
static_cast< USHORT > (GetTextLen(aStartIndex.GetParagraph()) - aStartIndex.GetIndex()) );
}
return sStr;
}
SfxItemSet SvxAccessibleTextAdapter::GetAttribs( const ESelection& rSel, BOOL bOnlyHardAttrib ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
return mrTextForwarder->GetAttribs( MakeEESelection(aStartIndex, aEndIndex),
bOnlyHardAttrib );
}
SfxItemSet SvxAccessibleTextAdapter::GetParaAttribs( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetParaAttribs( nPara );
}
void SvxAccessibleTextAdapter::SetParaAttribs( USHORT nPara, const SfxItemSet& rSet )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
mrTextForwarder->SetParaAttribs( nPara, rSet );
}
void SvxAccessibleTextAdapter::RemoveAttribs( const ESelection& , sal_Bool , sal_uInt16 )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
}
void SvxAccessibleTextAdapter::GetPortions( USHORT nPara, SvUShorts& rList ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
mrTextForwarder->GetPortions( nPara, rList );
}
USHORT SvxAccessibleTextAdapter::GetItemState( const ESelection& rSel, USHORT nWhich ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
return mrTextForwarder->GetItemState( MakeEESelection(aStartIndex, aEndIndex),
nWhich );
}
USHORT SvxAccessibleTextAdapter::GetItemState( USHORT nPara, USHORT nWhich ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetItemState( nPara, nWhich );
}
void SvxAccessibleTextAdapter::QuickInsertText( const String& rText, const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
mrTextForwarder->QuickInsertText( rText,
MakeEESelection(aStartIndex, aEndIndex) );
}
void SvxAccessibleTextAdapter::QuickInsertField( const SvxFieldItem& rFld, const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
mrTextForwarder->QuickInsertField( rFld,
MakeEESelection(aStartIndex, aEndIndex) );
}
void SvxAccessibleTextAdapter::QuickSetAttribs( const SfxItemSet& rSet, const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
mrTextForwarder->QuickSetAttribs( rSet,
MakeEESelection(aStartIndex, aEndIndex) );
}
void SvxAccessibleTextAdapter::QuickInsertLineBreak( const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
mrTextForwarder->QuickInsertLineBreak( MakeEESelection(aStartIndex, aEndIndex) );
}
SfxItemPool* SvxAccessibleTextAdapter::GetPool() const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetPool();
}
XubString SvxAccessibleTextAdapter::CalcFieldValue( const SvxFieldItem& rField, USHORT nPara, USHORT nPos, Color*& rpTxtColor, Color*& rpFldColor )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->CalcFieldValue( rField, nPara, nPos, rpTxtColor, rpFldColor );
}
BOOL SvxAccessibleTextAdapter::IsValid() const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
if( mrTextForwarder )
return mrTextForwarder->IsValid();
else
return sal_False;
}
LanguageType SvxAccessibleTextAdapter::GetLanguage( USHORT nPara, USHORT nPos ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aIndex;
aIndex.SetIndex( nPara, nPos, *this );
return mrTextForwarder->GetLanguage( nPara, aIndex.GetEEIndex() );
}
USHORT SvxAccessibleTextAdapter::GetFieldCount( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetFieldCount( nPara );
}
EFieldInfo SvxAccessibleTextAdapter::GetFieldInfo( USHORT nPara, USHORT nField ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetFieldInfo( nPara, nField );
}
EBulletInfo SvxAccessibleTextAdapter::GetBulletInfo( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetBulletInfo( nPara );
}
Rectangle SvxAccessibleTextAdapter::GetCharBounds( USHORT nPara, USHORT nIndex ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aIndex;
aIndex.SetIndex( nPara, nIndex, *this );
// preset if anything goes wrong below
// n-th char in GetParagraphIndex's paragraph
Rectangle aRect = mrTextForwarder->GetCharBounds( nPara, static_cast< USHORT >( aIndex.GetEEIndex() ) );
if( aIndex.InBullet() )
{
EBulletInfo aBulletInfo = GetBulletInfo( nPara );
OutputDevice* pOutDev = GetRefDevice();
DBG_ASSERT(pOutDev!=NULL, "SvxAccessibleTextAdapter::GetCharBounds: No ref device");
// preset if anything goes wrong below
aRect = aBulletInfo.aBounds; // better than nothing
if( pOutDev )
{
AccessibleStringWrap aStringWrap( *pOutDev, aBulletInfo.aFont, aBulletInfo.aText );
if( aStringWrap.GetCharacterBounds( aIndex.GetBulletOffset(), aRect ) )
aRect.Move( aBulletInfo.aBounds.Left(), aBulletInfo.aBounds.Top() );
}
}
else
{
// handle field content manually
if( aIndex.InField() )
{
OutputDevice* pOutDev = GetRefDevice();
DBG_ASSERT(pOutDev!=NULL, "SvxAccessibleTextAdapter::GetCharBounds: No ref device");
if( pOutDev )
{
ESelection aSel = MakeEESelection( aIndex );
SvxFont aFont = EditEngine::CreateSvxFontFromItemSet( mrTextForwarder->GetAttribs( aSel ) );
AccessibleStringWrap aStringWrap( *pOutDev,
aFont,
mrTextForwarder->GetText( aSel ) );
Rectangle aStartRect = mrTextForwarder->GetCharBounds( nPara, static_cast< USHORT >( aIndex.GetEEIndex() ) );
if( !aStringWrap.GetCharacterBounds( aIndex.GetFieldOffset(), aRect ) )
aRect = aStartRect;
else
aRect.Move( aStartRect.Left(), aStartRect.Top() );
}
}
}
return aRect;
}
Rectangle SvxAccessibleTextAdapter::GetParaBounds( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
2002-05-27 15:43:06 +00:00
EBulletInfo aBulletInfo = GetBulletInfo( nPara );
if( aBulletInfo.nParagraph != EE_PARA_NOT_FOUND &&
aBulletInfo.bVisible &&
aBulletInfo.nType != SVX_NUM_BITMAP )
{
// include bullet in para bounding box
Rectangle aRect( mrTextForwarder->GetParaBounds( nPara ) );
aRect.Union( aBulletInfo.aBounds );
return aRect;
}
CWS-TOOLING: integrate CWS aw058 2008-11-19 14:27:57 +0100 aw r263994 : #i95264# corrected line primitive range calculation for hairlines 2008-11-18 11:31:52 +0100 wg r263754 : i96156 2008-11-18 11:22:38 +0100 wg r263752 : i96156 2008-11-13 11:46:49 +0100 aw r263626 : #i93169# used flag the wrong way; true means that nothing was done yet 2008-11-12 15:33:41 +0100 wg r263601 : i96156 2008-11-12 13:22:38 +0100 wg r263592 : i95527 2008-11-12 13:18:51 +0100 wg r263591 : i95527 2008-10-29 13:22:02 +0100 aw r262794 : #i93485# identified reason and with PL's help changed problem accordingly with usage of an old fallback. This will need to be optimized again by HDU when he finds the time. 2008-10-28 18:23:04 +0100 aw r262763 : unxmacxi compiler warning fixed 2008-10-28 18:17:01 +0100 aw r262762 : unxmacxi compiler warning fixed 2008-10-28 17:55:18 +0100 aw r262761 : unxmacxi compiler warning fixed 2008-10-28 13:48:22 +0100 aw r262743 : #i93485# added UnifiedAlphaPrimitive2D to VclRenderer; corrected getB2DRange implementations for hairlines which are view-dependent 2008-10-28 12:40:55 +0100 aw r262735 : #i93485# had to move Pre/PostPaint to LocalPre/PostPaint since PrePaint is a virtual window method 2008-10-27 15:54:10 +0100 aw r262679 : #i19871# adapted the call order to parent implementations in some Nbc methods in SdrPathObj due to errors in SnapRect recalculation when GluePoints are involved 2008-10-24 18:31:48 +0200 aw r262661 : #i77187# disable all buttons in bezier toolbar when move and/or resize protected object is involved 2008-10-24 18:30:16 +0200 aw r262660 : #i77187# simplified and secured model changers, added toolbar update, disabled move drag start when polygon point is selected 2008-10-24 12:57:50 +0200 hdu r262635 : #i93485# use device transformation for SAL layer 2008-10-24 12:41:37 +0200 hdu r262634 : #i93485# use device transformation for SAL layer 2008-10-23 19:46:12 +0200 aw r262630 : mac compiler warning fixed 2008-10-23 18:15:02 +0200 aw r262628 : #i93485# modified dialog previews to use prerendering 2008-10-23 18:14:27 +0200 aw r262627 : #i93485# added assert when render helper uses Window as copy source 2008-10-22 18:07:30 +0200 aw r262610 : #i95264# fixes assertion 2008-10-22 14:31:51 +0200 aw r262606 : #i89661# also enabling DrawTransparent shortcut for VCL-Renderer 2008-10-22 14:10:31 +0200 aw r262604 : #i89661# new HitTest 2D primitive to support BoundRect and HitTest calculations/tests 2008-10-22 14:09:22 +0200 aw r262603 : #i89661# new HitTest tolerance, new TextFrame selection overlay, support for HitTest geometry 2008-10-22 14:08:16 +0200 aw r262602 : #i89661# correcting old HitTest tolerance expansion 2008-10-20 15:31:48 +0200 aw r262321 : #i89661# added patch to test it 2008-10-20 11:50:31 +0200 aw r262310 : #i87762# removed no longer used icons (aw053) 2008-10-17 15:41:48 +0200 aw r262288 : #i93169#, #i93180# FormControl corrections for Primitive handling 2008-10-17 15:40:54 +0200 aw r262287 : #i93169#, #i93180# FormControl corrections for Primitive handling 2008-10-16 11:12:44 +0200 aw r262253 : #i93595# removed superfluous grid interface 2008-10-16 11:11:20 +0200 aw r262252 : #i93595# changed grid display to sub-grid usage and new defaults 2008-10-15 15:09:40 +0200 aw r262234 : #i93597# moved flag for only vertical PageBorder, added reacting on it to primitive creation 2008-10-15 15:09:09 +0200 aw r262233 : #i93597# moved flag for only vertical PageBorder 2008-10-15 15:08:46 +0200 aw r262232 : #i93597# moved flag for only vertical PageBorder, added reacting on it to primitive creation 2008-10-14 16:27:07 +0200 aw r262207 : #i93648# (flushViewObjectContacts) and #i93318# (propertyChange) 2008-10-14 16:25:10 +0200 aw r262206 : #i93318# back to old state since detecting a change is not placed well at the primitive (which is a graphical information at the itme it was fetched). Instead i will add the needed check and flush at the FormControl's VOC 2008-10-14 13:47:38 +0200 aw r262201 : #i93318# added a change listener to the XControlModel and code to make the operator== at control primitive fail
2008-11-19 14:05:59 +00:00
return mrTextForwarder->GetParaBounds( nPara );
}
MapMode SvxAccessibleTextAdapter::GetMapMode() const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetMapMode();
}
OutputDevice* SvxAccessibleTextAdapter::GetRefDevice() const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetRefDevice();
}
sal_Bool SvxAccessibleTextAdapter::GetIndexAtPoint( const Point& rPoint, USHORT& nPara, USHORT& nIndex ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
if( !mrTextForwarder->GetIndexAtPoint( rPoint, nPara, nIndex ) )
return sal_False;
SvxAccessibleTextIndex aIndex;
aIndex.SetEEIndex(nPara, nIndex, *this);
DBG_ASSERT(aIndex.GetIndex() >= 0 && aIndex.GetIndex() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nIndex = static_cast< USHORT > (aIndex.GetIndex());
EBulletInfo aBulletInfo = GetBulletInfo( nPara );
// any text bullets?
if( aBulletInfo.nParagraph != EE_PARA_NOT_FOUND &&
aBulletInfo.bVisible &&
aBulletInfo.nType != SVX_NUM_BITMAP )
{
if( aBulletInfo.aBounds.IsInside( rPoint) )
{
OutputDevice* pOutDev = GetRefDevice();
DBG_ASSERT(pOutDev!=NULL, "SvxAccessibleTextAdapter::GetIndexAtPoint: No ref device");
if( !pOutDev )
return sal_False;
AccessibleStringWrap aStringWrap( *pOutDev, aBulletInfo.aFont, aBulletInfo.aText );
Point aPoint = rPoint;
aPoint.Move( -aBulletInfo.aBounds.Left(), -aBulletInfo.aBounds.Top() );
DBG_ASSERT(aStringWrap.GetIndexAtPoint( aPoint ) >= 0 &&
aStringWrap.GetIndexAtPoint( aPoint ) <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nIndex = static_cast< USHORT > (aStringWrap.GetIndexAtPoint( aPoint ));
return sal_True;
}
}
if( aIndex.InField() )
{
OutputDevice* pOutDev = GetRefDevice();
DBG_ASSERT(pOutDev!=NULL, "SvxAccessibleTextAdapter::GetIndexAtPoint: No ref device");
if( !pOutDev )
return sal_False;
ESelection aSelection = MakeEESelection( aIndex );
SvxFont aFont = EditEngine::CreateSvxFontFromItemSet( mrTextForwarder->GetAttribs( aSelection ) );
AccessibleStringWrap aStringWrap( *pOutDev,
aFont,
mrTextForwarder->GetText( aSelection ) );
Rectangle aRect = mrTextForwarder->GetCharBounds( nPara, aIndex.GetEEIndex() );
Point aPoint = rPoint;
aPoint.Move( -aRect.Left(), -aRect.Top() );
DBG_ASSERT(aIndex.GetIndex() + aStringWrap.GetIndexAtPoint( rPoint ) >= 0 &&
aIndex.GetIndex() + aStringWrap.GetIndexAtPoint( rPoint ) <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nIndex = static_cast< USHORT >(aIndex.GetIndex() + aStringWrap.GetIndexAtPoint( aPoint ));
return sal_True;
}
return sal_True;
}
sal_Bool SvxAccessibleTextAdapter::GetWordIndices( USHORT nPara, USHORT nIndex, USHORT& nStart, USHORT& nEnd ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aIndex;
aIndex.SetIndex(nPara, nIndex, *this);
nIndex = aIndex.GetEEIndex();
if( aIndex.InBullet() )
{
DBG_ASSERT(aIndex.GetBulletLen() >= 0 &&
aIndex.GetBulletLen() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
// always treat bullet as separate word
nStart = 0;
nEnd = static_cast< USHORT > (aIndex.GetBulletLen());
return sal_True;
}
if( aIndex.InField() )
{
DBG_ASSERT(aIndex.GetIndex() - aIndex.GetFieldOffset() >= 0 &&
aIndex.GetIndex() - aIndex.GetFieldOffset() <= USHRT_MAX &&
nStart + aIndex.GetFieldLen() >= 0 &&
nStart + aIndex.GetFieldLen() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
// always treat field as separate word
// TODO: to circumvent this, _we_ would have to do the break iterator stuff!
nStart = static_cast< USHORT > (aIndex.GetIndex() - aIndex.GetFieldOffset());
nEnd = static_cast< USHORT > (nStart + aIndex.GetFieldLen());
return sal_True;
}
if( !mrTextForwarder->GetWordIndices( nPara, nIndex, nStart, nEnd ) )
return sal_False;
aIndex.SetEEIndex( nPara, nStart, *this );
DBG_ASSERT(aIndex.GetIndex() >= 0 &&
aIndex.GetIndex() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nStart = static_cast< USHORT > (aIndex.GetIndex());
aIndex.SetEEIndex( nPara, nEnd, *this );
DBG_ASSERT(aIndex.GetIndex() >= 0 &&
aIndex.GetIndex() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nEnd = static_cast< USHORT > (aIndex.GetIndex());
return sal_True;
}
sal_Bool SvxAccessibleTextAdapter::GetAttributeRun( USHORT& nStartIndex, USHORT& nEndIndex, USHORT nPara, USHORT nIndex ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aIndex;
aIndex.SetIndex(nPara, nIndex, *this);
nIndex = aIndex.GetEEIndex();
if( aIndex.InBullet() )
{
DBG_ASSERT(aIndex.GetBulletLen() >= 0 &&
aIndex.GetBulletLen() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
// always treat bullet as distinct attribute
nStartIndex = 0;
nEndIndex = static_cast< USHORT > (aIndex.GetBulletLen());
return sal_True;
}
if( aIndex.InField() )
{
DBG_ASSERT(aIndex.GetIndex() - aIndex.GetFieldOffset() >= 0 &&
aIndex.GetIndex() - aIndex.GetFieldOffset() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
// always treat field as distinct attribute
nStartIndex = static_cast< USHORT > (aIndex.GetIndex() - aIndex.GetFieldOffset());
nEndIndex = static_cast< USHORT > (nStartIndex + aIndex.GetFieldLen());
return sal_True;
}
if( !mrTextForwarder->GetAttributeRun( nStartIndex, nEndIndex, nPara, nIndex ) )
return sal_False;
aIndex.SetEEIndex( nPara, nStartIndex, *this );
DBG_ASSERT(aIndex.GetIndex() >= 0 &&
aIndex.GetIndex() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nStartIndex = static_cast< USHORT > (aIndex.GetIndex());
aIndex.SetEEIndex( nPara, nEndIndex, *this );
DBG_ASSERT(aIndex.GetIndex() >= 0 &&
aIndex.GetIndex() <= USHRT_MAX,
"SvxAccessibleTextIndex::SetIndex: index value overflow");
nEndIndex = static_cast< USHORT > (aIndex.GetIndex());
return sal_True;
}
USHORT SvxAccessibleTextAdapter::GetLineCount( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetLineCount( nPara );
}
USHORT SvxAccessibleTextAdapter::GetLineLen( USHORT nPara, USHORT nLine ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
2002-05-27 15:43:06 +00:00
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
USHORT nCurrLine;
2002-06-04 17:44:27 +00:00
USHORT nCurrIndex, nLastIndex;
for( nCurrLine=0, nCurrIndex=0, nLastIndex=0; nCurrLine<=nLine; ++nCurrLine )
2002-05-27 15:43:06 +00:00
{
nLastIndex = nCurrIndex;
nCurrIndex =
nCurrIndex + mrTextForwarder->GetLineLen( nPara, nCurrLine );
2002-05-27 15:43:06 +00:00
}
2002-05-27 15:43:06 +00:00
aEndIndex.SetEEIndex( nPara, nCurrIndex, *this );
if( nLine > 0 )
{
aStartIndex.SetEEIndex( nPara, nLastIndex, *this );
return static_cast< USHORT >(aEndIndex.GetIndex() - aStartIndex.GetIndex());
}
else
return static_cast< USHORT >(aEndIndex.GetIndex());
}
sal_Bool SvxAccessibleTextAdapter::Delete( const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
return mrTextForwarder->Delete( MakeEESelection(aStartIndex, aEndIndex ) );
}
sal_Bool SvxAccessibleTextAdapter::InsertText( const String& rStr, const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
return mrTextForwarder->InsertText( rStr, MakeEESelection(aStartIndex, aEndIndex) );
}
sal_Bool SvxAccessibleTextAdapter::QuickFormatDoc( BOOL bFull )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->QuickFormatDoc( bFull );
}
sal_Int16 SvxAccessibleTextAdapter::GetDepth( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->GetDepth( nPara );
}
sal_Bool SvxAccessibleTextAdapter::SetDepth( USHORT nPara, sal_Int16 nNewDepth )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
return mrTextForwarder->SetDepth( nPara, nNewDepth );
}
void SvxAccessibleTextAdapter::SetForwarder( SvxTextForwarder& rForwarder )
{
mrTextForwarder = &rForwarder;
}
sal_Bool SvxAccessibleTextAdapter::HaveImageBullet( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
EBulletInfo aBulletInfo = GetBulletInfo( nPara );
if( aBulletInfo.nParagraph != EE_PARA_NOT_FOUND &&
aBulletInfo.bVisible &&
aBulletInfo.nType == SVX_NUM_BITMAP )
{
return sal_True;
}
else
{
return sal_False;
}
}
sal_Bool SvxAccessibleTextAdapter::HaveTextBullet( USHORT nPara ) const
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
EBulletInfo aBulletInfo = GetBulletInfo( nPara );
if( aBulletInfo.nParagraph != EE_PARA_NOT_FOUND &&
aBulletInfo.bVisible &&
aBulletInfo.nType != SVX_NUM_BITMAP )
{
return sal_True;
}
else
{
return sal_False;
}
}
sal_Bool SvxAccessibleTextAdapter::IsEditable( const ESelection& rSel )
{
DBG_ASSERT(mrTextForwarder, "SvxAccessibleTextAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *this );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *this );
// normalize selection
if( rSel.nStartPara > rSel.nEndPara ||
(rSel.nStartPara == rSel.nEndPara && rSel.nStartPos > rSel.nEndPos) )
{
::std::swap( aStartIndex, aEndIndex );
}
return aStartIndex.IsEditableRange( aEndIndex );
}
const SfxItemSet * SvxAccessibleTextAdapter::GetEmptyItemSetPtr()
{
DBG_ERROR( "not implemented" );
return 0;
}
void SvxAccessibleTextAdapter::AppendParagraph()
{
DBG_ERROR( "not implemented" );
}
xub_StrLen SvxAccessibleTextAdapter::AppendTextPortion( USHORT, const String &, const SfxItemSet & )
{
DBG_ERROR( "not implemented" );
return 0;
}
void SvxAccessibleTextAdapter::CopyText(const SvxTextForwarder&)
{
DBG_ERROR( "not implemented" );
}
//---------------------------------------------------------------------------------------
SvxAccessibleTextEditViewAdapter::SvxAccessibleTextEditViewAdapter()
{
}
SvxAccessibleTextEditViewAdapter::~SvxAccessibleTextEditViewAdapter()
{
}
BOOL SvxAccessibleTextEditViewAdapter::IsValid() const
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
if( mrViewForwarder )
return mrViewForwarder->IsValid();
else
return sal_False;
}
Rectangle SvxAccessibleTextEditViewAdapter::GetVisArea() const
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
return mrViewForwarder->GetVisArea();
}
Point SvxAccessibleTextEditViewAdapter::LogicToPixel( const Point& rPoint, const MapMode& rMapMode ) const
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
return mrViewForwarder->LogicToPixel(rPoint, rMapMode);
}
Point SvxAccessibleTextEditViewAdapter::PixelToLogic( const Point& rPoint, const MapMode& rMapMode ) const
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
return mrViewForwarder->PixelToLogic(rPoint, rMapMode);
}
sal_Bool SvxAccessibleTextEditViewAdapter::GetSelection( ESelection& rSel ) const
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
ESelection aSelection;
if( !mrViewForwarder->GetSelection( aSelection ) )
return sal_False;
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetEEIndex( aSelection.nStartPara, aSelection.nStartPos, *mrTextForwarder );
aEndIndex.SetEEIndex( aSelection.nEndPara, aSelection.nEndPos, *mrTextForwarder );
DBG_ASSERT(aStartIndex.GetIndex() >= 0 && aStartIndex.GetIndex() <= USHRT_MAX &&
aEndIndex.GetIndex() >= 0 && aEndIndex.GetIndex() <= USHRT_MAX,
"SvxAccessibleTextEditViewAdapter::GetSelection: index value overflow");
rSel = ESelection( aStartIndex.GetParagraph(), static_cast< USHORT > (aStartIndex.GetIndex()),
aEndIndex.GetParagraph(), static_cast< USHORT > (aEndIndex.GetIndex()) );
return sal_True;
}
sal_Bool SvxAccessibleTextEditViewAdapter::SetSelection( const ESelection& rSel )
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
SvxAccessibleTextIndex aStartIndex;
SvxAccessibleTextIndex aEndIndex;
aStartIndex.SetIndex( rSel.nStartPara, rSel.nStartPos, *mrTextForwarder );
aEndIndex.SetIndex( rSel.nEndPara, rSel.nEndPos, *mrTextForwarder );
return mrViewForwarder->SetSelection( MakeEESelection(aStartIndex, aEndIndex) );
}
sal_Bool SvxAccessibleTextEditViewAdapter::Copy()
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
return mrViewForwarder->Copy();
}
sal_Bool SvxAccessibleTextEditViewAdapter::Cut()
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
return mrViewForwarder->Cut();
}
sal_Bool SvxAccessibleTextEditViewAdapter::Paste()
{
DBG_ASSERT(mrViewForwarder, "SvxAccessibleTextEditViewAdapter: no forwarder");
return mrViewForwarder->Paste();
}
void SvxAccessibleTextEditViewAdapter::SetForwarder( SvxEditViewForwarder& rForwarder,
SvxAccessibleTextAdapter& rTextForwarder )
{
mrViewForwarder = &rForwarder;
mrTextForwarder = &rTextForwarder;
}