LibreOffice Module cppcanvas (master) 1
implsprite.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <com/sun/star/uno/Reference.hxx>
23#include <com/sun/star/rendering/XSpriteCanvas.hpp>
24#include <com/sun/star/rendering/XSprite.hpp>
25#include <cppcanvas/sprite.hxx>
26#include "implspritecanvas.hxx"
27
28namespace cppcanvas::internal
29{
30 class ImplSprite : public virtual Sprite
31 {
32 public:
33 ImplSprite( const css::uno::Reference<
34 css::rendering::XSpriteCanvas >& rParentCanvas,
35 css::uno::Reference<
36 css::rendering::XSprite > xSprite,
38 virtual ~ImplSprite() override;
39
40 virtual void setAlpha( const double& rAlpha ) override;
41 virtual void movePixel( const ::basegfx::B2DPoint& rNewPos ) override;
42 virtual void move( const ::basegfx::B2DPoint& rNewPos ) override;
43 virtual void transform( const ::basegfx::B2DHomMatrix& rMatrix ) override;
44 virtual void setClipPixel( const ::basegfx::B2DPolyPolygon& rClipPoly ) override;
45 virtual void setClip( const ::basegfx::B2DPolyPolygon& rClipPoly ) override;
46 virtual void setClip() override;
47
48 virtual void show() override;
49 virtual void hide() override;
50
51 virtual void setPriority( double fPriority ) override;
52
53 private:
54 ImplSprite(const ImplSprite&) = delete;
55 ImplSprite& operator=( const ImplSprite& ) = delete;
56
57 css::uno::Reference< css::rendering::XGraphicDevice > mxGraphicDevice;
58 const css::uno::Reference< css::rendering::XSprite > mxSprite;
60 };
61}
62
63/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::shared_ptr< TransformationArbiter > TransformationArbiterSharedPtr
virtual ~ImplSprite() override
Definition: implsprite.cxx:52
virtual void hide() override
Definition: implsprite.cxx:173
css::uno::Reference< css::rendering::XGraphicDevice > mxGraphicDevice
Definition: implsprite.hxx:57
ImplSpriteCanvas::TransformationArbiterSharedPtr mpTransformArbiter
Definition: implsprite.hxx:59
ImplSprite(const css::uno::Reference< css::rendering::XSpriteCanvas > &rParentCanvas, css::uno::Reference< css::rendering::XSprite > xSprite, ImplSpriteCanvas::TransformationArbiterSharedPtr xTransformArbiter)
ImplSprite & operator=(const ImplSprite &)=delete
ImplSprite(const ImplSprite &)=delete
virtual void setClip() override
Definition: implsprite.cxx:156
const css::uno::Reference< css::rendering::XSprite > mxSprite
Definition: implsprite.hxx:58
virtual void movePixel(const ::basegfx::B2DPoint &rNewPos) override
Set the sprite position on screen.
Definition: implsprite.cxx:71
virtual void show() override
Definition: implsprite.cxx:165
virtual void setPriority(double fPriority) override
Change the sprite priority.
Definition: implsprite.cxx:181
virtual void move(const ::basegfx::B2DPoint &rNewPos) override
Set the sprite position on screen.
Definition: implsprite.cxx:89
virtual void setAlpha(const double &rAlpha) override
Definition: implsprite.cxx:63
virtual void setClipPixel(const ::basegfx::B2DPolyPolygon &rClipPoly) override
Set output clipping.
Definition: implsprite.cxx:123
virtual void transform(const ::basegfx::B2DHomMatrix &rMatrix) override
Definition: implsprite.cxx:110