2002-04-16 05:01:30 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 13:01:25 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
2008-04-10 13:01:25 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
2008-04-10 13:01:25 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
2008-04-10 13:01:25 -05:00
|
|
|
* 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.
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
2008-04-10 13:01:25 -05:00
|
|
|
* 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).
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
2008-04-10 13:01:25 -05:00
|
|
|
* 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.
|
2002-04-16 05:01:30 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 12:24:32 -05:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_sd.hxx"
|
2010-01-08 11:32:51 -06:00
|
|
|
#include <editeng/unoedhlp.hxx>
|
2002-04-16 05:01:30 -05:00
|
|
|
#include <svx/svdoutl.hxx>
|
|
|
|
|
2004-01-20 03:34:00 -06:00
|
|
|
#ifndef SD_ACCESSIBILITY_ACCESSIBLE_OUTLINE_EDIT_SOURCE_HXX
|
2002-04-16 05:01:30 -05:00
|
|
|
#include <AccessibleOutlineEditSource.hxx>
|
2004-01-20 03:34:00 -06:00
|
|
|
#endif
|
|
|
|
#include "OutlineView.hxx"
|
2006-11-14 07:23:31 -06:00
|
|
|
#include <svx/sdrpaintwindow.hxx>
|
|
|
|
|
2002-04-16 05:01:30 -05:00
|
|
|
namespace accessibility
|
|
|
|
{
|
|
|
|
|
2004-01-20 03:34:00 -06:00
|
|
|
AccessibleOutlineEditSource::AccessibleOutlineEditSource(
|
|
|
|
SdrOutliner& rOutliner,
|
|
|
|
SdrView& rView,
|
|
|
|
OutlinerView& rOutlView,
|
|
|
|
const ::Window& rViewWindow )
|
|
|
|
: mrView( rView ),
|
|
|
|
mrWindow( rViewWindow ),
|
|
|
|
mpOutliner( &rOutliner ),
|
|
|
|
mpOutlinerView( &rOutlView ),
|
|
|
|
mTextForwarder( rOutliner, NULL ),
|
|
|
|
mViewForwarder( rOutlView )
|
2002-04-16 05:01:30 -05:00
|
|
|
{
|
|
|
|
// register as listener - need to broadcast state change messages
|
|
|
|
rOutliner.SetNotifyHdl( LINK(this, AccessibleOutlineEditSource, NotifyHdl) );
|
2009-05-19 04:32:45 -05:00
|
|
|
StartListening(rOutliner);
|
2002-04-16 05:01:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
AccessibleOutlineEditSource::~AccessibleOutlineEditSource()
|
|
|
|
{
|
2002-06-12 11:27:40 -05:00
|
|
|
if( mpOutliner )
|
|
|
|
mpOutliner->SetNotifyHdl( Link() );
|
2002-04-16 05:01:30 -05:00
|
|
|
Broadcast( TextHint( SFX_HINT_DYING ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
SvxEditSource* AccessibleOutlineEditSource::Clone() const
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
SvxTextForwarder* AccessibleOutlineEditSource::GetTextForwarder()
|
|
|
|
{
|
2002-06-13 12:51:34 -05:00
|
|
|
// TODO: maybe suboptimal
|
|
|
|
if( IsValid() )
|
|
|
|
return &mTextForwarder;
|
|
|
|
else
|
|
|
|
return NULL;
|
2002-04-16 05:01:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
SvxViewForwarder* AccessibleOutlineEditSource::GetViewForwarder()
|
|
|
|
{
|
2002-06-13 12:51:34 -05:00
|
|
|
// TODO: maybe suboptimal
|
|
|
|
if( IsValid() )
|
|
|
|
return this;
|
|
|
|
else
|
|
|
|
return NULL;
|
2002-04-16 05:01:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
SvxEditViewForwarder* AccessibleOutlineEditSource::GetEditViewForwarder( sal_Bool )
|
|
|
|
{
|
2002-06-13 12:51:34 -05:00
|
|
|
// TODO: maybe suboptimal
|
|
|
|
if( IsValid() )
|
|
|
|
{
|
|
|
|
// ignore parameter, we're always in edit mode here
|
|
|
|
return &mViewForwarder;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
2002-04-16 05:01:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void AccessibleOutlineEditSource::UpdateData()
|
|
|
|
{
|
|
|
|
// NOOP, since we're always working on the 'real' outliner,
|
|
|
|
// i.e. changes are immediately reflected on the screen
|
|
|
|
}
|
|
|
|
|
|
|
|
SfxBroadcaster& AccessibleOutlineEditSource::GetBroadcaster() const
|
|
|
|
{
|
|
|
|
return *( const_cast< AccessibleOutlineEditSource* > (this) );
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL AccessibleOutlineEditSource::IsValid() const
|
|
|
|
{
|
2002-06-13 12:51:34 -05:00
|
|
|
if( mpOutliner && mpOutlinerView )
|
|
|
|
{
|
|
|
|
// Our view still on outliner?
|
|
|
|
ULONG nCurrView, nViews;
|
|
|
|
|
|
|
|
for( nCurrView=0, nViews=mpOutliner->GetViewCount(); nCurrView<nViews; ++nCurrView )
|
|
|
|
{
|
|
|
|
if( mpOutliner->GetView(nCurrView) == mpOutlinerView )
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sal_False;
|
2002-04-16 05:01:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Rectangle AccessibleOutlineEditSource::GetVisArea() const
|
|
|
|
{
|
|
|
|
if( IsValid() )
|
|
|
|
{
|
2006-11-14 07:23:31 -06:00
|
|
|
SdrPaintWindow* pPaintWindow = mrView.FindPaintWindow(mrWindow);
|
|
|
|
Rectangle aVisArea;
|
|
|
|
|
|
|
|
if(pPaintWindow)
|
|
|
|
{
|
|
|
|
aVisArea = pPaintWindow->GetVisibleArea();
|
|
|
|
}
|
2002-04-16 05:01:30 -05:00
|
|
|
|
2002-06-12 11:27:40 -05:00
|
|
|
MapMode aMapMode(mrWindow.GetMapMode());
|
|
|
|
aMapMode.SetOrigin(Point());
|
|
|
|
return mrWindow.LogicToPixel( aVisArea, aMapMode );
|
2002-04-16 05:01:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return Rectangle();
|
|
|
|
}
|
|
|
|
|
|
|
|
Point AccessibleOutlineEditSource::LogicToPixel( const Point& rPoint, const MapMode& rMapMode ) const
|
|
|
|
{
|
2002-06-12 11:27:40 -05:00
|
|
|
if( IsValid() && mrView.GetModel() )
|
|
|
|
{
|
|
|
|
Point aPoint( OutputDevice::LogicToLogic( rPoint, rMapMode,
|
|
|
|
MapMode(mrView.GetModel()->GetScaleUnit()) ) );
|
|
|
|
MapMode aMapMode(mrWindow.GetMapMode());
|
|
|
|
aMapMode.SetOrigin(Point());
|
|
|
|
return mrWindow.LogicToPixel( aPoint, aMapMode );
|
|
|
|
}
|
2002-04-16 05:01:30 -05:00
|
|
|
|
|
|
|
return Point();
|
|
|
|
}
|
|
|
|
|
|
|
|
Point AccessibleOutlineEditSource::PixelToLogic( const Point& rPoint, const MapMode& rMapMode ) const
|
|
|
|
{
|
2002-06-12 11:27:40 -05:00
|
|
|
if( IsValid() && mrView.GetModel() )
|
|
|
|
{
|
|
|
|
MapMode aMapMode(mrWindow.GetMapMode());
|
|
|
|
aMapMode.SetOrigin(Point());
|
|
|
|
Point aPoint( mrWindow.PixelToLogic( rPoint, aMapMode ) );
|
|
|
|
return OutputDevice::LogicToLogic( aPoint,
|
|
|
|
MapMode(mrView.GetModel()->GetScaleUnit()),
|
|
|
|
rMapMode );
|
|
|
|
}
|
2002-04-16 05:01:30 -05:00
|
|
|
|
|
|
|
return Point();
|
|
|
|
}
|
|
|
|
|
2009-05-19 04:32:45 -05:00
|
|
|
void AccessibleOutlineEditSource::Notify( SfxBroadcaster& rBroadcaster, const SfxHint& rHint )
|
2002-06-12 11:27:40 -05:00
|
|
|
{
|
2009-05-19 04:32:45 -05:00
|
|
|
bool bDispose = false;
|
2002-06-12 11:27:40 -05:00
|
|
|
|
2009-05-19 04:32:45 -05:00
|
|
|
if( &rBroadcaster == mpOutliner )
|
|
|
|
{
|
|
|
|
const SfxSimpleHint* pHint = dynamic_cast< const SfxSimpleHint * >( &rHint );
|
|
|
|
if( pHint && (pHint->GetId() == SFX_HINT_DYING) )
|
|
|
|
{
|
|
|
|
bDispose = true;
|
|
|
|
mpOutliner = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const SdrHint* pSdrHint = dynamic_cast< const SdrHint* >( &rHint );
|
|
|
|
|
|
|
|
if( pSdrHint && ( pSdrHint->GetKind() == HINT_MODELCLEARED ) )
|
|
|
|
{
|
|
|
|
// model is dying under us, going defunc
|
|
|
|
bDispose = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( bDispose )
|
2002-06-12 11:27:40 -05:00
|
|
|
{
|
2006-12-12 09:48:08 -06:00
|
|
|
if( mpOutliner )
|
|
|
|
mpOutliner->SetNotifyHdl( Link() );
|
|
|
|
mpOutliner = NULL;
|
|
|
|
mpOutlinerView = NULL;
|
|
|
|
Broadcast( TextHint( SFX_HINT_DYING ) );
|
2002-06-12 11:27:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-04-16 05:01:30 -05:00
|
|
|
IMPL_LINK(AccessibleOutlineEditSource, NotifyHdl, EENotify*, aNotify)
|
|
|
|
{
|
|
|
|
if( aNotify )
|
2002-04-26 04:44:53 -05:00
|
|
|
{
|
2002-08-02 05:38:09 -05:00
|
|
|
::std::auto_ptr< SfxHint > aHint( SvxEditSourceHelper::EENotification2Hint( aNotify) );
|
2002-04-26 04:44:53 -05:00
|
|
|
|
|
|
|
if( aHint.get() )
|
|
|
|
Broadcast( *aHint.get() );
|
|
|
|
}
|
2002-04-16 05:01:30 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end of namespace accessibility
|