2010-10-14 08:27:31 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-19 17:56:50 +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:41:46 +00:00
|
|
|
|
2020-02-10 11:37:26 +02:00
|
|
|
#pragma once
|
2005-11-02 11:41:46 +00:00
|
|
|
|
2020-02-10 11:37:26 +02:00
|
|
|
#include <base/canvasbase.hxx>
|
2019-02-13 21:41:07 +01:00
|
|
|
#include <com/sun/star/geometry/IntegerSize2D.hpp>
|
|
|
|
|
|
|
|
namespace com::sun::star::rendering { class XBitmapCanvas; }
|
2005-11-02 11:41:46 +00:00
|
|
|
|
|
|
|
namespace canvas
|
|
|
|
{
|
|
|
|
/** Helper template to handle XBitmapCanvas method forwarding to
|
|
|
|
BitmapCanvasHelper
|
|
|
|
|
|
|
|
Use this helper to handle the XBitmapCanvas part of your
|
|
|
|
implementation.
|
|
|
|
|
|
|
|
@tpl Base
|
|
|
|
Base class to use, most probably one of the
|
|
|
|
WeakComponentImplHelperN templates with the appropriate
|
|
|
|
interfaces. At least XBitmapCanvas should be among them (why
|
|
|
|
else would you use this template, then?). Base class must have
|
2019-06-14 22:42:13 +00:00
|
|
|
a Base( const Mutex& ) constructor (like the
|
2005-11-02 11:41:46 +00:00
|
|
|
WeakComponentImplHelperN templates have).
|
|
|
|
|
|
|
|
@tpl CanvasHelper
|
|
|
|
Canvas helper implementation for the backend in question
|
|
|
|
|
|
|
|
@tpl Mutex
|
|
|
|
Lock strategy to use. Defaults to using the
|
2016-07-01 09:46:23 +02:00
|
|
|
BaseMutex-provided lock. Every time one of the methods is
|
2005-11-02 11:41:46 +00:00
|
|
|
entered, an object of type Mutex is created with m_aMutex as
|
|
|
|
the sole parameter, and destroyed again when the method scope
|
|
|
|
is left.
|
|
|
|
|
|
|
|
@tpl UnambiguousBase
|
|
|
|
Optional unambiguous base class for XInterface of Base. It's
|
|
|
|
sometimes necessary to specify this parameter, e.g. if Base
|
|
|
|
derives from multiple UNO interface (were each provides its
|
|
|
|
own version of XInterface, making the conversion ambiguous)
|
|
|
|
|
|
|
|
@see CanvasBase for further contractual requirements towards
|
|
|
|
the CanvasHelper type, and some examples.
|
|
|
|
*/
|
|
|
|
template< class Base,
|
|
|
|
class CanvasHelper,
|
|
|
|
class Mutex=::osl::MutexGuard,
|
2015-10-19 12:29:30 +02:00
|
|
|
class UnambiguousBase=css::uno::XInterface > class BitmapCanvasBase :
|
2005-11-02 11:41:46 +00:00
|
|
|
public CanvasBase< Base, CanvasHelper, Mutex, UnambiguousBase >
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef CanvasBase< Base, CanvasHelper, Mutex, UnambiguousBase > BaseType;
|
|
|
|
|
2014-03-12 10:06:42 +01:00
|
|
|
// XBitmap
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual css::geometry::IntegerSize2D SAL_CALL getSize( ) override
|
2014-03-12 10:06:42 +01:00
|
|
|
{
|
|
|
|
typename BaseType::MutexType aGuard( BaseType::m_aMutex );
|
|
|
|
|
|
|
|
return BaseType::maCanvasHelper.getSize();
|
|
|
|
}
|
|
|
|
|
2017-01-26 12:28:58 +01:00
|
|
|
virtual sal_Bool SAL_CALL hasAlpha( ) override
|
2014-03-12 10:06:42 +01:00
|
|
|
{
|
2016-04-20 17:15:06 +02:00
|
|
|
return true;
|
2014-03-12 10:06:42 +01:00
|
|
|
}
|
|
|
|
|
2015-10-19 12:29:30 +02:00
|
|
|
virtual css::uno::Reference< css::rendering::XBitmap > SAL_CALL getScaledBitmap( const css::geometry::RealSize2D& newSize,
|
2017-01-26 12:28:58 +01:00
|
|
|
sal_Bool beFast ) override
|
2014-03-12 10:06:42 +01:00
|
|
|
{
|
|
|
|
typename BaseType::MutexType aGuard( BaseType::m_aMutex );
|
|
|
|
|
|
|
|
return BaseType::maCanvasHelper.getScaledBitmap( newSize, beFast );
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
template< class Base,
|
|
|
|
class CanvasHelper,
|
|
|
|
class Mutex=::osl::MutexGuard,
|
2015-10-19 12:29:30 +02:00
|
|
|
class UnambiguousBase = css::uno::XInterface > class BitmapCanvasBase2 :
|
2014-03-12 10:06:42 +01:00
|
|
|
public BitmapCanvasBase< Base, CanvasHelper, Mutex, UnambiguousBase >
|
|
|
|
{
|
|
|
|
typedef BitmapCanvasBase< Base, CanvasHelper, Mutex, UnambiguousBase >
|
|
|
|
BaseType;
|
|
|
|
|
|
|
|
public:
|
2005-11-02 11:41:46 +00:00
|
|
|
// XBitmapCanvas
|
2015-10-19 12:29:30 +02:00
|
|
|
virtual void SAL_CALL copyRect( const css::uno::Reference< css::rendering::XBitmapCanvas >& sourceCanvas,
|
|
|
|
const css::geometry::RealRectangle2D& sourceRect,
|
|
|
|
const css::rendering::ViewState& sourceViewState,
|
|
|
|
const css::rendering::RenderState& sourceRenderState,
|
|
|
|
const css::geometry::RealRectangle2D& destRect,
|
|
|
|
const css::rendering::ViewState& destViewState,
|
2017-01-26 12:28:58 +01:00
|
|
|
const css::rendering::RenderState& destRenderState ) override
|
2005-11-02 11:41:46 +00:00
|
|
|
{
|
|
|
|
tools::verifyArgs(sourceCanvas, sourceRect, sourceViewState, sourceRenderState,
|
|
|
|
destRect, destViewState, destRenderState,
|
2020-08-26 15:44:06 +02:00
|
|
|
__func__,
|
2005-11-02 11:41:46 +00:00
|
|
|
static_cast< typename BaseType::UnambiguousBaseType* >(this));
|
|
|
|
|
2014-03-12 10:06:42 +01:00
|
|
|
typename BaseType::BaseType::MutexType aGuard( BaseType::m_aMutex );
|
2005-11-02 11:41:46 +00:00
|
|
|
|
2014-03-12 10:06:42 +01:00
|
|
|
BaseType::BaseType::mbSurfaceDirty = true;
|
2005-11-02 11:41:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-10-14 08:27:31 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|