Files
libreoffice/sd/source/ui/accessibility/AccessibleOutlineEditSource.cxx
Stephan Bergmann 3ead3ad52f Gradually typed Link
Turn the Link class into a template abstracting over the link's argument and
return types, but provide default template arguments that keep the generic,
unsafe "void* in, sal_IntPtr out" behvior.  That way, individual uses of the
Link class can be updated over time.

All the related macros are duplicated with ..._TYPED counterparts, that
additionally take the RetType (except for LINK_TYPED, which manages to infer the
relevant types from the supplied Member).

(It would have been attractive to change the "untyped" LinkStubs from taking a
void* to a properly typed ArgType parameter, too, but that would cause
-fsanitize=function to flag uses of "untyped" Link::Call.)

Change-Id: I3b0140378bad99abbf240140ebb4a46a05d2d2f8
2015-04-30 10:20:00 +02:00

222 lines
6.8 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 .
*/
#include <editeng/unoedhlp.hxx>
#include <svx/svdoutl.hxx>
#include <AccessibleOutlineEditSource.hxx>
#include "OutlineView.hxx"
#include <svx/sdrpaintwindow.hxx>
namespace accessibility
{
AccessibleOutlineEditSource::AccessibleOutlineEditSource(
SdrOutliner& rOutliner,
SdrView& rView,
OutlinerView& rOutlView,
const vcl::Window& rViewWindow )
: mrView( rView ),
mrWindow( rViewWindow ),
mpOutliner( &rOutliner ),
mpOutlinerView( &rOutlView ),
mTextForwarder( rOutliner, false ),
mViewForwarder( rOutlView )
{
// register as listener - need to broadcast state change messages
// Moved to ::GetTextForwarder()
//rOutliner.SetNotifyHdl( LINK(this, AccessibleOutlineEditSource, NotifyHdl) );
StartListening(rOutliner);
}
AccessibleOutlineEditSource::~AccessibleOutlineEditSource()
{
if( mpOutliner )
mpOutliner->SetNotifyHdl( Link<>() );
Broadcast( TextHint( SFX_HINT_DYING ) );
}
SvxEditSource* AccessibleOutlineEditSource::Clone() const
{
return new AccessibleOutlineEditSource(*mpOutliner, mrView, *mpOutlinerView, mrWindow);
}
SvxTextForwarder* AccessibleOutlineEditSource::GetTextForwarder()
{
// TODO: maybe suboptimal
if( IsValid() )
{
// Moved here to make sure that
// the NotifyHandler was set on the current object.
mpOutliner->SetNotifyHdl( LINK(this, AccessibleOutlineEditSource, NotifyHdl) );
return &mTextForwarder;
}
else
return NULL;
}
SvxViewForwarder* AccessibleOutlineEditSource::GetViewForwarder()
{
// TODO: maybe suboptimal
if( IsValid() )
return this;
else
return NULL;
}
SvxEditViewForwarder* AccessibleOutlineEditSource::GetEditViewForwarder( bool )
{
// TODO: maybe suboptimal
if( IsValid() )
{
// ignore parameter, we're always in edit mode here
return &mViewForwarder;
}
else
return NULL;
}
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
{
if( mpOutliner && mpOutlinerView )
{
// Our view still on outliner?
sal_uLong nCurrView, nViews;
for( nCurrView=0, nViews=mpOutliner->GetViewCount(); nCurrView<nViews; ++nCurrView )
{
if( mpOutliner->GetView(nCurrView) == mpOutlinerView )
return true;
}
}
return false;
}
Rectangle AccessibleOutlineEditSource::GetVisArea() const
{
if( IsValid() )
{
SdrPaintWindow* pPaintWindow = mrView.FindPaintWindow(mrWindow);
Rectangle aVisArea;
if(pPaintWindow)
{
aVisArea = pPaintWindow->GetVisibleArea();
}
MapMode aMapMode(mrWindow.GetMapMode());
aMapMode.SetOrigin(Point());
return mrWindow.LogicToPixel( aVisArea, aMapMode );
}
return Rectangle();
}
Point AccessibleOutlineEditSource::LogicToPixel( const Point& rPoint, const MapMode& rMapMode ) const
{
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 );
}
return Point();
}
Point AccessibleOutlineEditSource::PixelToLogic( const Point& rPoint, const MapMode& rMapMode ) const
{
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 );
}
return Point();
}
void AccessibleOutlineEditSource::Notify( SfxBroadcaster& rBroadcaster, const SfxHint& rHint )
{
bool bDispose = false;
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 )
{
if( mpOutliner )
mpOutliner->SetNotifyHdl( Link<>() );
mpOutliner = NULL;
mpOutlinerView = NULL;
Broadcast( TextHint( SFX_HINT_DYING ) );
}
}
IMPL_LINK(AccessibleOutlineEditSource, NotifyHdl, EENotify*, aNotify)
{
if( aNotify )
{
::std::unique_ptr< SfxHint > aHint( SvxEditSourceHelper::EENotification2Hint( aNotify) );
if( aHint.get() )
Broadcast( *aHint.get() );
}
return 0;
}
} // end of namespace accessibility
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */