2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-10-08 10:00:18 +01: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 .
|
|
|
|
*/
|
2005-11-02 11:51:46 +00:00
|
|
|
|
2015-08-10 14:04:31 -05:00
|
|
|
#include <sal/config.h>
|
2006-09-17 02:24:53 +00:00
|
|
|
|
2015-08-10 14:04:31 -05:00
|
|
|
#include <basegfx/matrix/b2dhommatrix.hxx>
|
|
|
|
#include <basegfx/tools/canvastools.hxx>
|
2005-11-02 11:51:46 +00:00
|
|
|
#include <com/sun/star/rendering/RepaintResult.hpp>
|
2014-01-14 13:05:02 -02:00
|
|
|
#include <cppuhelper/supportsservice.hxx>
|
2005-11-02 11:51:46 +00:00
|
|
|
|
2015-08-10 14:04:31 -05:00
|
|
|
#include <canvas/base/cachedprimitivebase.hxx>
|
|
|
|
|
2005-11-02 11:51:46 +00:00
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
|
|
|
|
namespace canvas
|
|
|
|
{
|
|
|
|
CachedPrimitiveBase::CachedPrimitiveBase( const rendering::ViewState& rUsedViewState,
|
|
|
|
const uno::Reference< rendering::XCanvas >& rTarget,
|
|
|
|
bool bFailForChangedViewTransform ) :
|
|
|
|
CachedPrimitiveBase_Base( m_aMutex ),
|
|
|
|
maUsedViewState( rUsedViewState ),
|
|
|
|
mxTarget( rTarget ),
|
|
|
|
mbFailForChangedViewTransform( bFailForChangedViewTransform )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CachedPrimitiveBase::~CachedPrimitiveBase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SAL_CALL CachedPrimitiveBase::disposing()
|
|
|
|
{
|
|
|
|
::osl::MutexGuard aGuard( m_aMutex );
|
|
|
|
|
|
|
|
maUsedViewState.Clip.clear();
|
|
|
|
mxTarget.clear();
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Int8 SAL_CALL CachedPrimitiveBase::redraw( const rendering::ViewState& aState ) throw (lang::IllegalArgumentException, uno::RuntimeException, std::exception)
|
2005-11-02 11:51:46 +00:00
|
|
|
{
|
|
|
|
::basegfx::B2DHomMatrix aUsedTransformation;
|
|
|
|
::basegfx::B2DHomMatrix aNewTransformation;
|
|
|
|
|
|
|
|
::basegfx::unotools::homMatrixFromAffineMatrix( aUsedTransformation,
|
|
|
|
maUsedViewState.AffineTransform );
|
|
|
|
::basegfx::unotools::homMatrixFromAffineMatrix( aNewTransformation,
|
|
|
|
aState.AffineTransform );
|
|
|
|
|
|
|
|
const bool bSameViewTransforms( aUsedTransformation == aNewTransformation );
|
|
|
|
|
|
|
|
if( mbFailForChangedViewTransform &&
|
|
|
|
!bSameViewTransforms )
|
|
|
|
{
|
|
|
|
// differing transformations, don't try to draft the
|
|
|
|
// output, just plain fail here.
|
|
|
|
return rendering::RepaintResult::FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return doRedraw( aState,
|
|
|
|
maUsedViewState,
|
|
|
|
mxTarget,
|
|
|
|
bSameViewTransforms );
|
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
OUString SAL_CALL CachedPrimitiveBase::getImplementationName( ) throw (uno::RuntimeException, std::exception)
|
2005-11-02 11:51:46 +00:00
|
|
|
{
|
2014-01-14 13:05:02 -02:00
|
|
|
return OUString("canvas::CachedPrimitiveBase");
|
2005-11-02 11:51:46 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
sal_Bool SAL_CALL CachedPrimitiveBase::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException, std::exception)
|
2005-11-02 11:51:46 +00:00
|
|
|
{
|
2014-01-14 13:05:02 -02:00
|
|
|
return cppu::supportsService(this, ServiceName);
|
2005-11-02 11:51:46 +00:00
|
|
|
}
|
|
|
|
|
2014-02-25 21:31:58 +01:00
|
|
|
uno::Sequence< OUString > SAL_CALL CachedPrimitiveBase::getSupportedServiceNames( ) throw (uno::RuntimeException, std::exception)
|
2005-11-02 11:51:46 +00:00
|
|
|
{
|
2013-01-08 22:21:18 +01:00
|
|
|
uno::Sequence< OUString > aRet(1);
|
2014-01-14 13:05:02 -02:00
|
|
|
aRet[0] = "com.sun.star.rendering.CachedBitmap";
|
2005-11-02 11:51:46 +00:00
|
|
|
|
|
|
|
return aRet;
|
|
|
|
}
|
|
|
|
}
|
2010-10-14 08:27:31 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|