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

965 lines
32 KiB
C++
Raw Normal View History

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
re-base on ALv2 code. Includes: Patches contributed by Oliver-Rainer Wittmann sw34bf06: #i117783# - Writer's implementation of XPagePrintable - apply print settings to new printing routines http://svn.apache.org/viewvc?view=revision&revision=1172115 sw34bf06: #o12311627# use <rtl_random> methods to create unique ids for list styles and list ids http://svn.apache.org/viewvc?view=revision&revision=1172112 sw34bf06 #i114725#,#i115828# - method <SwDoc::ClearDoc()> - clear list structures completely http://svn.apache.org/viewvc?view=revision&revision=1172122 i#118572 - remove ui string and help content regarding usage of Java Mail in Writer's Mail Merge as Java Mail is not used. http://svn.apache.org/viewvc?view=revision&revision=1197035 Patches contributed by Mathias Bauer cws mba34issues01: #i117718#: provide filter name in case storage of medium does not allow to detect one http://svn.apache.org/viewvc?view=revision&revision=1172350 cws mba34issues01: #i117721#: directly provide parameters retrieved from SfxMedium http://svn.apache.org/viewvc?view=revision&revision=1172353 gnumake4 work variously http://svn.apache.org/viewvc?view=revision&revision=1394707 http://svn.apache.org/viewvc?view=revision&revision=1394326 http://svn.apache.org/viewvc?view=revision&revision=1396797 http://svn.apache.org/viewvc?view=revision&revision=1397315 cws mba34issues01: #i117723#: convert assertion into trace http://svn.apache.org/viewvc?view=revision&revision=1172355 cws mba34issues01: #i117699#: keep layout alive until swdoc dies http://svn.apache.org/viewvc?view=revision&revision=1172362 cws mba34issues01: #i117943#: missing color attributes in RTF clipboard http://svn.apache.org/viewvc?view=revision&revision=1172363 Patch contributed by Henning Brinkmann imported patch i#103878 http://svn.apache.org/viewvc?view=revision&revision=1172109 Patches contributed by Michael Stahl sw34bf06: #i117955#: WW8 export: disable storing of section breaks in endnotes http://svn.apache.org/viewvc?view=revision&revision=1172119 Patch contributed by imacat Fixed the Asian language work count. http://svn.apache.org/viewvc?view=revision&revision=1241345 Patch contributed by Pedro Giffuni i#20878 - Add comment with BZ issue for reference. http://svn.apache.org/viewvc?view=revision&revision=1244517 Patch contributed by Andre Fischer Do not add targets for junit tests when junit is disabled. http://svn.apache.org/viewvc?view=revision&revision=1241508 add writerperfect dependency.
2011-03-31 10:05:04 +02: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-02-04 13:10:18 +00:00
#include <vcl/window.hxx>
#include <rootfrm.hxx>
#include <com/sun/star/accessibility/AccessibleRole.hpp>
#include <com/sun/star/accessibility/AccessibleStateType.hpp>
2002-02-18 15:27:35 +00:00
#include <com/sun/star/beans/XPropertyChangeListener.hpp>
#include <com/sun/star/accessibility/AccessibleEventId.hpp>
2002-02-05 14:52:06 +00:00
#include <unotools/accessiblestatesethelper.hxx>
#include <sfx2/viewsh.hxx>
#include <osl/mutex.hxx>
2002-02-04 13:10:18 +00:00
#include <vcl/svapp.hxx>
#include <comphelper/servicehelper.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <viewsh.hxx>
#include <doc.hxx>
#include <accmap.hxx>
2002-02-04 13:10:18 +00:00
#include <accdoc.hxx>
#include "access.hrc"
2002-05-22 10:48:43 +00:00
#include <pagefrm.hxx>
#include <editeng/brushitem.hxx>
#include <swatrset.hxx>
#include <frmatr.hxx>
#include "unostyle.hxx"
#include "docsh.hxx"
#include <crsrsh.hxx>
#include "fesh.hxx"
#include <fmtclds.hxx>
#include <flyfrm.hxx>
#include <colfrm.hxx>
#include <txtfrm.hxx>
#include <sectfrm.hxx>
#include <section.hxx>
#include <svx/unoapi.hxx>
#include <swmodule.hxx>
#include <svtools/colorcfg.hxx>
#include <fmtanchr.hxx>
#include <viewimp.hxx>
#include <dview.hxx>
#include <dcontact.hxx>
#include <svx/svdmark.hxx>
const sal_Char sServiceName[] = "com.sun.star.text.AccessibleTextDocumentView";
const sal_Char sImplementationName[] = "com.sun.star.comp.Writer.SwAccessibleDocumentView";
2002-02-04 13:10:18 +00:00
using namespace ::com::sun::star;
using namespace ::com::sun::star::accessibility;
2002-02-04 13:10:18 +00:00
using lang::IndexOutOfBoundsException;
2002-05-22 10:48:43 +00:00
// SwAccessibleDocumentBase: base class for SwAccessibleDocument and
// SwAccessiblePreview
2002-02-05 14:52:06 +00:00
SwAccessibleDocumentBase::SwAccessibleDocumentBase ( SwAccessibleMap *_pMap ) :
SwAccessibleContext( _pMap, AccessibleRole::DOCUMENT_TEXT,
_pMap->GetShell()->GetLayout() ),
mxParent( _pMap->GetShell()->GetWin()->GetAccessibleParentWindow()->GetAccessible() ),
mpChildWin( 0 )
2002-02-04 13:10:18 +00:00
{
}
2002-05-22 10:48:43 +00:00
SwAccessibleDocumentBase::~SwAccessibleDocumentBase()
2002-02-04 13:10:18 +00:00
{
}
2002-05-22 10:48:43 +00:00
void SwAccessibleDocumentBase::SetVisArea()
2002-04-11 13:04:40 +00:00
{
SolarMutexGuard aGuard;
2002-04-11 13:04:40 +00:00
SwRect aOldVisArea( GetVisArea() );
const SwRect& rNewVisArea = GetMap()->GetVisArea();
if( aOldVisArea != rNewVisArea )
{
SwAccessibleFrame::SetVisArea( GetMap()->GetVisArea() );
2011-01-30 04:19:53 +09:00
// #i58139# - showing state of document view needs also be updated.
// Thus, call method <Scrolled(..)> instead of <ChildrenScrolled(..)>
// ChildrenScrolled( GetFrm(), aOldVisArea );
Scrolled( aOldVisArea );
2002-04-11 13:04:40 +00:00
}
}
void SwAccessibleDocumentBase::AddChild( vcl::Window *pWin, bool bFireEvent )
{
SolarMutexGuard aGuard;
OSL_ENSURE( !mpChildWin, "only one child window is supported" );
if( !mpChildWin )
{
mpChildWin = pWin;
if( bFireEvent )
{
AccessibleEventObject aEvent;
aEvent.EventId = AccessibleEventId::CHILD;
aEvent.NewValue <<= mpChildWin->GetAccessible();
FireAccessibleEvent( aEvent );
}
}
}
void SwAccessibleDocumentBase::RemoveChild( vcl::Window *pWin )
{
SolarMutexGuard aGuard;
OSL_ENSURE( !mpChildWin || pWin == mpChildWin, "invalid child window to remove" );
if( mpChildWin && pWin == mpChildWin )
{
AccessibleEventObject aEvent;
aEvent.EventId = AccessibleEventId::CHILD;
aEvent.OldValue <<= mpChildWin->GetAccessible();
FireAccessibleEvent( aEvent );
mpChildWin = 0;
}
}
sal_Int32 SAL_CALL SwAccessibleDocumentBase::getAccessibleChildCount( void )
throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
// CHECK_FOR_DEFUNC is called by parent
sal_Int32 nChildren = SwAccessibleContext::getAccessibleChildCount();
if( !IsDisposing() && mpChildWin )
nChildren++;
return nChildren;
}
uno::Reference< XAccessible> SAL_CALL
SwAccessibleDocumentBase::getAccessibleChild( sal_Int32 nIndex )
throw (uno::RuntimeException,
lang::IndexOutOfBoundsException, std::exception)
{
SolarMutexGuard aGuard;
if( mpChildWin )
{
CHECK_FOR_DEFUNC( XAccessibleContext )
if ( nIndex == GetChildCount( *(GetMap()) ) )
{
return mpChildWin->GetAccessible();
}
}
return SwAccessibleContext::getAccessibleChild( nIndex );
}
uno::Reference< XAccessible> SAL_CALL SwAccessibleDocumentBase::getAccessibleParent (void)
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
return mxParent;
2002-02-04 13:10:18 +00:00
}
2002-05-22 10:48:43 +00:00
sal_Int32 SAL_CALL SwAccessibleDocumentBase::getAccessibleIndexInParent (void)
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
SolarMutexGuard aGuard;
2002-02-04 13:10:18 +00:00
uno::Reference < XAccessibleContext > xAcc( mxParent->getAccessibleContext() );
uno::Reference < XAccessible > xThis( this );
2002-02-04 13:10:18 +00:00
sal_Int32 nCount = xAcc->getAccessibleChildCount();
for( sal_Int32 i=0; i < nCount; i++ )
{
try
{
if( xAcc->getAccessibleChild( i ) == xThis )
return i;
}
catch(const ::com::sun::star::lang::IndexOutOfBoundsException &)
{
return -1L;
}
2002-02-04 13:10:18 +00:00
}
return -1L;
}
OUString SAL_CALL SwAccessibleDocumentBase::getAccessibleDescription (void)
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
return GetResource( STR_ACCESS_DOC_DESC );
}
OUString SAL_CALL SwAccessibleDocumentBase::getAccessibleName (void)
throw (::com::sun::star::uno::RuntimeException, std::exception)
{
SolarMutexGuard g;
OUString sAccName = GetResource( STR_ACCESS_DOC_WORDPROCESSING );
SwDoc *pDoc = GetMap() ? GetShell()->GetDoc() : 0;
if ( pDoc )
{
OUString sFileName = pDoc->getDocAccTitle();
if ( sFileName.isEmpty() )
{
SwDocShell* pDocSh = pDoc->GetDocShell();
if ( pDocSh )
{
sFileName = pDocSh->GetTitle( SFX_TITLE_APINAME );
}
}
OUString sReadOnly;
if(pDoc->getDocReadOnly())
{
sReadOnly = GetResource( STR_ACCESS_DOC_WORDPROCESSING_READONLY );
}
if ( !sFileName.isEmpty() )
{
sAccName = sFileName + sReadOnly + " - " + sAccName;
}
}
return sAccName;
}
2002-05-22 10:48:43 +00:00
awt::Rectangle SAL_CALL SwAccessibleDocumentBase::getBounds()
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
try
{
SolarMutexGuard aGuard;
2002-02-04 13:10:18 +00:00
vcl::Window *pWin = GetWindow();
2002-02-04 13:10:18 +00:00
CHECK_FOR_WINDOW( XAccessibleComponent, pWin )
2002-02-04 13:10:18 +00:00
Rectangle aPixBounds( pWin->GetWindowExtentsRelative( pWin->GetAccessibleParentWindow() ) );
awt::Rectangle aBox( aPixBounds.Left(), aPixBounds.Top(),
aPixBounds.GetWidth(), aPixBounds.GetHeight() );
2002-02-04 13:10:18 +00:00
return aBox;
}
catch(const ::com::sun::star::lang::IndexOutOfBoundsException &)
{
return awt::Rectangle();
}
2002-02-04 13:10:18 +00:00
}
2002-05-22 10:48:43 +00:00
awt::Point SAL_CALL SwAccessibleDocumentBase::getLocation()
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
SolarMutexGuard aGuard;
2002-02-04 13:10:18 +00:00
vcl::Window *pWin = GetWindow();
2002-02-04 13:10:18 +00:00
CHECK_FOR_WINDOW( XAccessibleComponent, pWin )
2002-04-17 13:07:39 +00:00
Point aPixPos( pWin->GetWindowExtentsRelative( pWin->GetAccessibleParentWindow() ).TopLeft() );
awt::Point aLoc( aPixPos.getX(), aPixPos.getY() );
2002-02-04 13:10:18 +00:00
return aLoc;
}
2002-05-22 10:48:43 +00:00
::com::sun::star::awt::Point SAL_CALL SwAccessibleDocumentBase::getLocationOnScreen()
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
SolarMutexGuard aGuard;
2002-02-04 13:10:18 +00:00
vcl::Window *pWin = GetWindow();
2002-02-04 13:10:18 +00:00
CHECK_FOR_WINDOW( XAccessibleComponent, pWin )
Point aPixPos( pWin->GetWindowExtentsRelative( 0 ).TopLeft() );
awt::Point aLoc( aPixPos.getX(), aPixPos.getY() );
2002-02-04 13:10:18 +00:00
return aLoc;
}
2002-05-22 10:48:43 +00:00
::com::sun::star::awt::Size SAL_CALL SwAccessibleDocumentBase::getSize()
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
SolarMutexGuard aGuard;
2002-02-04 13:10:18 +00:00
vcl::Window *pWin = GetWindow();
2002-02-04 13:10:18 +00:00
CHECK_FOR_WINDOW( XAccessibleComponent, pWin )
Size aPixSize( pWin->GetWindowExtentsRelative( 0 ).GetSize() );
awt::Size aSize( aPixSize.Width(), aPixSize.Height() );
return aSize;
}
sal_Bool SAL_CALL SwAccessibleDocumentBase::containsPoint(
const awt::Point& aPoint )
throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
vcl::Window *pWin = GetWindow();
CHECK_FOR_WINDOW( XAccessibleComponent, pWin )
2002-10-02 07:48:09 +00:00
Rectangle aPixBounds( pWin->GetWindowExtentsRelative( 0 ) );
aPixBounds.Move(-aPixBounds.Left(), -aPixBounds.Top());
Point aPixPoint( aPoint.X, aPoint.Y );
return aPixBounds.IsInside( aPixPoint );
}
uno::Reference< XAccessible > SAL_CALL SwAccessibleDocumentBase::getAccessibleAtPoint(
const awt::Point& aPoint )
throw (uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
if( mpChildWin )
{
CHECK_FOR_DEFUNC( XAccessibleComponent )
vcl::Window *pWin = GetWindow();
CHECK_FOR_WINDOW( XAccessibleComponent, pWin )
2002-02-04 13:10:18 +00:00
Point aPixPoint( aPoint.X, aPoint.Y ); // px rel to window
if( mpChildWin->GetWindowExtentsRelative( pWin ).IsInside( aPixPoint ) )
return mpChildWin->GetAccessible();
}
return SwAccessibleContext::getAccessibleAtPoint( aPoint );
}
2002-05-22 10:48:43 +00:00
// SwAccessibeDocument
void SwAccessibleDocument::GetStates(
::utl::AccessibleStateSetHelper& rStateSet )
{
SwAccessibleContext::GetStates( rStateSet );
// MULTISELECTABLE
rStateSet.AddState( AccessibleStateType::MULTI_SELECTABLE );
rStateSet.AddState( AccessibleStateType::MANAGES_DESCENDANTS );
2002-05-22 10:48:43 +00:00
}
SwAccessibleDocument::SwAccessibleDocument ( SwAccessibleMap* pInitMap ) :
SwAccessibleDocumentBase( pInitMap ),
maSelectionHelper( *this )
2002-05-22 10:48:43 +00:00
{
SetName( GetResource( STR_ACCESS_DOC_NAME ) );
vcl::Window *pWin = pInitMap->GetShell()->GetWin();
if( pWin )
{
pWin->AddChildEventListener( LINK( this, SwAccessibleDocument, WindowChildEventListener ));
sal_uInt16 nCount = pWin->GetChildCount();
for( sal_uInt16 i=0; i < nCount; i++ )
{
vcl::Window* pChildWin = pWin->GetChild( i );
if( pChildWin &&
AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() )
AddChild( pChildWin, false );
}
}
2002-05-22 10:48:43 +00:00
}
SwAccessibleDocument::~SwAccessibleDocument()
{
vcl::Window *pWin = GetMap() ? GetMap()->GetShell()->GetWin() : 0;
if( pWin )
pWin->RemoveChildEventListener( LINK( this, SwAccessibleDocument, WindowChildEventListener ));
2002-05-22 10:48:43 +00:00
}
void SwAccessibleDocument::Dispose( bool bRecursive )
{
OSL_ENSURE( GetFrm() && GetMap(), "already disposed" );
vcl::Window *pWin = GetMap() ? GetMap()->GetShell()->GetWin() : 0;
if( pWin )
pWin->RemoveChildEventListener( LINK( this, SwAccessibleDocument, WindowChildEventListener ));
SwAccessibleContext::Dispose( bRecursive );
}
IMPL_LINK( SwAccessibleDocument, WindowChildEventListener, VclSimpleEvent*, pEvent )
{
OSL_ENSURE( pEvent && pEvent->ISA( VclWindowEvent ), "Unknown WindowEvent!" );
if ( pEvent && pEvent->ISA( VclWindowEvent ) )
{
VclWindowEvent *pVclEvent = static_cast< VclWindowEvent * >( pEvent );
OSL_ENSURE( pVclEvent->GetWindow(), "Window???" );
switch ( pVclEvent->GetId() )
{
case VCLEVENT_WINDOW_SHOW: // send create on show for direct accessible children
{
vcl::Window* pChildWin = static_cast< vcl::Window* >( pVclEvent->GetData() );
if( pChildWin && AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() )
{
AddChild( pChildWin );
}
}
break;
case VCLEVENT_WINDOW_HIDE: // send destroy on hide for direct accessible children
{
vcl::Window* pChildWin = static_cast< vcl::Window* >( pVclEvent->GetData() );
if( pChildWin && AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() )
{
RemoveChild( pChildWin );
}
}
break;
2002-06-14 10:15:54 +00:00
case VCLEVENT_OBJECT_DYING: // send destroy on hide for direct accessible children
{
vcl::Window* pChildWin = pVclEvent->GetWindow();
if( pChildWin && AccessibleRole::EMBEDDED_OBJECT == pChildWin->GetAccessibleRole() )
{
RemoveChild( pChildWin );
}
}
break;
}
}
return 0;
}
2002-05-22 10:48:43 +00:00
2002-02-04 13:10:18 +00:00
OUString SAL_CALL SwAccessibleDocument::getImplementationName()
throw( uno::RuntimeException, std::exception )
2002-02-04 13:10:18 +00:00
{
return OUString(sImplementationName);
2002-02-04 13:10:18 +00:00
}
sal_Bool SAL_CALL SwAccessibleDocument::supportsService(const OUString& sTestServiceName)
throw (uno::RuntimeException, std::exception)
2002-02-04 13:10:18 +00:00
{
return cppu::supportsService(this, sTestServiceName);
2002-02-04 13:10:18 +00:00
}
uno::Sequence< OUString > SAL_CALL SwAccessibleDocument::getSupportedServiceNames()
throw( uno::RuntimeException, std::exception )
2002-02-04 13:10:18 +00:00
{
uno::Sequence< OUString > aRet(2);
2002-02-04 13:10:18 +00:00
OUString* pArray = aRet.getArray();
pArray[0] = sServiceName;
pArray[1] = sAccessibleServiceName;
2002-02-04 13:10:18 +00:00
return aRet;
}
// XInterface
uno::Any SwAccessibleDocument::queryInterface(
const uno::Type& rType )
throw ( uno::RuntimeException, std::exception )
{
uno::Any aRet;
if ( rType == cppu::UnoType<XAccessibleSelection>::get() )
{
uno::Reference<XAccessibleSelection> aSelect = this;
aRet <<= aSelect;
}
//Add XEventListener interface support.
else if ( (rType == cppu::UnoType<com::sun::star::document::XEventListener>::get()) )
{
uno::Reference<com::sun::star::document::XEventListener> aSelect = this;
aRet <<= aSelect;
}
else if ( rType == cppu::UnoType<XAccessibleExtendedAttributes>::get())
{
uno::Reference<XAccessibleExtendedAttributes> aAttribute = this;
aRet <<= aAttribute;
}
else if(rType == cppu::UnoType<XAccessibleGetAccFlowTo>::get())
{
uno::Reference<XAccessibleGetAccFlowTo> AccFlowTo = this;
aRet <<= AccFlowTo;
}
else
aRet = SwAccessibleContext::queryInterface( rType );
return aRet;
}
// XTypeProvider
uno::Sequence< uno::Type > SAL_CALL SwAccessibleDocument::getTypes()
throw(uno::RuntimeException, std::exception)
{
uno::Sequence< uno::Type > aTypes( SwAccessibleDocumentBase::getTypes() );
sal_Int32 nIndex = aTypes.getLength();
//Reset types memory alloc
//aTypes.realloc( nIndex + 1 );
aTypes.realloc( nIndex + 2 );
uno::Type* pTypes = aTypes.getArray();
pTypes[nIndex] = cppu::UnoType<XAccessibleSelection>::get();
//Add XEventListener interface support.
pTypes[nIndex + 1 ] = cppu::UnoType<com::sun::star::document::XEventListener>::get();
return aTypes;
}
uno::Sequence< sal_Int8 > SAL_CALL SwAccessibleDocument::getImplementationId()
throw(uno::RuntimeException, std::exception)
{
return css::uno::Sequence<sal_Int8>();
}
// XAccessibleSelection
void SwAccessibleDocument::selectAccessibleChild(
sal_Int32 nChildIndex )
throw ( lang::IndexOutOfBoundsException,
uno::RuntimeException, std::exception )
{
maSelectionHelper.selectAccessibleChild(nChildIndex);
}
sal_Bool SwAccessibleDocument::isAccessibleChildSelected(
sal_Int32 nChildIndex )
throw ( lang::IndexOutOfBoundsException,
uno::RuntimeException, std::exception )
{
return maSelectionHelper.isAccessibleChildSelected(nChildIndex);
}
void SwAccessibleDocument::clearAccessibleSelection( )
throw ( uno::RuntimeException, std::exception )
{
maSelectionHelper.clearAccessibleSelection();
}
void SwAccessibleDocument::selectAllAccessibleChildren( )
throw ( uno::RuntimeException, std::exception )
{
maSelectionHelper.selectAllAccessibleChildren();
}
sal_Int32 SwAccessibleDocument::getSelectedAccessibleChildCount( )
throw ( uno::RuntimeException, std::exception )
{
return maSelectionHelper.getSelectedAccessibleChildCount();
}
uno::Reference<XAccessible> SwAccessibleDocument::getSelectedAccessibleChild(
sal_Int32 nSelectedChildIndex )
throw ( lang::IndexOutOfBoundsException,
uno::RuntimeException, std::exception)
{
return maSelectionHelper.getSelectedAccessibleChild(nSelectedChildIndex);
}
2011-01-30 04:19:53 +09:00
// index has to be treated as global child index.
void SwAccessibleDocument::deselectAccessibleChild(
sal_Int32 nChildIndex )
throw ( lang::IndexOutOfBoundsException,
uno::RuntimeException, std::exception )
{
maSelectionHelper.deselectAccessibleChild( nChildIndex );
}
//Implement XEventListener interfaces
void SAL_CALL SwAccessibleDocument::notifyEvent( const ::com::sun::star::document::EventObject& Event )
throw (::com::sun::star::uno::RuntimeException, std::exception)
{
SolarMutexGuard g;
if ( Event.EventName == "FirstPageShows" )
{
FireStateChangedEvent( AccessibleStateType::FOCUSED,true );
}
else if ( Event.EventName == "LoadFinished" )
{
// IA2 CWS. MT: OFFSCREEN == !SHOWING, should stay consistent
// FireStateChangedEvent( AccessibleStateType::OFFSCREEN,true );
// MT: LoadFinished => Why not SHOWING == TRUE?
FireStateChangedEvent( AccessibleStateType::SHOWING,false );
}
else if ( Event.EventName == "FormatFinished" )
{
FireStateChangedEvent( AccessibleStateType::BUSY,false );
// FireStateChangedEvent( AccessibleStateType::OFFSCREEN,false );
FireStateChangedEvent( AccessibleStateType::SHOWING,true );
}
else
{
isIfAsynLoad = false;
}
}
void SAL_CALL SwAccessibleDocument::disposing( const ::com::sun::star::lang::EventObject& )
throw (::com::sun::star::uno::RuntimeException, std::exception)
{
}
uno::Any SAL_CALL SwAccessibleDocument::getExtendedAttributes()
throw (::com::sun::star::lang::IndexOutOfBoundsException,
::com::sun::star::uno::RuntimeException,
std::exception)
{
SolarMutexGuard g;
uno::Any anyAtrribute;
SwDoc *pDoc = GetMap() ? GetShell()->GetDoc() : 0;
if (!pDoc)
return anyAtrribute;
SwCrsrShell* pCrsrShell = GetCrsrShell();
if( !pCrsrShell )
return anyAtrribute;
SwFEShell* pFEShell = pCrsrShell->ISA( SwFEShell )
? static_cast<SwFEShell*>( pCrsrShell )
: 0;
OUString sAttrName;
OUString sValue;
sal_uInt16 nPage, nLogPage;
OUString sDisplay;
if( pFEShell )
{
pFEShell->GetPageNumber(-1,true,nPage,nLogPage,sDisplay);
sAttrName = "page-name:";
sValue = sAttrName + sDisplay ;
sAttrName = ";page-number:";
sValue += sAttrName;
sValue += OUString::number( nPage ) ;
sAttrName = ";total-pages:";
sValue += sAttrName;
sValue += OUString::number( pCrsrShell->GetPageCnt() ) ;
sValue += ";";
sAttrName = "line-number:";
SwCntntFrm* pCurrFrm = pCrsrShell->GetCurrFrm();
SwPageFrm* pCurrPage=static_cast<SwFrm*>(pCurrFrm)->FindPageFrm();
sal_uLong nLineNum = 0;
SwTxtFrm* pTxtFrm = NULL;
SwTxtFrm* pCurrTxtFrm = NULL;
pTxtFrm = static_cast< SwTxtFrm* >(static_cast< SwPageFrm* > (pCurrPage)->ContainsCntnt());
if (pCurrFrm->IsInFly())//such as, graphic,chart
{
SwFlyFrm *pFlyFrm = pCurrFrm->FindFlyFrm();
const SwFmtAnchor& rAnchor = pFlyFrm->GetFmt()->GetAnchor();
RndStdIds eAnchorId = rAnchor.GetAnchorId();
if(eAnchorId == FLY_AS_CHAR)
{
const SwFrm *pSwFrm = pFlyFrm->GetAnchorFrm();
if(pSwFrm->IsTxtFrm())
pCurrTxtFrm = const_cast<SwTxtFrm*>(static_cast<const SwTxtFrm*>(pSwFrm));
}
}
else
pCurrTxtFrm = const_cast<SwTxtFrm*>(static_cast<const SwTxtFrm* >(pCurrFrm));
//check whether the text frame where the Graph/OLE/Frame anchored is in the Header/Footer
SwFrm* pFrm = pCurrTxtFrm;
while ( pFrm && !pFrm->IsHeaderFrm() && !pFrm->IsFooterFrm() )
pFrm = pFrm->GetUpper();
if ( pFrm )
pCurrTxtFrm = NULL;
//check shape
if(pCrsrShell->Imp()->GetDrawView())
{
const SdrMarkList &rMrkList = pCrsrShell->Imp()->GetDrawView()->GetMarkedObjectList();
for ( size_t i = 0; i < rMrkList.GetMarkCount(); ++i )
{
SdrObject *pObj = rMrkList.GetMark(i)->GetMarkedSdrObj();
SwFrmFmt* pFmt = static_cast<SwDrawContact*>(pObj->GetUserCall())->GetFmt();
const SwFmtAnchor& rAnchor = pFmt->GetAnchor();
if( FLY_AS_CHAR != rAnchor.GetAnchorId() )
pCurrTxtFrm = NULL;
}
}
//calculate line number
if (pCurrTxtFrm && pTxtFrm)
{
if (!(pCurrTxtFrm->IsInTab() || pCurrTxtFrm->IsInFtn()))
{
while( pTxtFrm != pCurrTxtFrm )
{
//check header/footer
pFrm = pTxtFrm;
while ( pFrm && !pFrm->IsHeaderFrm() && !pFrm->IsFooterFrm() )
pFrm = pFrm->GetUpper();
if ( pFrm )
{
pTxtFrm = static_cast< SwTxtFrm*>(pTxtFrm->GetNextCntntFrm());
continue;
}
if (!(pTxtFrm->IsInTab() || pTxtFrm->IsInFtn() || pTxtFrm->IsInFly()))
nLineNum += pTxtFrm->GetThisLines();
pTxtFrm = static_cast< SwTxtFrm* >(pTxtFrm ->GetNextCntntFrm());
}
SwPaM* pCaret = pCrsrShell->GetCrsr();
if (!pCurrTxtFrm->IsEmpty() && pCaret)
{
sal_uInt16 nActPos = 0;
if (pCurrTxtFrm->IsTxtFrm())
{
const SwPosition* pPoint = NULL;
if(pCurrTxtFrm->IsInFly())
{
SwFlyFrm *pFlyFrm = pCurrTxtFrm->FindFlyFrm();
const SwFmtAnchor& rAnchor = pFlyFrm->GetFmt()->GetAnchor();
pPoint= rAnchor.GetCntntAnchor();
}
else
pPoint = pCaret->GetPoint();
nActPos = pPoint->nContent.GetIndex();
nLineNum += pCurrTxtFrm->GetLineCount( nActPos );
}
else//graphic, form, shape, etc.
{
SwPosition* pPoint = pCaret->GetPoint();
Point aPt = pCrsrShell->_GetCrsr()->GetPtPos();
if( pCrsrShell->GetLayout()->GetCrsrOfst( pPoint, aPt/*,* &eTmpState*/ ) )
{
nActPos = pPoint->nContent.GetIndex();
nLineNum += pCurrTxtFrm->GetLineCount( nActPos );
}
}
}
else
++nLineNum;
}
}
sValue += sAttrName;
sValue += OUString::number( nLineNum ) ;
sValue += ";";
SwFrm* pCurrCol=static_cast<SwFrm*>(pCurrFrm)->FindColFrm();
sAttrName = "column-number:";
sValue += sAttrName;
sal_uInt16 nCurrCol = 1;
if(pCurrCol!=NULL)
{
//SwLayoutFrm* pParent = pCurrCol->GetUpper();
SwFrm* pCurrPageCol=static_cast<SwFrm*>(pCurrFrm)->FindColFrm();
while(pCurrPageCol && pCurrPageCol->GetUpper() && pCurrPageCol->GetUpper()->IsPageFrm())
{
pCurrPageCol = pCurrPageCol->GetUpper();
}
SwLayoutFrm* pParent = (SwLayoutFrm*)(pCurrPageCol->GetUpper());
if(pParent!=NULL)
{
SwFrm* pCol = pParent->Lower();
while(pCol&&(pCol!=pCurrPageCol))
{
pCol = pCol->GetNext();
nCurrCol +=1;
}
}
}
sValue += OUString::number( nCurrCol ) ;
sValue += ";";
sAttrName = "total-columns:";
const SwFmtCol &rFmtCol=pCurrPage->GetAttrSet()->GetCol();
sal_uInt16 nColCount=rFmtCol.GetNumCols();
nColCount = nColCount>0?nColCount:1;
sValue += sAttrName;
sValue += OUString::number( nColCount ) ;
sValue += ";";
SwSectionFrm* pCurrSctFrm=static_cast<SwFrm*>(pCurrFrm)->FindSctFrm();
if(pCurrSctFrm!=NULL && pCurrSctFrm->GetSection()!=NULL )
{
sAttrName = "section-name:";
sValue += sAttrName;
OUString sectionName = pCurrSctFrm->GetSection()->GetSectionName();
sectionName = sectionName.replaceFirst( "\\" , "\\\\" );
sectionName = sectionName.replaceFirst( "=" , "\\=" );
sectionName = sectionName.replaceFirst( ";" , "\\;" );
sectionName = sectionName.replaceFirst( "," , "\\," );
sectionName = sectionName.replaceFirst( ":" , "\\:" );
sValue += sectionName;
sValue += ";";
//section-columns-number
sAttrName = "section-columns-number:";
nCurrCol = 1;
if(pCurrCol!=NULL)
{
SwLayoutFrm* pParent = pCurrCol->GetUpper();
if(pParent!=NULL)
{
SwFrm* pCol = pParent->Lower();
while(pCol&&(pCol!=pCurrCol))
{
pCol = pCol->GetNext();
nCurrCol +=1;
}
}
}
sValue += sAttrName;
sValue += OUString::number( nCurrCol ) ;
sValue += ";";
//section-total-columns
sAttrName = "section-total-columns:";
const SwFmtCol &rFmtSctCol=pCurrSctFrm->GetAttrSet()->GetCol();
sal_uInt16 nSctColCount=rFmtSctCol.GetNumCols();
nSctColCount = nSctColCount>0?nSctColCount:1;
sValue += sAttrName;
sValue += OUString::number( nSctColCount ) ;
sValue += ";";
}
anyAtrribute <<= sValue;
}
return anyAtrribute;
}
sal_Int32 SAL_CALL SwAccessibleDocument::getBackground()
throw (::com::sun::star::uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
return SW_MOD()->GetColorConfig().GetColorValue( ::svtools::DOCCOLOR ).nColor;
}
::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >
SAL_CALL SwAccessibleDocument::getAccFlowTo(const ::com::sun::star::uno::Any& rAny, sal_Int32 nType)
throw (::com::sun::star::uno::RuntimeException,
std::exception)
{
SolarMutexGuard g;
const sal_Int32 FORSPELLCHECKFLOWTO = 1;
const sal_Int32 FORFINDREPLACEFLOWTO = 2;
SwAccessibleMap* pAccMap = GetMap();
if ( !pAccMap )
{
return uno::Sequence< uno::Any >();
}
if ( nType == FORSPELLCHECKFLOWTO )
{
uno::Reference< ::com::sun::star::drawing::XShape > xShape;
rAny >>= xShape;
if( xShape.is() )
{
SdrObject* pObj = GetSdrObjectFromXShape(xShape);
if( pObj )
{
uno::Reference<XAccessible> xAcc = pAccMap->GetContext(pObj, this, false);
uno::Reference < XAccessibleSelection > xAccSelection( xAcc, uno::UNO_QUERY );
if ( xAccSelection.is() )
{
try
{
if ( xAccSelection->getSelectedAccessibleChildCount() )
{
uno::Reference < XAccessible > xSel = xAccSelection->getSelectedAccessibleChild( 0 );
if ( xSel.is() )
{
uno::Reference < XAccessibleContext > xSelContext( xSel->getAccessibleContext() );
if ( xSelContext.is() )
{
//if in sw we find the selected paragraph here
if ( xSelContext->getAccessibleRole() == AccessibleRole::PARAGRAPH )
{
uno::Sequence<uno::Any> aRet( 1 );
aRet[0] = uno::makeAny( xSel );
return aRet;
}
}
}
}
}
catch ( const com::sun::star::lang::IndexOutOfBoundsException& )
{
return uno::Sequence< uno::Any >();
}
//end of try...catch
}
}
}
else
{
uno::Reference< XAccessible > xAcc = pAccMap->GetCursorContext();
SwAccessibleContext *pAccImpl = static_cast< SwAccessibleContext *>( xAcc.get() );
if ( pAccImpl && pAccImpl->getAccessibleRole() == AccessibleRole::PARAGRAPH )
{
uno::Sequence< uno::Any > aRet(1);
aRet[0] = uno::makeAny( xAcc );
return aRet;
}
}
}
else if ( nType == FORFINDREPLACEFLOWTO )
{
SwCrsrShell* pCrsrShell = GetCrsrShell();
if ( pCrsrShell )
{
SwPaM *_pStartCrsr = pCrsrShell->GetCrsr(), *__pStartCrsr = _pStartCrsr;
SwCntntNode* pPrevNode = NULL;
std::vector<SwFrm*> vFrmList;
do
{
if ( _pStartCrsr && _pStartCrsr->HasMark() )
{
SwCntntNode* pCntntNode = _pStartCrsr->GetCntntNode();
if ( pCntntNode == pPrevNode )
{
continue;
}
SwFrm* pFrm = pCntntNode ? pCntntNode->getLayoutFrm( pCrsrShell->GetLayout() ) : NULL;
if ( pFrm )
{
vFrmList.push_back( pFrm );
}
pPrevNode = pCntntNode;
}
}
while( _pStartCrsr && ( (_pStartCrsr = _pStartCrsr->GetNext()) != __pStartCrsr) );
if ( vFrmList.size() )
{
uno::Sequence< uno::Any > aRet(vFrmList.size());
std::vector<SwFrm*>::iterator aIter = vFrmList.begin();
for ( sal_Int32 nIndex = 0; aIter != vFrmList.end(); ++aIter, nIndex++ )
{
uno::Reference< XAccessible > xAcc = pAccMap->GetContext(*aIter, false);
if ( xAcc.is() )
{
SwAccessibleContext *pAccImpl = static_cast< SwAccessibleContext *>( xAcc.get() );
if ( pAccImpl && pAccImpl->getAccessibleRole() == AccessibleRole::PARAGRAPH )
{
aRet[nIndex] = uno::makeAny( xAcc );
}
}
}
return aRet;
}
}
}
return uno::Sequence< uno::Any >();
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */