/* -*- 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/. */ #ifndef OGL_CANVASCUSTOMSPRITE_HXX #define OGL_CANVASCUSTOMSPRITE_HXX #include #include #include #include #include #include #include #include #include #include "ogl_spritecanvas.hxx" #include "ogl_canvashelper.hxx" namespace oglcanvas { typedef ::cppu::WeakComponentImplHelper2< ::com::sun::star::rendering::XCustomSprite, ::com::sun::star::rendering::XCanvas > CanvasCustomSpriteBase_Base; typedef ::canvas::CanvasBase< ::canvas::DisambiguationHelper< CanvasCustomSpriteBase_Base >, CanvasHelper, ::osl::MutexGuard, ::cppu::OWeakObject > CanvasCustomSpriteBaseT; /* Definition of CanvasCustomSprite class */ class CanvasCustomSprite : public CanvasCustomSpriteBaseT { public: /** Create a custom sprite @param rSpriteSize Size of the sprite in pixel @param rRefDevice Associated output device @param rSpriteCanvas Target canvas @param rDevice Target DX device */ CanvasCustomSprite( const ::com::sun::star::geometry::RealSize2D& rSpriteSize, const SpriteCanvasRef& rRefDevice, SpriteDeviceHelper& rDeviceHelper ); virtual void disposeThis(); // XSprite virtual void SAL_CALL setAlpha( double alpha ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); virtual void SAL_CALL move( const ::com::sun::star::geometry::RealPoint2D& aNewPos, const ::com::sun::star::rendering::ViewState& viewState, const ::com::sun::star::rendering::RenderState& renderState ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); virtual void SAL_CALL transform( const ::com::sun::star::geometry::AffineMatrix2D& aTransformation ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException); virtual void SAL_CALL clip( const ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D >& aClip ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL setPriority( double nPriority ) throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL show() throw (::com::sun::star::uno::RuntimeException); virtual void SAL_CALL hide() throw (::com::sun::star::uno::RuntimeException); // XCustomSprite virtual ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCanvas > SAL_CALL getContentCanvas() throw (::com::sun::star::uno::RuntimeException); double getPriority() const { return mfPriority; } /// Render sprite content at sprite position bool renderSprite() const; private: /** MUST hold here, too, since CanvasHelper only contains a raw pointer (without refcounting) */ SpriteCanvasRef mpSpriteCanvas; const ::com::sun::star::geometry::RealSize2D maSize; ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D > mxClip; ::com::sun::star::geometry::AffineMatrix2D maTransformation; ::basegfx::B2DPoint maPosition; double mfAlpha; double mfPriority; }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ o/collabora/lov-4.4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXisco Fauli <xiscofauli@libreoffice.org>2024-07-29 11:26:56 +0200
committerXisco Fauli <xiscofauli@libreoffice.org>2024-07-29 15:32:01 +0200
commit212ffc410aeac602efb2c2bfca3eb2d14a31f490 (patch)
tree5de7a0ac8f8072f5eede73f29162489bf549aacc /svx/Library_svx.mk
parent62992442e44787abd5d2fd14fcac9b46856d11d4 (diff)
CppunitTest_sw_mailmerge: factour out common code HEADmaster
Change-Id: I82de04eaabc7efd2440c263064f0c074b30473ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171181 Tested-by: Jenkins Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>